@charset "utf-8";

:root {
	/* base */
	--cts-gutter: clamp(25px, -2.212rem + 8.91vw, 65px);/*375-768*/
	--cts-width: 1430px;

	/* font */
	--dp-font-jp: "Orbitron", sans-serif;      
	/* Orbitron
	Regular 400
	Medium 500
	SemiBold 600
	Bold 700
	ExtraBold 800
	Black 900
	*/ 

	--cts-font: "Noto Sans JP", sans-serif;
	/* Noto Serif JP
	Light 300
	Regular 400
	Medium 500
	SemiBold 600
	Bold 700
	ExtraBold 800
	Black 900
	*/

	/* color */
	--color-white-1: #FFFFFF;
	--color-black-1: #000000;
	--color-gray-1: #EAEAEA;
	--color-gray-2: #C1C1C1;
	--color-gray-3: #BDBDBD;
	--color-gray-4: #5A5A5A;
	--color-gray-5: #707070;
	--color-gray-6: #1F1E21;
	--color-pink-1: #C52BC8;
	--color-pink-2: #8B1D82;
	--color-orange-1: #FF3E03;
	--color-blue-1: #00188F;
	
}

/* 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;
}
@media (max-width: 767px) {
	.bnr_link_win11_wrap{
		margin-bottom: 0 !important;
	}
}
.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: 1280px) {
	.l-header {
		z-index: 10;
	}
}
@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);
	letter-spacing: 0.02em;
	color: var(--color-white-1);
}
.contents__wrap img {
	max-width: 100%;
	vertical-align: bottom;
}
.pc {
	display: block !important;
}
.sp {
	display: none !important;
}
@media (max-width: 767px) {
	.pc {
	display: none !important;
	}
	.sp {
		display: block !important;
	}
}
.flash:hover {
	animation-name: hover-flash;
	animation-duration: 1s;
	opacity: .85;
}
@keyframes hover-flash {
	0% {
		opacity: .3;
	}
	100% {
		opacity: .85;
	}
}

/* リンクをちょっとだけ拡大
____________________*/
.link-move {
  display: inline-block;        /* transformを効かせるために必要 */
  transition: transform 0.3s ease; /* 0.3秒かけて滑らかに変形 */
}

.link-move:hover {
  transform: scale(1.1);       /* ホバー時に1.05倍（5%拡大） */
}

.link-move-2 {
  display: inline-block;        /* transformを効かせるために必要 */
  transition: transform 0.3s ease; /* 0.3秒かけて滑らかに変形 */
}
.link-move-2:hover {
  transform: scale(1.02);       /* ホバー時に1.05倍（5%拡大） */
}


/* コンテンツ
____________________*/
::selection {
	color: var(--color-black-1);
	background-color: var(--color-white-1);
}
.contents__wrap {
	/* background: var(--color-black-1); */
	position: relative;
}
.contents__wrap .lp-bg {
	width: 100%;
	height: 100%;
	background: url(../img/collab-sf6/pc-bg-1.webp) no-repeat center top/cover;
	position: fixed;
	top: 0;
}
.contents__inner {
	position: relative;
	width: 100%;
	max-width: var(--cts-width);
	margin-inline: auto;
	padding-inline: var(--cts-gutter);
	box-sizing: border-box;
	position: relative;
	font-family: var(--cts-font);
}
.contents--line-up .contents__inner::before{
	position: absolute;
	content: "";
	width: 2px;
	height: calc(100% - 80px);
	background: var(--color-pink-1);
	top: 80px;
	left: 0;
	padding-bottom: 50px;
	box-sizing: border-box;
}
.contents--special-design .contents__inner::before{
	position: absolute;
	content: "";
	width: 2px;
	height: calc(100% - 100px);
	background: var(--color-pink-1);
	top: 120px;
	left: 0;
}
.contents--bonus .contents__inner::before{
	position: absolute;
	content: "";
	width: 2px;
	height: calc(100% - 120px);
	background: var(--color-pink-1);
	top: 120px;
	left: 0;
}
.contents--bonus .contents__inner:last-child::before{
	position: absolute;
	content: "";
	width: 2px;
	height: calc(100% - 420px);
	background: var(--color-pink-1);
	top: 120px;
	left: 0;
}
@media (max-width: 1670px) {
	.contents--line-up .contents__inner::before{
		display: none;
	}
	.contents--special-design .contents__inner::before{
		display: none;
	}
	.contents--bonus .contents__inner::before{
		display: none;
	}
	.contents--bonus .contents__inner:last-child::before{
		display: none;
	}
}


/* ボタンの基本設定 */
#js-pagetop#js-pagetop {
	position: fixed;
	right: 70px;
	bottom: 70px;
	z-index: 9999;
	cursor: pointer;
	width: 158.36px;
	height: 158.36px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(20px);
	display: flex;
    align-items: center;
    justify-content: center;
}
#js-pagetop#js-pagetop img {
    width: 100%;
    height: auto;
    display: block;
}
#js-pagetop#js-pagetop.is-show {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

/* モーダル
____________________*/
/* モーダル全体の背景（初期状態は非表示） */
.lp-modal {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.85);
  z-index: 9999;
  justify-content: center;
  align-items: center;

  /* フェード表示アニメーション */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* モーダルが開いた状態 */
.lp-modal.is-open {
  opacity: 1;
  visibility: visible;
}

/* 拡大画像＋閉じるボタンをまとめるラッパー */
.lp-modal-container {
  position: relative;
  display: inline-block;
  max-width: 90%;
  max-height: 85vh;
}

/* モーダル内の画像（他のCSSからの幅指定を強制上書き） */
.lp-modal-content,
.about .lp-modal-content,
.game-ss .lp-modal-content {
  display: block;
  width: 100% !important;
  max-width: 1200px !important;  /* 原寸1200px制限 */
  height: auto !important;
  max-height: 90vh !important;
  object-fit: contain;

  /* ふんわり浮き上がるアニメーション */
  transform: scale(0.9) translateY(20px);
  transition: transform 0.3s ease;
}

.lp-modal.is-open .lp-modal-content {
  transform: scale(1) translateY(0);
}

/* 閉じるボタン（画像の右上「外側」に配置、初期の白×デザイン） */
.lp-modal-close {
  position: absolute;
  top: -45px;         /* 画像の上に完全に飛び出させる */
  right: 0;           /* 画像の右端に合わせる */
  color: #fff;        /* 初期の白文字 */
  font-size: 36px;    /* 初期のフォントサイズ */
  font-weight: bold;
  cursor: pointer;
  line-height: 1;
  z-index: 10;
}

.lp-modal-close::before {
  content: "×";
}

/* ttl共通
____________________*/
.ttl-set{
	position: relative;
	font-size: clamp(1.75rem, 0.5568rem + 5.0909vw, 4.375rem);
	text-align: center;
	font-weight: 900;
	padding-top: clamp(3.125rem, -0.511rem + 15.515vw, 8.125rem);
	z-index: 1;
}
.sub-ttl{
	font-family: var(--dp-font-jp);
	line-height: 1;
}
h2{
	font-size: clamp(0.875rem, 0.6761rem + 0.8485vw, 1.3125rem);
	font-weight: 700;
	font-family: var(--cts-font);
	padding-top: 15px;
	line-height: 1.737;
}
@media (max-width: 768px) {
	h2{
		padding-top: 5px;
	}
}
.special-design h2{
	font-size: clamp(0.875rem, 0.6761rem + 0.8485vw, 1.1rem);
}

/* juri
____________________*/
.juri-4{
	position: absolute;
	bottom: 0;
	right: clamp(0rem, -4.261rem + 18.182vw, 9.375rem);
	line-height: 0;
}
.juri-4 img{
	width: clamp(163px, 20.518vw + 86.058px, 480px);
	height: auto;
}
.juri-5{
	position: absolute;
	bottom: -80px;
	right: 150px;
	line-height: 0;
}
@media (max-width: 841px) {
	.juri-5{
		bottom: -80px;
		right: 5px;
	}
}
.juri-5 img{
	width: clamp(65px, 12vw, 168px);
	height: auto;
}
.juri-6 img{
	width: clamp(80px, 9.39vw + 44.789px, 180px);
	position: absolute;
	left: 0;
	bottom: -80px;
	line-height: 0;
}
@media (max-width: 768px) {
	.juri-6 img{
		left: 25px;
		bottom: -50px;
	}
}

/* mv
____________________*/
.contents__wrap .contents--mv {
	width: 100%;
	height: 100%;
	position: relative;
	overflow: hidden;
}
.contents__wrap .contents--mv img {
	width: 100%;
}


/* ナビゲーションメニュー
____________________*/
/* --- ベース設定 --- */
.fixed-nav {
  z-index: 1000;
  height: 0;
  color: var(--color-white-1);
  font-family: var(--dp-font-jp);
}

/* PC・SP共通：JSで非表示指定（.is-hidden）された時はフェードアウト */
.fixed-nav.is-hidden {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

/* --- PC表示（841px以上） --- */
@media screen and (min-width: 841px) {
  .fixed-nav {
    position: absolute; /* 初期位置は絶対配置 */
    top: 90px;
    left: clamp(30px, 16.216vw - 221.351px, 90px);
    width: fit-content;
    margin-left: 0;
    margin-top: 0;
    
    /* 初期状態で表示 */
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 0.4s ease, visibility 0.4s ease;
  }

  .hamburger-btn {
    display: none !important;
  }

  .nav-menu {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .nav-menu__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 50px;
  }

  .nav-menu__item a {
    display: block;
    color: var(--color-white-1);
    text-decoration: none;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 1.25rem;
    font-weight: bold;
    letter-spacing: 0.08em;
    white-space: nowrap;
    transition: color 0.3s ease;
  }

  .nav-menu__item a:hover {
    color: var(--color-pink-1);
  }

  .nav-menu__item a.is-current {
    color: var(--color-pink-1);
  }
}

/* --- SP表示（840px以下） --- */
@media screen and (max-width: 840px) {
  .fixed-nav {
    position: fixed;
    top: 0;
    right: 0;
    left: auto;
    height: auto;
    display: flex;
    justify-content: flex-end;
    
    /* 初期状態は非表示 */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.4s ease, visibility 0.4s ease;
  }

  /* スクロール検知で付与される表示用クラス */
  .fixed-nav.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .hamburger-btn {
    box-sizing: border-box;
    width: 72px;
    height: 74px;
    padding: 25px;
    background-color: #000000;
    border: none;
    border-left: 1px solid var(--color-pink-1);
    border-bottom: 1px solid var(--color-pink-1);
    cursor: pointer;
    position: relative;
    z-index: 1001;
    transition: background-color 0.3s ease, border-color 0.3s ease;
  }

  .hamburger-btn.is-open {
    background-color: transparent;
    border-color: transparent;
  }

  .hamburger-btn span {
    display: block;
    position: absolute;
    left: 25px;
    width: 24px;
    height: 3px;
    background-color: #ffffff;
    transition: transform 0.3s ease, top 0.3s ease, opacity 0.3s ease;
  }

  .hamburger-btn span:nth-child(1) { top: 25px; }
  .hamburger-btn span:nth-child(2) { top: 36px; }
  .hamburger-btn span:nth-child(3) { top: 47px; }

  .hamburger-btn.is-open span:nth-child(1) {
    top: 36px;
    transform: rotate(45deg);
  }
  .hamburger-btn.is-open span:nth-child(2) {
    opacity: 0;
  }
  .hamburger-btn.is-open span:nth-child(3) {
    top: 36px;
    transform: rotate(-45deg);
  }

  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 70vh;
    background-image: linear-gradient(#fe60d9, #ee51d4 70%, #c52bc8);
    display: flex;
    align-items: start;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1000;
    transform: none;
    padding-top: 20vh;
  }

  .nav-menu.is-open {
    opacity: 1;
    visibility: visible;
  }

  .nav-menu__list {
    list-style: none;
    margin: 0;
    padding: 0 40px;
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
  }

  .nav-menu__item {
    border-bottom: 1px solid var(--color-pink-1);
  }

  .nav-menu__item:first-child {
    border-top: 1px solid var(--color-pink-1);
  }

  .nav-menu__item a {
    display: block;
    padding: 24px 0;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 0.05em;
  }
}

/* supervisor
____________________*/
.contents--supervisor{
    position: relative;
	z-index: 1;
}

@media (max-width: 1100px) {
    .contents--supervisor::after{
        content: none;
    }
}
.supervisor{
    display: flex;
    color: var(--color-white-1);
    font-family: var(--cts-font);
    gap: 45px;
    align-items: center;
    justify-content: center;
    padding-top: 120px;
}
@media (max-width: 768px) {
    .supervisor{
        flex-direction: column;
        gap: 35px;
        padding-top: 60px;
    }
}
.supervisor img{
    width: 223px;
}
@media (max-width: 768px) {
    .supervisor img{
        width: 180px;
    }
}
.supervisor p{
    position: relative;
    padding-left: 45px;
    font-weight: 700;
    font-size: clamp(0.9375rem, 0.767rem + 0.7273vw, 1.3125rem);
    line-height: 2;
}
@media (max-width: 768px) {
    .supervisor p{
        padding-left: 0;
        padding-top: 30px;
        font-weight: 600;
        text-align: center;
    }
}
.supervisor p::before{
    position: absolute;
    content: "";
    width: 1px;
    height: 130px;
    top: clamp(-20px, calc(-11.67px - 0.434vw), -15px);
    left: 0;
    background: #C1C1C1;
}
@media (max-width: 768px) {
    .supervisor p::before{
        width: 100%;
        height: 1px;
        top: 0;
        left: 0;
    }
}

/* line-up
____________________*/
.contents--line-up {
	position: relative;
	width: 100%;
	padding-bottom: 130px;
}
@media (max-width: 768px) {
	.contents--line-up{
		padding-bottom: 50px;
	}
}
.contents--line-up::after{
	position: absolute;
	content: "";
	width: 310px;
	height: 422px;
	background-image: url(../img/collab-sf6/bg-item-1.webp);
	background-repeat: no-repeat;
	background-position: top right;
	top: 0;
	right: 0;
}
@media (max-width: 768px) {
	.contents--line-up::after{
		display: none;
	}
}
.line-up {
	position: relative;
}
.line-up-block{
	display: flex;
	padding-top: 40px;
	font-family: var(--cts-font);
	font-weight: 700;
	gap: 50px;
	align-items: flex-start; /* これが必要です */
}
@media (max-width: 1000px) {
	.line-up-block{
		flex-direction: column;
		gap: 15px;
	}
}
.line-up-block a{
	width: 100%;
	display: flex;
	gap: 20px;
	text-decoration: none;
	color: var(--color-white-1);
	padding: 25px 30px 25px 45px;
}
@media (max-width: 1000px) {
	.line-up-block a{
		padding: 20px 17px;
	}
}
/* PCサイズ（1001px以上）：追従あり */
.line-up-img {
	max-width: 360px;
	padding-left: 30px;
	/* --- 追従（sticky）の設定 --- */
	position: sticky;
	top: 20px; /* 画面上部から20pxの位置で固定・追従 */
	z-index: 5;
	box-sizing: border-box;
}

/* 画面幅 1000px 以下：縦並びになるため追従を解除 */
@media (max-width: 1000px) {
	.line-up-img {
		position: static; /* stickyを解除して通常配置へ */
		max-width: 360px;
		margin-inline: auto;
		padding-left: 0;
	}
}

/* スマホサイズ 440px 以下 */
@media (max-width: 441px) {
	.line-up-img {
		max-width: 156px;
	}
}

.line-up-img img {
	width: 100%;
}
.line-up-model{
	max-width: 860px;
	width: 100%;
	display: flex;
	font-size: clamp(0.875rem, 0.7614rem + 0.4848vw, 1.125rem);
	gap: 25px;
	align-items: center;
}
@media (max-width: 841px) {
	.line-up-model{
		flex-direction: column;
		gap: 10px;
		align-items: flex-start;
	}
}
.model-left{
	max-width: 560px;
	box-sizing: border-box;
}
@media (max-width: 840px) {
	.model-left{
		max-width: 100%;
	}
}
.model-left p:nth-of-type(2){
	padding-top: 10px;
}
.model-catch{
	border-bottom: solid 1px var(--color-gray-5);
	padding-bottom: 15px;
}
.model-spec{
	font-weight: 400;
	font-size: clamp(0.625rem, 0.5398rem + 0.3636vw, 0.8125rem);
	color: #C1C1C1;
	line-height: 1.615;
	padding-top: 10px;
}
.line-up-model .tax{
	font-size: clamp(0.625rem, 0.5114rem + 0.4848vw, 0.875rem);
}
.model-right{
	font-size: clamp(0.9375rem, 0.767rem + 0.7273vw, 1.3125rem);
}
.line-up-link{
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}
.line-up-link img{
	width: 13px;
	position: absolute;
	top: 55px;
	left: 8px;
}
.right-arrow{
	position: relative;
	width: 26px;
	height: 82px;
	display: block;
	background: var(--color-gray-3);
	clip-path: polygon(
    12px 0%,                  /* ①左上のカット終点 */
    100% 0%,                  /* ②右上 */
    100% calc(100% - 12px),   /* ③右下のカット始点 */
    calc(100% - 12px) 100%,   /* ④右下のカット終点 */
    0% 100%,                  /* ⑤左下 */
    0% 12px                   /* ⑥左上のカット始点 */
  	);
}
@media (max-width: 768px) {
	.right-arrow{
		width: 15px;
		height: 46px;
		clip-path: polygon(
		7px 0%,                  /* ①左上のカット終点 */
		100% 0%,                  /* ②右上 */
		100% calc(100% - 7px),   /* ③右下のカット始点 */
		calc(100% - 7px) 100%,   /* ④右下のカット終点 */
		0% 100%,                  /* ⑤左下 */
		0% 7px                   /* ⑥左上のカット始点 */
		);
	}
}
.model-link:hover .right-arrow{
	background: var(--color-pink-1);
	transition: all .3s ease;
}
.right-arrow::after{
	width: 12px;
	height: 15px;
	position: absolute;
	content: "";
	background-image: url(../img/collab-sf6/right-arrow.webp);
	background-repeat: no-repeat;
	background-size: cover;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.right-arrow::after{
	width: 7px;
	height: 9px;
}
.line-up-flex {
	display: flex;
	justify-content: center;
	flex-direction: row-reverse;
	flex-wrap: wrap;
	gap: 100px;
}
.line-up-flex-2 {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 36px;
	margin-top: 120px;
}
.line-up-flex-2 .inner-right {
	width: 100%;
	max-width: 551px;
}
.pc-block {
	display: flex;
	gap: 50px;
}
.pc-block .desk-img {
	width: 285px;
}
.line-up-inner-flex {
	display: flex;
	gap: 35px;
	margin-top: 24px;
}
.inner-flex-left {
	width: 100%;
	max-width: 325px;
}
.note-img {
	width: 100%;
	max-width: 352px;
}
/* tab */
.tab-container {
	margin-top: 50px;
}
@media (max-width: 768px) {
	.tab-container{
		margin-top: 20px;
	}
}
.tab-menu {
	display: flex;
	gap: 30px;
}
.tab-item {
	cursor: pointer;
	padding: 28px 30px;
	font-weight: bold;
	color:var(--color-gray-1);
	background: var(--color-gray-4);
	clip-path: polygon(
    12px 0%,                  /* ①左上のカット終点 */
    100% 0%,                  /* ②右上 */
    100% calc(100% - 12px),   /* ③右下のカット始点 */
    calc(100% - 12px) 100%,   /* ④右下のカット終点 */
    0% 100%,                  /* ⑤左下 */
    0% 12px                   /* ⑥左上のカット始点 */
  	);
	flex-grow: 1;
	transition: flex-grow 0.4s cubic-bezier(0.25, 1, 0.5, 1), 
				background 0.3s ease, 
				color 0.3s ease;
	white-space: nowrap;
	overflow: hidden;
}
/* アクティブなタブ：flex-growを大きくして幅を広げる */
.tab-item.active {
	flex-grow: 3.1; 
}
.tab-item:nth-of-type(1).active {
	background: var(--color-orange-1);
}
.tab-item:nth-of-type(2).active {
	color: var(--color-white-1);
	background: var(--color-blue-1);
}
.tab-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.ttl-cpu {
	font-size: 25px;
	font-family: var(--dp-font-jp);
	font-weight: 900;
	line-height: 1;
	display: flex;
	align-items: center;
	gap: 15px;
	position: relative;
	z-index: 1;
}
.txt-cpu {
	font-size: clamp(12px, 0.376vw + 10.592px, 16px);
	font-weight: 500;
	line-height: 1;
}

.line-up-note {
	color: var(--color-gray-1);
    font-size: 12px;
    font-weight: 200;
    line-height: 1.7;
	text-align: right;
    margin-top: 25px;
}
.line-up-note-2 {
	color: var(--color-gray-1);
    font-size: 12px;
    font-weight: 200;
    line-height: 1.7;
    margin-top: 25px;
}
/* --- コンテンツ部分のスタイル --- */
.tab-content-wrapper {
	width: 100%;
	position: relative;
	justify-content: end;
}
@media (max-width: 1000px) {
	.tab-content-wrapper{
		justify-content: center;
	}
}
.tab-content {
	position: absolute;
	top: 35px;
	opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease;
}
/* アクティブなコンテンツ：フェードイン */
.tab-content.active {
position: relative; /* 浮かせず、親の高さに影響を与える */
    top: 0;
    left: 0;
    right: 0;
    opacity: 1;
    visibility: visible;
}
.line-up-warp {
	display: flex;
	border: solid 1px var(--color-pink-1);
	border-radius: 10px;
	/* padding: 30px 30px 30px 45px; */
}
/* @media (max-width: 768px) {
	.line-up-warp{
		padding: 20px 17px;
	}
} */
.tab-content .line-up-warp:nth-of-type(n+2){
	margin-top: 15px;
}
.line-up-warp.notepc {
	flex-wrap: wrap;
}
.line-up-item {
	width: 309px;
	height: 567px;
	display: block;
	text-align: center;
	padding: 30px 35px 50px;
	box-sizing: border-box;
	position: relative;
}
.line-up-warp.notepc .line-up-item {
	width: 551.36px;
	height: 319.42px;
	text-align: left;
}
.catch {
	color: var(--color-pink-2);
	font-size: 17px;
	font-weight: 500;
	line-height: 1.5;
	min-height: 3em;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 15px;
	width: fit-content;
    margin-inline: auto;
	position: relative;
	z-index: 1;
}
.tab-content:nth-of-type(1) .catch {
	color: var(--color-pink-2);
}
.tab-content:nth-of-type(2) .catch {
	color: var(--color-purple-1);
}
.catch::before,.catch::after {
	content: "";
	width: 9.58px;
	height: 9.84px;
}
.catch::after {
	transform: rotate(180deg);
}
.model-name {
	font-size: 17px;
	font-weight: 500;
	line-height: 1.7;
	margin-top: 13px;
}
.spec-list {
	color: var(--color-gray-1);
	font-size: 13px;
	font-weight: 200;
	margin-top: 15px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 7px;
}
.highlights {
	width: 200px;
	margin: 15px auto 0;
	padding-block: 15px;
	position: relative;
	z-index: 1;
}
.highlights::before,.highlights::after {
	content: "";
	width: 220px;
	height: 6px;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
}
.highlights-ttl {
	font-size: 13px;
	font-weight: 400;
	line-height: 1;
}
.highlights-txt {
	font-size: 13px;
	line-height: 1.7;
	margin-top: 5px;
}
.model-price {
	font-size: 21px;
	font-weight: 500;
	line-height: 1;
	margin-top: 15px;
}
.model-price .tax {
	font-size: 15px;
}

@media (max-width: 840px) {/*375-768*/
	.contents__inner .deco-left,
	.contents__inner .deco-right {
		display: none;
	}
	.line-up .ttl-set.notepc .ttl-bg {
		width: 39.99466666666666vw;
		top: -8.266666666666666vw;
		left: 0;
	}
	.line-up-flex {
		gap: 5.333333333333334vw;
	}
	.line-up-flex-2 {
		margin-top: 80px;
	}
	.pc-block {
		gap: 15px;
	}
	.pc-block .desk-img {
		width: 100%;
		max-width: 131px;
	}
	.tab-menu {
		gap: 9.8px;
	}
	.tab-item {
		padding: 16px 15px;
		position: relative;
		display: flex;
        align-items: center;
	}
	.tab-inner {
		flex-direction: column;
		align-items: flex-start;
	}
	.ttl-cpu {
		font-size: 17px;
		gap: 10px;
	}
	.txt-cpu {
		font-size: 10px;
		padding-top: 5px;
		display: none;
	}
	.tab-item.active .txt-cpu {
		display: block;
	}
	.tab-content-wrapper {
		margin-top: 20px;
	}
	.line-up-inner-flex {
		flex-direction: column;
	}
	.inner-flex-left {
		width: 100%;
	}
	.note-img {
		width: 100%;
		max-width: 260px;
		margin-inline: auto;
	}
	.line-up-warp.notepc .line-up-item {
		width: 310.37px;
		height: 423.21px;
		text-align: center;
	}
	.line-up-warp.notepc .catch {
		margin-inline: auto;
	}
	.line-up-warp.notepc .spec-list {
		align-items: center;
	}
	.contents--line-up .chara-Illust-wrap {
		display: none;
	}
}

/* special-design
____________________*/
.contents--special-design{
	color: var(--color-white-1);
	position: relative;
	background: var(--color-gray-6) url(../img/collab-sf6/bg-3.webp) no-repeat center / cover;
	padding-bottom: 80px;
}
@media (max-width: 840px) {
	.contents--special-design{
		padding-bottom: 70px;
	}
}
.contents--special-design::after{
	position: absolute;
	content: "";
	width: 310px;
	height: 422px;
	background-image: url(../img/collab-sf6/bg-item-2.webp);
	background-repeat: no-repeat;
	background-position: top right;
	top: 0;
	right: 0;
}
@media (max-width: 769px) {
	.contents--special-design::after{
		display: none;
	}
}
@media (max-width: 1430px) {
	.contents--special-design .contents__inner{
		padding-inline: 0;
	}
}

/*------ スライダー ------*/
.slider-wrapper {
  position: relative;
  width: 100%;
  max-width: 1300px;
  height: 580px; /* ★ ページネーションが入る高さ分、少し拡張 */
  display: flex;
  flex-direction: column; /* ★ 縦並びにして下部にドットを配置 */
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  overflow: hidden; /* ★ スマホ時に画面外へはみ出るカードを隠す */
  color: var(--color-white-1);
}
/* タブレット769px～440px */
@media (min-width: 441px) and (max-width: 769px) {
	.slider-wrapper{
		height: 620px;
	}
}
.slider-container {
  position: relative;
  width: auto;
  height: 490px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 441px) and (max-width: 769px) {
	.slider-container{
		height: 630px;
	}
}

/* カードの基本構造（正面のサイズをベースにします） */
.card {
  position: absolute;
  width: 630px;  /* ★ 正面幅: 630px */
  height: 490px; /* ★ 正面高さ: 490px */
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 5rem;
  user-select: none;
  transform-origin: center center; /* ★ 拡大縮小の基準を中心にする */
  clip-path: polygon(
    12px 0%,                  /* ①左上のカット終点 */
    100% 0%,                  /* ②右上 */
    100% calc(100% - 12px),   /* ③右下のカット始点 */
    calc(100% - 12px) 100%,   /* ④右下のカット終点 */
    0% 100%,                  /* ⑤左下 */
    0% 12px                   /* ⑥左上のカット始点 */
  );
}
.card img{
    scale: 0.5;
}
.slide-1{
    position: relative;
}
.slide-img-1{
    position: absolute;
    z-index: 1;
    top: -55px;
    right: -75px;
}
.slide-img-2{
    position: absolute;
    z-index: 1;
    bottom: -110px;
    left: -70px;
}
.slide-img-3{
    position: absolute;
    z-index: 1;
    bottom: -110px;
    left: -45px;
}

.slide-txt-left{
    position: absolute;
    top: 25px;
    left: 23px;
    writing-mode: vertical-rl;
    font-size: 1.6rem;
    font-family: var(--dp-font-jp);
    font-weight: 900;
}
@media (max-width: 768px) {
	.slide-txt-left{
		font-size: 1.57rem;
	}
}
.slide-txt-right{
    position: absolute;
    bottom: 25px;
    right: 23px;
    writing-mode: vertical-rl;
    font-size: 1.1rem;
    font-family: var(--dp-font-jp);
    font-weight: 900;
}
@media (max-width: 768px) {
	.slide-txt-right{
		font-size: 0.9rem;
	}
}
.slide-txt-right::after{
    position: absolute;
    content: "";
    width: 2px;
    height: 20px;
    background-color: var(--color-white-1);
    bottom: 113px;
    right: 10px;
}
@media (max-width: 768px) {
	.slide-txt-right::after{
		bottom: 95px;
	}
}

/* 左右ボタン */
.nav-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 82px;
  background: var(--color-gray-3);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 10;
  font-weight: bold;
  transition: background 0.3s;
  -webkit-tap-highlight-color: transparent; /* スマホタップ時の青い枠・ハイライトを消す */
  outline: none; /* タップ後のフォーカス枠を消す */
  clip-path: polygon(
    12px 0%,                  /* ①左上のカット終点 */
    100% 0%,                  /* ②右上 */
    100% calc(100% - 12px),   /* ③右下のカット始点 */
    calc(100% - 12px) 100%,   /* ④右下のカット終点 */
    0% 100%,                  /* ⑤左下 */
    0% 12px                   /* ⑥左上のカット始点 */
  );
}
@media (max-width: 840px) {
	.nav-button{
		width: clamp(16px, 1.978vw + 8.582px, 25px);
		height: clamp(46px, 10.769vw + 5.615px, 95px);
		clip-path: polygon(
    7px 0%,                  /* ①左上のカット終点 */
    100% 0%,                  /* ②右上 */
    100% calc(100% - 7px),   /* ③右下のカット始点 */
    calc(100% - 7px) 100%,   /* ④右下のカット終点 */
    0% 100%,                  /* ⑤左下 */
    0% 7px                   /* ⑥左上のカット始点 */
  );
	}
}
.prev-btn::after{
    width: 12px;
    height: 15px;
    position: absolute;
    content: "";
    background-image: url(../img/collab-sf6/left-arrow.webp);
    background-repeat: no-repeat;
    background-size: cover;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
@media (max-width: 768px) {
	.prev-btn::after{
		width: 6px;
		height: 8px;
	}
}
.next-btn::after{
    width: 12px;
    height: 15px;
    position: absolute;
    content: "";
    background-image: url(../img/collab-sf6/right-arrow.webp);
    background-repeat: no-repeat;
    background-size: cover;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
@media (max-width: 768px) {
	.next-btn::after{
		width: 6px;
		height: 8px;
	}
}

/* ★ マウス操作（PC）の時だけホバーでピンクにする */
@media (hover: hover) {
  .nav-button:hover {
    background: var(--color-pink-1);
  }

  .dot:hover {
    opacity: 0.8;
  }
}

/* ★ スマホでタップした「一瞬だけ」ピンクにしたい場合（不要なら削除OK） */
.nav-button:active {
  background: var(--color-pink-1);
}

/* 正面カード(幅630px)の左右端にボタンを配置 */
.prev-btn {
  left: calc(50% - 290px); /* カードの内側に寄せる場合は数字を小さくしてください */
}

.next-btn {
  right: calc(50% - 290px);
}

/* ★ 追加：ページネーション（ドット） */
.pagination {
  position: absolute;
  bottom: 10px;
  display: flex;
  gap: 12px;
  z-index: 10;
}
@media (max-width: 768px) {
	.pagination{
		bottom: 2px;
	}
}
.dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background-color: var(--color-gray-5); /* 非アクティブ：グレー */
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;
  -webkit-tap-highlight-color: transparent;
}
@media (max-width: 768px) {
	.dot{
		width: 9px;
		height: 9px;
	}
}
.dot.active {
  background-color: var(--color-pink-1); /* アクティブ：ピンク */
  transform: scale(1.3);
}

/* ★ スマホ用（768px以下）の設定 */
@media (max-width: 768px) {
  .slider-wrapper {
    width: 100vw; /* 画面幅いっぱい */
    height: auto;
    margin-left: calc(50% - 50vw); /* 親要素の幅指定を突き抜けて画面全幅にする */
    overflow: hidden; /* 端が見切れたカードを綺麗に切り落とす */
  }
  
  /* スマホ時はボタンの位置を正面カードの内側両端に配置 */
  .prev-btn {
    left: 35px; /* カード左端からの位置 */
  }
  .next-btn {
    right: 35px; /* カード右端からの位置 */
  }
}
/* スマホサイズ440px以下 */
@media (max-width: 441px) {
	.slider-container {
    height: clamp(300px, 76.923vw + 11.538px, 350px);
  }
}



/*------ プロフィール ------*/
.artist-profile{
	position: relative;
	display: flex;
	justify-content: center;
	gap: 40px;
	padding-block: 35px;
	margin-top: 55px;
}
@media (max-width: 768px) {
	.artist-profile{
		flex-direction: column;
		margin-top: 30px;
		gap: 20px;
		padding-block: 0;
		padding-inline: var(--cts-gutter);
		padding-top: 30px;
	}
}
.artist-profile::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px; /* 1pxの線 */
  background: linear-gradient(
    90deg, 
    transparent, 
    rgba(139, 29, 130, 1) 20% 80%, 
    transparent
  );
}
.artist-profile::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px; /* 1pxの線 */
  background: linear-gradient(
    90deg, 
    transparent, 
    rgba(139, 29, 130, 1) 20% 80%, 
    transparent
  );
}
.profile-bg::after{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	content: "";
	background: linear-gradient(
	90deg, 
	transparent, 
	rgba(139, 29, 130, 0.6) 20% 80%, 
	transparent);
	mix-blend-mode: multiply;
}
.profile-left{
	display: flex;
	gap: 15px;
	align-items: center;
	justify-content: center;
	font-size: clamp(1.3125rem, 1.0568rem + 1.0909vw, 1.875rem);
	font-weight: 700;
	z-index: 1;
}
@media (max-width: 768px) {
	.profile-left{
		flex-direction: column;
	}
}
.profile-name{
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
}
@media (max-width: 768px) {
	.profile-name{
		flex-direction: row;
		justify-content: center;
		align-items: center;
		gap: 10px;
		padding-left: 23px;
	}
}
.profile-left .sub-ttl{
	position: relative;
	font-size: clamp(0.6875rem, 0.5739rem + 0.4848vw, 0.9375rem);
	font-weight: 900;
}
@media (max-width: 768px) {
	.profile-left .sub-ttl{
		padding-top: 5px;
	}
}
.profile-left .sub-ttl::before{
	position: absolute;
	content: "";
	width: 14px;
	height: 2px;
	background-color: var(--color-white-1);
	top: 40%;
	left: -24px;
}
@media (max-width: 768px) {
	.profile-left .sub-ttl::before{
		margin-top: 3px;
	}
}
.profile-left img{
	width: 132px;
	height: 132px;
	padding-left: 25px;
	box-sizing: content-box;
}
@media (max-width: 768px) {
	.profile-left img{
		width: 105px;
		height: 105px;
		padding-left: 0;
	}
}
.profile-right{
	font-size: clamp(0.75rem, 0.6648rem + 0.3636vw, 0.9375rem);
	font-weight: 700;
	line-height: 1.667;
	padding-left: 20px;
	z-index: 1;
}
@media (max-width: 768px) {
	.profile-right{
		display: flex;
		flex-direction: column;
		align-items: center;
		text-align: center;
		padding-left: 0;
	}
}
.profile-right .sub-ttl{
	position: relative;
	font-weight: 900;
	padding-bottom: 10px;
}
.profile-right .sub-ttl::before{
	position: absolute;
	content: "";
	width: 14px;
	height: 2px;
	background-color: var(--color-white-1);
	top: 25%;
	left: -24px;
}
.profile-txt{
	padding-bottom: 20px;
}
.profile-link{
	display: flex;
	gap: 16px;
}
.x-link{
	width: 54px;
	height: 54px;
}
.x-link img{
	width: 100%;
	height: 100%;
}
.ganjuri-logo{
	width: 91px;
	height: 53px;
}
.ganjuri-logo img{
	width: 100%;
	height: 100%;
}

/* bonus
____________________*/
.contents--bonus{
	color: var(--color-white-1);
	position: relative;
	background: var(--color-black-1) url(../img/collab-sf6/bg-2.webp) no-repeat center / cover;
	z-index: 1;
	padding-bottom: 80px;
}
@media (max-width: 768px) {
	.contents--bonus{
		padding-bottom: 50px;
	}
}
.contents--bonus::before{
	position: absolute;
	content: "";
	width: 310px;
	height: 422px;
	background-image: url(../img/collab-sf6/bg-item-1.webp);
	background-repeat: no-repeat;
	background-position: top right;
	top: 0;
	right: 0;
	z-index: 1;
}
@media (max-width: 769px) {
	.contents--bonus::before{
		display: none;
	}
}
.contents--bonus figure{
	position: relative;
	z-index: 1;
	padding-top: 50px;
}
@media (max-width: 768px) {
	.contents--bonus figure{
		padding-top: 20px;
	}
}
.contents--bonus figcaption{
	font-size: clamp(0.625rem, 0.5398rem + 0.3636vw, 0.8125rem);
	color: var(--color-gray-3);
	font-family: var(--cts-font);
	padding-top: 30px;
}
@media (max-width: 768px) {
	.contents--bonus figcaption{
		padding-top: 20px;
	}
}
.wallpaper img{
	max-width: 676px;
}
@media (max-width: 768px) {
	.wallpaper img{
		max-width: 100%;
	}
}

/* about
____________________*/
.contents--about{
	position: relative;
	padding-top: 120px;
}
@media (max-width: 768px) {
	.contents--about{
		padding-top: 80px;
	}
}
@media (max-width: 768px) {
	.contents--about::after{
		content: none;
	}
}
.about{
	display: flex;
	flex-direction: column;
	color: var(--color-white-1);
	font-family: var(--cts-font);
	align-items: center;
	justify-content: center;
	padding-top: 120px;
}
@media (max-width: 768px) {
	.about{
		flex-direction: column;
		gap: 0;
		padding-top: 60px;
	}
}
.about::after{
	position: absolute;
	content: "";
	width: 100%;
	height: 1px;
	top: 0;
	left: 0;
	background: linear-gradient(
    90deg, 
    transparent, 
    rgba(193, 193, 193, 1) 20% 80%, 
    transparent
  );
}
@media (max-width: 768px) {
	.about::before{
		width: 80%;
		left: 10%;
	}
}

.game-intro img{
	width: 314px;
}
@media (max-width: 768px) {
	.about .game-ss img{
		width: 200px;
	}
}
.about p{
	position: relative;
	padding-left: 45px;
	font-weight: 500;
	font-size: 0.9em;
	line-height: 1.667;
}
@media (max-width: 768px) {
	.about p{
		padding-left: 0;
		padding-top: 30px;
		font-weight: 500;
		text-align: left;
	}
}
.game-intro{
	display: flex;
	align-items: center;
}
@media (max-width: 768px) {
	.game-intro{
		flex-direction: column;
	}
}
.about-txt{
	max-width: 740px;
}
@media (max-width: 768px) {
	.about-txt{
		padding-inline: 15px;
	}
}
.about-txt p{
	padding-top: 10px;
}
.about-txt p:first-of-type{
	padding-top: 15px;
}
.about-txt .sub-ttl{
	position: relative;
	font-size: 0.9em;
	font-weight: 900;
	margin-left: 45px;
	padding-left: 32px;
	letter-spacing: 0.03em;
}
.about-txt .sub-ttl::before{
	position: absolute;
	content: "";
	width: 14px;
	height: 2px;
	background: var(--color-white-1);
	top: 50%;
	left: 0;
}
.game-ss{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	padding-top: 120px;
}
@media (max-width: 768px) {
	.game-ss{
		padding-top: 50px;
		gap: 10px;
	}
}
.game-ss img{
	max-width: 246px;
}
@media (max-width: 768px) {
	.game-ss img{
		max-width: 140px;
	}
}

/* footer-logo
____________________*/
.footer-logo{
	width: 100%;
	display: flex;
	padding-top: 130px;
	justify-content: center;
	gap: 90px;
}
@media (max-width: 768px) {
	.footer-logo{
		flex-direction: column;
		justify-content: center;
		align-items: center;
		padding-top: 50px;
		gap: 30px;
	}
}
.sf-logo{
	width: 245px;
}
@media (max-width: 768px) {
	.sf-logo{
		width: 180px;
		height: 100%;
	}
}
.galleria-logo{
	width: 200px;
	height: 100%;
}
@media (max-width: 768px) {
	.galleria-logo{
		width: 170px;
		height: 100%;
	}
}
.copy{
	padding-top: 110px;
	font-size: 11px;
	text-align: center;
	font-weight: 400;
}
@media (max-width: 768px) {
	.copy{
		padding-top: 50px;
	}
}

/* top-anchor
____________________*/
.contents--top-anchor {
	position: fixed !important;
	padding: 0;
	bottom: max(2.5vw, 30px);
	right: max(2.5vw, 30px);
	z-index: 10;
	transition: all .3s;

	/* --- 初期状態：非表示（クリック不可） --- */
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

/* --- 表示状態（JavaScriptで制御） --- */
.contents--top-anchor.is-active-anc {
	opacity: 1;
	visibility: visible;
	pointer-events: auto; /* 表示時はクリックを許可 */
}

.top-anchor {
	position: relative; /* 重複していたため1つに統合 */
	display: flex;
	justify-content: center;
	align-items: center;
	width: clamp(100px, 1.978rem + 7.56vw, 161px);
	height: clamp(100px, 1.978rem + 7.56vw, 161px);
	top: 0;
	border-radius: 50%;
	transition: all .3s;
	z-index: 1;
	backdrop-filter: blur(20px);
}

.top-anchor .top-arrow {
	position: relative;
	z-index: 3;
}

.top-anchor .bg-return {
	animation: rotate-bg-return 16s linear infinite;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
}

@keyframes rotate-bg-return {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

.top-anchor:hover {
	top: -10px;
}

/* あしらい動き
____________________*/
/* ぴょこ用コンテナ（下が見切れるのを物理的に防ぐ設定） */
.pyoko-container {
  display: inline-block;
  overflow: hidden;         /* 枠外を隠す */
  line-height: 0;
  
  /* --- 見切れ防止の魔法の指定 --- */
  padding-bottom: 30px;     /* コンテナの底を30px深くして「画像の見切れ」を隠すスペースを作る */
  margin-bottom: -30px;    /* paddingで広げた分のレイアウト崩れ（隙間）を打ち消す */
}

/* ぴょこ画像本体 */
img.pyoko {
  display: block;
  max-width: 100%;
  height: auto;
}

/* ゆらゆらさせる画像の設定 */
img.yurayura {
  display: inline-block;
  transform-origin: center center; /* 回転の軸を中心に設定 */
  will-change: transform;         /* アニメーションの描画をスムーズにする設定 */
}