@charset "utf-8";

:root {
	/* base */
	--cts-gutter: clamp(30px, -0.712rem + 8.91vw, 65px);/*375-768*/
	--cts-width: 1240px;

	/* font */
    --dp-font-jp: "Noto Sans JP", sans-serif;
    /* Use a value from 100 to 900 */
	--cts-font-1: "Outfit", sans-serif;
    /* Use a value from 100 to 900 */
    --cts-font-2: "Inter", sans-serif;
    /* Use a value from 100 to 900 */

	--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 */
    --cts-color1: #FFFFFF;
    --cts-color2: #7E93AD;
    --cts-color3: #44556A;
	--cts-color4: #334050;
    --cts-color5: #39393B;
	--cts-color6: #131E90;
	--cts-color7: #1C629B;
	--cts-color8: #1B939D;
}

/* 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;
	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: 160px;
	margin-bottom: 160px;
}
.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: 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:var(--cts-color4);
	transform: skewX(-18deg);
	opacity: .3;
	z-index: -1;
}
.link__inner::after {
	content: "";
	position: absolute;
	top: calc(50% - 5px);
    right: 24px;
    width: 8px;
    height: 8px;
    border-right: 2px solid;
    border-bottom: 2px solid;
	border-color: #fff;
	transform: rotate(-45deg);
}
.link__inner.bottom::after {
	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 {
	padding-block-end: 0;
	background: var(--cts-color4);
	position: relative;
	margin: 0 0 100x;
}
.contents__wrap * {
	font-feature-settings: "palt";
}
.contents__wrap .link__inner {
	color: var(--cts-color3);
    font-family: var(--cts-font-2);
	font-size: clamp(20px, 0.545rem + 2.61vw, 24px);
	font-weight: 500;
	background: var(--cts-color1);
	border-radius: 9999px;
	padding-block:0;
    padding-inline: 0;
	margin-top: 0;
	max-width: 330px;
    min-height: 80px;
	transition-duration: .4s;
}
.contents__wrap .link__inner::after {
    border-color: var(--cts-color3);
}
.contents__wrap .link__inner span {
    text-align: center;
	position: relative;
	padding-block: clamp(5px,0.236rem + 1.38vw,22px);
    padding-inline: clamp(10px,0.337rem + 2vw,40px);
	width: 100%;
}
.contents__wrap .link__inner:hover {
	transform: translateY(-10px);
}
.section_ttl_wrap {
    width: 100%;
    text-align: center;
}
.section_ttl {
    font-family: var(--cts-font-1);
    font-size: clamp(38px, 0.545rem + 5.61vw, 60px);
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.05em;
}
.section_subttl {
    font-size: clamp(14px, -0.545rem + 2.61vw, 22px);
    font-weight: 600;
    line-height: 1.7;
    letter-spacing: 0.05em;
    margin-top: 10px;
}
/* mv
____________________*/
.contents--mv {
	width: 100%;
	padding: 0;
	position: relative;
	z-index: 2;
	margin-top: 0;
	margin-bottom: 0;
}
.contents--mv img {
	width: 100%;
	padding: 0;
	position: relative;
	vertical-align: bottom;
}
/* about
____________________*/
.contents--about {
    padding-top: 110px;
    padding-bottom: 0;
    margin-top: 0;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}
.contents--about::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: -105%;
    right: -20%;
    width: 2549px;
    height: 1359px;
    background: url(../../../gamepc/galleria-haishin-new/img/bg_model.webp) no-repeat center center/contain;
    opacity: 0.5;
}
.about .section_ttl {
    font-size: clamp(16px, -0.545rem + 2.61vw, 20px);
    position: relative;
    z-index: +2;
}
.about .section_subttl {
    font-size: clamp(21px, -0.545rem + 3.61vw, 30px);
    position: relative;
    z-index: +2;
}
.about .read_txt {
    font-size: clamp(14px, -0.545rem + 2.61vw, 22px);
    line-height: 1.8;
    text-align: center;
    margin: 85px auto 0;
    position: relative;
    z-index: +2;
}
.about-btn_wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 38px;
    margin: 85px 0 auto;
    position: relative;
    z-index: +2;
}
/* lineup
____________________*/
.contents--lineup {
	position: relative;
	z-index: 1;
	padding-top: 155px;
	padding-bottom: 0;
    margin-top: 0;
	margin-bottom: 0;
}
.contents--lineup.other {
	padding-bottom: 0;
}
.lineup {
	position: relative;
    z-index: 3;
}
.lineup .lineup--list {
	width: 100%;
	display: flex;
	justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
	gap: 46px;
	box-sizing: border-box;
	margin: 65px 0 0;
	position: relative;
	z-index: 3;
}
.lineup--list-item {
	width: 100%;
	max-width: 532px;
    padding: 0 40px 80px;
    border: 1px solid var(--cts-color1);
    border-top: 20px solid var(--cts-color2);
    box-sizing: border-box;
}
.model_image {
	width: 100%;
	max-width: 360px;
	margin: 0 auto;
    flex: none;
	position: relative;
}
.model_image figure {
	position: relative;
}
.model__name {
	color: var(--cts-color1);
	width: 100%;
	font-size: clamp(20px, -0.145rem + 1.61vw, 28px);
	font-weight: 700;
	line-height: 1.4;
    margin-top: 5px;
}
.model__spec {
	color: var(--cts-color1);
	font-size: clamp(14px, -0.145rem + 1.61vw, 16px);
	font-weight: 400;
	letter-spacing: 0.05em;
	line-height: 1.6;
	margin: 40px 0 0;
}
.model__spec th {
    font-weight: 700;
    width: 135px;
    padding: 10px 0; 
    vertical-align: top;
}
.model__spec td {
    padding: 10px 0; 
    vertical-align: top;
}
.model__spec td span {
    display: block;
}
.model__link {
    width: 100%;
    max-width: 330px;
	margin: 30px auto 0;
}
.model__link .link__inner {
    font-family: var(--dp-font-jp);
}
/* feature
____________________*/
.contents--feature {
    margin-top: 0;
	margin-bottom: 0;
    padding-top: 110px;
	padding-bottom: 0;
}
.feature {
    max-width: inherit;
    padding-inline: inherit;
}
.feature_1 {
    display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 60px 120px;
    padding-top: 135px;
	position: relative;
	z-index: 1;
}
.feature_1::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: -22%;
    right: -3%;
    width: 1315px;
    height: 504px;
    background: url(../../../gamepc/galleria-haishin-new/img/feature_bg_1.webp) no-repeat center center/contain;
    opacity: 0.5;
}
.feature_1 .fleature_hero {
	width: 90%;
	max-width: 840px;
}
.feature_1 .fleature_hero img {
	width: 100%;
	height: auto;
}
.feature_1 .feature_inner {
	width: 100%;
	padding-right: var(--cts-gutter);
	box-sizing: border-box;
	display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
	box-sizing: border-box;
}
.feature_2 {
	padding-top: 130px;
	padding-bottom: 580px;
	margin: 0px auto;
	background: url(../../../gamepc/galleria-haishin-new/img/feature_bg_2_pc.webp) no-repeat center bottom/contain;
}
.feature_2 .feature_inner {
	width: 100%;
	max-width: 1160px;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	gap: 85px;
	padding-inline: var(--cts-gutter);
	margin: 0 auto;
	box-sizing: border-box;
}
.logo-intel_wrap {
	flex: none;
	width: 60%;
	max-width: 286px;
}
.feature_3 {
    padding-top: 135px;
	position: relative;
	z-index: 1;
}
.feature_3::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: -4%;
    right: -23%;
    width: 1561px;
    height: 854px;
    background: url(../../../gamepc/galleria-haishin-new/img/feature_bg_3.webp) no-repeat center center/contain;
    opacity: 0.5;
}
.feature_3 .feature_inner {
	width: 100%;
    max-width: 1240px;
    padding-inline: var(--cts-gutter);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    box-sizing: border-box;
}
.feature_ttl_wrap {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
}
.feature_number {
	font-family: var(--cts-font-1);
	font-size: clamp(60px, -0.145rem + 7.61vw, 100px);
	font-weight: 400;
	letter-spacing: 0.05em;
	line-height: 1;
}
.feature_ttl {
	font-family: var(--cts-font-1);
	font-size: clamp(28px, -1.545rem + 5.61vw, 51px);
	font-weight: 700;
	letter-spacing: 0.1em;
	line-height: 1.4;
	margin-top: 20px;
}
.feature_txt {
	font-family: var(--cts-font-1);
	font-size: clamp(14px, -0.145rem + 3.61vw, 22px);
	font-weight: 400;
	line-height: 1.8;
	letter-spacing: 0.05em;
	margin-top: 20px;
}
.logo_set {
	margin-top: 30px;
}
.modal_list {
	width: 100%;
	max-width: 555px;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 17px;
	margin-top: 40px;
}
.modal_list_item {
	width: 269px;
	height: 269px;
	padding: 25px;
	display: block;
	background: var(--cts-color1);
	border-radius: 20px;
	display: flex;
	flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: flex-start;
	box-sizing: border-box;
	position: relative;
	cursor: pointer;
}
.modal_list_item .point {
	color: var(--cts-color2);
	font-family: var(--cts-font-1);
	font-size: clamp(11px, -1.145rem + 3.61vw, 19px);
	font-weight: 700;
	position: relative;
}
.modal_list_item .point_name {
	color: var(--cts-color3);
	font-size: clamp(16px, -1.145rem + 3.61vw, 28px);
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: 0.05em;
	width: 100%;
	height: 140px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}
.modal_list_item .plus {
	width: 53px;
	height: 53px;
	display: block;
	background: var(--cts-color2);
	border-radius: 50%;
	position: absolute;
	left: 50%;
	bottom: 29px;
	transform: translate(-50%,0%);
	transition-duration: .4s;
}
.modal_list_item .plus::before,
.modal_list_item .plus::after {
	content: "";
	background: var(--cts-color1);
	width: 15px;
	height: 2px;
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
.modal_list_item .plus::after {
	transform:  translate(-50%,-50%) rotate(90deg);
}
.modal_list_item:hover .plus {
	transform: translate(-50%,0%) scale(1.2);
}
.feature_note {
	font-size: clamp(13px, -0.145rem + 1.61vw, 14px);
	font-weight: 400;
	letter-spacing: 0.05em;
	line-height: 1.7;
	margin-top: 35px;
}
/* モーダル */
.modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	text-align: center;
	background: rgba(0,0,0,50%);
	padding: 40px 20px;
	overflow: auto;
	opacity: 0;
	visibility: hidden;
	transition: .3s;
	box-sizing: border-box;
	display: block;
	z-index: 10;
}
.modal:before {
	content: "";
	display: inline-block;
	vertical-align: middle;
	height: 100%;
	margin-left: -0.2em;
}
.modal.is-active {
	opacity: 1;
	visibility: visible;
}
.modal-container {
	position: relative;
	z-index: 10;
	display: inline-block;
	vertical-align: middle;
	max-width: 900px;
	width: 90%;
}
.modal-close {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
    top: 30px;
    right: 30px;
	z-index: +1;
	width: 40px;
	height: 40px;
	color: #fff;
	background: var(--cts-color2);
	border-radius: 50%;
	cursor: pointer;
	transition-duration: .4s;
}
.modal-close:hover {
	transform: scale(1.3);
}
.modal-content {
	background: #fff;
	text-align: left;
	line-height: 1.8;
	border-radius: 20px;
}
.modal_detail {
	color: var(--cts-color5);
	padding: 50px;
	box-sizing: border-box;
}
.modal_ttl {
	font-size: clamp(17px, -0.145rem + 3.61vw, 26px);
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: 0.05em;
}
.modal_txt_l {
	font-size: clamp(14px, -1.145rem + 3.61vw, 20px);
	font-weight: 700;
	line-height: 1.7;
	letter-spacing: 0.05em;
	margin-top: 10px;
}
.modal_txt_m {
	font-size: clamp(13px, -1.145rem + 3.61vw, 18px);
	font-weight: 400;
	line-height: 1.7;
	letter-spacing: 0.05em;
	margin-top: 10px;
}
.modal_txt_s {
	font-size: clamp(12px, -1.145rem + 3.61vw, 18px);
	font-weight: 400;
	letter-spacing: 0.05em;
	line-height: 1.7;
}
.modal_flex {
	display: flex;
	justify-content: center;
	align-items: stretch;
	gap: 30px 75px;
	margin-top: 20px;
}
.modal_flex_inner {
	width: 50%;
}
.modal_inner_list {
	font-size: clamp(11px, -1.145rem + 3.61vw, 18px);
	font-weight: 400;
	letter-spacing: 0.05em;
	line-height: 1.7;
}
.modal_inner_list + .modal_txt_m {
	margin-top: 0;
}
.modal_ttl_h5 {
	font-size: clamp(12px, -1.145rem + 3.61vw, 18px);
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.05em;
	padding-bottom: 10px;
	margin-bottom: 10px;
	border-bottom: 1px solid var(--cts-color2);
}
.modal_figure {
	width: 100%;
	display: block;
}
.modal_figure.m2 {
	max-width: 747px;
	margin-top: 60px;
}
.modal_figure.m3 {
	max-width: 792px;
	margin-top: 45px;
}
.modal_figure.m4 {
	max-width: 781px;
	margin-top: 40px;
}
/* /モーダル */
.flex_item_wrap {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-start;
	gap: 40px 46px;
	margin: 75px auto 0;
}
.flex_item_item {
	width: 532px;
	min-height: 532px;
	background: var(--cts-color7);
	border-radius: 40px;
	padding: 46px 50px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-start;
	box-sizing: border-box;
	position: relative;
	z-index: 1;
}
.flex_item_item.green {
	background: var(--cts-color8);
}
.set_block {
	display: flex;
	flex-direction: column;
	gap: 40px;
}
.flex_item_ttl_block {
	width: 100%;
}
.flex_item_ttl {
	width: 100%;
	max-width: 266px;
	height: 63px;
	margin: 0 auto;
	display: block;
	font-size: clamp(17px, -0.145rem + 3.61vw, 30px);
	font-weight: 700;
	line-height: 2;
	letter-spacing: 0.05em;
	text-align: center;
	position: relative;
	z-index: 2;
}
.flex_item_ttl .line_left,
.flex_item_ttl .line_right {
	width: 1px;
	height: 100%;
	background: var(--cts-color1);
	display: block;
	position: absolute;
	transform: translate(-50%,-50%);
	top: 50%;
}
.flex_item_ttl .line_left {
	left: 0;
}
.flex_item_ttl .line_right {
	right: 0;
}
.flex_item_ttl .line_left::before,
.flex_item_ttl .line_left::after,
.flex_item_ttl .line_right::before, 
.flex_item_ttl .line_right::after {
	content: "";
	position: absolute;
	width: 9px;
	height: 9px;
	background: currentcolor;
	border-radius: 50%;
}
.flex_item_ttl .line_left::before {
    top: -1px;
    left: -4px;
}
.flex_item_ttl .line_left::after {
	bottom: -1px;
	left: -4px;
}
.flex_item_ttl .line_right::before {
    top: -1px;
    right: -4px;
}
.flex_item_ttl .line_right::after {
	bottom: -1px;
	right: -4px;
}
.flex_item_ttl + p {
	margin-top: 10px;
}
.txt_set_1 p + p {
	margin-top: 1em;
}
.txt_set_2 {
	margin: 52px 0;
}
.txt_set_2 p:nth-of-type(3) {
	margin-top: 1em;
}
.volume_block {
	width: fit-content;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	margin: 0 auto;
}
.volume_block_txt_1,
.volume_block_txt_2 {
	display: flex;
	justify-content: center;
	align-items: baseline;
}
.f102-f65 {
	font-size: clamp(65px, -0.545rem + 6.61vw, 102px);
	font-weight: 500;
	letter-spacing: 0.05em;
	line-height: 1;
}
.f44-f28 {
	font-size: clamp(28px, -0.545rem + 5.61vw, 44px);
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1;
}
.f32-f20 {
	font-size: clamp(20px, -0.545rem + 5.61vw, 32px);
	font-weight: 500;
	letter-spacing: 0.05em;
	line-height: 1.4;
}
.f30-f21 {
	font-size: clamp(21px, -0.545rem + 5.61vw, 30px);
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1.4;
}
.f26-f16 {
	font-size: clamp(16px, -0.545rem + 3.61vw, 26px);
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1.4;
}
.f24-f17 {
	font-size: clamp(17px, -0.545rem + 3.61vw, 24px);
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1.4;
}
.f24-f16 {
	font-size: clamp(16px, -0.545rem + 3.61vw, 24px);
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1.4;
}
.f18-f13 {
	font-size: clamp(13px, -0.545rem + 1.61vw, 18px);
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1.4;
}
.f16-f13 {
	font-size: clamp(13px, -0.545rem + 1.61vw, 16px);
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1.6;
}
.f16-f12 {
	font-size: clamp(12px, -0.545rem + 1.61vw, 16px);
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1.4;
}
.f12-f11 {
	font-size: clamp(11px, -0.545rem + 1.61vw, 12px);
	font-weight: 400;
	letter-spacing: 0.05em;
	line-height: 1.6;
}
.outfit {
	font-family: var(--cts-font-1);
}
.center {
	text-align: center;
}
.fit {
	width: fit-content;
	display: block;
	margin: 0 auto;
}
.feature_3_img01 {
	width: 85%;
	max-width: 347px;
	margin: 0 auto;
}
.feature_3_img02 {
	width: 85%;
	max-width: 347px;
	margin: 0 auto;
}
.feature_3_img03 {
	width: calc(100% + 100px);
    margin: 0 -50px;
}
.feature_movie {
	width: 85%;
	max-width: 720px;
	aspect-ratio: 16 / 9;
	margin: 200px auto 0;
}
.feature_movie iframe {
	width: 100%;
	height: 100%;
}
.none1240 {
	display: flex;
}
.yes1240 {
	display: none;
}
/* review
____________________*/
.contents--review {
	margin-top: 0;
	margin-bottom: 0;
	padding-top: 200px;
	padding-bottom: 240px;
}
/* swiper */
.review .swiper-container {
	width: 100%;
	margin: 0 auto;
	position: relative;
	overflow: visible;
}
.review .swiper-container .swiper-wrapper {
	padding: 35px 0 0;
}
.review .swiper-container .swiper-wrapper .swiper-slide {
	text-decoration: none;
	color: var(--cts-color1);
	width: 381px;
	height: auto;
	border-radius: 20px;
	background: var(--cts-color5);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	box-sizing: border-box;
	overflow: hidden;
}
.review .swiper-button-next, .review .swiper-button-prev {
	width: 65px;
	height: 65px;
	box-sizing: border-box;
	background: var(--cts-color7);
	border: 2px solid var(--cts-color1);
	border-radius: 50%;
}
.review .swiper-button-next.color-b, .review .swiper-button-prev.color-b {
	background: var(--cts-color2);
}
.review .swiper-button-next:after, .review .swiper-button-prev:after {
	color: var(--cts-color1);
	font-size: 22px;
	font-weight: bold;
}
.review .swiper-button-prev, .review .swiper-rtl .swiper-button-next {
    left: var(--swiper-navigation-sides-offset, -100px);
    right: auto;
}
.review .swiper-button-next, .review .swiper-rtl .swiper-button-prev {
	right: var(--swiper-navigation-sides-offset, -40px);
    left: auto;
}
.review .swiper-button-next.swiper-button-disabled, .review .swiper-button-prev.swiper-button-disabled {
	opacity: 0;
}
.review .swiper-container .swiper-wrapper .swiper-slide.report-item .report-image {
    width: 100%;
    max-width: 378px;
    aspect-ratio: 378 / 250;
    display: flex;
    justify-content: center;
    align-items: center;
}
.report-txt_block {
	width: 100%;
    height: 100%;
    background: var(--cts-color13);
    padding: 25px;
    box-sizing: border-box;
    transition: all 0.4s;
}
.report-date {
    font-size: clamp(14px, 0.345rem + 1.61vw, 16px);
    font-weight: 700;
    letter-spacing: 0.05em;
}
.report-txt {
    font-size: clamp(15px, 0.245rem + 1.61vw, 17px);
    font-weight: 400;
    line-height: 1.7;
    margin-top: 15px;
}
.media {
    display: block;
    text-align: right;
    margin: 10px 0 0;
}
.media a {
    color: var(--cts-color7);
    font-size: clamp(14px, 0.345rem + 1.61vw, 15px);
    text-decoration: none;
}
.review .swiper-container .swiper-wrapper .swiper-slide.report-item:hover .media a {
    text-decoration: underline;
}
.movie-wrap {
	width: 100%;
	margin: 150px auto 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
    gap: 46px;
}
.movie-item {
	width: 100%;
	max-width: 532px;
}
.movie {
	width: 100%;
	aspect-ratio: 16 / 9;
}
.movie iframe {
	width: 100%;
	height: 100%;
}
.movie-ttl {
	font-size: clamp(15px, 0.245rem + 1.61vw, 16px);
    font-weight: 400;
    line-height: 1.7;
	letter-spacing: 0.05em;
	margin-top: 10px;
}
@media (max-width: 1240px) {/*375-768*/
/* コンテンツ
____________________*/
.contents {
	margin-top: 50px;
	margin-bottom: 50px;
}
.contents__wrap {
	margin: 0;
}
/* mv
____________________*/
.contents--mv {
	margin-top: 0;
	margin-bottom: 0;
}
.contents--mv .pc {
	display: block !important;
}
.contents--mv .sp {
	display: none !important;
}
/* feature
____________________*/
.feature_1 {
	flex-direction: column;
}
.feature_1 .feature_inner {
	align-items: center;
	padding-inline: var(--cts-gutter);
}
.feature_2 .feature_inner,
.feature_3 .feature_inner {
	flex-direction: column;
	align-items: center;
}
.none1240 {
	display: none;
}
.yes1240 {
	display: flex;
}
/* review
____________________*/
.review_item_wrap {
	flex-direction: column;
}
}
@media (max-width: 768px) {/*375-768*/
	.pc {
		display: none !important;
	}
	.sp {
		display: block !important;
	}
/* コンテンツ
____________________*/
.contents__wrap .link__inner {
	min-height: 70px;
}
/* mv
____________________*/
.contents--mv {
	margin-top: 0;
	margin-bottom: 0;
}
.contents--mv .pc {
	display: none !important;
}
.contents--mv .sp {
	display: block !important;
}
/* about
____________________*/
.contents--about {
	margin-top: 0;
	margin-bottom: 0;
	padding-top: 50px;
	padding-bottom: 0;
}
.contents--about::after {
    top: -225px;
    right: -130%;
    width: 1257px;
    height: 670px;
}
.about .read_txt {
	margin: 25px auto 0;
}
.about-btn_wrap {
	flex-direction: column;
	gap: 30px;
	margin: 60px 0 auto;
}
/* lineup
____________________*/
.contents--lineup {
	margin-top: 0;
	margin-bottom: 0;
	padding-top: 90px;
}
.contents--lineup.other {
	padding-bottom: 0;
}
.lineup .lineup--list {
	gap: 20px;
	margin-top: 35px;
}
.lineup--list-item {
	padding: 0 23px 40px;
	border-top: 15px solid var(--cts-color2);
}
.model_image {
	max-width: 230px;
}
.model__spec {
	margin-top: 30px;
}
.model__spec tr {
	display: flex;
	flex-direction: column;
	margin-top: 1em;
}
.model__spec tr:nth-of-type(1) {
	margin-top: 0;
}
.model__spec th {
	padding: 0;
}
.model__spec td {
	padding: 0;
}
/* feature
____________________*/
.contents--feature {
	margin-top: 0;
	margin-bottom: 0;
	padding-top: 90px;
	padding-bottom: 0;
}
.feature_1 {
	padding-top: 40px;
	gap: 40px;
}
.feature_1::after {
	top: -9%;
	right: -139%;
	width: 990px;
	height: 380px;
}
.feature_2 {
	padding-top: 100px;
	padding-bottom: 340px;
	background: url(../../../gamepc/galleria-haishin-new/img/feature_bg_2_sp.webp) no-repeat center bottom/contain;
}
.feature_2 .feature_inner {
	align-items: flex-start;
	gap: 50px;
}
.feature_3 {
	padding-top: 100px;
}
.feature_3::after {
    top: -1%;
    right: -115%;
    width: 730px;
    height: 400px;
}
.modal_list {
	max-width: 469px;
	margin-top: 0;
	margin-inline: auto;
	gap: 10px;
}
.modal_list_item {
	width: 150px;
	height: 150px;
	padding: 15px;
	border-radius: 10px;
}
.modal_list_item .point_name {
	height: 75px;
}
.modal_list_item .plus {
	width: 30px;
	height: 30px;
	bottom: 15px;
}
.modal_list_item .plus::before, .modal_list_item .plus::after {
	width: 8px;
	height: 1px;
}
/* モーダル */
.modal-content {
	border-radius: 10px;
}
.modal-close {
	top: 15px;
    right: 15px;
	width: 30px;
    height: 30px;
}
.modal_detail {
	padding: 25px;
}
.modal_flex {
	flex-direction: column;
	gap: 15px;
}
.modal_flex_inner {
	width: 100%;
}
.modal_ttl_h5 {
	padding-bottom: 5px;
    margin-bottom: 5px;
}
.modal_figure.m2,
.modal_figure.m3,
.modal_figure.m4 {
	margin-top: 25px;
}
/* /モーダル */
.flex_item_wrap {
	gap: 20px;
	margin: 40px auto 0;
}
.flex_item_item {
	width: 100%;
	max-width: 310px;
	min-height: 350px;
	padding: 26px 25px;
	border-radius: 20px;
}
.flex_item_ttl {
	max-width: 170px;
	height: 36px;
}
.flex_item_ttl .line_left::before, .flex_item_ttl .line_left::after, .flex_item_ttl .line_right::before, .flex_item_ttl .line_right::after {
	width: 5px;
    height: 5px;
}
.flex_item_ttl .line_left::before {
    left: -2px;
}
.flex_item_ttl .line_left::after {
    left: -2px;
}
.flex_item_ttl .line_right::before {
    right: -2px;
}
.flex_item_ttl .line_right::after {
    right: -2px;
}
.feature_3_img03 {
	width: calc(100% + 40px);
    margin: 0 -20px;
}
.feature_movie {
	margin-top: 130px;
}
/* review
____________________*/
.contents--review {
	margin-top: 0;
	margin-bottom: 0;
	padding-top: 90px;
	padding-bottom: 90px;
}
/* swiper */
.review .swiper-container .swiper-wrapper {
	padding-top: 15px;
}
.review .swiper-container .swiper-wrapper .swiper-slide {
	width: 309px;
}
.review .swiper-button-prev, .review .swiper-rtl .swiper-button-next, .review .swiper-button-next, .review .swiper-rtl .swiper-button-prev {
	width: 40px;
	height: 40px;
	box-sizing: border-box;
	background: var(--cts-color6);
	border-radius: 50%;
}
.review .swiper-button-prev, .review .swiper-rtl .swiper-button-next {
	left: var(--swiper-navigation-sides-offset, -20px);
	right: auto;
}
.review .swiper-button-next, .review .swiper-rtl .swiper-button-prev {
	right: var(--swiper-navigation-sides-offset, -20px);
	left: auto;
}
.review .swiper-button-next.color-b, .review .swiper-button-prev.color-b {
    background: var(--cts-color6);
	border: none;
}
.review .swiper-button-next:after, .review .swiper-button-prev:after {
	font-weight: 400;
}
.movie-wrap {
	margin-top: 100px;
	gap: 24px;
}
}
@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(-200px); }      /* 上から */
.fade-in-bottom { transform: translateY(200px); }    /* 下から */
.fade-in-right { transform: translateX(200px); }     /* 右から */
.fade-in-left { transform: translateX(-200px); }     /* 左から */
.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); } /* 元の位置に戻る */