@charset "UTF-8";

:root {
	--brand-blue: #006ec1;
	--bg-light-blue: #14b4ff;
	--text-dark: #333;
	--border-width: 4px;
	--tab-v-gap: 8px;   /* タブとボックスの間の垂直の距離 */
	--tab-h-gap: 8px;    /* タブ同士の水平の隙間 */

	--bg-color: #f8f9fa;
	--accent-color: #333333;
	--sub-text-color: #666666;
	--shadow-color: rgba(0, 0, 0, 0.1);
}

* {
	box-sizing: border-box;
	word-wrap: break-word;
	background-repeat: no-repeat;
	overflow-wrap: break-word;
}

html {
	overflow-x: hidden;
	height: -webkit-fill-available;
	font-size: 62.5%;
}

body {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1.6rem;
	line-height: 1.2;
	letter-spacing: 0.01em;
	-webkit-font-smoothing: antialiased;
	min-height: 100vh;
	min-height: -webkit-fill-available;
}

html, body {
	margin: 0;
#	height: 100%;
}

img {
	width: 100%;
	vertical-align: bottom;
}

.pc {
	display: block;
}
.sp {
	display:none;
}
@media only screen and (max-width: 750px) {
	.pc {
	        display:none;
	}
	.sp {
		display: block;
	}
}

/* -------------------------------------
	背景
----------------------------------------*/
.parallax {

}
.parallax::before {
	background-image: url(/3/assets/2Edition/bk_pc.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	content: "";
	height: 100vh;
	left: 0;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: -1;
}
@media screen and (max-width: 750px) {
	.parallax::before {
		background-image: url(/3/assets/2Edition/bk2.png);
	}
}


/* -------------------------------------
	メイン設定（3カラム）
----------------------------------------*/
.fit3_2Edition__main-content {
	width: calc(100% / 3);
	margin: auto;
	background: white;
}
@media screen and (max-width: 750px) {
	.fit3_2Edition__main-content {
		width: 100%;
		background: unset;
	}
}

main {
	display: flex;
	flex-direction: column;
	row-gap: 3vw;
	padding-bottom: 8%;
}
@media screen and (min-width: 751px) {
	main {
	            background-attachment: fixed;
	            background-position: center;
	            background-repeat: no-repeat;
	            background-size: cover;
#	            background-size: calc(100.2% / 3);
#	            background-image: url('/3/assets/2Edition/bk2.png');
	            background-image: url('/3/assets/2Edition/bk.png');
	}
}
@media screen and (max-width: 750px) {
	main {
		row-gap: 7vw;
	}
}


/* -------------------------------------
	メイン設定（左カラム）
----------------------------------------*/
.left-sidebar {
	position: fixed;
	top: 50%;
	left: 17%;
	transform: translate(-50%, -50%);
	width: calc(100% / 3);
	height: 100vh;

	.title {
		position: absolute;
		top: 30%;
		left: 50%;
		width: 60%;
		transform: translateX(-50%);
	}

	.button-area {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		place-items: center;
		width: 60%;
		gap: 2vw;
		position: absolute;
		bottom: 4%;
		left: 50%;
		transform: translateX(-50%);
	}

	.button-portal {

	}

	.button-sns {

	}
}


/* -------------------------------------
	メイン設定（右カラム）
----------------------------------------*/
.right-sidebar {
	position: fixed;
	top: 50%;
	left: 83%;
	transform: translate(-50%, -50%);
	width: calc(100% / 3);
	height: 100vh;

	.menu-list {
		position: absolute;
		top: 45%;
		left: 50%;
		transform: translate(-50%, -50%);

		display: flex;
		flex-direction: column;
		gap: 0.6vw;
		width: 70%;
		background: #69ccdf82;
		border-radius: 15px;
		padding: 3% 5%;
		font-size: calc(22 * 100vw / 1920);
		font-weight: 700;
	}

	.menu-list > *:last-child {
		margin-top: 1vw; /* 最後だけgapを増やす */
	}

	.menu-list a {
		color: #09257a;
	}

	.button-area {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		place-items: center;
		width: 40%;
		gap: 2vw;
		position: absolute;
		bottom: 3%;
		left: 50%;
		transform: translateX(-50%);
	}

	.button-trial {

	}

	.button-voice {

	}
}


/* -------------------------------------
	header menu
----------------------------------------*/
.fit3_2Edition__top-header {
	position: fixed;
	width: 100%;
	background-color: #111111cf;
	padding: 3%;
	z-index: 30;
}

.fit3_2Edition__top-header.show {
	z-index: 31;
	background: none;
}

.menu-button-container {
	width: 10%;
	margin-left: auto;
	z-index: 30;
	position: relative;
}

.menu-modal-pop {
	width: 100vw;
#	height: 100vh;
	height: 100svh;
	position:fixed;
	top: 0;
	left:0;
	z-index:20!important;
	display: none;
}
.menu-modal-pop-bg {
	background-color: #111111cf;
	width: 100%;
	height: 100%;
	position:fixed;
	z-index:30!important;
}
.menu-modal-pop-main {
	position: relative;
	width: auto;
	text-align: center;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 30;

	a {
		color: #fff;
	}

	.header__menu-list {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
#		justify-content: center;
		justify-content: flex-start;
		gap: 4vw;
		font-size: calc(30 * 100vw / 750);
		font-weight: 600;
		width: 70%;
		margin: auto;
		overflow-y: scroll;
		height: 70vh;
	}
	.header__menu-list > *:last-child {
		margin-top: 5vw;
	}
}


/* -------------------------------------
	footer
----------------------------------------*/
.fit3_2Edition__footer {
	padding: 0;
}

/** ソフト紹介 **/
.fit3_2Edition__footer-software {
	background-image: url(/3/assets/bg_cta.png);
	background-size: cover;
	padding: 8% 0 5%;
	display: flex;
	flex-direction: column;
	gap: 3vw;
}
@media screen and (max-width: 750px) {
	.fit3_2Edition__footer-software {
		gap: 5vw;
	}
}

.fit3_2Edition__footer-software-switch {
	display: flex;
	flex-direction: column;
	gap: 2vw;

	h2 {
		color: #fff;
		font-size: calc(60 * 100vw / 1920);
		text-align: center;
		width: 100%;
	}

	h2 span {
		display: block;
		font-size: calc(20 * 100vw / 1920);
		margin-top: 7px;
	}

	h2 span.ns2e {
		font-size: calc(27 * 100vw / 1920);
	}
}
@media screen and (max-width: 750px) {
	.fit3_2Edition__footer-software-switch {
		gap: 3vw;

		h2 {
			font-size: calc(60 * 100vw / 750);
		}

		h2 span {
			font-size: calc(21 * 100vw / 750);
		}

		h2 span.ns2e {
			font-size: calc(27 * 100vw / 750);
		}
	}
}

.fit3_2Edition__footer-software-box {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	width: 80%;
	margin: auto;
	gap: 2%;
}

.fit3_2Edition__footer-software-pkg {
	padding: 0 calc(10 * 100vw / 1920);
}
@media screen and (max-width: 750px) {
	.fit3_2Edition__footer-software-pkg {
		padding: 0 calc(23 * 100vw / 750);
	}
}

.fit3_2Edition__footer-software-box-text {
	display: flex;
	flex-direction: column;
	gap: calc(12 * 100vw / 1920);
	color: #fff;

	dl {
		display: flex;
		flex-direction: row;
		font-size: calc(17 * 100vw / 1920);
	}

	span {
		font-size: 80%;
		display: inline-block;
	}

	img {
		margin-top: 20%;
		width: calc(43 * 100vw / 1920);
	}
}
@media screen and (max-width: 750px) {
	.fit3_2Edition__footer-software-box-text {
		gap: calc(13 * 100vw / 750);

		dl {
			font-size: calc(20 * 100vw / 750);
		}

		img {
			margin-top: 20%;
			width: 6vw;
		}
	}
}

.fit3_2Edition__footer-software-button {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	width: 80%;
	margin: auto;
	gap: 4%;
}

.fit3_2Edition__footer-bottom-wrap {
	padding: 0;
	background: #fff;
}

.fit3_2Edition__footer-bottom {
	max-width: 90%;
	margin: auto;
	display: flex;
	justify-content: space-between;
	gap: 10px;
	flex-direction: column;
	padding: 30px 0;
}

.fit3_2Edition__footer-logo {
        width: 35%;
	margin: auto;
}

.fit3_2Edition__footer-text {
	color: grey;
	font-size: 70%;

	a {
		display: inline-block;
		margin-bottom: 3%;
		color: #000;
	}
}

.fit3_2Edition__footer-nintendo-store {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 80%;
	gap: 16px;
	text-align: left;
	color: #fff;
	margin: auto;

	a {
		width: 13%;
		min-width: 32px;
	}

	p {
		font-size: calc(17 * 100vw / 1920);
	}
}
@media screen and (max-width: 750px) {
	.fit3_2Edition__footer-nintendo-store {

		p {
			font-size: calc(21 * 100vw / 750);
		}
	}
}

/** 共通 **/
.fit3_2Edition__footer-bottom-wrap {
	padding: 0;
	background: #fff;
}

.fit3_2Edition__footer-bottom {
	max-width: 90%;
	margin: auto;
	display: flex;
	justify-content: space-between;
	gap: 10px;
	flex-direction: column;
	padding: 30px 0;
}

.fit3_2Edition__footer-logo {
        width: 35%;
	margin: auto;
}

.fit3_2Edition__footer-text {
	color: grey;
	font-size: 70%;

	a {
		display: inline-block;
		margin-bottom: 3%;
		color: #000;
	}
}


/* -------------------------------------
	TOP：utility
----------------------------------------*/
.fit3_2Edition__top-box {
	width: 90%;
	border: 2px solid #203d77;
	border-radius: 15px;
	margin: auto;
	padding: 5% 2% 5%;
	background: #fff;
}

.swiper {
	padding-bottom: 2%;
}
.swiper-pagination {
	position: relative;
	bottom: 0 !important;
	margin-top: 2%;
}

.dlc-slider__title {
	text-align: center;
	font-size: calc(24 * 100vw / 1920);
}
@media screen and (max-width: 750px) {
	.dlc-slider__title {
		font-size: calc(24 * 100vw / 750);
	}
}

.movie-mark {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 5vw;
	max-width: 80px;
	transition-duration: 0.5s;
}
@media screen and (max-width: 750px) {
	.movie-mark {
		width: 15vw;
	}
}

/***
#movies .swiper-button-prev::before,
#movies .swiper-button-next::before {
	content: none !important;
}
#movies .movies-swiper-button-prev,
#movies .movies-swiper-button-next {
	background-size: contain;
	background-repeat: no-repeat;
	width: 40px;
	height: 40px;
}
#movies .movies-swiper-button-prev {
	background-image: url("/3/assets/movies_allow_left.png");
	position: absolute;
	top: 45%;
	left: 26%;
	z-index: 100;
}
@media (max-width: 568px) {
	#movies .movies-swiper-button-prev {
		left: 1%;
	}
}
#movies .movies-swiper-button-next {
	background-image: url("/3/assets/movies_allow_right.png");
	position: absolute;
	top: 45%;
	right: 26%;
	z-index: 100;
}
@media (max-width: 568px) {
	#movies .movies-swiper-button-next {
		right: 1%;
	}
}
***/

.swiper-pagination-bullet {
	background-color: #a9a9a9;
	height: 12px;
	width: 12px;
	opacity: 1;
	margin: 0 7px !important;
}
.swiper-pagination-bullet-active {
	background-color: #163774 !important;
}


/** FAB **/
.taikenban-fab {
	position: fixed;
	top: 75%;
	right: 2%;
	width: 30%;
	max-width: 120px;
	z-index: 20;
#	transition: 0.8s ease-in-out;
	transform: translateY(-50%);

	.button-voice {
     		margin-bottom: 8px;
	}
}
.taikenban-fab a {
	display: block;
	text-decoration: none;
}

.taikenban-fab img{
	width: 100%;
}
@media (max-width: 821px) {
	.taikenban-fab {
		width: 25%;
	}
}
@media (max-width: 568px) {
	.taikenban-fab {
		width: 20%;
	}
}


.fadeUp {
	transform: translate3d(0, 50px, 0);
	transition: 1.3s;
	opacity: 0;
}
.fadeUp.animated {
	transform: translate3d(0, 0, 0);
	opacity: 1;
}


/* -------------------------------------
	TOP：KV
----------------------------------------*/
.fit3_2Edition__kv {
	width: 100%;
	position: relative;
}
@media screen and (max-width: 750px) {
	.fit3_2Edition__kv {

	}
}
.fit3_2Edition__kv-video {
	overflow: hidden;
	width: 100%;
#	height: 380px;
	height: 42vw;

	video {
		width: 100%;
		height: 100%;
		object-fit: cover;
		margin-left : 0;
	}
}
@media screen and (max-width: 750px) {
	.fit3_2Edition__kv-video {
		height: unset;

		video {
			object-fit: unset;
		}
	}
}

.fit3_2Edition__kv-switch {
	position: absolute;
	top: 0;
	left: 0;
	width: 26%;
	z-index: 30;
}

.fit3_2Edition__kv-logo {
	position: absolute;
	top: 53%;
	left: 50%;
	width: 80%;
	transform: translate(-50%, -50%);
}
.fit3_2Edition__kv-3million {
	position: absolute;
	top: 65%;
	left: 32%;
	width: 50%;
	transform: translate(-50%, -50%);
}
@media screen and (max-width: 750px) {
	.fit3_2Edition__kv-3million {
		top: 73%;
		left: 32%;
		width: 50%;
	}
}

.fit3_2Edition__kv-ns2e {
	position: absolute;
	top: 78%;
	left: 38%;
	width: 60%;
	transform: translate(-50%, -50%);
}
@media screen and (max-width: 750px) {
	.fit3_2Edition__kv-ns2e {
		top: 83%;
		left: 38%;
		width: 60%;
	}
}

.fit3_2Edition__kv-ns2e-text {
	position: absolute;
	top: 88%;
	left: 38%;
	width: 60%;
	transform: translate(-50%, -50%);
}
@media screen and (max-width: 750px) {
	.fit3_2Edition__kv-ns2e-text {
		top: 91%;
		left: 38%;
		width: 60%;
	}
}


.fit3_2Edition__kv-4pt {
	margin-top: -10%;
	z-index: 2;
	position: relative;
}


/* -------------------------------------
	TOP：支持される4つの理由
----------------------------------------*/
.container {
	width: 90%;
	margin: auto;
}

.tab-list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	column-gap: var(--tab-h-gap);
	width: 100%;
	position: relative;
	z-index: 10;
	margin-bottom: var(--tab-v-gap);
}

.tab-item {
	background: #fff;
	border: var(--border-width) solid var(--brand-blue);
	border-radius: 12px;
	padding: 5px 5px;
	text-align: center;
	cursor: pointer;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	transition: background 0.2s;
}

/* --- アクティブなタブの精密制御 --- */
.tab-item.active {
	margin-bottom: calc((var(--tab-v-gap) + var(--border-width)) * -1);
	border-bottom: var(--border-width) solid #fff; 
	border-radius: 12px 12px 0 0;
	z-index: 20;
	background: #fff;
}

/* 外側の繋がり部分（左端・右端）の「垂直リペア・ライン」 */
/* これを置くことで、ブラウザの描画誤差による切れ目を物理的に塗りつぶします */
.tab-item.active::before,
.tab-item.active::after {
	content: "";
	position: absolute;
	background: var(--brand-blue);
	z-index: 5;
}

/* --- 左側の補完ロジック --- */
/* 1個目のタブがアクティブな時：左側の垂直ラインを下に伸ばして補完 */
.tab-item:first-child.active::before {
	display: block;
	left: calc(var(--border-width) * -1);
	bottom: calc((var(--tab-v-gap) + var(--border-width)) * -1);
	width: var(--border-width);
	height: calc(var(--tab-v-gap) + var(--border-width) + 1px);
}
/* 2,3,4個目のタブがアクティブな時：左隣との水平の隙間(gap)を埋める */
.tab-item:not(:first-child).active::before {
	display: block;
	left: calc(var(--tab-h-gap) * -1);
	bottom: calc(var(--border-width) * -1);
	width: var(--tab-h-gap);
	height: var(--border-width);
}

/* --- 右側の補完ロジック --- */
/* 4個目のタブがアクティブな時：右側の垂直ラインを下に伸ばして補完 */
.tab-item:last-child.active::after {
	display: block;
	right: calc(var(--border-width) * -1);
	bottom: calc((var(--tab-v-gap) + var(--border-width)) * -1);
	width: var(--border-width);
	height: calc(var(--tab-v-gap) + var(--border-width) + 1px);
}
/* 1,2,3個目のタブがアクティブな時：右隣との水平の隙間(gap)を埋める */
.tab-item:not(:last-child).active::after {
	display: block;
	right: calc(var(--tab-h-gap) * -1);
	bottom: calc(var(--border-width) * -1);
	width: var(--tab-h-gap);
	height: var(--border-width);
}

/* アクティブタブ自体の下角丸を0にして垂直に繋げる */
.tab-item:first-child.active { border-bottom-left-radius: 0 !important; }
.tab-item:last-child.active { border-bottom-right-radius: 0 !important; }

/* --- コンテンツボックス --- */
.content-box {
	background: #fff;
	border: var(--border-width) solid var(--brand-blue);
	border-radius: 15px;
	padding: 3% 2%;
	position: relative;
	z-index: 1;
	box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.content-box.at-first { border-top-left-radius: 0 !important; }
.content-box.at-last { border-top-right-radius: 0 !important; }

.panel { display: none; }
.panel.show { display: block; animation: fadeIn 0.3s ease-out; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* 装飾 */
.main-visual { width: 100%; margin-bottom: 4%; }

.content-desc {
	font-size: calc(20 * 100vw / 1920);
	line-height: 1.8;
	color: #333;
	text-align: justify;
	width: 90%;
	margin: 0 auto 5%;
}
@media screen and (max-width: 750px) {
	 .content-desc {
		font-size: calc(24 * 100vw / 750);
	}
}
.btn-more-container { display: flex; justify-content: center; }
.btn-more {
	display: inline-flex;
	align-items: center;
	background: #fff;
	border: 2px solid #ddd;
	padding: 2% 4%;
	text-decoration: none;
	color: #666;
	font-weight: bold;
	font-size: calc(23 * 100vw / 1920);
	transition: 0.2s; 
}
@media screen and (max-width: 750px) {
        .btn-more {
		padding: 2% 3%;
		font-size: calc(25 * 100vw / 750);
	}
}
.btn-more::before { content: ""; width: 0; height: 0; border-style: solid; border-width: 6px 0 6px 10px; border-color: transparent transparent transparent var(--brand-blue); margin-right: 15px; }
.btn-more:hover { border-color: var(--brand-blue); color: var(--brand-blue); }


/* -------------------------------------
	TOP：お知らせ
----------------------------------------*/
.fit3_2Edition__top-notice-logo {
	margin-bottom: 5%;
}
.fit3_2Edition__top-notice-list {
        margin-bottom: 5%;

	ul {
		display: flex;
		flex-direction: column;
		justify-content: space-evenly;
		align-items: flex-start;
		gap: 5px;
	}

	li {
		display: flex;
		gap: 5%;
		width: 100%;
		align-items: flex-start;
		padding: 1% 2%;
		font-size: calc(24 * 100vw / 1920);
	}

	.list_date {
		font-weight: bold;
		color: #28499c;
		width: 30%;
	}

	.list_title {
		width: 70%;
	}

	.list_title a {
		color: #5c5c5c;
	}
}
@media screen and (max-width: 750px) {
	.fit3_2Edition__top-notice-list {

		li {
			font-size: calc(24 * 100vw / 750);
		}

		.list_date {
			width: 23%;
		}

		.list_title {
			width: 77%;
		}
	}
}


/* -------------------------------------
	TOP：ムービー
----------------------------------------*/
.fit3_2Edition__top-movie-logo {
	margin-bottom: 5%;
}


/* -------------------------------------
	TOP：インストラクター
----------------------------------------*/
.fit3_2Edition__top-instructor-logo {
	margin-bottom: 5%;
}
.fit3_2Edition__top-instructor-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1vw;
	justify-content: flex-start;
	width: 100%;

	.icon {
		position: relative;
		cursor: pointer;
	}

	.icon_on {
#		position: absolute;
#		top: 0;
#		left: 0;
#		opacity: 0;
#		transition: .4s ease-in-out;
		opacity: 1;
	}
/*	.icon_off {
		position: relative;
	}

	.icon.active .icon_on{
		opacity: 1;
	}
*/
	.name {
		background: #dcf551;
		border-radius: 15px;
		color: #0c357e;
		text-align: center;
		font-weight: 600;
		font-size: calc(25 * 100vw / 1920);
		margin-top: 3%;
		padding: 5% 1%;
	}
	.name p {
		display: flex;
		flex-direction: column;
		gap: 2px;
	}
	.name span {
		font-size: calc(13 * 100vw / 1920);
	}
}
@media screen and (max-width: 750px) {
	.fit3_2Edition__top-instructor-list {
		gap: 2vw;

		.name {
			font-size: calc(23 * 100vw / 750);
			padding: 3% 2%;
		}
		.name span {
			font-size: calc(16 * 100vw / 750);

		}
	}
}

.fit3_2Edition__top-instructor-image {
	margin-top: 5%;
}

/** ポップアップ **/
.modal-pop{
	width: 100vw;
	height: 100vh;
	position:fixed;
	top: 0;
	left:0;
	z-index:9997!important;
	display: none;
}
.modal-pop-bg{
	background-color: #111111cf;
	width: 100%;
	height: 100%;
	position:fixed;
	z-index:9998!important;
}
.modal-pop-main {
	position: relative;
	width: 80%;
	max-width: 500px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 9999;
	box-sizing: border-box;
}
.modal-pop-close {
	width: 10%;
	max-width: 112px;
	margin-top: 2%;
	margin-left: auto;
}
.modal-pop-scroll.active {
	display: block;
}
.modal-pop-scroll {
	background: #fff;
	border-radius: 15px;
	max-height: 80vh;
	overflow-y: auto;
	overflow-x: hidden;
	overflow-wrap: break-word;
	padding: 5% 2%;
	color: #0c357e;
	box-sizing: border-box;
	display: none;

	.character-name {
		background: #dcf551;
		border-radius: 15px;
		text-align: center;
		font-weight: 600;
		font-size: calc(25 * 100vw / 1920);
		margin: 0 auto 2%;
		padding: 2% 1%;
		width: 40%;
	}

	.character-voice {
		text-align: center;
		font-size: calc(22 * 100vw / 1920);
	}

	.img-style {
		position: absolute;
		opacity: 0;
	}
	.img-style.active {
		position: relative;
		opacity: 1;
		transition: .4s ease-in-out;
	}

	.character-img-wrap {
		position: relative;
		width: 100%;
	}

	.character-img-wrap:before {
		content: "";
		position: absolute;
		top: 50%;
		left: 50%;
		width: 90%;
		height: 74%;
		transform: translate(-50%, -50%);
		z-index: 1;
		border-radius: 10px;
		background: linear-gradient(to bottom, #fff, #9eeeff);
	}

	.character-img {
		width: 50%;
		margin: auto;
		position: relative;
		z-index: 1;
	}

	.character-profile {
		width: 90%;
		margin: auto;
		background: #f2f2f2;
		border-radius: 10px;
		padding: 3%;
		font-size: calc(23 * 100vw / 1920);
		font-weight: 700;
	}

	.character-profile ul {
		margin: 0 auto 5%;
		display: flex;
		flex-direction: column;
		gap: 0.7vw;
		text-align: center;
	}

	.character-profile ul > li:first-child {
		margin-bottom: 0.5vw;
	}

	.character-profile ul span{
		font-size: calc(27 * 100vw / 1920);
	}

	.inst-voice-btn {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		place-items: center;
		place-content: center;
		width: 70%;
		gap: 2vw;
		margin: 5% auto 0;
	}

	.inst-voice-btn button {
		width: 100%;
	}
}
@media screen and (max-width: 750px) {
	.modal-pop-scroll {
		padding: 5% 2%;

		.character-name {
			font-size: calc(25 * 100vw / 750);
			padding: 2% 1%;
			width: 40%;
		}

		.character-voice {
			font-size: calc(22 * 100vw / 750);
		}

		.character-img {
			width: 50%;
		}

		.character-profile {
			padding: 5%;
			font-size: calc(23 * 100vw / 750);
		}

		.character-profile ul {
			gap: 1.2vw;
		}

		.character-profile ul > li:first-child {
			margin-bottom: 0.7vw;
		}

		.character-profile ul span{
			font-size: calc(27 * 100vw / 750);
		}

		.inst-voice-btn {
			width: 80%;
			gap: 3vw;
			margin: 5% auto 0;
		}
	}
}


/* -------------------------------------
	TOP：エクササイズモード
----------------------------------------*/
.fit3_2Edition__top-exercise-logo {
	margin-bottom: 5%;
}


.fit3_2Edition__top-exercise-daily {
	display: flex;
	flex-direction: column;
	gap: 1vw;
	margin-bottom: 4vw;
	background: #e9f6fc;
	padding: 5% 3%;
}
@media screen and (max-width: 750px) {
	.fit3_2Edition__top-exercise-daily {
		gap: 5vw;
	}
}

.fit3_2Edition__top-exercise-free {
	display: flex;
	flex-direction: column;
	gap: 1vw;
	margin-bottom: 2vw;
	background: #e9f6fc;
	padding: 5% 3%;
}
@media screen and (max-width: 750px) {
	.fit3_2Edition__top-exercise-free {
		gap: 5vw;
	}
}


/* -------------------------------------
	TOP：サポート
----------------------------------------*/
.fit3_2Edition__top-support-logo {
	margin-bottom: 5%;
}


/* -------------------------------------
	TOP：Switch 2 Edition新機能
----------------------------------------*/
.fit3_2Edition__top-ns2e-logo-title {
	width: 85%;
	margin: 0 auto 8%;
}

.fit3_2Edition__top-ns2e-logo {
	margin-bottom: 5%;
}

.fit3_2Edition__top-ns2e-container {
	display: flex;
	flex-direction: column;
	gap: 2vw;

	h2 {
		background: #dcf551;
		border-radius: 10px;
		color: #0c357e;
		text-align: center;
		font-weight: 900;
		font-size: calc(33 * 100vw / 1920);
		padding: 2% 1%;
		width: 80%;
		margin: 0 auto 3%;
	}

	img {
		margin-bottom: 3%;
	}

	p {
		text-align: center;
		color: #000;
		font-weight: 600;
		font-size: calc(26 * 100vw / 1920);
	}

	.attention {
		font-size: calc(21 * 100vw / 1920);
		background: #e7e7e7;
		padding: 2%;
		margin-top: 5%;
	}
	.attention span {
		color: #2f96fd;
	}
	.attention a {
		color: #2f96fd;
		text-decoration: underline;
	}

}
@media screen and (max-width: 750px) {
	.fit3_2Edition__top-ns2e-container {
		gap: 7vw;

		h2 {
			font-size: calc(33 * 100vw / 750);
		}

		p {
			font-size: calc(28 * 100vw / 750);
		}

		.attention {
			font-size: calc(23 * 100vw / 750);
		}
	}
}


/* -------------------------------------
	TOP：ユーザーボイス
----------------------------------------*/
.fit3_2Edition__top-voice-wrap {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 90%;
	margin: auto;
}

.fit3_2Edition__top-voice-button {
	width: 60%;
	margin: auto;
}


/* -------------------------------------
	TOP：前作との違い
----------------------------------------*/
.fit3_2Edition__top-chigai-logo {
	margin-bottom: 5%;
}

.fit3_2Edition__difference-container {
	width: 100%;
	margin: auto;

	p {
		color: #000;
		font-size: calc(25 * 100vw / 1920);
	}

	a {
		color: #2f96fd;
		text-decoration: underline;
	}

	.link {
		text-align: center;
	}
}
@media screen and (max-width: 750px) {
	.fit3_2Edition__difference-container {
		p {
			font-size: calc(29 * 100vw / 750);
		}
	}
}

.fit3_2Edition__difference-cell {

	overflow-x: scroll;
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch;

	img {
		width: 130%;
		max-width: unset;
	}
}

/** スクロール **/
/* 1. スクロールヒントの外枠 */
	.scroll-wrapper {
	position: relative;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 8px var(--shadow-color);
	background: #ffffff;
	margin-bottom: 5%;
}

/* 右側の続きを示すグラデーション */
	.scroll-wrapper::after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 60px;
	height: 100%;
	background: linear-gradient(to right, transparent, rgba(0,0,0,0.25)); 
	pointer-events: none;
	opacity: 1;
	transition: opacity 0.4s ease;
	z-index: 5;
}

.scroll-wrapper.is-end::after {
	opacity: 0;
}

/* 2. スクロール本体 */
.fit3_2Edition__difference-cell {
	overflow-x: auto;
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch;
	display: flex;
	position: relative;
	z-index: 1;
	cursor: grab; /* PCで掴めることを示す */
	user-select: none; /* テキスト選択を防ぐ */
}

.fit3_2Edition__difference-cell:active {
	cursor: grabbing; /* 掴んでいる間のカーソル */
}

.fit3_2Edition__difference-cell img {
	width: 150%; 
	max-width: unset;
	display: block;
	height: auto;
	pointer-events: none; /* 画像のドラッグイベント干渉を防ぐ */
}

/* 3. カスタムスクロールバー */
.fit3_2Edition__difference-cell::-webkit-scrollbar {
	-webkit-appearance: none;
	height: 6px;
	display: block;
}

.fit3_2Edition__difference-cell::-webkit-scrollbar-track {
	background: #f1f1f1;
}

.fit3_2Edition__difference-cell::-webkit-scrollbar-thumb {
	background: #bbb;
	border-radius: 3px;
}
.fit3_2Edition__difference-cell::-webkit-scrollbar-thumb:hover {
	background: #888;
}

/* 4. アニメーション付きガイド表示 */
.scroll-guide {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: rgba(0, 0, 0, 0.75);
	color: #ffffff;
	padding: 20px;
	border-radius: 8px;
	pointer-events: none;
	z-index: 10;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 15px;
	font-size: calc(24 * 100vw / 1920);
	opacity: 0;
	visibility: hidden;
	width: 80%;
}
@media screen and (max-width: 750px) {
	.scroll-guide {
		font-size: calc(24 * 100vw / 750);
	}
}

.scroll-guide.is-active {
	animation: guideFadeInOut 3s forwards ease-in-out;
	visibility: visible;
}

.finger-icon {
	width: 30px;
	height: 30px;
	border: 2px solid rgba(255, 255, 255, 0.8);
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	position: relative;
	animation: touchSwipe 1.5s infinite ease-in-out;
	}

.finger-icon::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 10px;
	height: 10px;
	background: white;
	border-radius: 50%;
	transform: translate(-50%, -50%);
}

@keyframes touchSwipe {
	0% { transform: translateX(40px); opacity: 0; }
	20% { transform: translateX(40px); opacity: 1; }
	80% { transform: translateX(-40px); opacity: 1; }
	100% { transform: translateX(-40px); opacity: 0; }
}

@keyframes guideFadeInOut {
	0% { opacity: 0; }
	10% { opacity: 1; }
	90% { opacity: 1; }
	100% { opacity: 0; }
}

.helper-text {
	margin-top: 12px;
	font-size: 11px;
	color: var(--sub-text-color);
	text-align: center;
}


/* -------------------------------------
	TOP：追加コンテンツ
----------------------------------------*/
.fit3_2Edition__top-dlc-logo {
	margin-bottom: 5%;
}


/* -------------------------------------
	TOP：コラボレーション
----------------------------------------*/
.fit3_2Edition__top-collabo-logo {
	margin-bottom: 5%;
}


/* -------------------------------------
	TOP：BGM
----------------------------------------*/
.fit3_2Edition__top-bgm-logo {
	margin-bottom: 5%;
}

.fit3_2Edition__bgm-container .song-list {
	padding: 0 5%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	position: relative;
	flex-direction: column;
}

.fit3_2Edition__bgm-container .song-list .line {
	position: absolute;
	height: 93%;
	width: 1px;
	background-color: #d7d7d7;
	top: 0;
	bottom: 0;
	margin: auto;
	left: 0;
	right: 0;
	display: none;
}

.fit3_2Edition__bgm-container .song-list .song-item {
	width: 45%;
	display: flex;
	gap: 20px;
	align-items: center;
	border-bottom: 1px solid #D7D7D7;
	padding-top: 10px;
	padding-bottom: 10px;
}

.fit3_2Edition__bgm-container .song-list .song-item {
	width: 100%;
}

.fit3_2Edition__bgm-container .song-list .song-item.final {
	border-bottom: none;
}
.fit3_2Edition__bgm-container .song-list .song-item .bgm-num {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 38px;
	height: 38px;
	background: linear-gradient(180deg, #FFFFFF 0%, #E2E2E2 100%);
	border: 1px solid #D7D7D7;
	border-radius: 100px;
	color: #173774;
	font-weight: bold;
}
.fit3_2Edition__bgm-container .song-list .song-item .flex-right {
	line-height: 2.5rem;
}
.fit3_2Edition__bgm-container .song-list .song-item .flex-right .bgm-title {
	font-size: calc(24 * 100vw / 1920);
	font-weight: bold;
	color: #173774;
}
@media screen and (max-width: 750px) {
	.fit3_2Edition__bgm-container .song-list .song-item .flex-right .bgm-title {
		font-size: calc(30 * 100vw / 750);
		font-weight: bold;
		color: #173774;
	}
}

.fit3_2Edition__bgm-container .song-list .song-item .flex-right .bgm-artist {
	font-size: calc(21 * 100vw / 1920);
	color: #173774;
}
@media screen and (max-width: 750px) {
	.fit3_2Edition__bgm-container .song-list .song-item .flex-right .bgm-artist {
		font-size: calc(23 * 100vw / 750);
	}
}


/* -------------------------------------
	TOP：xxxxx
----------------------------------------*/

/* -------------------------------------
	TOP：xxxxx
----------------------------------------*/


