/* ================================================================
   front-page.css — DeNA SPORTS GROUP TOP page clone
================================================================ */

:root {
	--fp-black:   #0a0a0a;
	--fp-dark:    #111111;
	--fp-gray:    #888888;
	--fp-light:   #f5f5f5;
	--fp-white:   #ffffff;
	--fp-blue:    #003a8c;
	--fp-navy:    #001a4e;
	--fp-gold:    #c8a000;
	--fp-header-h: 90px;
	--fp-transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Reset for this page ---- */
.fp-body {
	margin: 0;
	padding: 0;
	background: rgba(10, 10, 10, 0.85);
	color: var(--fp-white);
	font-family: 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

.fp-body *,
.fp-body *::before,
.fp-body *::after {
	box-sizing: border-box;
}

/* override default WP site-header */
.fp-body #masthead { display: none; }
.fp-body #page { background: none; }
.fp-body #content { display: none; }
.fp-body #colophon { display: none; }

.fp-body a:visited { color: inherit; }

/* ================================================================
   UTILITY
================================================================ */
.fp-section-label {
	display: block;
	font-size: clamp(24px, 8vw, 96px);
	font-weight: 700;
	letter-spacing: 0.3em;
	color: #1f1f1f;
	margin-bottom: 40px;
	text-transform: uppercase;
	text-align: center;
}

.fp-section-label--white {
	color: #1f1f1f;
}

.fp-section-label--with-sub {
	margin-bottom: 2px;
}

.fp-section-subtitle {
	display: block;
	font-size: 15px;
	letter-spacing: 0.1em;
	color: rgba(31,31,31,0.5);
	margin-bottom: 48px;
	text-align: center;
}

.fp-section-subtitle--white {
	color: rgba(31,31,31,0.5);
}

.sp-only { display: none; }

/* ================================================================
   BUTTONS
================================================================ */
/* ---- Btn LandScape (DeNA Sports Group inspired) ---- */
.fp-btn {
	--btn-color: var(--fp-dark);
	--btn-hover-color: var(--fp-white);
	position: relative;
	isolation: isolate;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 46px;
	padding: 0 40px;
	border-radius: 50px;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.15em;
	text-decoration: none;
	text-transform: uppercase;
	overflow: hidden;
	cursor: pointer;
	transition: color var(--fp-transition);
	color: var(--btn-color);
}

/* border ring */
.fp-btn::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 50px;
	border: 1.5px solid var(--btn-color);
	pointer-events: none;
	z-index: 1;
	transition: border-color var(--fp-transition);
}

/* fill — behind text (z-index: -1 within isolation: isolate context) */
.fp-btn::after {
	content: '';
	position: absolute;
	inset: 0;
	background: var(--btn-color);
	border-radius: 50px;
	transform: scale(0);
	transition: transform var(--fp-transition), background var(--fp-transition);
	z-index: -1;
}

.fp-body .fp-btn:visited { color: var(--btn-color); }

.fp-body .fp-btn:hover { color: var(--btn-hover-color); }
.fp-body .fp-btn:hover::after { transform: scale(1); }

/* ---- outline variant (dark on light bg) ---- */
.fp-btn--outline {
	--btn-color: var(--fp-dark);
	--btn-hover-color: var(--fp-white);
}

/* ---- white-sm variant (white on dark bg, smaller) ---- */
.fp-btn--white-sm {
	--btn-color: var(--fp-white);
	--btn-hover-color: var(--fp-dark);
	height: 40px;
	padding: 0 28px;
}

/* ================================================================
   HEADER
================================================================ */
.fp-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	height: var(--fp-header-h);
	transition: background var(--fp-transition), box-shadow var(--fp-transition);
}

.fp-header.is-scrolled {
	background: rgba(10, 10, 10, 0.85);
	backdrop-filter: blur(10px);
	box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.fp-header__inner {
	display: flex;
	align-items: center;
	height: 100%;
	padding: 0 40px;
	gap: 40px;
}

.fp-header__logo a {
	text-decoration: none;
}

.fp-header__logo-img {
	display: block;
	height: 50px;
	width: auto;
}

.fp-header__nav {
	margin-left: auto;
}

.fp-header__nav-list {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 32px;
}

.fp-header__nav-list a {
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 0.12em;
	color: var(--fp-white);
	text-decoration: none;
	opacity: 0.8;
	transition: opacity var(--fp-transition);
}

.fp-header__nav-list a:hover {
	opacity: 1;
}

/* wp_nav_menu ドロップダウン */
.fp-header__nav-list > li {
	position: relative;
}

.fp-header__nav-list .sub-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	background: rgba(0, 0, 0, 0.85);
	min-width: 160px;
	padding: 8px 0;
	list-style: none;
	margin: 0;
	gap: 0;
	white-space: nowrap;
	z-index: 100;
}

.fp-header__nav-list > li:hover > .sub-menu {
	display: block;
}

.fp-header__nav-list .sub-menu li {
	margin: 0;
}

.fp-header__nav-list .sub-menu a {
	display: block;
	padding: 8px 16px;
	font-size: 11px;
	opacity: 0.85;
}

.fp-header__contact {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.15em;
	color: var(--fp-white);
	text-decoration: none;
	padding: 10px 20px;
	border: 1px solid rgba(255,255,255,0.6);
	transition: all var(--fp-transition);
	white-space: nowrap;
}

.fp-header__contact:hover {
	background: var(--fp-white);
	color: var(--fp-black);
}

.fp-header__hamburger {
	display: none;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-end;
	width: 30px;
	height: 18px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
}

.fp-header__hamburger span {
	display: block;
	height: 2px;
	background: var(--fp-white);
	transition: all var(--fp-transition);
}

/* 上から下へ徐々に短く・右寄せ */
.fp-header__hamburger span:nth-child(1) { width: 100%; }
.fp-header__hamburger span:nth-child(2) { width: 65%; }
.fp-header__hamburger span:nth-child(3) { width: 38%; }

/* open: X に変形 */
.fp-header__hamburger.is-open span:nth-child(1) {
	transform: translateY(8px) rotate(45deg);
}
.fp-header__hamburger.is-open span:nth-child(2) {
	opacity: 0;
}
.fp-header__hamburger.is-open span:nth-child(3) {
	width: 100%;
	transform: translateY(-8px) rotate(-45deg);
}

/* ================================================================
   MOBILE NAV OVERLAY
================================================================ */
.fp-nav-overlay {
	position: fixed;
	inset: 0;
	z-index: 999;
	background: rgba(8, 8, 12, 0.97);
	overflow-y: auto;
	visibility: hidden;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1),
	            visibility 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

/* スクロールと中央寄せを分離: min-height: 100% で短い時は中央、長い時は上から流れる */
.fp-nav-overlay__body {
	min-height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: var(--fp-header-h) 20px 40px;
	box-sizing: border-box;
}

.fp-nav-overlay.is-open {
	visibility: visible;
	opacity: 1;
	pointer-events: all;
}

/* ---- nav list ---- */
.fp-nav-overlay__nav > ul {
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: center;
}

.fp-nav-overlay__nav > ul > li {
	margin-bottom: 18px;
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.4s ease, transform 0.4s ease;
}

/* stagger: オープン時に順番にslide-up */
.fp-nav-overlay.is-open .fp-nav-overlay__nav > ul > li {
	opacity: 1;
	transform: translateY(0);
}
.fp-nav-overlay.is-open .fp-nav-overlay__nav > ul > li:nth-child(1)  { transition-delay: 0.08s; }
.fp-nav-overlay.is-open .fp-nav-overlay__nav > ul > li:nth-child(2)  { transition-delay: 0.13s; }
.fp-nav-overlay.is-open .fp-nav-overlay__nav > ul > li:nth-child(3)  { transition-delay: 0.18s; }
.fp-nav-overlay.is-open .fp-nav-overlay__nav > ul > li:nth-child(4)  { transition-delay: 0.23s; }
.fp-nav-overlay.is-open .fp-nav-overlay__nav > ul > li:nth-child(5)  { transition-delay: 0.28s; }
.fp-nav-overlay.is-open .fp-nav-overlay__nav > ul > li:nth-child(6)  { transition-delay: 0.33s; }
.fp-nav-overlay.is-open .fp-nav-overlay__nav > ul > li:nth-child(7)  { transition-delay: 0.38s; }
.fp-nav-overlay.is-open .fp-nav-overlay__nav > ul > li:nth-child(8)  { transition-delay: 0.43s; }
.fp-nav-overlay.is-open .fp-nav-overlay__nav > ul > li:nth-child(9)  { transition-delay: 0.48s; }
.fp-nav-overlay.is-open .fp-nav-overlay__nav > ul > li:nth-child(10) { transition-delay: 0.53s; }

/* ---- top-level links ---- */
.fp-nav-overlay__nav > ul > li > a {
	position: relative;
	display: inline-block;
	padding: 7px 0;
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 0.2em;
	color: var(--fp-white);
	text-decoration: none;
	opacity: 0.85;
	transition: opacity 0.25s ease;
}

.fp-nav-overlay__nav > ul > li > a::after {
	content: '';
	position: absolute;
	bottom: 4px;
	left: 0;
	width: 0;
	height: 1px;
	background: var(--fp-white);
	transition: width 0.3s ease;
}

.fp-nav-overlay__nav > ul > li > a:hover {
	opacity: 1;
}

.fp-nav-overlay__nav > ul > li > a:hover::after {
	width: 100%;
}

/* ---- SNS icons ---- */
.fp-nav-overlay__sns {
	display: flex;
	justify-content: center;
	gap: 24px;
	margin-top: 40px;
}

.fp-nav-overlay__sns-link {
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0.6;
	transition: opacity 0.25s ease;
}

.fp-nav-overlay__sns-link:hover {
	opacity: 1;
}

/* ---- 展開ボタン（シェブロン専用） ---- */
/* grid: [空白48px] [リンク auto] [ボタン48px] → テキストを確実に中央揃え */
.fp-nav-overlay__nav .menu-item-has-children {
	display: grid;
	grid-template-columns: 48px auto 48px;
	grid-template-rows: auto auto;
	align-items: center;
	justify-items: center;
}

.fp-nav-overlay__nav .menu-item-has-children > a {
	grid-column: 2;
	grid-row: 1;
}

.nav-toggle {
	grid-column: 3;
	grid-row: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
}

.nav-arrow {
	display: inline-block;
	width: 10px;
	height: 10px;
	border-right: 2px solid rgba(255,255,255,0.7);
	border-bottom: 2px solid rgba(255,255,255,0.7);
	transform: rotate(-45deg) translateY(-2px);
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.fp-nav-overlay__nav .menu-item-has-children.is-expanded .nav-arrow {
	transform: rotate(45deg) translateY(-4px);
}

/* ---- sub-menu slide-down ---- */
.fp-nav-overlay__nav .sub-menu {
	grid-column: 1 / -1;
	grid-row: 2;
	width: 100%;
	list-style: none;
	margin: 0;
	padding: 0;
	max-height: 0;
	overflow: hidden;
	border-top: 0px solid rgba(255,255,255,0.1);
	transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1),
	            opacity 0.3s ease,
	            margin 0.3s ease,
	            padding 0.3s ease,
	            border-top-width 0.3s ease;
	opacity: 0;
}

.fp-nav-overlay__nav .menu-item-has-children.is-expanded > .sub-menu {
	max-height: 400px;
	opacity: 1;
	margin: 8px 0 0;
	padding: 8px 0 4px;
	border-top-width: 1px;
}

.fp-nav-overlay__nav .sub-menu li {
	padding: 0;
}

.fp-nav-overlay__nav .sub-menu a {
	display: block;
	padding: 13px 16px;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.15em;
	color: rgba(255, 255, 255, 0.75);
	text-decoration: none;
	transition: color 0.2s ease, background 0.2s ease;
}

.fp-nav-overlay__nav .sub-menu a:hover,
.fp-nav-overlay__nav .sub-menu a:active {
	color: rgba(255, 255, 255, 1);
	background: rgba(255, 255, 255, 0.06);
}

/* ================================================================
   HERO
================================================================ */
/* フロー上のプレースホルダー（テキスト・UI を absolute で重ねる） */
.fp-hero-wrap {
	position: relative;
	height: 100svh;
	min-height: 600px;
	z-index: 2;
}

/* 背景は fixed で常にビューポート背面に固定 */
.fp-hero {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100svh;
	min-height: 600px;
	overflow: hidden;
	z-index: 0;
}

.fp-hero__artwork {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	pointer-events: none;
	display: block;
}

.fp-hero__slides {
	position: absolute;
	inset: 0;
}

.fp-hero__slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity 2s ease-in-out;
	overflow: hidden;
}

.fp-hero__slide.is-active {
	opacity: 1;
}

/* 各スライドのグラデーション背景 */
.fp-hero__slide--1 {
	background-image: linear-gradient(160deg, #003db3 0%, #0055cc 50%, #1a66e0 100%);
}
.fp-hero__slide--2 {
	background-image: linear-gradient(160deg, #6a0030 0%, #8b0042 50%, #a3004e 100%);
}
.fp-hero__slide--3 {
	background-image: linear-gradient(160deg, #004444 0%, #006060 50%, #007575 100%);
}
.fp-hero__slide--4 {
	background-image: linear-gradient(160deg, #003db3 0%, #0055cc 50%, #1a66e0 100%);
}
.fp-hero__slide--5 {
	background-image: linear-gradient(160deg, #6a0030 0%, #8b0042 50%, #a3004e 100%);
}
.fp-hero__slide--6 {
	background-image: linear-gradient(160deg, #004444 0%, #006060 50%, #007575 100%);
}

/* PNG image — 共通 */
.fp-hero__slide-img {
	position: absolute;
	top: 0;
	height: 130%;
	width: auto;
	max-width: 75%;
	object-fit: cover;
	object-position: top center;
	display: block;
	transform: scale(1.04);
	transition: transform 6s ease-out;
	-webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
	mask-image:         linear-gradient(to bottom, black 50%, transparent 100%);
}

.fp-hero__slide.is-active .fp-hero__slide-img {
	transform: scale(1);
}

/* 奇数スライド（1,3,5）: 右 */
.fp-hero__slide--1 .fp-hero__slide-img,
.fp-hero__slide--3 .fp-hero__slide-img,
.fp-hero__slide--5 .fp-hero__slide-img {
	right: 0;
	left: auto;
}

/* 偶数スライド（2,4,6）: 左 */
.fp-hero__slide--2 .fp-hero__slide-img,
.fp-hero__slide--4 .fp-hero__slide-img,
.fp-hero__slide--6 .fp-hero__slide-img {
	left: 0;
	right: auto;
}


.fp-hero__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	transition: background 2.5s ease-in-out;
	/* デフォルト（右配置用）: 左から右へフェード */
	background: linear-gradient(
		to right,
		rgba(10,10,10,0.5)  0%,
		rgba(10,10,10,0.35) 35%,
		rgba(10,10,10,0.1)  60%,
		rgba(10,10,10,0)    80%
	);
}

/* 偶数スライド（左配置）がアクティブ時: 右から左へフェード */
.fp-hero--img-left .fp-hero__overlay {
	background: linear-gradient(
		to left,
		rgba(10,10,10,0.5)  0%,
		rgba(10,10,10,0.35) 35%,
		rgba(10,10,10,0.1)  60%,
		rgba(10,10,10,0)    80%
	);
}


.fp-hero__content {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	z-index: 1;
	text-align: center;
	padding-top: var(--fp-header-h);
}

.fp-hero__brand-logo {
	margin-bottom: 40px;
}

.fp-hero__brand-dena {
	display: block;
	font-size: clamp(48px, 8vw, 96px);
	font-weight: 900;
	letter-spacing: 0.05em;
	color: var(--fp-white);
	line-height: 1;
}

.fp-hero__brand-sports {
	display: block;
	font-size: clamp(14px, 2vw, 22px);
	font-weight: 700;
	letter-spacing: 0.35em;
	color: rgba(255,255,255,0.85);
	margin-top: 12px;
}

.fp-hero__copy {
	font-size: clamp(18px, 3vw, 28px);
	font-weight: 700;
	color: var(--fp-white);
	letter-spacing: 0.08em;
	margin: 0;
	line-height: 1.8;
}

.fp-hero__scroll {
	position: absolute;
	bottom: 40px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
}

.fp-hero__scroll-text {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.3em;
	color: rgba(255,255,255,0.7);
}

.fp-hero__scroll-line {
	display: block;
	width: 1px;
	height: 60px;
	background: rgba(255,255,255,0.4);
	position: relative;
	overflow: hidden;
}

.fp-hero__scroll-line::after {
	content: '';
	display: block;
	position: absolute;
	top: -100%;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--fp-white);
	animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
	0%   { top: -100%; }
	100% { top: 100%; }
}

.fp-hero__dots {
	position: absolute;
	bottom: 40px;
	right: 40px;
	z-index: 1;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.fp-hero__dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: rgba(255,255,255,0.3);
	border: none;
	cursor: pointer;
	padding: 0;
	transition: all var(--fp-transition);
}

.fp-hero__dot.is-active {
	background: var(--fp-white);
	transform: scale(1.4);
}

/* ================================================================
   ABOUT
================================================================ */
.fp-about {
	position: relative;
	z-index: 2;
	background: transparent;
	padding: 120px 40px;
}

.fp-about__inner {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}

.fp-about .fp-section-label {
	color: #fff;
}

.fp-about__text {
	font-size: 32px;
	font-weight: 700;
	line-height: 2.2;
	color: #fff;
	text-align: justify;
	margin: 0 0 48px;
}

.fp-about__catch {
	font-size: 28px;
	font-weight: 700;
	color: #fff;
	margin: 0 0 56px;
	letter-spacing: 0.04em;
	line-height: 1.6;
}

.fp-about .fp-btn--outline {
	--btn-color: var(--fp-white);
	--btn-hover-color: var(--fp-black);
}

/* ================================================================
   YT BANNER
================================================================ */
.fp-yt-banner {
	position: relative;
	z-index: 2;
	overflow: hidden;
	background: #000;
}

/* PC: 全幅・高さ 2/3 で上下クロップ (56.25% × 2/3 = 37.5%) */
.fp-yt-banner__wrap {
	position: relative;
	width: 100%;
	padding-top: 37.5%;
}

/* 16:9 iframeを縦中央配置 → 上下がはみ出してfp-bannerのoverflow:hiddenでクロップ */
.fp-yt-banner__iframe {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	aspect-ratio: 16 / 9;
	transform: translateY(-50%);
	border: none;
	display: block;
}

/* クリック吸収オーバーレイ — コントロールUIを完全に隠す */
.fp-yt-banner__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
}

/* SP: 縦長 3:4 表示 (動画を高さで合わせてサイドをトリミング) */
@media (max-width: 767px) {
	.fp-yt-banner__wrap {
		padding-top: 133.33%; /* 3:4 portrait */
	}
	.fp-yt-banner__iframe {
		top: 0;
		width: 237.04%;
		max-width: none;
		height: 100%;
		left: -68.52%;
		aspect-ratio: auto;
		transform: none;
	}
}

/* ================================================================
   BANNER
================================================================ */
.fp-banner {
	position: relative;
	z-index: 2;
	overflow: hidden;
	background: #fff;
}

.fp-banner__img {
	display: block;
	width: 100%;
}

/* ================================================================
   BRAND
================================================================ */
.fp-brand {
	position: relative;
	z-index: 2;
	background: #ffffff;
	overflow: hidden;
	padding: 120px 40px;
}


.fp-brand__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2px;
}

.fp-brand__card {
	position: relative;
	overflow: hidden;
	background: #ffffff;
}

.fp-brand__card-visual {
	display: block;
	position: relative;
	padding-top: 62%;
	overflow: hidden;
}

.fp-brand__card-img-wrap {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fp-brand__card:hover .fp-brand__card-img-wrap {
	transform: scale(1.06);
}

.fp-brand__card-visual--baystars .fp-brand__card-img-wrap {
	background-image: url('../img/class-major.jpg');
}
.fp-brand__card-visual--thunder .fp-brand__card-img-wrap {
	background-image: url('../img/class-minor.jpg');
}
.fp-brand__card-visual--scsagami .fp-brand__card-img-wrap {
	background-image: url('../img/class-teeball.jpg');
}

.fp-brand__card-body {
	padding: 32px 28px 36px;
}

.fp-brand__card-logo {
	margin-bottom: 16px;
}

.fp-brand__card-logo span {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.25em;
	color: rgba(31,31,31,0.5);
}

.fp-brand__card-name {
	font-size: 18px;
	font-weight: 700;
	color: #1f1f1f;
	margin: 0 0 12px;
	letter-spacing: 0.02em;
	line-height: 1.4;
}

.fp-brand__card-desc {
	font-size: 15px;
	line-height: 1.9;
	color: rgba(31,31,31,0.75);
	margin: 0 0 28px;
}

.fp-brand .fp-section-label {
	color: #1f1f1f;
}

.fp-brand .fp-section-subtitle {
	color: rgba(31,31,31,0.5);
}

.fp-brand .fp-btn--white-sm,
.fp-brand__card-body .fp-btn {
	--btn-color: #1f1f1f;
	--btn-hover-color: #fff;
}

/* ================================================================
   SLIDER (shared)
================================================================ */
.fp-slider-outer {
	position: relative;
}

.fp-slider-wrap {
	width: 100%;
	overflow: hidden;
}

.fp-slider-track {
	display: flex;
	gap: 20px;
	will-change: transform;
	transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.fp-slider-card {
	flex: 0 0 calc((100% - 40px) / 3);
	min-width: 0;
}

.fp-slider-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.18);
	border: none;
	color: var(--fp-white);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background var(--fp-transition);
	padding: 0;
}

.fp-slider-btn--prev { left: 16px; }
.fp-slider-btn--next { right: 16px; }

.fp-slider-btn:hover {
	background: rgba(255, 255, 255, 0.35);
}

.fp-slider-btn.is-disabled {
	opacity: 0.25;
	pointer-events: none;
}

.fp-slider-btn svg {
	width: 22px;
	height: 22px;
}

.fp-slider-btn--dark {
	background: rgba(0, 0, 0, 0.25);
	border: none;
	color: var(--fp-white);
}

.fp-slider-btn--dark:hover {
	background: rgba(0, 0, 0, 0.45);
}

/* ================================================================
   MOVIE
================================================================ */
.fp-movie {
	position: relative;
	z-index: 2;
	background: #f5f5f5;
	overflow: hidden;
	padding: 120px 40px;
}

.fp-movie .fp-slider-outer,
.fp-ob .fp-slider-outer {
	margin-left: -40px;
	margin-right: -40px;
}


.fp-video-card {
	display: block;
	text-decoration: none;
}

.fp-video-card__thumb {
	position: relative;
	padding-top: 56.25%;
	background-size: cover;
	background-position: center;
	background-color: #1a1a1a;
	overflow: hidden;
}

.fp-video-card__thumb::after {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.15);
	transition: background var(--fp-transition);
}

.fp-video-card:hover .fp-video-card__thumb::after {
	background: rgba(0, 0, 0, 0.02);
}

.fp-video-card__play {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: rgba(220, 0, 0, 0.88);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform var(--fp-transition), background var(--fp-transition);
}

.fp-video-card__play svg {
	width: 22px;
	height: 22px;
	margin-left: 3px;
}

.fp-video-card:hover .fp-video-card__play {
	transform: translate(-50%, -50%) scale(1.12);
	background: rgba(220, 0, 0, 1);
}

/* ================================================================
   OB
================================================================ */
.fp-ob {
	position: relative;
	z-index: 2;
	background: #ffffff;
	overflow: hidden;
	padding: 120px 40px;
}


.fp-ob .fp-section-label {
	color: #1f1f1f;
}

.fp-ob .fp-section-subtitle {
	color: rgba(31,31,31,0.5);
}

.fp-ob-card {
	display: block;
}

.fp-ob-card__img {
	width: 100%;
	height: auto;
	display: block;
	transition: opacity var(--fp-transition);
}

.fp-ob-card:hover .fp-ob-card__img {
	opacity: 0.8;
}

.fp-movie__more-wrap {
	text-align: center;
	margin-top: 48px;
}

.fp-movie .fp-btn--outline {
	--btn-color: #1f1f1f;
	--btn-hover-color: #fff;
}

.fp-movie .fp-slider-btn {
	background: rgba(0, 0, 0, 0.25);
	color: var(--fp-white);
}

.fp-movie .fp-slider-btn:hover {
	background: rgba(0, 0, 0, 0.45);
}

.fp-ob__more-wrap {
	text-align: center;
	margin-top: 48px;
}

/* ================================================================
   REPORT
================================================================ */
.fp-report {
	position: relative;
	z-index: 2;
	background: var(--fp-light);
	padding: 120px 40px;
}


.fp-report__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
	margin-bottom: 60px;
}

.fp-report__card {
	background: var(--fp-white);
	overflow: hidden;
	transition: box-shadow var(--fp-transition);
}

.fp-report__card:hover {
	box-shadow: 0 8px 40px rgba(0,0,0,0.12);
}

.fp-report__card-link {
	display: block;
	text-decoration: none;
	color: inherit;
}

.fp-report__card-thumb {
	width: 100%;
	padding-top: 62%;
	background-size: cover;
	background-position: center;
	background-color: #ddd;
}

.fp-report__empty {
	color: var(--fp-gray);
	font-size: 14px;
}

.fp-report__card-body {
	padding: 24px 24px 28px;
}

.fp-report__card-date {
	display: block;
	font-size: 13px;
	color: var(--fp-gray);
	letter-spacing: 0.05em;
	margin-bottom: 10px;
}

.fp-report__card-title {
	font-size: 17px;
	font-weight: 700;
	color: var(--fp-dark);
	line-height: 1.7;
	margin: 0 0 16px;
}

.fp-report__card-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.fp-report__card-tag {
	font-size: 12px;
	color: var(--fp-blue);
	letter-spacing: 0.03em;
}

.fp-report__more-wrap {
	text-align: center;
}

/* ================================================================
   NEWS
================================================================ */
/* ================================================================
   INSTAGRAM
================================================================ */
.fp-instagram {
	position: relative;
	z-index: 2;
	background: #ffffff;
	overflow: hidden;
	padding: 120px 40px;
}

.fp-instagram__inner {
	max-width: 1200px;
	margin: 0 auto;
}

.fp-instagram__feed {
	margin-bottom: 60px;
}

.fp-instagram__more-wrap {
	text-align: center;
}

.fp-news {
	position: relative;
	z-index: 2;
	background: #f5f5f5;
	padding: 120px 40px;
}


.fp-news__inner {
	max-width: 900px;
	margin: 0 auto;
}

.fp-news__list {
	list-style: none;
	margin: 0 0 60px;
	padding: 0;
}

.fp-news__item {
	border-bottom: 1px solid rgba(0,0,0,0.1);
}

.fp-news__item:first-child {
	border-top: 1px solid rgba(0,0,0,0.1);
}

.fp-news__link {
	display: flex;
	align-items: baseline;
	gap: 32px;
	padding: 22px 0;
	text-decoration: none;
	transition: opacity var(--fp-transition);
}

.fp-news__link:hover {
	opacity: 0.5;
}

.fp-news__date {
	font-size: 14px;
	color: var(--fp-gray);
	letter-spacing: 0.05em;
	white-space: nowrap;
	flex-shrink: 0;
}

.fp-news__title {
	font-size: 17px;
	font-weight: 500;
	color: #1f1f1f;
	line-height: 1.6;
}

.fp-news__more-wrap {
	text-align: center;
}

.fp-news__banners {
	display: flex;
	gap: 20px;
	margin-top: 48px;
}

.fp-news__banners a {
	display: block;
	width: calc(50% - 10px);
	overflow: hidden;
	border-radius: 4px;
	transition: box-shadow 0.3s ease;
}

.fp-news__banners a:hover {
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
}

.fp-news__banner-img {
	display: block;
	width: 100%;
	transition: transform 0.4s ease;
}

.fp-news__banners a:hover .fp-news__banner-img {
	transform: scale(1.04);
}

/* ================================================================
   FOOTER
================================================================ */
@keyframes fp-footer-gradient {
	0%   { background-position: 0% 50%; }
	50%  { background-position: 100% 50%; }
	100% { background-position: 0% 50%; }
}

.fp-footer {
	position: relative;
	z-index: 2;
	background: linear-gradient(135deg, #141414, #2c2c2c, #1f1f1f, #3a3a3a, #181818, #2a2a2a, #141414);
	background-size: 400% 400%;
	animation: fp-footer-gradient 14s ease infinite;
	padding: 80px 40px 40px;
	border-top: 1px solid rgba(255,255,255,0.08);
}


.fp-footer__top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	padding-bottom: 60px;
	border-bottom: 1px solid rgba(255,255,255,0.1);
	margin-bottom: 40px;
	flex-wrap: wrap;
	gap: 48px;
}

.fp-footer__brand {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.fp-footer__logo-link {
	display: inline-block;
}

.fp-footer__logo-img {
	display: block;
	height: 56px;
	width: auto;
}

.fp-footer__tagline {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.25em;
	color: rgba(255,255,255,0.35);
	margin: 0;
	text-transform: uppercase;
}

.fp-footer__nav {
	flex: 1;
	display: flex;
	justify-content: flex-end;
	align-items: flex-start;
}

.fp-footer__nav-list {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 32px 40px;
	justify-content: flex-end;
}

.fp-footer__nav-list > li {
	display: flex;
	flex-direction: column;
}

.fp-footer__nav-list > li > a,
.fp-footer__nav-list > li > span {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.15em;
	color: rgba(255,255,255,0.55);
	text-decoration: none;
	text-transform: uppercase;
	white-space: nowrap;
}

.fp-footer__nav-list > li > a:hover {
	color: var(--fp-white);
}

.fp-footer__nav-list .sub-menu {
	display: flex;
	flex-direction: column;
	gap: 6px;
	list-style: none;
	margin: 10px 0 0;
	padding: 0;
}

.fp-footer__nav-list .sub-menu a {
	font-size: 10px;
	font-weight: 500;
	letter-spacing: 0.12em;
	color: rgba(255,255,255,0.35);
	text-decoration: none;
	text-transform: uppercase;
	transition: color var(--fp-transition);
	white-space: nowrap;
}

.fp-footer__nav-list .sub-menu a:hover {
	color: var(--fp-white);
}

.fp-footer__bottom {
	display: flex;
	align-items: center;
	gap: 32px;
	flex-wrap: wrap;
}

.fp-footer__links a {
	font-size: 12px;
	color: rgba(255,255,255,0.5);
	text-decoration: none;
	transition: color var(--fp-transition);
}

.fp-footer__links a:hover {
	color: var(--fp-white);
}

.fp-footer__social {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-left: auto;
}

.fp-footer__social-link {
	display: inline-flex;
	align-items: center;
	opacity: 0.6;
	transition: opacity var(--fp-transition);
}

.fp-footer__social-link:hover {
	opacity: 1;
}

.fp-footer__copy {
	font-size: 12px;
	color: rgba(255,255,255,0.3);
	margin: 0;
	letter-spacing: 0.05em;
}

/* ================================================================
   RESPONSIVE
================================================================ */
@media (max-width: 1399px) {
	.fp-header__nav,
	.fp-header__contact {
		display: none;
	}

	.fp-header__hamburger {
		display: flex;
		margin-left: auto;
	}
}

@media (max-width: 1024px) {
	.fp-brand__grid {
		grid-template-columns: 1fr;
		gap: 2px;
	}

	.fp-report__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	:root {
		--fp-header-h: 68px;
	}

	.sp-only { display: inline; }

	.fp-header__inner {
		padding: 0 20px;
	}

	/* SP: 全スライド中央配置（PC奇数・偶数ルールを上書き） */
	.fp-hero__slide--1 .fp-hero__slide-img,
	.fp-hero__slide--2 .fp-hero__slide-img,
	.fp-hero__slide--3 .fp-hero__slide-img,
	.fp-hero__slide--4 .fp-hero__slide-img,
	.fp-hero__slide--5 .fp-hero__slide-img,
	.fp-hero__slide--6 .fp-hero__slide-img {
		left: 50%;
		right: auto;
	}

	/* SP: 画像は下から大きく、テキストは上に */
	.fp-hero__slide-img {
		top: 15%;
		right: auto;
		left: 50%;
		transform: translateX(-50%) scale(1.04);
		top: auto;
		bottom: -60px;
		height: 70%;
		width: auto;
		max-width: 120%;
		object-position: top center;
		-webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
		mask-image:         linear-gradient(to bottom, black 50%, transparent 100%);
	}

	.fp-hero__slide.is-active .fp-hero__slide-img {
		transform: translateX(-50%) scale(1);
	}

	.fp-hero__overlay,
	.fp-hero--img-left .fp-hero__overlay {
		background: linear-gradient(
			to bottom,
			rgba(10,10,10,0.85) 0%,
			rgba(10,10,10,0.4)  30%,
			rgba(10,10,10,0)    50%
		);
	}

	.fp-hero__content {
		padding-left: 24px;
		padding-right: 24px;
		justify-content: flex-start;
		padding-top: calc(var(--fp-header-h) + 60px);
	}

	.fp-hero__brand-dena {
		font-size: clamp(28px, 8vw, 48px);
	}

	.fp-hero__dots {
		bottom: 24px;
		right: 20px;
	}

	.fp-slider-wrap {
		overflow: visible;
	}

	.fp-slider-card {
		flex: 0 0 82%;
	}

	.fp-movie .fp-slider-outer,
	.fp-ob .fp-slider-outer {
		margin-left: -20px;
		margin-right: -20px;
	}

	.fp-slider-btn--prev {
		display: none;
	}

	.fp-slider-btn {
		width: 36px;
		height: 36px;
	}

	.fp-slider-btn svg {
		width: 18px;
		height: 18px;
	}

	.fp-movie,
	.fp-ob {
		padding: 80px 20px;
	}

	.fp-about {
		padding: 80px 20px;
	}

	.fp-about__text {
		font-size: 20px;
		text-align: justify;
		word-break: break-all;
	}

	.fp-about__text br {
		display: none;
	}

	.fp-brand {
		padding: 80px 20px;
	}

	.fp-brand__grid {
		gap: 16px;
	}

	.fp-report {
		padding: 80px 20px;
	}

	.fp-report__grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.fp-footer {
		padding: 60px 20px 32px;
	}

	.fp-footer__top {
		flex-direction: column;
		align-items: flex-start;
		gap: 32px;
	}

	.fp-footer__nav {
		justify-content: flex-start;
		width: 100%;
	}

	.fp-footer__nav-list {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 32px 24px;
		width: 100%;
	}

	.fp-footer__bottom {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
	}

	.fp-footer__social {
		margin-left: 0;
	}

	.fp-news {
		padding: 80px 20px;
	}

	.fp-instagram {
		padding: 80px 20px;
	}

	.fp-instagram .fp-section-label,
	.fp-news .fp-section-label {
		font-size: clamp(24px, 8vw, 96px);
	}

	.fp-news__link {
		flex-direction: column;
		gap: 4px;
	}

	.fp-banner {
		height: 500px;
	}

	.fp-banner__img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		object-position: center;
	}
}

@media (max-width: 480px) {
	.fp-header__logo-img {
		height: 36px;
	}
}

/* ================================================================
   LINE 追従バナー
================================================================ */
.line-bnr {
	position: fixed;
	bottom: 28px;
	right: 28px;
	z-index: 9000;
	display: block;
	opacity: 1;
	transform: translateY(0);
	transition: opacity 0.4s ease, transform 0.4s ease;
}

.line-bnr.is-hidden {
	opacity: 0;
	pointer-events: none;
	transform: translateY(8px);
}

.line-bnr__img {
	width: 330px;
	height: auto;
	display: block;
	border-radius: 8px;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.22);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.line-bnr:hover .line-bnr__img {
	transform: translateY(-3px);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* SPメニューオーバーレイ展開中はバナーをオーバーレイの裏へ */
.fp-nav-overlay.is-open ~ .line-bnr {
	z-index: 900;
}

@media (max-width: 768px) {
	.line-bnr {
		bottom: 18px;
		right: 14px;
	}

	.line-bnr__img {
		width: 210px;
		border-radius: 6px;
	}
}

/* ================================================================
   SPLASH
================================================================ */
.fp-splash {
	position: fixed;
	inset: 0;
	z-index: 9999;
	background: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 1;
	transition: opacity 0.8s ease;
	pointer-events: none;
}

.fp-splash.is-hidden {
	opacity: 0;
}

.fp-splash.is-done {
	display: none;
}

.fp-splash__logo {
	width: 260px;
	max-width: 60vw;
	opacity: 0;
	transform: scale(0.92);
	transition: opacity 0.7s ease, transform 0.7s ease;
}

.fp-splash__logo.is-visible {
	opacity: 1;
	transform: scale(1);
}
