@charset "utf-8";

:root {
	/* base */
	--cts-gutter: clamp(20px, -0.212rem + 5.91vw, 65px);/*375-768*/
	--cts-width: 1410px;

	/* font */
	--dp-font-jp: "Noto Sans JP", sans-serif;
	/* Noto Sans JP
	Noto Sans JP Thin 100
	Noto Sans JP Light 300
	Noto Sans JP Regular 400
	Noto Sans JP Medium 500
	Noto Sans JP Bold 600
	*/

	--cts-font-04: 'Zen Kaku Gothic New', sans-serif;
	/* Zen Kaku Gothic New
	Zen Kaku Gothic New Bold 700
	*/

	--dp-h1-size: clamp(24px,calc(1.159rem + 1.45vw),36px);
	--dp-h2-size: clamp(20px,calc(1.023rem + .97vw),28px);
	--dp-h3-size: clamp(18px,calc(.955rem + .73vw),24px);
	--dp-h4-size: clamp(16px,calc(.886rem + .48vw),20px);
	--dp-p-l-size: clamp(14px, 0.806rem + 0.3vw, 16px);/* 本文 Large */
	--dp-p-note-size: clamp(10px,calc(.597rem + .12vw),11px);/* 本文 Notes */
	--dp-price-s-size: clamp(16px,calc(.886rem + .48vw),20px);/* 価格 Small */
	--dp-price-tax-s-size: clamp(12px,calc(.693rem + .24vw),14px);/* 円・税 Small */

	--cts-font-size: clamp(12px, 0.636rem + 0.48vw, 16px);
	--cts-font-ls: .025em;/*letter-spacing*/

	/* color */
	--dp-color: #fff;
	--cts-bg: #000;
	--cts-bg2: #eafe51;
	--cts-bg3: #08def8;
}


/* LP共通汎用
____________________*/
* {
	margin: 0;
	padding: 0;
}
img {
	vertical-align: bottom;
}
#container a, #container a span {
    color: inherit;
    text-decoration: none;
}
.pagetop {
	display: none;	
}
#pagetop {
	display: none;
	position: fixed;
	bottom: 30px;
	right: 55px;
}
#pagetop a {
	color: #fff;
	background-color: #333;
	border-radius: 5px;
	display: block;
	font-size: 12px;
	line-height: 1.5em;
	padding: 5px 10px;
	text-align: center;
	text-decoration: none;
}
figure {
	margin: 0;
	text-align: center;
}
img {
	image-rendering: -webkit-optimize-contrast;
}
.l-header {
    width: 100%;
    background: #fff;
    position: relative;
}
.c-breadcrumb--gray {
	display: flex;
	align-items: center;
}
.bnr_link_win11_wrap {
    margin: 0 auto;
}
.bnr_link_win11 img {
    transition: opacity 0.3s;
    width: 300px;
}
.bnr_link_win11 img:hover {
	opacity: 0.75;
}
.BreadcrumbList_wrap {
	background: #fff;
	position: relative;
    z-index: 2;
}
.footer-wrap {
    background: #fff;
    position: relative;
    z-index: 2;
}
@media screen and (min-width: 768px), print and (min-width: 768px) {
	.c-breadcrumb__list.u-pc-width,
	.bnr_link_win11_wrap.u-pc-width {
		padding-inline: 30px;
	}
	.bnr_link_win11_wrap.u-pc-width {
		width: auto;
	}
}
@media screen and (max-width: 1000px) {
	.c-breadcrumb--gray {
		display: inherit;
	}
	.bnr_link_win11_wrap {
		width: 100%;
		margin: 10px auto 0;
		padding-block-end: 10px;
	}
	.bnr_link_win11 {
		width: 100%;
		margin-top: 0;
		text-align: center;
	}
}
.contents__wrap {
	width: 100%;
	margin-inline: auto;
	/* background: var(--cts-bg); */
	font-size: var(--cts-font-size);
	font-family: var(--dp-font-jp);
	color: #fff;
	overflow: hidden;
}
.contents__wrap img {
	max-width: 100%;
}
.contents {
	margin-top: 120px;
	margin-bottom: 120px;
}
.pc {
	display: block;
}
.sp {
	display: none;
}
.flash:hover {
	animation-name: hover-flash;
	animation-duration: 1s;
	opacity: .85;
}
@keyframes hover-flash {
	0% {
		opacity: .3;
	}
	100% {
		opacity: .85;
	}
}
.contents__inner {
	width: 100%;
	max-width: var(--cts-width);
	margin-inline: auto;
	padding-inline: var(--cts-gutter);
	box-sizing: border-box;
}
.contents__wrap .link__inner {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	padding-block: clamp(5px,0.236rem + 1.38vw,12px);
	padding-inline: clamp(25px,0.737rem + 2vw,40px);
	margin-top: 10px;
	min-height: 50px;
	background: var(--dp-color);
	font-size: clamp(15px, 0.545rem + 1.61vw, 18px);
	font-weight: 500;
	color: #fff;
	text-decoration: none;
	letter-spacing: var(--cts-font-ls);
	box-sizing: border-box;
	overflow: hidden;
	z-index: 1;
	border-radius: 4px;
	width: 100%;
}
.link__inner::before {
	position: absolute;
	content: "";
	width: 150%;
	height: 100%;
	top: 0;
	left: -168%;
	background: #fff;
	transform: skewX(-18deg);
	opacity: .3;
	z-index: -1;
}
.link__inner::after {
	content: "";
	position: absolute;
	top: calc(50% - 5px);
    right: 24px;
    width: 9px;
    height: 9px;
    border-right: 1px solid;
    border-bottom: 1px solid;
	border-color: #fff;
	transform: rotate(-45deg);
}
.link--over::before {
	animation: link-over ease-out .4s both;
}
.link--out::before {
	animation: link-out ease-in .4s both;
}
@keyframes link-over {
	0% {
		left: -168%;
	}
	100% {
		left: -18%;
	}
}
@keyframes link-out {
	0% {
		left: -18%;
	}
	100% {
		left: 168%;
	}
}
/* コンテンツ
____________________*/
.contents__wrap {
	position: relative;
    z-index: 1;
    padding: 0 0 70px;
    margin: 0 0 100px;
}
.contents__wrap::after {
	content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background: var(--cts-bg);
    width: 100%;
    height: 100%;
    opacity: 1;
}
.ttl-set {
	margin-bottom: 80px;
	overflow: hidden;
}
.h1--ttl {
	margin: 0;
}
.h2--ttl {
    font-size: clamp(40px, 0.545rem + 3.61vw, 60px);
    text-align: center;
    line-height: 1;
}
.kv-swiper .swiper-slide {
	width: 50% !important;
}
.detail {
	margin-top: 60px;
}
.step_wrap {
    border: 10px solid var(--cts-bg2);
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
}
.step_wrap:nth-of-type(1) {
	margin-bottom: 35px;
}
.step_wrap:nth-of-type(1)::before {
    content: "";
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    margin-left: -30px;
    border: 30px solid transparent;
    border-top: 35px solid var(--cts-bg2);
}
.step_wrap .step_inner_left {
    background: var(--cts-bg2);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 9.227vw;
    padding: 22.5px 0;
}
.step_inner_left--txt {
	color: var(--cts-bg);
    font-family: "DM Serif Display", serif;
    font-size: clamp(20px, 0.325rem + 3.61vw, 30px);
    line-height: 1;
	letter-spacing: 2px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.step_inner_left--txt .step_number {
    font-size: clamp(50px, 0.325rem + 6.61vw, 100px);
}
.step_wrap .step_inner_right {
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 22.5px;
}
.day-block {
	width: 100%;
	margin-top: 30px;
}
.day-block .h3--ttl {
	color: var(--cts-bg);
	font-size: clamp(16px, 0.025rem + 3.61vw, 20px);
    font-weight: 700;
    line-height: 1.5;
	text-align: center;
	padding: 10px;
}
.day-block:nth-of-type(1) .h3--ttl {
	background: var(--cts-bg3);
}
.day-block:nth-of-type(2) .h3--ttl {
	background: var(--cts-bg2);
}
.txt_1 {
    font-size: clamp(16px, 0.125rem + 3.61vw, 20px);
    line-height: 1.5;
}
.x_list {
    font-size: clamp(14px, 0.025rem + 3.61vw, 30px);
    font-weight: 500;
    line-height: 1.5;
}
.txt_2 {
    font-size: clamp(14px, 0.025rem + 3.61vw, 30px);
    font-weight: 500;
    line-height: 1.5;
}
.text_link {
	color: var(--dp-color);
	text-decoration: underline;
	word-break: break-all;
}
.text_link:hover {
	text-decoration: none;
}
.h3--ttl + .txt_2 {
	text-align: center;
	margin-top: 20px;
}
.txt_comp {
    font-size: clamp(26px, 0.025rem + 3.61vw, 44px);
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
    display: block;
    margin: 65px auto 75px;
}
.note_wrap {
    background: rgba(255, 255, 255, 0.3);
    padding: 40px 23px;
    box-sizing: border-box;
}
.note_list {
    margin: 40px 0 0;
}
.note_list li {
    font-size: clamp(16px, 0.125rem + 3.61vw, 18px);
    line-height: 1.5;
    letter-spacing: 1.5px;
    text-indent: -1em;
    margin-left: 1em;
    margin-top: 0.5em;
}
.swiper {
	width: 100%;
	margin: 65px auto 0;
}
.swiper-wrapper {
	width: 100%;
}
.swiper-slide {
	width: 100%;
	height: 100%;
	text-align: center;
}
.swiper-button-next:after, .swiper-button-prev:after {
	color: var(--cts-bg2);
}
.swiper-button-prev, .swiper-rtl .swiper-button-next {
    left: var(--swiper-navigation-sides-offset, 100px);
    right: auto;
}
.swiper-button-next, .swiper-rtl .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset, 100px);
    left: auto;
}
@media (max-width: 768px) {/*375-768*/
	.pc {
		display: none;
	}
	.contents--mv .pc {
		display: block;
	}
	.sp {
		display: block;
	}
	.contents--mv .sp {
		display: none;
	}
	/* コンテンツ
	____________________*/
	.contents__wrap {
		padding: 0 0 50px;
	}
	.ttl-set {
		margin-bottom: 40px;
	}
	.kv-swiper .swiper-slide {
	width: 100% !important;
	}
	.contents__inner {
		padding-inline: 0;
	}
	.step_wrap {
		flex-direction: column;
		border: 5px solid var(--cts-bg2);
	}
	.detail {
		margin-top: 30px;
		padding-inline: var(--cts-gutter);
	}
	.step_wrap:nth-of-type(1) {
		margin-bottom: 25px;
	}
	.step_wrap:nth-of-type(1)::before {
		top: calc(100% + 5px);
		margin-left: -20px;
		border: 20px solid transparent;
		border-top: 25px solid var(--cts-bg2);
	}
	.step_wrap .step_inner_left {
		width: 100%;
		box-sizing: border-box;
		padding: 0;
	}
	.step_wrap .step_inner_right {
		margin-left: 0;
	}
	.day-block {
    margin-top: 20px;
	}
	.day-block .h3--ttl {
		padding: 5px;
	}
	.step_inner_left--txt {
		flex-direction: row;
		align-items: baseline;
	}
	.h3--ttl + .txt_2 {
		margin-top: 15px;
	}
	.txt_comp {
		padding-inline: var(--cts-gutter);
	}
	.note_wrap {
		padding: 20px 18px;
		margin-inline: var(--cts-gutter);
	}
	.note_list {
		margin: 20px 0 0;
	}
	.swiper {
		margin: 30px auto 0;
		padding: 0 var(--cts-gutter) 3vw;
		box-sizing: border-box;
	}
	.btn-wrap {
		position: relative;
		margin: 6vw 0 0;
	}
	.swiper-button-next, .swiper-button-prev {
		top: var(--swiper-navigation-top-offset, 50%);
	}
	.swiper-button-next, .swiper-rtl .swiper-button-prev {
		right: var(--swiper-navigation-sides-offset, 40%);
		left: auto;
	}
	.swiper-button-prev, .swiper-rtl .swiper-button-next {
		left: var(--swiper-navigation-sides-offset, 40%);
		right: auto;
	}
	.swiper-button-next:after, .swiper-button-prev:after {
		font-size: 20px;
	}
	}