@charset "utf-8";

:root {
	/* base */
	--cts-gutter: clamp(32px, -0.212rem + 8.91vw, 65px);/*375-768*/
	--cts-width: 1180px;

	/* font */
	--dp-font-jp: "Noto Sans JP", sans-serif;
	/* <weight>: Use a value from 100 to 900 */

	--cts-font: "Outfit", sans-serif;
	/* <weight>: Use a value from 100 to 900 */

	--cts-font2: "Noto Serif JP", serif;
	/* <weight>: Use a value from 200 to 900 */

	--dp-h2-size: clamp(45px,calc(1.023rem + 3.97vw),75px);
	--dp-h3-size: clamp(15px,calc(.955rem + .73vw),22px);
	--dp-h4-size: clamp(1px,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 */
	--cts-white1: #FFFFFF;
	--cts-gray1:  #E6E6E6;
	--cts-gray2: #4D4D4D;
	--cts-gray3: #707070;
	--cts-blue1: #92E9FB;
	--cts-navy1: #00004C;
	--cts-black1: #000000;
	--cts-black2: #0F0F0F;

}

/* 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 {
	vertical-align: bottom;
	image-rendering: -webkit-optimize-contrast;
}
.l-header {
    width: 100%;
	position: relative;
    background: #fff;
}
.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-color9);
	font-size: var(--cts-font-size);
	font-family: var(--dp-font-jp);
	color: var(--cts-black2);
	/* overflow: hidden; */
}
.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;
	}
}
.contents__inner {
	width: 100%;
	max-width: var(--cts-width);
	margin-inline: auto;
	padding-inline: var(--cts-gutter);
	box-sizing: border-box;
	position: relative;
}
/* コンテンツ
____________________*/
::selection {
	color: var(--cts-navy1);
	background-color: var(--cts-white1);
}
.contents__wrap {
	padding-block-end: 0;
	position: relative;
	background: url(../../gamepc/img/ul9c-r59-8a/bg.webp) no-repeat center top/cover fixed;
}
.btn-link {
	color: var(--cts-gray1);
	font-size: 15px;
	font-weight: bold;
	background: transparent;
	width: 100%;
	max-width: 350px;
	height: 70px;
	text-align: center;
	line-height: 70px;
	border: 1px solid var(--cts-gray1);
	position: relative;
	z-index: 1;
	display: block;
	overflow: hidden;
	transition: .3s;
	margin: 35px auto 0;
}
.btn-link::before,
.btn-link::after {
	content: "";
	width: 120%;
	position: absolute;
	top: 0;
	z-index: -1;
	transition: transform ease .3s;
}
.btn-link::before {
	right: 0;
	border-right: 70px solid transparent;
	border-bottom: 70px solid var(--cts-gray1);
	transform: translateX(-100%);
}
.btn-link::after {
	left: 0;
	border-left: 70px solid transparent;
	border-top: 70px solid var(--cts-gray1);
	transform: translateX(100%);
}
.btn-link:hover {
	color: var(--cts-navy1);
}
.btn-link:hover::before {
	transform: translateX(-33%);
}
.btn-link:hover::after {
	transform: translateX(33%);
}
/* mv
____________________*/
.contents--mv {
	width: 100%;
	min-height: 1222px;
	background: var(--cts-black1);
	padding-bottom: 150px;
	position: relative;
	z-index: 2;
}
.contents--mv img {
	width: 100%;
	padding: 0;
	position: relative;
	z-index: 1;
}
.contents--mv .top-read {
	color: var(--cts-white1);
	font-size: clamp(13px, 0.545rem + 1.61vw, 24px);
	font-family: var(--cts-font2);
	line-height: 2.2;
	letter-spacing: 0.05em;
	text-align: center;
	width: 100%;
	position: absolute;
	bottom: 100px;
	left: 50%;
	transform: translate(-50%,-50%);
	z-index: 2;
}
.contents--mv .scrolldown1 {
    position: absolute;
	bottom: 156px;
    left: 50%;
    transform: translateX(-50%);
    color: #eee;
    font-size: 0.7rem;
    letter-spacing: 0.05em;
    padding-bottom: 10px;
}
.contents--mv .scrolldown1::after {
    content: "";
    height: 156px;
    width: 1px;
    background: rgb(2,152,181);
	background: linear-gradient(0deg, rgba(2,152,181,1) 0%, rgba(255,255,255,1) 100%);
    animation: scrollbar 2s infinite;
    position: absolute;
    bottom: -156px;
    left: 50%
}
@keyframes scrollbar {
    0% {
        height: 156px;
        bottom: -156px
    }

    50% {
        height: 0;
        bottom: -156px
    }

    51% {
        height: 0;
        bottom: 0
    }

    100% {
        bottom: -156px;
        height: 156px
    }
}
/* lineup 
____________________*/
.contents--lineup {
	margin: 0;
	padding-top: 160px;
	padding-bottom: 200px;
	background: rgb(0,0,22);
	background: linear-gradient(0deg, rgba(0,0,22,1) 0%, rgba(0,0,95,1) 100%);
	position: relative;
	z-index: 2;
}
.ttl-lineup {
	width: 100%;
	max-width: 515px;
	margin-inline: auto;
}
.model-wrap {
	width: 100%;
	margin: 120px auto 0;
}
.model-wrap:nth-of-type(1) {
	margin-top: 150px;
}
.model-category-ttl {
	width: fit-content;
	margin: 0 auto;
	padding: 2px 16px;
	color: var(--cts-navy1);
	font-size: clamp(19px, 0.545rem + 1.61vw, 24px);
	font-family: var(--cts-font);
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0.05em;
	background: var(--cts-white1);
}
.model-category-subttl {
	color: var(--cts-white1);
	font-size: clamp(11px, -1.545rem + 3.61vw, 15px);
	font-weight: 300;
	line-height: 1.6;
	letter-spacing: 0.05em;
	text-align: center;
	margin-top: 20px;
}
.model-item {
	display: flex;
	flex-wrap: nowrap;
	justify-content: flex-start;
	flex-wrap: wrap;
	align-items: center;
	gap: 50px;
	margin: 60px auto 0;
}
.model-img {
	width: 100%;
	max-width: 500px;
}
.model-detail {
	width: 100%;
	max-width: 500px;
	color: var(--cts-white1);
}
.model-name {
	font-size: 24px;
	font-family: var(--cts-font);
	font-weight: 400;
	line-height: 1.7;
	letter-spacing: 0.05em;
	text-align: center;
}
.model-spec-list {
	margin: 25px auto 0;
	width: fit-content;
}
.model-spec-item {
	display: flex;
	justify-content: flex-start;
	gap: 20px;
	font-size: 13px;
	letter-spacing: 0.05em;
}
.model-spec-item:nth-of-type(n+2) {
	margin-top: 10px;
}
.spec-name {
	width: 70px;
	color: var(--cts-blue1);
	font-weight: 400;
	text-align: right;
}
.spec-data {
    width: calc(100% - 115px);
}
.model-price {
	font-size: 15px;
	font-weight: 300;
	letter-spacing: 0.05em;
	line-height: 1;
	text-align: center;
	margin-top: 25px;
}
/* features 
____________________*/
.contents--features {
    margin: 0;
    background: linear-gradient(0deg, rgba(15,15,15,1) 0%, rgba(36,36,36,1) 100%);
    overflow: hidden;
    padding-bottom: 300px;
    position: relative;
    z-index: 1;
}
.ttl-features {
    width: 78px;
    position: fixed;
    top: 20%;
    left: 80px;
    z-index: 4;
}
.features-pagination {
    position: fixed;
    top: 40%;
    left: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 4;
}
.pagination-dot {
    width: 12px;
    height: 12px;
    background-color: var(--cts-gray2);
    border: 1px solid var(--cts-gray3);
    border-radius: 50%;
    cursor: pointer;
    box-sizing: border-box;
}
.pagination-dot.active {
    background-color: var(--cts-gray1);
}
.features {
    display: flex;
    margin: 0 auto;
    padding-inline: 0;
    position: relative;
    z-index: 1;
}
.features-item {
    width: 100vw !important;
    display: grid;
    place-items: center;
    font-size: 40px;
    color: #fff;
    box-sizing: border-box;
}
.slide-inner {
    color: white;
    position: relative;
    z-index: 1;
    width: 100vw;
    height: 800px;
    padding: 100px var(--cts-gutter) 100px;
    display: flex;
    justify-content: flex-start;
}
.features-item:nth-of-type(4) .slide-inner,
.features-item:nth-of-type(5) .slide-inner {
	flex-direction: column;
}
.slide-inner .txt-block {
	width: 100%;
    max-width: 730px;
}
.slide-inner .slide-ttl-number {
	color: var(--cts-white1);
	font-size: clamp(16px, 0.545rem + 1.61vw, 18px);
	font-family: var(--cts-font);
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0.05em;
	position: relative;
	z-index: 2;
}
.slide-inner .slide-ttl-number .ttl-number {
	color: var(--cts-black2);
	text-align: center;
	background: var(--cts-white1);
	width: 36px;
	display: inline-block;
	margin-left: 15px;
}
.slide-inner .features-ttl {
	font-size: clamp(18px, -1.545rem + 5.61vw, 40px);
	font-weight: 500;
	letter-spacing: 0.05em;
	line-height: 1.7;
	margin-top: 25px;
	position: relative;
	z-index: 2;
}
.slide-inner .features-txt {
	font-size: clamp(12px, 0.545rem + 1.61vw, 15px);
	font-weight: 300;
	letter-spacing: 0.05em;
	line-height: 2.2;
	margin-top: 50px;
	position: relative;
	z-index: 2;
}
.slide-inner .features-note {
	font-size: clamp(12px, 0.545rem + 1.61vw, 15px);
	font-weight: 300;
	letter-spacing: 0.05em;
	line-height: 2.2;
	margin-top: 50px;
	position: relative;
	z-index: 2;
}
.slide-inner .features-img-block {
	position: relative;
	z-index: 1;
}
.features-item:nth-of-type(1) .slide-inner .features-img-block {
    width: 14vw;
    max-width: 259px;
    left: 160px;
    top: 19vh;
}
.features-item:nth-of-type(2) .slide-inner .features-img-block {
	width: 19vw;
    max-width: 363px;
    left: 160px;
    top: 30vh;
}
.features-item:nth-of-type(3) .slide-inner .features-img-block {
	width: 36.5vw;
    max-width: 700px;
    top: 22vh;
    left: 10px;
}
.features-item:nth-of-type(4) .slide-inner .features-img-block {
    width: 47vw;
    max-width: 901px;
    top: 15vh;
    left: 480px;
}
.features-item:nth-of-type(5) .slide-inner .features-img-block {
    width: 35vw;
    max-width: 664px;
    top: 15vh;
    left: 660px;
}
.features-item:nth-of-type(6) .slide-inner .features-img-block {
    width: 27vw;
    max-width: 508px;
    left: 45px;
    top: 6vh;
}
.features-item:nth-of-type(6) .slide-inner .features-img-block img:nth-of-type(2) {
	margin-top: 40px;
}
/* review
____________________*/
.contents--review {
    margin: 0;
    padding-top: 160px;
    padding-bottom: 200px;
    background: rgb(0, 0, 22);
    background: linear-gradient(0deg, rgba(0, 0, 22, 1) 0%, rgba(0, 0, 95, 1) 100%);
    position: relative;
    z-index: 2;
}
.ttl-review {
    width: 100%;
    max-width: 490.54px;
    margin-inline: auto;
	opacity: 0.2;
}
.ttl-category {
	color: var(--cts-white1);
	font-family: var(--cts-font);
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.05em;
	font-size: clamp(19px, 0.545rem + 1.61vw, 24px);
	position: relative;
	padding-left: 18px;
	margin-top: 150px;
}
.ttl-category::before {
	content: "";
    width: 3px;
    height: 33px;
    background: var(--cts-blue1);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(50%, -50%);
}
.ttl-category:nth-of-type(2) {
	margin-top: 60px;
}
.review--list {
	display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 40px 0 0;
}
.review--list__item {
    padding: 20px 30px;
    background: var(--cts-navy1);
    display: flex;
    box-sizing: border-box;
}
.review-model {
    width: 240px;
	padding: 0 30px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.reviewer_txt_wrap {
	width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    box-sizing: border-box;
    position: relative;
}
.reviewer_txt_block {
    width: 100%;
}
.reviewer_txt_block .review_model_name {
	color: var(--cts-white1);
    font-size: clamp(12px, -1.545rem + 3.61vw, 15px);
    font-weight: 500;
    letter-spacing: 1px;
}
.reviewer_txt_block .review_ttl {
	color: var(--cts-white1);
	font-size: 18px;
    font-family: var(--cts-font);
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 0.05em;
    margin: 10px 0 0;
}
.reviewer_txt_wrap .btn-link {
	margin-top: 0;
	max-width: 240px;
}
.reviewer_txt_wrap .btn-link:hover::before {
    transform: translateX(-29%);
}
.reviewer_txt_wrap .btn-link:hover::after {
	transform: translateX(29%);
}
/* anchor 
____________________*/
.contents--anchor {
	height: 100vh;
	padding-top: 300px;
	padding-bottom: 300px;
	background: url(../../gamepc/img/ul9c-r59-8a/bg.webp) no-repeat center top / cover fixed;
	display: flex;
	justify-content: center;
	align-items: center;
    position: relative;
    z-index: 2;
}
.anchor .btn-link {
	background: rgba(0, 0, 22, 0.6);
	margin-top: 0;
}
@media (max-width: 768px) {/*375-768*/
/* コンテンツ
____________________*/
.l-header {
	z-index: +3;
}
.pc {
	display: none !important;
}
.sp {
	display: block !important;
}
/* mv
____________________*/
.contents--mv {
	padding-bottom: 370px;
	min-height: inherit;
}
.contents--mv .scrolldown1 {
    position: absolute;
	bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    color: #eee;
    font-size: 0.7rem;
    letter-spacing: 0.05em;
    padding-bottom: 10px;
}
.contents--mv .scrolldown1::after {
    height: 80px;
    bottom: -80px;
}
@keyframes scrollbar {
    0% {
        height: 80px;
        bottom: -80px
    }

    50% {
        height: 0;
        bottom: -80px
    }

    51% {
        height: 0;
        bottom: 0
    }

    100% {
        bottom: -80px;
        height: 80px
    }
}
/* lineup
____________________*/
.contents--lineup {
	padding-top: 75px;
	padding-bottom: 75px;
}
.model-img {
	margin: 15px auto 0;
	max-width: 320px;
}
.model-wrap {
	margin-top: 60px;
}
.model-wrap:nth-of-type(1) {
	margin-top: 40px;
}
.ttl-lineup {
	width: 201px;
}
.model-item {
	gap: 40px;
	margin-top: 20px;
}
.model-detail {
	max-width: inherit;
}
.model-category-block {
	position: relative;
}
.model-category-block::after {
	content: "";
	background: url(../../gamepc/img/ul9c-r59-8a/circle3.webp) no-repeat center center/cover;
	width: 41px;
	height: 3px;
	display: block;
	margin: 10px auto;
}
.model-category-subttl {
	margin-top: 15px;
}
/* features
____________________*/
.contents--features .ttl-features {
	width: 220px;
	top: 70px;
	left: 50%;
	transform: translate(-50%, 0%);
}
.contents--features .features-pagination {
	flex-direction: row;
	gap: 13px;
	top: 30px;
	left: 50%;
	transform: translate(-50%, 0%);
}
.contents--features .pagination-dot {
	width: 7px;
	height: 7px;
}
.pin-spacer {
	margin: 0 !important;
}
.slide-inner {
	flex-direction: column;
	height: 100vh;
	padding: 150px 27px 0 27px;
	overflow: hidden;
}
.slide-inner .features-ttl {
	margin-top: 15px;
}
.slide-inner .features-txt {
	line-height: 1.7;
	margin-top: 30px;
}
.slide-inner .features-note {
	margin-top: 30px;
}
.features-item .slide-inner .features-img-block {
	margin-top: inherit;
	left: 50% !important;
	transform: translate(-50%, 0%);
}
.features-item:nth-of-type(1) .slide-inner .features-img-block {
	width: 39vw;
	max-width: 150px;
	top: 30px;
}
.features-item:nth-of-type(2) .slide-inner .features-img-block {
	width: 62vw;
	max-width: 240px;
	top: 4vh;
}
.features-item:nth-of-type(3) .slide-inner .features-img-block {
	width: 82vw;
	max-width: 320px;
	top: 5vw;
}
.features-item:nth-of-type(4) .slide-inner .features-img-block {
	width: 230vw;
	top: 45px;
	overflow: hidden;
}
.features-item:nth-of-type(5) .slide-inner .features-img-block {
	width: 80vw;
	max-width: 311px;
	top: 30px;
}
.features-item:nth-of-type(6) .slide-inner .features-img-block {
	width: 73vw;
	max-width: 283px;
	top: 30px;
}
/* review
____________________*/
.contents--review {
	padding-top: 75px;
	padding-bottom: 75px;
}
.ttl-review {
    max-width: 193px;
}
.ttl-category {
	margin-top: 60px;
}
.review--list__item {
	flex-direction: column;
	align-items: center;
	padding: 20px;
}
.review--list {
	margin-top: 40px;
}
.review-model {
	width: 200px;
	padding: 0;
}
.reviewer_txt_wrap {
	flex-direction: column;
	gap: 20px;
	padding: 20px 0 0 0;
}
.reviewer_txt_block .review_ttl {
	font-size: 16px;
}
.reviewer_txt_wrap .btn-link {
	max-width: inherit;
}
}
@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); } /* 元の位置に戻る */