@charset "utf-8";

:root {
	/* base */
	--cts-gutter: clamp(33px, -2.212rem + 8.91vw, 65px);/*375-768*/
	--cts-width: 1404px;

	/* font */
	/* --dp-font-jp: "yu-gothic-pr6n", sans-serif; */
	--dp-font-jp: "Noto Sans JP", sans-serif;
	--cts-font: "shippori-mincho", sans-serif;
	--cts-font2: "montserrat", sans-serif;

	--dp-h2-size: clamp(39px,calc(1.023rem + 3.97vw),60px);
	--dp-h3-size: clamp(23px,calc(.955rem + .73vw),30px);
	--dp-h4-size: clamp(17px,calc(.886rem + .48vw),20px);
	--dp-p-l-size: clamp(13px, 0.806rem + 0.3vw, 15px);/* 本文 Large */
	--dp-p-note-size: clamp(10px,calc(.597rem + .12vw),11px);/* 本文 Notes */
	--dp-price-s-size: clamp(23px,calc(.886rem + .48vw),24px);/* 価格 Small */
	--dp-price-tax-s-size: clamp(18px,calc(.693rem + .24vw),18px);/* 円・税 Small */

	--cts-font-size: clamp(12px, 0.636rem + 0.48vw, 16px);
	--cts-font-ls: .025em;/*letter-spacing*/

	/* color */
	--color-white1: #FFFFFF;
	--color-red1: #AC003F;
	--color-purple1: #C3BED2;
	--color-purple2: #ACA7BB;
	--color-black1: #000000;
}



/* LP共通汎用
____________________*/
#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(--color-purple2);
	font-size: var(--cts-font-size);
	font-family: var(--dp-font-jp);
	font-weight: 400;
	color: var(--cts-color1);
	overflow: hidden;
}
.contents__wrap img {
	max-width: 100%;
	vertical-align: bottom;
}
.contents {
	margin-top: 120px;
	margin-bottom: 120px;
}
.pc {
	display: block !important;
}
.sp {
	display: none !important;
}
.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);
	min-height: 43px;
	background: var(--color-purple2);
	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%;
	}
}
@keyframes link-shine {
  0% {
    left: -168%;
  }
  8% {
    left: -18%;
  }
  16% {
    left: 168%;
  }
  100% {
    left: 168%;
  }
}
.link__inner::before {
  animation: link-shine 5s ease-in-out infinite;
}
.link__inner.shine::before {
  animation: link-shine 5s ease-in-out infinite;
}

.link--over::before {
  animation: link-over ease-out .4s both;
}

.link--out::before {
  animation: link-out ease-in .4s both;
}
/* コンテンツ
____________________*/
::selection {
	color: var(--color-red1);
	background-color: #F6F6F6;
}
.contents__wrap {
	padding-block-end: 0;
}
.contents__wrap .contents {
	border-bottom: 2px solid var(--color-purple1);
}
.contents__wrap .contents:last-child {
	border: none;
}
.contents__wrap .link__inner {
	color: var(--cts-bg);
	font-size: clamp(15px, 0.545rem + 1.61vw, 17px);
	font-weight: 700;
	background: var(--cts-color);
	border-radius: 50px;
	padding-block:0;
    padding-inline: 0;
	max-width: 255px;
}
.contents__wrap .link__inner .txt {
	position: relative;
	padding-block: clamp(5px,0.236rem + 1.38vw,20px);
	width: 100%;
	height: 100%;
}
.ttl-h2 {
	color: var(--color-red1);
	font-size: clamp(30px, -0.545rem + 4.61vw, 60px);
	font-family: var(--cts-font2);
	font-weight: 600;
	letter-spacing: 0.05em;
	line-height: 1.6;
	text-align: center;
	width: fit-content;
	padding-bottom: 30px;
	margin: 0 auto;
	position: relative;
}
.ttl-h2::after {
	content: "";
	width: 22px;
	height: 2px;
	background: var(--color-red1);
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%,-50%);
}
.ttl-h2 .jp {
	font-size: clamp(28px, -0.545rem + 4.61vw, 55px);
	font-family: var(--dp-font-jp);
}
.ttl-h2 .a-l {
	width: 97px;
	position: absolute;
    top: -70px;
    left: -45px;
}
.link-block {
	width: 100%;
	max-width: 758px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 65px;
}
.link-block .link__inner {
	color: var(--color-white1);
	font-size: clamp(13px, -2.545rem + 4.61vw, 26px);
	font-weight: 700;
    text-align: center;
	letter-spacing: 0.1em;
	line-height: 1.6;
	background: var(--color-red1);
	border-radius: 10px;
	max-width: inherit;
}
.link-block .link__inner::after {
    right: 24px;
    width: 10px;
    height: 10px;
    border-right: 3px solid;
    border-bottom: 3px solid;
    border-color: #fff;
}
.wine-red {
	color: #AC003F;
}
/* mv
____________________*/
.contents--mv {
	width: 100%;
	padding: 24px 0 35px;
	position: relative;
	z-index: 2;
	margin-top: 0;
	margin-bottom: 0;
}
.ttl-wrap {
	width: fit-content;
	margin: 0 auto;
}
.main-ttl {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	text-align: center;
}
.main-logo {
	width: 100%;
	max-width: 278px;
}
.main-ttl-inner {
	color: #AC003F;
	font-size: clamp(30px, 0.545rem + 3.61vw, 50px);
	font-weight: 700;
	letter-spacing: 0.1em;
	display: inline-block;
	text-align: center;
}
.sub-ttl-wrap {
	text-align: center;
	width: 100%;
	padding: 8px 0;
	margin: 10px auto 0;
	border-top: 2px solid var(--color-purple1);
	border-bottom: 2px solid var(--color-purple1);
}
.sub-ttl {
	color: var(--color-white1);
	font-size: clamp(15px, -0.545rem + 3.61vw, 25px);
	font-weight: 300;
	letter-spacing: 0.1em;
	display: inline-block;
}
.kuzuha-wrap {
	width: 100%;
	max-width: 567px;
	margin: 20px auto 0;
	padding-left: 4.82%;
	position: relative;
	z-index: 1;
}
@keyframes pendulum-swing {
    0% {
        transform: rotate(-8deg);
    }
    50% {
        transform: rotate(8deg);
    }
    100% {
        transform: rotate(-8deg);
    }
}
.kuzuha-wrap .kuzuha-img-block {
    max-width: 567px;
    position: relative;
    animation: pendulum-swing 3.5s ease-in-out infinite;
    transform-origin: 50% 0%; /* 上端中央を基準に回転 */
}
.kuzuha-wrap .kuzuha-img-block .kirakira-1 {
	width: 80px;
	position: absolute;
	top: 100px;
    right: 130px;
}
.kuzuha-wrap .kuzuha-img-block .kirakira-2 {
	width: 66px;
	position: absolute;
    top: 195px;
    right: 180px;
}

@keyframes kirakira-blink {
    0%   { opacity: 1; }
    20%  { opacity: 0.3; }
    40%  { opacity: 1; }
    100% { opacity: 1; }
}

.kuzuha-wrap .kirakira-1 {
    width: 80px;
    position: absolute;
    top: 100px;
    right: 130px;
    animation: kirakira-blink 1.4s infinite;
}
.kuzuha-wrap .kirakira-2 {
    width: 66px;
    position: absolute;
    top: 195px;
    right: 180px;
    animation: kirakira-blink 1.4s infinite;
    animation-delay: 1s;
}
/* benefit
____________________*/
.contents--benefit {
	padding: 100px 0;
	margin-block: 0;
}
.benefit-ttl-1 {
	color: var(--color-white1);
	font-size: clamp(25px, -2.545rem + 6.61vw, 70px);
	font-weight: 700;
	letter-spacing: 0.1em;
	text-align: center;
	display: flex;
    justify-content: center;
    align-items: center;
	gap: 10px;
	margin-top: 20px;
}
.benefit-ttl-2 {
	color: var(--color-white1);
	font-size: clamp(16px, -2.245rem + 6.61vw, 36px);
	font-weight: 700;
	letter-spacing: 0.1em;
	text-align: center;
	display: flex;
    justify-content: center;
    align-items: center;
	gap: 10px;
}
.number {
	color: var(--color-purple2);
	font-size: clamp(25px, -2.145rem + 7.61vw, 57px);
	font-weight: 700;
	letter-spacing: 0;
    line-height: 1;
	vertical-align: middle;
	width: 92px;
	height: 92px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--color-red1);
	border-radius: 50%;
}
.benefit-ttl-2 .number {
	color: var(--color-purple2);
	font-size: clamp(15px, -2.545rem + 6.61vw, 37px);
	font-weight: 700;
	letter-spacing: 0;
    line-height: 1;
	vertical-align: middle;
	width: 58px;
	height: 58px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--color-red1);
	border-radius: 50%;
}
.txt-image-1 {
	width: 100%;
	max-width: 888px;
	margin: 45px auto 0;
}
.benefit .link-block {
	position: relative;
	z-index: 1;
	margin-top: 60px;
}
.benefit .link__inner {
	font-size: clamp(16px, -1.545rem + 3.61vw, 35px);
	border: none;
}
.benefit .link__inner::after {
	content: none;
}
.benefit .link__inner .txt {
	padding-block: clamp(28px, -0.836rem + 4.38vw, 56px);
}
.benefit .link__inner .arrow-2 {
	width: 95px;
	height: 95px;
	background: url(../../gamepc/img/kuzuha/icon-play.webp) no-repeat center center/contain;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(-50%,-50%);
}
.benefit-list {
	width: 100%;
    max-width: 800px;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	margin: 90px auto 0;
}
.benefit-list-item {
	width: 30%;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.benefit-list-item:nth-of-type(2) {
	width: 40%;
	border-left: 2px solid var(--color-purple1);
	border-right: 2px solid var(--color-purple1);
}
.benefit-list .number {
	font-size: clamp(15px, -5.945rem + 8.61vw, 37px);
	width: 57px;
	height: 57px;
}
.txt-image-2 {
    width: 100%;
    max-width: 215px;
    margin: 10px auto 0;
}
.txt-image-3 {
    width: 100%;
    max-width: 252px;
    margin: 10px auto 0;
}
.txt-image-4 {
    width: 100%;
    max-width: 233px;
    margin: 10px auto 0;
}
.benefit-txt {
	color: var(--color-black1);
    font-size: clamp(15px, -0.545rem + 3.61vw, 26px);
    font-weight: 400;
    letter-spacing: 0.04em;
    line-height: 2.2;
    text-align: center;
    margin-top: 30px;
}
.original-box-wrap {
	width: fit-content;
	margin: 75px auto 0;
}
.original-box-block {
	width: 100%;
	max-width: 197px;
	margin: 35px auto 0;
	position: relative;
}
.original-box-block .a-l-4 {
    width: 100%;
    max-width: 95px;
    position: absolute;
    top: -10px;
    right: -95px;
}
.txt-image-5 {
	width: 100%;
	max-width: 470px;
	margin: 95px auto 0;
}
/* mp3player */
.player-block {
	width: 100%;
	max-width: 350px;
	margin: 50px auto 0;
	position: relative;
}
.player {
	display: flex;
	align-items: center;
	gap: 10px;
	background: #F1F3F4;
	padding: 10px 20px;
	margin: 10px 0 0;
	border-radius: 9999px;
	box-sizing: border-box;
}
.player button {
	font-family:"Noto Sans JP", sans-serif;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 0;
	border: none;
	background: none;
	font-size: 24px;
	cursor: pointer;
}
.player .playPauseBtn {
	font-size: 13px;
	line-height: 1;
	width: 30px;
	height: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	flex: none;
}
.player .playPauseBtn:hover {
	background: #e0e0e0;
}
.player input[type="range"] {
	width: 100%;
	height: 1px;
	appearance: auto;
	background: inherit;
	accent-color: #484848;
}
.player input[type="range"]::-webkit-slider-thumb {
	width: 8px;
	height: 8px;
}
.player .currentTime, .duration {
	font-size: 14px;
}
.player .volumeIcon {
	width: 20px;
}
.voice__note, .buy__note {
	font-size: clamp(9px, 0.005rem + 1.61vw, 12px);
	font-weight: 500;
	margin-top: 10px;
	text-align: center;
}
.benefit .player-block .a-l-2 {
    width: 30px;
    position: absolute;
    top: -25px;
    right: -40px;
    z-index: 1;
}
.benefit .player-block .a-l-3 {
	width: 83px;
    position: absolute;
    top: 65px;
    left: -80px;
    z-index: 1;
}
/* links
____________________*/
.contents--links {
	margin-top: 0;
	margin-bottom: 0;
	padding-top: 115px;
	padding-bottom: 115px;
}
.links-txt {
	color: var(--color-black1);
	font-size: clamp(20px, -0.545rem + 4.61vw, 48px);
	font-weight: 700;
	letter-spacing: 0.1em;
	text-align: center;
	line-height: 1;
	position: relative;
}
/* movie
____________________*/
.contents--movie {
	margin-top: 0;
	margin-bottom: 0;
	padding-top: 115px;
	padding-bottom: 115px;
}
.movie-wrap {
	width: 100%;
	max-width: 758px;
	aspect-ratio: 16 / 9;
	margin: 45px auto 0;
}
.movie-wrap iframe {
	width: 100%;
	height: 100%;
}
/* profile
____________________*/
.contents--profile {
	margin-top: 0;
	margin-bottom: 0;
	padding-top: 115px;
	padding-bottom: 140px;
}
.profile-txt {
	color: var(--color-black1);
	font-size: clamp(15px, -0.545rem + 3.61vw, 26px);
	font-weight: 400;
	letter-spacing: 0.1em;
	line-height: 2.2;
	text-align: center;
	margin-top: 30px;
}
.txt-image-6 {
	width: 100%;
	max-width: 850px;
	margin: 40px auto 0;
}
.sns-list {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 63px;
	margin: 100px auto 0;
}
.sns-icon a {
	width: 148px;
	display: block;
	transition: transform 0.3s;
}
.sns-icon a:hover {
	transform: scale(1.05);
}
.lp-copy {
	color: var(--color-black1);
	font-size: clamp(10px, -0.545rem + 3.61vw, 20px);
	font-weight: 400;
	letter-spacing: 0.05em;
	line-height: 1;
	text-align: center;
	margin-top: 140px;
}
@media (max-width: 768px) {/*375-768*/
	.pc {
		display: none !important;
	}
	.sp {
		display: block !important;
	}
/* コンテンツ
____________________*/
.contents__wrap .contents {
	margin-top: 0;
	margin-bottom: 0;
	padding-top: 45px;
	padding-bottom: 45px;
}
.ttl-h2 {
	padding-bottom: 20px;
}
.ttl-h2::after {
	width: 10px;
	height: 1px;
}
/* mv
____________________*/
.contents--mv {
	padding-top: 15px;
	padding-bottom: 30px;
}
.main-logo {
	max-width: 173px;
}
.kuzuha-wrap {
	max-width: 252px;
}
.kuzuha-wrap .kuzuha-img-block {
	max-width: 252px;
}
.kuzuha-wrap .kuzuha-img-block .kirakira-1 {
	width: 40px;
	top: 40px;
    right: 55px;
}
.kuzuha-wrap .kuzuha-img-block .kirakira-2 {
	width: 33px;
	top: 85px;
    right: 80px;
}
/* benefit
____________________*/
.ttl-h2 .a-l {
	width: 52px;
	top: -35px;
    left: -25px;
}
.benefit-ttl-1 {
	letter-spacing: 0.05em;
	gap: 5px;
}
.benefit-txt {
	margin-top: 25px;
}
.number {
	width: 41px;
	height: 41px;
}
.txt-image-1 {
	max-width: 296px;
	margin: 30px auto 0;
}
.benefit .link-block {
	max-width: 309px;
	margin-top: 35px;
}
.benefit .link__inner .arrow-2 {
	width: 38px;
    height: 38px;
}
.benefit .player-block .a-l-2 {
	width: 25px;
	top: -36px;
	right: -15px;
	transform: rotate(-25deg);
}
.benefit .player-block .a-l-3 {
	display: none;
}
.benefit-list {
	max-width: 309px;
	margin-top: 40px;
	position: relative;
}
.benefit-list-item {
	position: relative;
	width: calc(55% / 2);
	height: 50px;
}
.benefit-list-item:nth-of-type(2) {
	width: 45%;
}
.benefit-list .number {
	width: 23px;
	height: 23px;
}
.benefit-list-item:nth-of-type(1) .txt-image-2 {
	width: 101px;
	position: absolute;
	left: 0;
	top: 15px;
	z-index: +1;
}
.benefit-list-item:nth-of-type(2) .txt-image-3 {
	width: 118px;
	position: absolute;
	left: 10px;
	top: 15px;
}
.benefit-list-item:nth-of-type(3) .txt-image-4 {
	width: 107px;
	position: absolute;
	left: -10px;
	top: 15px;
}
.benefit-ttl-2 .number {
	width: 23px;
	height: 23px;
}
.txt-image-5 {
	max-width: 188px;
	margin-top: 45px;
}
.original-box-wrap {
	margin-top: 35px;
}
.original-box-block {
	max-width: 123px;
}
.original-box-block .a-l-4 {
	width: 53px;
	top: -10px;
    right: -45px;
}
/* links
____________________*/
.link-block {
	max-width: 309px;
	margin-top: 0;
	gap: 24px;
}
.link-block .link__inner {
	border-radius: 5px;
}
.link-block .link__inner::after {
    width: 7px;
    height: 7px;
    border-right: 2px solid;
    border-bottom: 2px solid;
}
/* movie
____________________*/
.movie-wrap {
	max-width: 480px;
	margin-top: 20px;
}
/* profile
____________________*/
.contents--profile {
	padding-bottom: 60px;
}
.profile-txt {
	text-align: left;
	line-height: 2;
}
.txt-image-6 {
	max-width: 309px;
	margin-top: 20px;
}
.sns-list {
	margin-top: 60px;
	gap: 37px;
}
.sns-icon a {
	width: 88px;
}
.lp-copy {
	margin-top: 60px;
}
}
@media (max-width: 479px) {
	.contents--mv .pc {
		display: none;
	}
	.contents--mv .sp {
		display: block;
	}
}

/*　アニメーション
____________________*/
.fade-in { opacity: 0; transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in-center { transform: translate(0, 0); }      /* 位置変更なし */
.fade-in-top { transform: translateY(-100px); }      /* 上から */
.fade-in-bottom { transform: translateY(100px); }    /* 下から */
.fade-in-right { transform: translateX(100px); }     /* 右から */
.fade-in-left { transform: translateX(-100px); }     /* 左から */
.fade-in-zoom-in { transform: scale(0.2); }          /* ズームイン：最初は小さく表示される */
.fade-in-zoom-out { transform: scale(1.6); }         /* ズームアウト：最初は大きく表示される */
.fade-in.is-visible { opacity: 1; transform: translate(0, 0); } /* 元の位置に戻る */
