@charset "utf-8";

:root {
	/* base */
	--cts-gutter: clamp(20px, -2.212rem + 8.91vw, 65px);/*375-768*/
	--cts-width: 1610px;

	/* font */
	--dp-font-jp: "Noto Sans JP", sans-serif;      
	/* Noto Serif JP
	200 to 900
	*/

	/* color */
	--color-white-1: #FFFFFF;
	--color-gray-1: #999999;
	--color-blue-1: #2030FF;
	--color-purple-1: #E1DAED;
	--color-purple-2: #A127D4;
	--color-black-1: #000000;
	--color-black-2: #141515;
}

/* LP共通汎用
____________________*/
body {
	padding-right: 0 !important;
	overflow: visible !important;
}
#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 (max-width: 1280px) {
    .l-header {
        z-index: 10;
    }
}
@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 !important;
		padding-block-end: 10px;
	}
	.bnr_link_win11 {
		width: 100%;
		margin-top: 0;
		text-align: center;
	}
}
.contents__wrap {
	width: 100%;
	background: var(--color-black-1);
	margin-inline: auto;
	font-size: var(--cts-font-size);
	font-family: var(--dp-font-jp);
	letter-spacing: 0.05em;
	color: var(--color-white-1);
}
.contents__wrap img {
	max-width: 100%;
	vertical-align: bottom;
}
.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;
	}
}

/* コンテンツ
____________________*/
::selection {
	color: var(--color-white-1);
	background-color: var(--color-purple-2);
}
.contents__wrap {
	/* margin-bottom: 100px; */
	background: var(--color-purple-1);
	padding-bottom: 0;
	position: relative;
	z-index: 1;
}
.contents__wrap .lp-bg {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	background: url(../../gamepc/img/mongil-stardive/bg-pc.webp) no-repeat left top/100% 100%;
	z-index: -1;
}
.contents__inner {
	width: 100%;
	max-width: var(--cts-width);
	margin-inline: auto;
	padding-inline: var(--cts-gutter);
	box-sizing: border-box;
	position: relative;
}
.ttl-block {
	width: 498.37px;
	height: 93px;
	background: url(../../gamepc/img/mongil-stardive/bg-ttl.webp) no-repeat center center/contain;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-inline: auto;
}
.ttl-block .ttl-h2 {
	color: var(--color-white-1);
	font-size: clamp(37px, -0.652rem + 6.36vw, 90px);
	font-weight: 500;
	line-height: 1;
	margin-bottom: 10px;
}
.btn-link {
    color: var(--color-white-1);
    font-size: clamp(12px, 0.652rem + 0.36vw, 20px);
    font-weight: 700;
    text-align: center;
    line-height: 1;
    width: 100%;
	max-width: 305px;
	padding-block: 20px;
	margin-top: 20px;
    display: block;
    text-decoration: none;
    background: var(--color-purple-2);
    border: none;
    border-radius: 9999px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* ホバー時の効果 */
.btn-link:hover {
    transform: translateY(-2px);
    background-color: var(--color-purple-2);
    filter: drop-shadow(0 5px 15px rgba(125, 22, 224, 0.4));
}

/* 光の筋（グレア効果） */
.btn-link::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.4) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    z-index: 1; /* clip-path内なので正の値を指定 */
    pointer-events: none;
}

.btn-link:hover::before {
    left: 150%;
    transition: all 0.6s ease;
}

/* テキストと矢印の調整 */
.btn-link span {
    position: relative;
    z-index: 2;
    letter-spacing: 0.05em;
}

.btn-link .arrow {
    width: 10px;
    height: 16px;
    background: url(../../gamepc/img/pragmata/arrow.webp) no-repeat center center/contain;
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
}
@media (max-width: 768px) {/*375-768*/
.pc {
	display: none !important;
}
.sp {
	display: block !important;
}
.ttl-block {
	width: 240px;
	height: 40.6px;
}
.ttl-block .ttl-h2 {
	margin-bottom: 3px;
}
.contents__wrap {
	padding-bottom: 0;
}
.contents__wrap .lp-bg {
	background: url(../../gamepc/img/mongil-stardive/bg-sp.webp) no-repeat left top/100% 100%;
}
.btn-link {
	max-width: 240px;
}
.btn-link .arrow {
	width: 7px;
    height: 10px;
	right: 25px;
}
}
/* mv
____________________*/
.contents--mv {
	width: 100%;
	padding: 0;
	position: relative;
	z-index: 1;
	overflow: hidden;
	border-bottom: 3px solid var(--color-brown-1);
}
.contents--mv img {
	width: 100%;
	height: auto;
}
/* intro
____________________*/
.contents--intro {
	width: 100%;
	padding-top: 140px;
	position: relative;
	z-index: 1;
}
.txt-intro {
	font-size: clamp(13px, -0.652rem + 2.36vw, 22px);
	font-weight: 700;
	line-height: 2;
	text-align: center;
}
@media (max-width: 768px) {/*375-768*/
.contents--intro {
	padding-top: 45px;
}
}
/* line-up
____________________*/
.contents--line-up {
	padding-top: 100px;
}
.model-wrap {
	display: flex;
	justify-content: center;
	align-items: stretch;
	flex-wrap: wrap;
	gap: 20px;
	margin-top: 90px;
}
.model-block {
    width: 421px;
    padding: 30px 20px 40px;
    background: var(--color-white-1);
    border: 1px solid var(--color-purple-2);
	border-radius: 20px;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}
.model-block .model-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	box-sizing: border-box;
	position: relative;
	z-index: 2;
}
.model-name {
	color: var(--color-purple-2);
	font-size: clamp(13px, -1.652rem + 4.36vw, 20px);
	font-weight: 900;
	text-align: center;
	line-height: 1.5;
}
.txt-block {
	margin-top: 10px;
}
.spec-list {
    display: grid;
    grid-template-columns: max-content 1fr;
	gap: 5px 25px;
	color: var(--color-purple-2);
    font-size: clamp(11px, -1.652rem + 4.36vw, 17px);
    font-weight: 400;
    line-height: 1.4;
}
.spec-list dt {
	font-weight: 400;
    white-space: nowrap;
    grid-column: 1;
}
.spec-list dd {
    margin: 0;
    grid-column: 2;
}
.model-img {
	width: 100%;
    max-width: 321px;
	margin-inline: auto;
    z-index: 2;
}
.model-price {
	color: var(--color-purple-2);
	font-size: clamp(16px, -0.652rem + 4.36vw, 24px);
	font-weight: 700;
	line-height: 1;
	text-align: center;
	margin-top: 10px;
}
.model-price .tax {
	font-size: clamp(12px, -0.652rem + 4.36vw, 20px);
}
@media (max-width: 768px) {/*375-768*/
	.contents--line-up {
		padding-top: 40px;
	}
	.model-wrap {
		margin-top: 35px;
		gap: 20px;
	}
	.model-block {
		width: 304px;
		padding: 30px 15px 30px;
	}
	.model-block::before {
		width: 72%;
		height: 16px;
		top: -4px;
	}
	.model-block .line {
		width: 19px;
		height: 2px;
	}
	.model-block .line:nth-of-type(1), .model-block .line:nth-of-type(3) {
		left: 10px;
	}
	.model-block .line:nth-of-type(2), .model-block .line:nth-of-type(4) {
		right: 10px;
	}
	.inner-flex {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	.spec-list {
		gap: 5px 0;
	}
	.spec-list dt {
		display: none;
	}
	.spec-list dd {
		grid-column: 1;
	}
	.model-block .btn-link {
		max-width: 236px;
		display: flex;
        justify-content: center;
        align-items: center;
	}
}
/* bonus
____________________*/
.contents--bonus {
	padding-top: 150px;
}
.wallpaper-wrap {
	width: 100%;
	max-width: 896px;
	aspect-ratio: 896 / 608;
	background: url(../../gamepc/img/mongil-stardive/bg-wallpaper.webp) no-repeat center center/100% 100%;
	margin: 100px auto 0;
	padding: 60px 0 35px;
	box-sizing: border-box;
}
.wallpaper-wrap .ttl-h3 {
	font-size: clamp(15px, -0.652rem + 4.36vw, 40px);
	font-weight: 700;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	position: relative;
	z-index: 1;
}
.wallpaper-block {
	width: 100%;
	max-width: 592px;
	margin: 43px auto 0;
	position: relative;
	z-index: 1;
}
.wallpaper-block .line {
	position: absolute;
	z-index: 2;
	width: 93px;
	height: 89px;
	border: 3px solid var(--color-gray-1);
}
.wallpaper-block .line.line:nth-of-type(1) {
	top: 0;
	left: 0;
	border-bottom: none;
	border-right: none;
}
.wallpaper-block .line.line:nth-of-type(2) {
	top: 0;
	right: 0;
	border-bottom: none;
	border-left: none;
}
.wallpaper-block .line.line:nth-of-type(3) {
	bottom: 0;
	left: 0;
	border-top: none;
	border-right: none;
}
.wallpaper-block .line.line:nth-of-type(4) {
	bottom: 0;
	right: 0;
	border-top: none;
	border-left: none;
}
.wallpaper-note {
	font-size: clamp(11px, -0.652rem + 4.36vw, 18px);
	font-weight: 500;
	text-align: center;
	margin-top: 30px;
}
@media screen and (min-width: 769px) and (max-width: 1005px) {
	.wallpaper-wrap {
		width: 100%;
		max-width: 89.1542288557214vw;
		margin: 9.950248756218906vw auto 0;
		padding: 5.970149253731343vw 0 3.482587064676617vw;
		box-sizing: border-box;
	}
	.wallpaper-wrap .ttl-h3 {
		font-size: 3.9800995024875623vw;
		gap: 0.9950248756218906vw;
	}
	.wallpaper-block {
		max-width: 58.90547263681592vw;
		margin: 4.27860696517413vw auto 0;
		position: relative;
		z-index: 1;
	}
	.wallpaper-block .line {
		width: 9.253731343283581vw;
		height: 8.855721393034825vw;
		border: 0.2985074626865672vw solid var(--color-gray-1);
	}
	.wallpaper-note {
		font-size: 1.791044776119403vw;
		font-weight: 500;
		text-align: center;
		margin-top: 2.9850746268656714vw;
	}
}
@media (max-width: 768px) {/*375-768*/
	.contents--bonus {
		padding-top: 55px;
	}
	.wallpaper-wrap {
		aspect-ratio: 304 / 206;
		margin-top: 9.333333333333334vw;
		padding: 8.333333vw 0 6.333333vw;
	}
	.wallpaper-wrap .ttl-h3 {
		font-size: 4vw;
		gap: 1.3333333333333335vw;
	}
	.wallpaper-block {
		margin-top: 4vw;
		max-width: 67.46666666666667vw;
	}
	.wallpaper-block .line {
		width: 10.666666666666668vw;
		height: 10.133333333333333vw;
		border-width: 1px;
	}
	.wallpaper-note {
		font-size: 2.633333333333333vw;
		margin-top: 2.666666666666667vw;
		letter-spacing: 0;
	}
}
/* about
____________________*/
.contents--about {
	padding-top: 140px;
	padding-bottom: 100px;
	margin-top: 250px;
	background: var(--color-black-2);
}
.about-logo {
	width: 100%;
	max-width: 500px;
	margin: 0 auto;
}
.txt-about {
	font-size: clamp(18px, -0.652rem + 4.36vw, 40px);
	font-weight: 700;
	text-align: center;
	line-height: 2;
	margin-top: 80px;
}
.about .btn-link {
	font-size: clamp(13px, 0.652rem + 1.36vw, 26px);
	background: var(--color-purple-2);
	background: linear-gradient(90deg,rgba(243, 94, 169, 1) 0%, rgba(124, 21, 224, 1) 90%, rgba(124, 21, 224, 1) 100%);
	margin: 75px auto 0;
	padding-block: 27px;
	max-width: 700px;
}
.lp-copy {
	color: var(--color-gray-1);
	font-size: clamp(10px, -0.652rem + 4.36vw, 20px);
	font-family: var(--cts-font);
	font-weight: 400 ;
	text-align: center;
	margin-top: 60px;
}
/* modal */
.modal-open {
	cursor: pointer;
	overflow: inherit !important;
}
/* モーダル背景 */
.lp-modal {
    display: none; 
    position: fixed;
    z-index: 10000; /* CMSの他要素に負けないよう高めに設定 */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    cursor: zoom-out;
}

/* 拡大画像 */
.lp-modal-content {
    margin: auto;
    display: block;
    max-width: 90% !important;
    max-height: 90% !important;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: lp-zoom 0.3s ease;
}

@keyframes lp-zoom {
    from { transform: translate(-50%, -50%) scale(0.8); opacity: 0; }
    to { transform: translate(-50%, -50%) scale(1); opacity: 1; }
}

/* ×閉じボタン */
.lp-modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    width: 44px;
    height: 44px;
    cursor: pointer;
    z-index: 10010;
}
.lp-modal-close::before,
.lp-modal-close::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 32px;
    height: 2px;
    background-color: #fff;
}
.lp-modal-close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}
.lp-modal-close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}
.lp-modal-close:hover::before,
.lp-modal-close:hover::after {
    background-color: #ccc;
}
@media (max-width: 768px) {/*375-768*/
	.contents--about {
		padding-top: 65px;
		padding-bottom: 45px;
		margin-top: 135px;
	}
	.about {
		padding-inline: 10px;
	}
	.about-logo {
		max-width: 212px;
	}
	.txt-about {
		margin-top: 30px;
		line-height: 1.8;
	}
	.txt-about:nth-of-type(2) {
		margin-top: 10px;
		line-height: 2;
		letter-spacing: 0.02em;
		text-align: left;
	}
	.about .btn-link {
		line-height: 1.4;
		max-width: 304px;
		padding-block: 18px;
		margin: 50px auto 0;
		box-sizing: border-box;
	}
	.lp-copy {
		margin-top: 45px;
		letter-spacing: 0.01em;
	}
}



/*　アニメーション
____________________*/
.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(-75); }      /* 上から */
.fade-in-bottom { transform: translateY(75px); }    /* 下から */
.fade-in-right { transform: translateX(75px); }     /* 右から */
.fade-in-left { transform: translateX(-75px); }     /* 左から */
.fade-in-zoom-in { transform: scale(0.6); }          /* ズームイン：最初は小さく表示される */
.fade-in-zoom-out { transform: scale(1.1); }         /* ズームアウト：最初は大きく表示される */
.fade-in.is-visible { opacity: 1; transform: translate(0, 0); } /* 元の位置に戻る */