@charset "UTF-8";

/*-----------------------
lp_sub_p01 h1
-----------------------*/
.lp_sub_p01 h1 {
	margin-left: 20px;
	font-size: 70px;
	display: inline-block;
	color: #515151;
	margin-bottom: 10px;
	position: relative;
}

/* .lp_sub_p01 h1::before {
	content: "";
	display: inline-block;
	width: 5px;
	height: 60px;
	background-color: #515151;
	position: absolute;
	top: -11px;
	left: -10px;
} */

/*-----------------------
lp_sub_p02 h2
-----------------------*/
.lp_sub_p02 {
	margin-top: 50px;
	margin-bottom: 20px;

}
.lp_sub_p02 h2 {
	font-size: 36px;
	/* display: inline-block; */
	color: #515151;
	/* margin-bottom: 10px; */
	position: relative;
	/* margin-left: 20px; */
	padding: 0.2em 1em 0.2em 1em;
}

.lp_sub_p02 h2::before {
	content: "";
	display: inline-block;
	width: 4px;
	height: 100%;
	background-color: #515151;
	position: absolute;
	top: 0;
	left: 0;
}

/*-----------------------
lp_sub_p03 h3
-----------------------*/
.lp_sub_p03 {
	margin-top: 50px;
	margin-bottom: 20px;
}

.lp_sub_p03 h3 {
	font-size: 24px;
	color: #515151;
	position: relative;
	padding: 15px 10px;
	background-color: #f5f5f5;
}

.lp_sub_p03 h3::before {
	content: "";
	display: inline-block;
	width: 100%;
	height: 2px;
	/* background-color: #515151; */
	position: absolute;
	bottom: 0px;
	left: 0;
}

/*-----------------------
lp_sub_p04 テキスト
-----------------------*/
/* .lp_sub_p04 {} */

/*-----------------------
lp_sub_p05 リスト
-----------------------*/
/* .lp_sub_p05 ul {
	margin: 0;
	list-style-type: disc;
	list-style-position: inside;
	line-height: 1.8;
} */

.lp_sub_p05 ul {
	color: #1e366a;
	/* border: dotted #1e366a 1px; */
	padding: 0.5em 0.5em 0.5em 2em;
	list-style-type: disc;
}

.lp_sub_p05 ul li {
	line-height: 1.8;
	padding: 0.5em 0;
}

/*-----------------------
lp_sub_p06 番号付きリスト
-----------------------*/
.lp_sub_p06 ol {
	list-style-type: decimal;
	list-style-position: inside;
	line-height: 1.8;
	counter-reset: number;
	/*数字をリセット*/
	list-style-type: none !important;
	/*数字を一旦消す*/
}

.lp_sub_p06 ol li {
	position: relative;
	padding-left: 30px;
	line-height: 1.5em;
	padding: 0.5em 0.5em 0.5em 30px;
}

.lp_sub_p06 ol li:before {
	/* 以下数字をつける */
	position: absolute;
	counter-increment: number;
	content: counter(number);
	/*以下数字のデザイン変える*/
	display: inline-block;
	background: #FBF204;
	color: #0085D0;
	font-family: 'Avenir', 'Arial Black', 'Arial', sans-serif;
	font-weight: bold;
	font-size: 15px;
	border-radius: 50%;
	left: 0;
	width: 25px;
	height: 25px;
	line-height: 25px;
	text-align: center;
	/*以下 上下中央寄せのため*/
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}



/*-----------------------
lp_sub_p07 メモ
-----------------------*/
.lp_sub_p07.memo-box {
	background-color: rgb(225, 235, 255);
	border-left: 5px solid cornflowerblue;
	display: flex;
	padding: 5px 10px;
	max-width: 600px;
	word-break: break-all;
}

.lp_sub_p07 .memo-tit {
	font-size: 18px;
	width: 70px;
	align-self: center;
}

.lp_sub_p07 .memo-text {
	width: calc(100% - 70px);
}

/*-----------------------
lp_sub_p08 html
-----------------------*/

/*-----------------------
lp_sub_p09 ソース表示
-----------------------*/
.lp_sub_p09 pre {
	padding: 1em;
	/* 内側の余白 */
	margin: 0 0 1.5em;
	/* 外側の余白 */
	border: solid 1px #eaedf2;
	/* 枠線 */
	background: #f3f6fc;
	/* 背景色 */
	color: #54687c;
	/* 文字色 */
	overflow-x: scroll;
}

/*-----------------------
lp_sub_p10 左タイトル+右テキスト
-----------------------*/

.lp_sub_p10.row-box {
	display: flex;
	padding: 20px 10px;
	/* background-color: white; */
	position: relative;
	min-width: 30%;
}

.lp_sub_p10.row-box::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	height: 1px;
	width: 100%;
	background-color: rgb(223 223 223);
}

.lp_sub_p10.row-box::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	height: 1px;
	width: 30%;
	background-color: rgb(81 81 81);
}

.lp_sub_p10 .row-tit {
	width: 30%;
	word-break: break-all;
	min-width: 30%;
}

.lp_sub_p10 .row-text {
	padding-left: 10px;
}

.lp_sub_p10.row-box.gray {
	background-color: rgb(240, 240, 240);
}

@media screen and (max-width: 768px) {
	.lp_sub_p10.row-box {
		flex-wrap: wrap;
	}
	.lp_sub_p10 .row-tit {
		width: 100%;
		min-width: 100%;
		padding: 0.5em 0;
	}
	.lp_sub_p10 .row-text {
		padding-left: 1em;
	}
	.lp_sub_p10.row-box::after {
		content: none;
	}
}


/*-----------------------
lp_sub_p11 画像
-----------------------*/
.lp_sub_p11.w100p {
	width: 100%;
}

.lp_sub_p11.w100vw {
	width: 100vw;
}

.lp_sub_p11 img {
	width: 100%;
}

/*------------------------
 lp_sub_p12
------------------------*/
.lp_sub_p12 {
	margin: 20px auto 80px;
}

.lp_sub_p12 .merit {
	box-sizing: border-box;
	background-color: #515151;
	border: solid 4px #515151;
	color: white;
	width: 40vw;
	min-width: 550px;
	font-weight: bold;
	height: auto;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	/* margin-bottom: 50px; */
	transition: 0.3s;
	overflow: hidden;
}

.lp_sub_p12 .merit.btn_r {
	margin-left: auto;
	margin-right: 0;
	border-radius: 100px 0 0 100px;
	padding: 20px 11vw 20px 100px;
	width: 50vw;
}

.lp_sub_p12 .merit.btn_l {
	margin-left: 0;
	margin-right: auto;
	border-radius: 0 100px 100px 0;
	padding: 20px 11vw 20px 100px;
}

.lp_sub_p12 .merit.btn_c {
	margin: auto;
	border-radius: 50rem;
	padding: 20px 11vw 20px 100px;
}


.lp_sub_p12 .merit-text span {
	font-size: 30px;
}

/*　ボタン 矢印アニメーション */
.lp_sub_p12 .merit {
	position: relative;
}

.lp_sub_p12 .cp_arrows *,
.lp_sub_p12 .cp_arrows *:before,
.lp_sub_p12 .cp_arrows *:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.lp_sub_p12 .cp_arrows {
	position: absolute;
	top: 75%;
	left: 26vw;
	display: flex;
	width: 50px;
	height: 90px;
	margin: 0;
	justify-content: center;
	align-items: center;
	transform-origin: top;
	transform: rotate(-90deg);
}

.lp_sub_p12 .cp_arrows .cp_arrow {
	position: absolute;
	left: 50%;
	width: 60px;
	height: 10px;
	-webkit-transform: scale(0.3);
	transform: scale(0.6);
	-webkit-animation: arrow-move07 3s ease-out infinite;
	animation: arrow-move07 3s ease-out infinite;
	opacity: 0;
}

.lp_sub_p12 .cp_arrows .cp_arrow:first-child {
	-webkit-animation: arrow-move07 3s ease-out 1s infinite;
	animation: arrow-move07 3s ease-out 1s infinite;
}

.lp_sub_p12 .cp_arrows .cp_arrow:nth-child(2) {
	-webkit-animation: arrow-move07 3s ease-out 2s infinite;
	animation: arrow-move07 3s ease-out 2s infinite;
}

.lp_sub_p12 .cp_arrows .cp_arrow:before,
.lp_sub_p12 .cp_arrows .cp_arrow:after {
	position: absolute;
	top: 0;
	width: 50%;
	height: 100%;
	content: '';
	border-radius: 2px;
	background: white;
}

.btn_white .cp_arrows .cp_arrow:before,
.btn_white .cp_arrows .cp_arrow:after {
	background: #515151;
}

.lp_sub_p12 .cp_arrows .cp_arrow:before {
	left: 1px;
	-webkit-transform: skewY(30deg);
	transform: skewY(30deg);
}

.lp_sub_p12 .cp_arrows .cp_arrow:after {
	right: 1px;
	width: 50%;
	-webkit-transform: skewY(-30deg);
	transform: skewY(-30deg);
}

@media screen and (max-width: 1024px) {
	.lp_sub_p12 .cp_arrows {
		left: 60%;
	}
}

@media screen and (max-width: 600px) {
	.lp_sub_p12 .merit {
		min-width: 95%;
	}

	.lp_sub_p12 .merit.btn_r,
	.lp_sub_p12 .merit.btn_l,
	.lp_sub_p12 .merit.btn_c {
		padding: 20px 0px 20px 40px;
	}

	.lp_sub_p12 .cp_arrows .cp_arrow {
		font-size: 12px;
	}

}

@media screen and (max-width: 470px) {
	.lp_sub_p12 .cp_arrows .cp_arrow {
		width: 50px;
		height: 8px;
		-webkit-transform: scale(0.5);
		transform: scale(0.5);
	}
}

@-webkit-keyframes arrow-move07 {
	25% {
		opacity: 0.6;
	}

	43.75% {
		-webkit-transform: translateY(1em);
		transform: translateY(1em);
		opacity: 0.8;
	}

	62.5% {
		-webkit-transform: translateY(2em);
		transform: translateY(2em);
		opacity: 1;
	}

	100% {
		-webkit-transform: translateY(3em) scale(0.5);
		transform: translateY(3em) scale(0.5);
		opacity: 0;
	}
}

@keyframes arrow-move07 {
	25% {
		opacity: 0.6;
	}

	43.75% {
		-webkit-transform: translateY(1em);
		transform: translateY(1.5em);
		opacity: 0.8;
	}

	62.5% {
		-webkit-transform: translateY(2em);
		transform: translateY(3em);
		opacity: 1;
	}

	100% {
		-webkit-transform: translateY(3em) scale(0.6);
		transform: translateY(4.5em) scale(0.6);
		opacity: 0;
	}
}

/* ボタン　ホバー時アニメーション------------*/
/* ボタン本体のスタイル */
.lp_sub_p12 .heart-button {

	/* ボタンの文字の設定 */
	font-family: 'Quicksand', sans-serif;
	font-weight: bold;
	font-size: 20px;
	color: #fff;
	/* letter-spacing: 0.1em; */

	/* その他必要なスタイル */
	transition: all 0.3s ease;
}

/* btn_white */
.btn_white .merit {
	background-color: white;
	color: #515151;
}

/* ハートの共通スタイル */
.lp_sub_p12 .heart-button::before,
.lp_sub_p12 .heart-button::after {
	content: "";
	background-size: contain;
	background-repeat: no-repeat;
	width: 20px;
	height: 20px;
	position: absolute;
	opacity: 0;
}

/* 左上のハートのスタイル */
.lp_sub_p12 .heart-button::before {
	background-image: url('/img/lp_images/heart.svg');
	top: 20px;
	left: 50px;
}

/* 右下のハートのスタイル */
.lp_sub_p12 .heart-button::after {
	background-image: url('/img/lp_images/heart-reverse.svg');
	bottom: -6px;
	left: 300px;
}

/* ========= ホバー時のスタイル ======== */

/* ボタンホバー時のスタイル */
.lp_sub_p12 .heart-button:hover {
	background-color: #fff;
	border: 4px solid #ef4b53;
	color: #ef4b53;

}

/* ボタンホバー時の左上のハートのスタイル */
.lp_sub_p12 .heart-button:hover::before {
	animation: heart 1.5s infinite ease-out;
}

/* ボタンホバー時の右下のハートのスタイル */
.lp_sub_p12 .heart-button:hover::after {
	animation: heart 1.5s 0.2s infinite ease-out;
}

/* ボタンホバー時の矢印の色変化 */
.lp_sub_p12 .h-active .cp_arrows .cp_arrow:before,
.lp_sub_p12 .h-active .cp_arrows .cp_arrow::after {
	background-color: #ef4b53;
}

/* ========= アニメーションの設定 ======== */
@keyframes heart {
	0% {
		transform: translateY(0) scale(1);
		opacity: 0;
	}

	25% {
		opacity: 1;
	}

	75% {
		opacity: 1;
	}

	100% {
		transform: translateY(-20px) scale(1.4);
		opacity: 0;
	}
}

/*------------------------
 lp_sub_p13 メインビジュアル
------------------------*/
.lp_sub_p13 {
	position: relative;
	padding: 50px 0 100px;
	margin-bottom: 100px;
}

.lp_sub_p13::after {
	content: "";
	background-color: #FBF204;
	position: absolute;
	top: 40%;
	width: 97%;
	height: 60%;
	border-radius: 0 180px 180px 0;
	z-index: 0;
}

.lp_sub_p13 .container {
	width: 96%;
	padding: 0 20px;
}

.lp_sub_p13 .mv1 p {
	text-align-last: center;
	font-size: 42px;
	font-weight: bold;
	color: #515151;
	margin-bottom: 20px;
}

.lp_sub_p13 .mv2 img {
	display: block;
	width: 50vw;
	margin: auto;
	position: relative;
	z-index: 1;
}

.lp_sub_p13.w100vw .mv2 img {
	width: 100vw;
}

.lp_sub_p13 .mv3 {
	position: relative;
	z-index: 1;
	color: #515151;
}

.lp_sub_p13 .mv3 p {
	text-align-last: center;
}

.lp_sub_p13 .mv3 p:first-child {
	margin-top: 65px;
	/* font-size: 30px; */
	font-weight: bold;
}

.lp_sub_p13 .mv3 p:first-child span {
	font-size: 50px;
	margin: 0 20px;
}

.lp_sub_p13 .resbr {
	display: none;
}


@media screen and (max-width: 1280px) {
	.lp_sub_p13 .mv1 p {
		font-size: 25px;
	}
}

@media screen and (max-width: 1024px) {
	.lp_sub_p13 .mv2 img {
		width: 100%;
	}

	/* .lp_sub_p13 .mv3 p:nth-child(2) span {
		font-size: 60px;
	} */
}

@media screen and (max-width: 768px) {

	.lp_sub_p13 .mv1,
	.lp_sub_p13 .mv3 {
		margin-left: 15px;
		margin-right: 15px;
	}

	.lp_sub_p13 .resbr {
		display: block;
	}

	/* .lp_sub_p13 .mv3 p:first-child span,
	.lp_sub_p13 .mv3 p:nth-child(2) span {
		font-size: 30px;
	} */

	.lp_sub_p13 .mv3 p:first-child,
	.lp_sub_p13 .mv3 p:nth-child(2) {
		font-size: 20px;
	}

	.lp_sub_p13 .mv3 p:first-child {
		margin-top: 27px;
	}

	.lp_sub_p13 .mv3 p:first-child span {
		margin: 0 5px;
	}

	.lp_sub_p13 .mv3 p:nth-child(2) {
		margin-top: 40px;
		text-align: center;
	}

	/* .lp_sub_p13 .mv3 p:first-child span,
	.lp_sub_p13 .mv3 p:nth-child(2) span {
		margin: 10px 0;
	} */
}

/*------------------------
 lp_sub_p14
------------------------*/
.lp_sub_p14 {
	position: relative;
	z-index: 1;
	padding: 0 0 30px;
	margin: 150px 0 100px;
}

.lp_sub_p14::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	z-index: 0;
	width: 100%;
	height: 100%;
	background-color: #EAEFF5;
}

.lp_sub_p14::after {
	content: '';
	position: absolute;
	bottom: -50px;
	left: 50%;
	z-index: 0;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	margin-right: 500px;
	border-top: 50px solid #EAEFF5;
	border-right: 46vw solid transparent;
	border-left: 46vw solid transparent;
}

.lp_sub_p14 .title {
	background-color: #0085D0;
	color: #fff;
	font-weight: bold;
	max-width: 1146px;
	line-height: 1.5;
	margin: 0 auto;
	font-size: 30px;
	text-align: center;
	border-radius: 50px;
	position: relative;
	padding: 20px 30px 10px;
	transform: translate(0, -50%);
	display: block;
}

.lp_sub_p14 .title::before {
	content: '';
	width: 0;
	height: 0;
	position: absolute;
	bottom: -28px;
	left: 50%;
	transform: translateX(-50%);
	border-top: 30px solid #0085D0;
	border-right: 30px solid transparent;
	border-left: 30px solid transparent;
}

.lp_sub_p14 ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	max-width: 1146px;
	margin: auto;
}

.lp_sub_p14 ul li {
	background-color: #fff;
	border: 2px solid #0085D0;
	width: 340px;
	min-height: 319px;
	border-radius: 10px;
	position: relative;
	margin: 40px 20px 0;
	padding: 30px;
}

.lp_sub_p14 .block-img {
	height: 140px;
	text-align: center;
	margin-bottom: 30px;
}

.lp_sub_p14 li img {
	height: 100%;
}

.lp_sub_p14 li p {
	text-align: center;
	font-weight: bold;
	font-size: 18px;
}

.lp_sub_p14 li p span {
	color: #106EB8;
	font-size: 22px;
}

.lp_sub_p14 .num {
	font-size: 30px;
	color: #0085D0;
	line-height: 70px;
	text-indent: -1rem;
	background-image: url(../img/lp_images/num_bg_left.svg);
	height: 85px;
	width: 85px;
	position: absolute;
	top: -15px;
	left: -15px;
}

.lp_sub_p14 .num span {
	font-size: 30px;
}

@media screen and (max-width: 1280px) {
	.lp_sub_p14 .title {
		width: 95%;
	}

	.lp_sub_p14 ul {
		width: 95%;
	}

	.lp_sub_p14 ul li {
		margin: 40px 2% 0;
	}
}

@media screen and (max-width: 768px) {
	.lp_sub_p14 .title {
		font-size: 25px;
	}
}

/*------------------------
 lp_sub_p15
------------------------*/
.lp_sub_p15 {
	padding: 50px 0 10px;
	overflow: hidden;
}

.lp_sub_p15 h2 {
	text-align: center;
	font-weight: bold;
	font-size: 4.5vw;
	color: #515151;
	margin-bottom: 40px;
}

.lp_sub_p15 h2 span {
	font-size: 70px;
	margin-left: 20px;
}

.lp_sub_p15 .boxWrap {
	position: relative;
	z-index: 1;
	/* overflow: hidden; */
}

.lp_sub_p15 .boxWrap::before {
	content: "";
	background-color: #EAEFF5;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}

.lp_sub_p15 .boxWrap>li {
	width: calc(100% - 40px);
	margin-bottom: 75px;
	margin-left: auto;
	position: relative;
	background-color: #fff;
	/* width: 100%; */
	/* margin-left: auto; */
	border-radius: 100px 0 0 100px;
	border-right: none;
	/* padding: 70px 3vw 50px 10vw; */
	border: 3px solid #0085D0;
	border-right: none;
	position: relative;
}

.lp_sub_p15 .boxWrap>li.even {
	margin-left: 0;
	margin-right: auto;
	border-radius: 0 100px 100px 0;
	border-left: none;
	border-right: 2px solid #0085D0;
	width: calc(100% - 180px);
}

.lp_sub_p15 .boxWrap>li:first-child::before,
.lp_sub_p15 .boxWrap>li:last-child::before {
	content: "";
	width: 120vw;
	height: 50%;
	background-color: #fff;
	position: absolute;
	transform: translate(-50%, 0);
}

.lp_sub_p15 .boxWrap>li:first-child::before {
	top: -3px;
	left: 50%;
	z-index: -1;
}

.lp_sub_p15 .boxWrap>li:last-child::before {
	bottom: -3px;
	left: 50%;
	z-index: -1;
}

.lp_sub_p15 .boxWrap>li .box {
	background-color: #fff;
	width: calc(100% - 140px);
	margin-right: auto;
	border-radius: 100px 0 0 100px;
	padding: 70px 3vw 50px 10vw;
	position: relative;
	z-index: 0;
}

.lp_sub_p15 .boxWrap>li.even .box {
	margin-left: auto;
	margin-right: 0;
	border-radius: 0 100px 100px 0;
	padding: 70px 10vw 50px 3vw;
	width: 100%;
}

.lp_sub_p15 .boxWrap>li .num {
	text-align: center;
	font-size: 50px;
	color: #0085D0;
	line-height: 120px;
	font-weight: bold;
	text-indent: -2.56rem;
	background-image: url(../img/lp_images/num_bg_left.svg);
	height: 148px;
	width: 148px;
	position: absolute;
	background-size: contain;
	background-repeat: no-repeat;
	top: -15px;
	left: -15px;
}

.lp_sub_p15 .boxWrap>li.even .num {
	text-indent: 2.5rem;
	background-image: url(../img/lp_images/num_bg_right.svg);
	left: auto;
	right: -15px;
}

.lp_sub_p15 .boxWrap>li .exp {
	background-color: #0085D0;
	color: white;
	display: inline-block;
	position: absolute;
	top: 0;
	right: 50px;
	font-size: 18px;
	line-height: 50px;
	width: 311px;
	text-align-last: center;
	font-weight: bold;
	border-radius: 0 0 25px 25px;
}

.lp_sub_p15 .boxWrap>li.even .exp {
	left: 50px;
}

.lp_sub_p15 .contents {
	max-width: 1146px;
	margin: auto;
}

.lp_sub_p15 .contents h3 {
	font-weight: bold;
	font-size: 28px;
	line-height: 1.2;
}

.lp_sub_p15 .contents p {
	font-size: 18px;
	margin: 20px 0 0;
}

.lp_sub_p15 .marker {
	background: linear-gradient(transparent 30%, #FCF655 30%);
}

.lp_sub_p15 .contents .movie {
	width: 100%;
	height: auto;
	margin-top: 30px;
	/* padding: 56.25% 0 0 0; */
	position: relative;
}

.lp_sub_p15 .contents .movie iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: solid 1px #d0d0d0;
}

.lp_sub_p15 .htmlBlock {
	width: 100%;
	margin-top: 30px;
	position: relative;
}

.option {
	max-width: 968px;
	display: flex;
	flex-wrap: wrap;
}

.option .option-block {
	background-color: #F7F7F7;
	position: relative;
	border-radius: 50px;
	margin-top: 85px;
	min-height: 143px;
	height: auto;
	display: flex;
	align-items: center;
	padding: 10px 40px 10px 0;
}

.option .option-block .option-image {
	position: absolute;
	bottom: 0;
}

body .option .option-block .option-text {
	font-size: 16px;
	margin: 0 0 0 200px;
}

.option .w50 {
	width: calc(50% - 20px);
}

.option .w100 {
	width: 100%;
}

.option .mr20 {
	margin-right: 20px;
}

.option .ml20 {
	margin-left: 20px;
}

@media screen and (max-width: 1280px) {
	.lp_sub_p15 .boxWrap>li .box {
		padding: 70px 50px 50px 130px;
		width: 100%;
	}

	.lp_sub_p15 .boxWrap>li.even {
		width: calc(100% - 40px);
	}

	.lp_sub_p15 .boxWrap>li.even .box {
		padding: 70px 130px 50px 50px;
		width: 100%;
	}

	.lp_sub_p15 .boxWrap>li .exp,
	.lp_sub_p15 .boxWrap>li.even .exp {
		width: 200px;
		line-height: 35px;
	}

	/* .left {
		margin-left: 20px;
	} */
}

@media screen and (max-width: 1024px) {
	.option br {
		display: none;
	}
}

@media screen and (max-width: 950px) {
	.lp_sub_p15 h2 {
		font-size: 45px;
	}

	.option .w50 {
		width: 100%;
	}

	.option .mr20,
	.option .ml20 {
		margin-left: 0;
		margin-right: 0;
	}
}

@media screen and (max-width: 768px) {
	.lp_sub_p15 .boxWrap>li {
		width: calc(100% - 20px);
		border-radius: 50px 0 0 50px;
	}

	.lp_sub_p15 .boxWrap>li .box {
		padding: 90px 30px 30px 30px;
		border-radius: 50px 0 0 50px;
	}

	.lp_sub_p15 .boxWrap>li.even {
		width: calc(100% - 20px);
		border-radius: 0 50px 50px 0;
	}

	.lp_sub_p15 .boxWrap>li.even .box {
		padding: 90px 30px 30px 30px;
		border-radius: 0 50px 50px 0;
	}

	.lp_sub_p15 .boxWrap>li .num {
		height: 120px;
		width: 120px;
		line-height: 100px;
	}

	.lp_sub_p15 .contents h3 {
		font-size: 20px;
	}

	.lp_sub_p15 .boxWrap>li .contents>h3,
	.lp_sub_p15 .boxWrap>li .contents>p {
		padding-left: 50px;
		padding-right: 0;
	}

	.lp_sub_p15 .boxWrap>li.even .contents>h3,
	.lp_sub_p15 .boxWrap>li.even .contents>p {
		padding-left: 0;
		padding-right: 50px;
	}

	.option .option-block {
		padding: 10px 20px 10px 0;
	}

	.option .option-block .option-image {
		width: 170px;
	}

	.lp_sub_p15 .boxWrap>li .num {
		font-size: 40px;
		text-indent: -1.56rem;
	}
}

@media screen and (max-width: 599px) {
	.option .option-block .option-image {
		width: 40%;
	}

	body .option .option-block .option-text {
		margin: 0 0 0 50%;
	}
}

/*-----------------------
lp_sub_p16 動画埋め込み
-----------------------*/

.lp_sub_p16 .movie {
	width: 100%;
	height: auto;
	margin-top: 30px;
	padding: 56.25% 0 0 0;
	position: relative;
}

.lp_sub_p16 iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: solid 1px #d0d0d0;
}

/*-----------------------
lp_sub_p17 スライダー
-----------------------*/
.lp_sub_p17.slider {
	width: 100%;
	margin: 50px auto 100px;
	z-index: 0;
}

.slick-list {
	padding: 0;
}

.lp_sub_p17 .slide {
	display: block;
	width: 100%;
	height: 40vw;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}

.slider .slide a.slideLink {
	display: block;
	width: 100%;
	height: 100%;
}

.slider .slide a.slideLink:hover {
	background-color: rgba(255, 255, 255, 0.2);
}

.slider .slide iframe {
	position: absolute;
	top: 50%;
	left: 50%;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	transform: translate(-50%, -50%);
	/* pointer-events: none; */
}

.slider a,
.slider img {
	display: block;
	width: 100%;
	height: auto;
	border: solid 1px #f8f8f8;
	box-sizing: border-box;
}

/*ドットナビゲーションの設定*/
.slick-dots {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translate(-50%, 0);
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.slick-dots li {
	margin: 0 10px;
	width: 11px;
}

.slick-dots button {
	appearance: none;
	padding: 0;
	color: transparent;
	outline: none;
	border: none;
	width: 100%;
	height: 11px;
	display: block;
	border-radius: 0;
	background-color: rgba(255, 255, 255, 0.6);
	cursor: pointer;
	border-radius: 100%;
}

/* 矢印ボタン */
.slick-prev {
	left: 20px;
	z-index: 100;
	width: auto;
	height: auto;
}

.slick-next {
	right: 20px;
}

.slick-prev:before,
.slick-next:before {
	color: #303030;
	font-size: 30px;
}

@media screen and (max-width: 599px) {
	.slider {
		height: 144.67vw;
		min-height: 144.67vw;
	}

	.slick-slide {
		height: 144.67vw;
		min-height: 144.67vw;
	}

	.slider .item iframe {
		min-width: 284vw;
		min-height: 160vw;
	}
}


/*-----------------------
汎用クラス
-----------------------*/

.mt40 {
	margin-top: 40px;
}

/* 位置調整用クラス */
.center {
	text-align: center;
}

.left {
	text-align: left;
}

.right {
	text-align-last: right;
}

.b-center {
	margin-right: auto;
	margin-left: auto;
}

.b-left {
	margin-right: auto;
	margin-left: 50px;
}

.b-right {
	margin-left: auto;
}