/* =====================================================
   MIRAI JUKU main.css
   モチーフ：蛍光マーカー × 赤ペン採点
   ===================================================== */

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
body {
	margin: 0;
	font-family: var(--f-body);
	color: #262a33;
	background: var(--c-bg);
	line-height: 1.9;
	font-size: 16px;
	-webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-main); text-decoration: none; }
a:hover { opacity: .85; }
ul, ol { padding-left: 1.4em; }
h1, h2, h3, h4 { font-family: var(--f-display); line-height: 1.4; color: var(--c-deep); }
:focus-visible { outline: 3px solid var(--c-accent); outline-offset: 2px; }

.screen-reader-text {
	position: absolute; width: 1px; height: 1px; overflow: hidden;
	clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}
.skip-link:focus {
	position: fixed; top: 8px; left: 8px; z-index: 9999;
	width: auto; height: auto; clip: auto; clip-path: none;
	background: var(--c-deep); color: #fff; padding: 8px 16px; border-radius: 4px;
}
.sp-only { display: none; }

/* ---------- Marker（蛍光マーカー下線） ---------- */
.marker {
	background: linear-gradient(transparent 58%, var(--c-accent) 58%, var(--c-accent) 94%, transparent 94%);
	padding: 0 .1em;
}
.marker--on-dark {
	color: #fff;
	background: linear-gradient(transparent 58%, rgba(var(--c-accent-rgb), .55) 58%, rgba(var(--c-accent-rgb), .55) 94%, transparent 94%);
}
.marker--fv {
	background: linear-gradient(transparent 52%, var(--c-accent) 52%, var(--c-accent) 96%, transparent 96%);
}

/* ---------- 赤ペン丸 ---------- */
.redpen-circle {
	position: absolute; inset: -18% -22%;
	width: 144%; height: 136%;
	color: var(--c-red);
	pointer-events: none;
}

/* ---------- Buttons ---------- */
.btn {
	display: inline-block;
	font-family: var(--f-display);
	font-weight: 700;
	text-align: center;
	padding: 14px 30px;
	border-radius: 999px;
	border: 2px solid transparent;
	transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
	line-height: 1.5;
}
.btn:hover { transform: translateY(-2px); opacity: 1; }
.btn--accent {
	background: var(--c-accent);
	color: var(--c-deep);
	box-shadow: 0 4px 0 rgba(var(--c-main-rgb), .35);
}
.btn--accent:hover { box-shadow: 0 6px 0 rgba(var(--c-main-rgb), .35); }
.btn--outline { border-color: var(--c-main); color: var(--c-main); background: #fff; }
.btn--ghost { border-color: var(--c-main); color: var(--c-main); background: transparent; }
.btn--ghost-light { border-color: #fff; color: #fff; background: transparent; }
.btn--line { background: #06c755; color: #fff; }
.btn--lg { padding: 18px 40px; font-size: 18px; }
.btn--header { padding: 10px 22px; font-size: 14px; }
.btn__small { display: block; font-size: 12px; font-weight: 500; }

/* ---------- Header ---------- */
.site-header {
	position: sticky; top: 0; z-index: 100;
	background: rgba(255, 255, 255, .96);
	backdrop-filter: blur(6px);
	transition: box-shadow .2s ease, background .25s ease;
}
.site-header.is-scrolled { box-shadow: 0 2px 14px rgba(0, 0, 0, .08); }

/* FVがスライダーのときは、ヘッダーを透過オーバーレイにして
   スライダーをヘッダーの背後まで広げる（画像が隠れないように） */
body.fv-slider .site-header {
	position: fixed; top: 0; left: 0; right: 0;
	background: transparent; backdrop-filter: none;
}
body.fv-slider .site-header .site-logo__ja { color: #fff; text-shadow: 0 1px 8px rgba(0,0,0,.35); }
body.fv-slider .site-header .site-logo__en { color: rgba(255,255,255,.75); }
body.fv-slider .site-header .site-logo__mark { box-shadow: 0 2px 12px rgba(0,0,0,.25); }
body.fv-slider .site-header .global-nav__list a { color: #fff; text-shadow: 0 1px 8px rgba(0,0,0,.35); }
body.fv-slider .site-header .global-nav__list a:hover { background: rgba(255,255,255,.16); }
body.fv-slider .site-header .site-header__tel-num { color: #fff; text-shadow: 0 1px 8px rgba(0,0,0,.35); }
body.fv-slider .site-header .site-header__tel-hours { color: rgba(255,255,255,.8); }
body.fv-slider .site-header .sns-list__link { color: #fff; }
/* スクロールしてFVを抜けたら通常の白ヘッダーに戻す */
body.fv-slider .site-header.is-scrolled {
	position: fixed; background: rgba(255, 255, 255, .96); backdrop-filter: blur(6px);
}
body.fv-slider .site-header.is-scrolled .site-logo__ja { color: var(--c-deep); text-shadow: none; }
body.fv-slider .site-header.is-scrolled .site-logo__en { color: rgba(var(--c-main-rgb), .55); }
body.fv-slider .site-header.is-scrolled .global-nav__list a { color: var(--c-deep); text-shadow: none; }
body.fv-slider .site-header.is-scrolled .global-nav__list a:hover { background: var(--c-sub); }
body.fv-slider .site-header.is-scrolled .site-header__tel-num { color: var(--c-deep); text-shadow: none; }
body.fv-slider .site-header.is-scrolled .site-header__tel-hours { color: #667; }
/* fixedヘッダー分、後続コンテンツが潜り込まないよう調整するのはFVが吸収するので不要 */
.site-header__inner {
	max-width: 1280px; margin: 0 auto;
	display: flex; align-items: center; gap: 24px;
	padding: 10px 20px;
}
.site-header__brand { flex-shrink: 0; }

/* ---------- ロゴ（3タイプ共通） ---------- */
.site-logo {
	display: flex; align-items: center; gap: 12px;
	text-decoration: none; line-height: 1;
}
.site-logo:hover { opacity: .85; }

/* 横長ロゴ画像 */
.site-logo__img {
	display: block;
	height: var(--logo-h, 44px);
	width: auto; max-width: min(320px, 46vw);
	object-fit: contain;
}
/* 正方形シンボル画像 */
.site-logo__symbol {
	display: block; flex-shrink: 0;
	width: var(--logo-h, 44px); height: var(--logo-h, 44px);
	object-fit: contain; border-radius: 10px;
}
/* テーマ内蔵マーク */
.site-logo__mark {
	display: grid; place-items: center; flex-shrink: 0;
	width: var(--logo-h, 44px); height: var(--logo-h, 44px);
	background: var(--grad-main); color: var(--c-accent);
	font-family: var(--f-display); font-weight: 900;
	font-size: calc(var(--logo-h, 44px) * .30);
	letter-spacing: .02em;
	border-radius: 10px;
}
/* マークなし：テキストだけ。塾名を主役サイズに */
.site-logo--nomark .site-logo__ja { font-size: clamp(18px, 1.7vw, 23px); }
.site-logo__text { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.site-logo__ja {
	font-family: var(--f-display); font-weight: 900;
	font-size: clamp(16px, 1.5vw, 20px); color: var(--c-deep);
	letter-spacing: .02em; white-space: nowrap;
}
.site-logo__en {
	font-family: var(--f-en); font-size: 9px; font-weight: 600;
	letter-spacing: .18em; color: rgba(var(--c-main-rgb), .55);
	white-space: nowrap;
}
/* ドロワー内のロゴは白抜き */
.site-logo--drawer .site-logo__ja { color: #fff; font-size: 17px; }
.site-logo--drawer .site-logo__en { color: rgba(255, 255, 255, .55); }
.site-logo--drawer .site-logo__mark { background: var(--c-accent); color: var(--c-deep); }
.site-logo--drawer .site-logo__img { height: 38px; max-width: 190px; }
.site-logo--drawer .site-logo__symbol,
.site-logo--drawer .site-logo__mark { width: 38px; height: 38px; font-size: 18px; }

.global-nav { margin-left: auto; }
.global-nav__list { display: flex; gap: 4px; list-style: none; margin: 0; padding: 0; }
.global-nav__list a {
	display: block; padding: 8px 12px;
	font-family: var(--f-display); font-weight: 700; font-size: 14px;
	color: var(--c-deep); border-radius: 6px;
}
.global-nav__list a:hover { background: var(--c-sub); opacity: 1; }

.site-header__actions { display: flex; align-items: center; gap: 14px; }
.site-header__tel { text-align: right; line-height: 1.3; }
.site-header__tel-num { display: block; font-family: var(--f-en); font-weight: 800; font-size: 18px; color: var(--c-deep); }
.site-header__tel-hours { display: block; font-size: 10px; color: #667; }

.drawer-toggle {
	display: none;
	width: 46px; height: 46px;
	border: none; background: var(--c-main); border-radius: 10px;
	cursor: pointer; flex-direction: column; justify-content: center; align-items: center; gap: 5px;
}
.drawer-toggle span { width: 20px; height: 2px; background: var(--c-accent); border-radius: 2px; }

/* ---------- Drawer ---------- */
.drawer {
	position: fixed; top: 0; right: 0; z-index: 300;
	width: min(320px, 86vw); height: 100dvh;
	background: var(--c-deep); color: #fff;
	transform: translateX(100%);
	transition: transform .3s ease;
	overflow-y: auto;
}
.drawer.is-open { transform: translateX(0); }
.drawer__inner { padding: 18px 24px 48px; }
.drawer__head {
	display: flex; align-items: center; justify-content: space-between; gap: 12px;
	padding-bottom: 16px; margin-bottom: 8px;
	border-bottom: 1px solid rgba(255, 255, 255, .16);
}
.drawer__close {
	display: flex; align-items: center; gap: 6px; flex-shrink: 0;
	background: none; border: none; color: #fff; font-size: 24px; cursor: pointer;
	line-height: 1; padding: 6px;
}
.drawer__close-label { font-size: 12px; }
.drawer__list { list-style: none; margin: 12px 0 24px; padding: 0; }
.drawer__list a {
	display: block; padding: 13px 4px;
	color: #fff; font-family: var(--f-display); font-weight: 700;
	border-bottom: 1px solid rgba(255, 255, 255, .14);
}
.drawer__cta { display: grid; gap: 12px; }
.drawer-overlay {
	position: fixed; inset: 0; z-index: 250;
	background: rgba(var(--c-deep-rgb), .58);
	backdrop-filter: blur(2px);
}
body.drawer-open { overflow: hidden; }
/* ドロワーを開いている間はヘッダーを隠す（ロゴ・塾名が透けて見えるのを防ぐ） */
body.drawer-open .site-header {
	opacity: 0; pointer-events: none;
	transition: opacity .2s ease;
}

/* ---------- FV ---------- */
.fv { background: #fff; border-bottom: 4px solid var(--c-main); }
.fv__inner {
	max-width: 1180px; margin: 0 auto;
	display: grid; grid-template-columns: 1.1fr 1fr;
	gap: 40px; align-items: center;
	padding: 64px 20px 48px;
}
.fv__badge {
	display: inline-block;
	background: var(--c-main); color: #fff;
	font-family: var(--f-display); font-weight: 700; font-size: 15px;
	padding: 6px 18px; border-radius: 999px;
	margin: 0 0 18px;
}
.fv__title { font-size: clamp(30px, 4.2vw, 52px); font-weight: 900; margin: 0 0 20px; letter-spacing: .01em; }
.fv__title-line { display: block; }
.fv__sub { font-size: 17px; color: #445; margin: 0 0 28px; }
.fv__buttons { display: flex; flex-wrap: wrap; gap: 14px; }

.fv__visual { position: relative; }
.fv__visual img { border-radius: 16px; box-shadow: 10px 10px 0 var(--c-sub); }
.fv__placeholder {
	background:
		repeating-linear-gradient(#fff 0 34px, rgba(var(--c-main-rgb), .18) 34px 35px),
		#fff;
	border: 2px solid rgba(var(--c-main-rgb), .25);
	border-radius: 16px;
	box-shadow: 10px 10px 0 var(--c-sub);
	padding: 44px 28px 34px;
	text-align: center;
}
.fv__score-demo {
	display: flex; align-items: center; justify-content: center; gap: 16px;
	font-family: var(--f-en); font-weight: 800; color: var(--c-deep);
}
.fv__score-label { font-family: var(--f-display); font-size: 18px; font-weight: 700; }
.fv__score-before { font-size: 40px; color: #99a; text-decoration: line-through; text-decoration-color: var(--c-red); text-decoration-thickness: 3px; }
.fv__score-arrow { width: 46px; color: var(--c-red); }
.fv__score-after { position: relative; font-size: 64px; color: var(--c-deep); padding: 0 10px; }
.fv__score-after small, .fv__score-before small { font-size: .4em; font-weight: 700; }
.fv__placeholder-hand { font-family: var(--f-hand); font-size: 22px; color: var(--c-red); margin: 18px 0 0; }

/* Counter */
.counter {
	max-width: 1180px; margin: 0 auto;
	display: grid; grid-template-columns: repeat(4, 1fr);
	gap: 10px; padding: 0 20px 8px;
}
.counter__item {
	background: var(--c-deep); color: #fff;
	border-radius: 12px; text-align: center;
	padding: 18px 8px 14px;
}
.counter__num { font-family: var(--f-en); font-weight: 800; font-size: clamp(28px, 3.4vw, 42px); color: var(--c-accent); }
.counter__unit { font-family: var(--f-display); font-weight: 700; font-size: 16px; color: var(--c-accent); margin-left: 2px; }
.counter__label { display: block; font-size: 12px; margin-top: 2px; opacity: .9; }
.counter__note { max-width: 1180px; margin: 0 auto; padding: 0 20px 26px; font-size: 11px; color: #889; }

/* ---------- Sections common ---------- */
.section { padding: 76px 0; }
.section--sub { background: var(--c-sub); }
.section--deep { background: var(--c-deep); }
.section__inner { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.section__inner--narrow { max-width: 860px; }
.section__en {
	font-family: var(--f-en); font-weight: 800; font-size: 13px;
	letter-spacing: .28em; color: var(--c-red); margin: 0 0 6px;
}
.section__en--light { color: var(--c-accent); }
.section__title { font-size: clamp(24px, 3.2vw, 36px); font-weight: 900; margin: 0 0 28px; }
.section__title--light { color: #fff; }
.section__lead { margin: -12px 0 32px; color: #445; }
.section__more { text-align: center; margin-top: 36px; }
.section__more--left { text-align: left; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
	.reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- お悩み ---------- */
.nayami__list {
	list-style: none; margin: 0; padding: 0;
	display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px;
}
.nayami__list li {
	background: #fff; border-radius: 10px;
	padding: 14px 16px 14px 46px; position: relative;
	box-shadow: 0 2px 8px rgba(0, 0, 0, .05);
}
.nayami__list li::before {
	content: "✓";
	position: absolute; left: 14px; top: 12px;
	width: 22px; height: 22px;
	display: grid; place-items: center;
	background: var(--c-accent); color: var(--c-deep);
	font-weight: 900; font-size: 14px; border-radius: 6px;
}
.nayami__answer {
	text-align: center; margin: 36px 0 0;
	font-family: var(--f-display); font-weight: 900;
	font-size: clamp(19px, 2.6vw, 26px); color: var(--c-deep);
}

/* ---------- 選ばれる理由 ---------- */
.reasons__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.reason-card {
	background: #fff; border-radius: 14px;
	border-top: 5px solid var(--c-accent);
	padding: 26px 26px 22px;
	box-shadow: 0 3px 14px rgba(0, 0, 0, .06);
	position: relative;
}
.reason-card__num {
	font-family: var(--f-en); font-weight: 800; font-size: 40px;
	color: rgba(var(--c-main-rgb), .14);
	position: absolute; top: 8px; right: 18px;
}
.reason-card h3 { margin: 0 0 10px; font-size: 20px; font-weight: 900; }
.reason-card p { margin: 0; font-size: 15px; color: #445; }

/* ---------- 成績アップ事例（TOP） ---------- */
.results__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.result-card {
	background: #fff; border-radius: 14px; padding: 26px;
	background-image: repeating-linear-gradient(#fff 0 33px, rgba(var(--c-main-rgb), .12) 33px 34px);
}
.result-card__who { margin: 0 0 12px; font-family: var(--f-display); font-weight: 700; color: var(--c-deep); }
.result-card__score { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; flex-wrap: wrap; }
.result-card__before, .result-card__after { font-family: var(--f-display); font-weight: 700; font-size: 15px; }
.result-card__before strong { font-family: var(--f-en); font-size: 34px; color: #99a; margin-left: 4px; text-decoration: line-through; text-decoration-color: var(--c-red); text-decoration-thickness: 3px; }
.result-card__after { position: relative; padding: 4px 12px; }
.result-card__after strong { font-family: var(--f-en); font-size: 48px; color: var(--c-deep); margin-left: 4px; }
.result-card__after small, .result-card__before small { font-size: .45em; }
.result-card__arrow { font-size: 26px; font-weight: 900; color: var(--c-red); }
.result-card__story { margin: 0; font-size: 14px; color: #445; }

/* ---------- コース ---------- */
.courses__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.course-card {
	display: block; background: #fff; border-radius: 14px;
	padding: 26px 24px; color: inherit;
	box-shadow: 0 3px 14px rgba(0, 0, 0, .06);
	border: 2px solid transparent;
	transition: border-color .15s ease, transform .15s ease;
}
.course-card:hover { border-color: var(--c-accent); transform: translateY(-3px); opacity: 1; }
.course-card__badge {
	display: inline-grid; place-items: center;
	width: 56px; height: 56px; border-radius: 50%;
	background: var(--c-main); color: var(--c-accent);
	font-family: var(--f-display); font-weight: 900; font-size: 19px;
	margin-bottom: 14px;
}
.course-card h3 { margin: 0 0 8px; font-size: 18px; font-weight: 900; }
.course-card p { margin: 0; font-size: 14px; color: #445; }
.courses__sub { margin-top: 26px; display: flex; gap: 12px 28px; flex-wrap: wrap; justify-content: center; }
.courses__sub a { font-weight: 700; border-bottom: 2px solid var(--c-accent); padding-bottom: 2px; }

/* ---------- 指導方針 ---------- */
.policy__inner { text-align: center; max-width: 760px; }
.policy__hand { font-family: var(--f-hand); font-size: clamp(26px, 4vw, 40px); color: var(--c-deep); margin: 0 0 20px; font-weight: 600; }
.policy__text { color: #334; margin: 0; }

/* ---------- 声 ---------- */
.voice__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.voice-card {
	margin: 0; background: #fff; border-radius: 14px;
	padding: 26px 24px 20px; position: relative;
	box-shadow: 0 3px 14px rgba(0, 0, 0, .06);
}
.voice-card::before {
	content: "“";
	position: absolute; top: -6px; left: 14px;
	font-family: var(--f-en); font-size: 64px; line-height: 1;
	color: var(--c-accent);
}
.voice-card p { margin: 10px 0 14px; font-size: 15px; }
.voice-card cite { font-style: normal; font-size: 12.5px; color: #778; }

/* ---------- 講師 ---------- */
.teacher__inner { display: grid; grid-template-columns: 320px 1fr; gap: 44px; align-items: center; }
.teacher__photo {
	aspect-ratio: 3 / 4; border-radius: 14px;
	background: repeating-linear-gradient(45deg, var(--c-sub) 0 12px, #fff 12px 24px);
	border: 2px dashed rgba(var(--c-main-rgb), .3);
	display: grid; place-items: center;
	color: rgba(var(--c-main-rgb), .5); font-family: var(--f-display); font-weight: 700;
}
.teacher__text p { color: #334; }

/* ---------- 料金（TOP） ---------- */
.price__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.price-card {
	background: #fff; border-radius: 14px; text-align: center;
	padding: 24px 12px; border-bottom: 5px solid var(--c-accent);
	box-shadow: 0 3px 14px rgba(0, 0, 0, .06);
}
.price-card__grade {
	display: inline-block; background: var(--c-main); color: #fff;
	font-family: var(--f-display); font-weight: 700; font-size: 14px;
	padding: 3px 16px; border-radius: 999px; margin-bottom: 10px;
}
.price-card__val { display: block; font-family: var(--f-en); font-weight: 800; font-size: 34px; color: var(--c-deep); }
.price-card__val small { font-family: var(--f-display); font-size: 13px; font-weight: 700; }
.price__note { font-size: 12px; color: #778; margin-top: 16px; text-align: center; }

/* ---------- 流れ（TOP） ---------- */
.flow__steps {
	list-style: none; margin: 0; padding: 0;
	display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px;
	counter-reset: none;
}
.flow__steps li {
	background: #fff; border-radius: 12px; padding: 20px 14px;
	text-align: center; position: relative;
	box-shadow: 0 3px 10px rgba(0, 0, 0, .05);
}
.flow__steps li:not(:last-child)::after {
	content: "▶";
	position: absolute; right: -13px; top: 50%; transform: translateY(-50%);
	color: var(--c-red); font-size: 12px; z-index: 1;
}
.flow__step-num {
	display: inline-grid; place-items: center;
	width: 34px; height: 34px; border-radius: 50%;
	background: var(--c-accent); color: var(--c-deep);
	font-family: var(--f-en); font-weight: 800;
	margin-bottom: 8px;
}
.flow__steps h3 { margin: 0 0 4px; font-size: 15px; font-weight: 900; }
.flow__steps p { margin: 0; font-size: 12px; color: #667; }

/* ---------- FAQ ---------- */
.mjk-faq details {
	background: #fff; border-radius: 12px;
	margin-bottom: 12px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, .05);
	overflow: hidden;
}
.mjk-faq summary {
	cursor: pointer; list-style: none;
	padding: 18px 48px 18px 54px;
	font-family: var(--f-display); font-weight: 700; color: var(--c-deep);
	position: relative;
}
.mjk-faq summary::-webkit-details-marker { display: none; }
.mjk-faq summary::before {
	content: "Q";
	position: absolute; left: 16px; top: 15px;
	width: 26px; height: 26px; display: grid; place-items: center;
	background: var(--c-main); color: var(--c-accent);
	font-family: var(--f-en); font-weight: 800; font-size: 14px; border-radius: 7px;
}
.mjk-faq summary::after {
	content: "＋";
	position: absolute; right: 18px; top: 16px;
	color: var(--c-red); font-weight: 900;
}
.mjk-faq details[open] summary::after { content: "－"; }
.mjk-faq details p {
	margin: 0; padding: 0 20px 18px 54px;
	position: relative; color: #334;
}
.mjk-faq details p::before {
	content: "A";
	position: absolute; left: 16px; top: -2px;
	width: 26px; height: 26px; display: grid; place-items: center;
	background: var(--c-red); color: #fff;
	font-family: var(--f-en); font-weight: 800; font-size: 14px; border-radius: 50%;
}

/* ---------- News list（TOP） ---------- */
.news__list { list-style: none; margin: 0; padding: 0; }
.news__list a {
	display: flex; gap: 18px; align-items: baseline;
	padding: 14px 6px; border-bottom: 1px dashed rgba(var(--c-main-rgb), .3);
	color: inherit;
}
.news__list time { font-family: var(--f-en); font-weight: 600; color: var(--c-red); flex-shrink: 0; }

/* ---------- Access ---------- */
.mjk-info-table {
	display: grid; grid-template-columns: 110px 1fr; gap: 0;
	background: #fff; border-radius: 12px; overflow: hidden;
	margin: 0 0 20px; box-shadow: 0 2px 10px rgba(0, 0, 0, .05);
}
.mjk-info-table dt {
	background: var(--c-main); color: #fff;
	font-family: var(--f-display); font-weight: 700; font-size: 14px;
	padding: 13px 14px; border-bottom: 1px solid rgba(255, 255, 255, .18);
}
.mjk-info-table dd { margin: 0; padding: 13px 18px; border-bottom: 1px solid var(--c-sub); }
.access__note { color: #445; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--c-deep); color: #fff; padding: 72px 20px; text-align: center; }
.cta-band__inner { max-width: 820px; margin: 0 auto; }
.cta-band__hand { font-family: var(--f-hand); font-size: clamp(18px, 2.6vw, 24px); color: var(--c-accent); margin: 0 0 10px; }
.cta-band__title { color: #fff; font-size: clamp(26px, 3.6vw, 40px); font-weight: 900; margin: 0 0 12px; }
.cta-band__note { opacity: .85; margin: 0 0 28px; font-size: 14px; }
.cta-band__buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.site-footer { background: #fff; border-top: 4px solid var(--c-accent); }
.site-footer__inner {
	max-width: 1180px; margin: 0 auto;
	display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
	gap: 32px; padding: 56px 20px 40px;
}
.site-footer__name { font-family: var(--f-display); font-weight: 900; font-size: 20px; margin: 0; color: var(--c-deep); }
.site-footer__en { font-family: var(--f-en); font-size: 10px; letter-spacing: .18em; color: #99a; margin: 2px 0 14px; }
.site-footer__address { font-style: normal; font-size: 14px; color: #445; }
.site-footer__heading {
	font-family: var(--f-display); font-weight: 700; font-size: 14px;
	color: var(--c-deep); border-bottom: 2px solid var(--c-accent);
	display: inline-block; padding-bottom: 3px; margin: 0 0 12px;
}
.site-footer__col ul { list-style: none; margin: 0; padding: 0; }
.site-footer__col li { margin-bottom: 8px; }
.site-footer__col a { font-size: 14px; color: #334; }
.site-footer__copy { text-align: center; font-size: 12px; color: #99a; padding: 18px; margin: 0; border-top: 1px solid var(--c-sub); }

/* ---------- Sticky CTA (mobile) ---------- */
.sticky-cta {
	display: none;
	position: fixed; left: 0; right: 0; bottom: 0; z-index: 200;
	background: var(--c-deep);
	padding: 8px 8px calc(8px + env(safe-area-inset-bottom));
	gap: 8px;
}
.sticky-cta__item {
	flex: 1; display: flex; flex-direction: column; align-items: center; gap: 2px;
	padding: 8px 4px; border-radius: 10px;
	color: #fff; font-family: var(--f-display); font-weight: 700; font-size: 12px;
	background: rgba(255, 255, 255, .12);
}
.sticky-cta__item svg { width: 20px; height: 20px; }
.sticky-cta__item--line { background: #06c755; }
.sticky-cta__item--main { background: var(--c-accent); color: var(--c-deep); flex: 1.3; }

/* ---------- Page hero / breadcrumb ---------- */

.cat-badge {
	display: inline-block; background: var(--c-accent); color: var(--c-deep);
	font-size: 11px; font-weight: 700; padding: 2px 10px; border-radius: 999px;
}
.breadcrumb { margin-top: 14px; font-size: 12px; opacity: .85; display: flex; gap: 8px; }
.breadcrumb a { color: #fff; text-decoration: underline; }

/* ---------- Entry content（下層共通） ---------- */
.entry { padding: 56px 20px 80px; }
.entry__thumb { margin-bottom: 32px; }
.entry__thumb img { border-radius: 14px; }
.entry__back { text-align: center; margin-top: 44px; }

.entry-content { color: #262a33; }
.entry-content > * + * { margin-top: 1.4em; }
.entry-content h2 {
	font-size: clamp(21px, 2.6vw, 27px); font-weight: 900;
	margin-top: 2.4em; padding-bottom: 8px;
	border-bottom: 3px solid var(--c-sub); position: relative;
}
.entry-content h2::after {
	content: ""; position: absolute; left: 0; bottom: -3px;
	width: 88px; height: 3px; background: var(--c-accent);
}
.entry-content h3 {
	font-size: 18px; font-weight: 700; margin-top: 1.8em;
	padding-left: 12px; border-left: 5px solid var(--c-accent);
}
.entry-content small { color: #778; }

.mjk-lead { font-size: 17px; }
.mjk-hand-title { font-family: var(--f-hand); font-size: clamp(26px, 4vw, 38px); color: var(--c-deep); font-weight: 600; }
.mjk-box {
	background: var(--c-sub); border-left: 5px solid var(--c-main);
	border-radius: 0 10px 10px 0; padding: 14px 18px; font-size: 14.5px;
}

.mjk-reason-block { background: #fff; border-radius: 14px; padding: 28px 28px 24px; box-shadow: 0 3px 14px rgba(0,0,0,.05); }
.mjk-reason-block__num { font-family: var(--f-en); font-weight: 800; letter-spacing: .18em; font-size: 13px; color: var(--c-red); }
.mjk-reason-block h2 { margin-top: .3em; border: none; }
.mjk-reason-block h2::after { display: none; }

.mjk-grade { background: #fff; border-radius: 14px; padding: 26px 28px; box-shadow: 0 3px 14px rgba(0,0,0,.05); }
.mjk-grade h2 { border: none; margin-top: 0; display: flex; align-items: center; gap: 12px; font-size: 20px; }
.mjk-grade h2::after { display: none; }
.mjk-grade__badge {
	flex-shrink: 0; display: inline-grid; place-items: center;
	width: 48px; height: 48px; border-radius: 50%;
	background: var(--c-main); color: var(--c-accent); font-size: 16px;
}

.mjk-case { background: #fff; border-radius: 14px; padding: 28px; box-shadow: 0 3px 14px rgba(0,0,0,.05); }
.mjk-case h2 { border: none; margin-top: 0; font-size: 20px; }
.mjk-case h2::after { display: none; }
.mjk-case__score { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin: 18px 0; }
.mjk-case__before, .mjk-case__after { text-align: center; font-family: var(--f-display); font-weight: 700; font-size: 14px; line-height: 1.5; }
.mjk-case__before strong { font-family: var(--f-en); font-size: 30px; color: #99a; text-decoration: line-through; text-decoration-color: var(--c-red); text-decoration-thickness: 3px; }
.mjk-case__after { position: relative; padding: 6px 14px; }
.mjk-case__after strong { font-family: var(--f-en); font-size: 42px; color: var(--c-deep); }
.mjk-case__after::before {
	content: ""; position: absolute; inset: -8px -6px;
	border: 4px solid var(--c-red); border-radius: 50%;
	transform: rotate(-4deg);
	mask: linear-gradient(#000 0 0);
	opacity: .85;
}
.mjk-case__arrow { font-size: 26px; font-weight: 900; color: var(--c-red); }

.mjk-voice-card {
	background: #fff; border-radius: 14px; padding: 24px 26px;
	box-shadow: 0 3px 14px rgba(0,0,0,.05);
}
.mjk-voice-card__who {
	display: inline-block; background: var(--c-sub); color: var(--c-deep);
	font-size: 12.5px; font-weight: 700; padding: 3px 14px; border-radius: 999px;
	margin-bottom: 8px;
}
.mjk-voice-card p { margin: 0; }

.mjk-teacher { background: #fff; border-radius: 14px; padding: 28px; box-shadow: 0 3px 14px rgba(0,0,0,.05); }
.mjk-teacher h2 { border: none; margin-top: 0; }
.mjk-teacher h2::after { display: none; }

.mjk-price-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: 12px; overflow: hidden; }
.mjk-price-table th, .mjk-price-table td { padding: 13px 16px; border: 1px solid var(--c-sub); text-align: left; }
.mjk-price-table thead th { background: var(--c-main); color: #fff; font-family: var(--f-display); }
.mjk-price-table tbody th { background: var(--c-sub); font-family: var(--f-display); width: 30%; }
.wp-block-table { margin-left: 0; margin-right: 0; }

.mjk-flow { list-style: none; margin: 0; padding: 0; counter-reset: flowstep; }
.mjk-flow li {
	background: #fff; border-radius: 14px; padding: 24px 26px 20px 84px;
	position: relative; box-shadow: 0 3px 14px rgba(0,0,0,.05);
	counter-increment: flowstep;
}
.mjk-flow li + li { margin-top: 32px; }
.mjk-flow li + li::before {
	content: "▼"; position: absolute; top: -26px; left: 50%;
	transform: translateX(-50%); color: var(--c-red); font-size: 13px;
}
.mjk-flow li::after {
	content: counter(flowstep);
	position: absolute; left: 22px; top: 24px;
	width: 42px; height: 42px; display: grid; place-items: center;
	background: var(--c-accent); color: var(--c-deep);
	font-family: var(--f-en); font-weight: 800; font-size: 20px; border-radius: 50%;
}
.mjk-flow h2 { border: none; margin: 0 0 4px; font-size: 19px; }
.mjk-flow h2::after { display: none; }
.mjk-flow p { margin: 0; font-size: 15px; color: #445; }

.mjk-inline-cta {
	margin-top: 3em; text-align: center;
	background: var(--c-sub); border-radius: 16px; padding: 34px 22px;
}
.mjk-inline-cta__hand { font-family: var(--f-hand); font-size: 19px; color: var(--c-deep); margin: 0 0 16px; }

.mjk-form p { margin: 0 0 18px; }
.mjk-form label { font-family: var(--f-display); font-weight: 700; font-size: 14.5px; color: var(--c-deep); }
.mjk-form input[type="text"], .mjk-form input[type="email"], .mjk-form input[type="tel"],
.mjk-form select, .mjk-form textarea {
	width: 100%; padding: 12px 14px; margin-top: 6px;
	border: 2px solid var(--c-sub); border-radius: 10px;
	font: inherit; background: #fff;
}
.mjk-form input:focus, .mjk-form select:focus, .mjk-form textarea:focus { border-color: var(--c-main); outline: none; }
.mjk-form textarea { min-height: 140px; }
.mjk-form__submit { text-align: center; }
.mjk-form input[type="submit"] {
	background: var(--c-accent); color: var(--c-deep);
	font-family: var(--f-display); font-weight: 700; font-size: 17px;
	border: none; border-radius: 999px; padding: 16px 48px; cursor: pointer;
	box-shadow: 0 4px 0 rgba(var(--c-main-rgb), .35);
}
.mjk-form-fallback { background: var(--c-sub); border-radius: 12px; padding: 22px; }

/* ---------- Archive ---------- */
.archive-body { padding-top: 48px; padding-bottom: 80px; }
.year-group__title {
	font-family: var(--f-en); font-weight: 800; font-size: 30px;
	color: var(--c-deep); border-bottom: 3px solid var(--c-accent);
	display: inline-block; padding: 0 6px 2px; margin: 34px 0 10px;
}
.year-group__title small { font-family: var(--f-display); font-size: 15px; margin-left: 2px; }
.archive-list { list-style: none; margin: 0; padding: 0; }
.archive-item a {
	display: flex; gap: 14px; align-items: baseline; flex-wrap: wrap;
	padding: 15px 6px; border-bottom: 1px dashed rgba(var(--c-main-rgb), .3);
	color: inherit;
}
.archive-item time { font-family: var(--f-en); font-weight: 600; color: var(--c-red); }
.archive-item__title { font-weight: 500; }
.pagination { margin-top: 40px; text-align: center; }
.pagination .nav-links { display: flex; gap: 8px; justify-content: center; }
.pagination .page-numbers {
	display: inline-grid; place-items: center; min-width: 40px; height: 40px;
	padding: 0 12px; background: #fff; border-radius: 10px;
	font-family: var(--f-en); font-weight: 600;
}
.pagination .page-numbers.current { background: var(--c-main); color: #fff; }

/* =====================================================
   Responsive
   ===================================================== */
@media (max-width: 1080px) {
	.global-nav { display: none; }
	.drawer-toggle { display: flex; }
	/* グローバルナビが消えるので、アクション群を右端へ寄せる */
	.site-header__actions { margin-left: auto; }
}

@media (max-width: 767px) {
	body { font-size: 15px; }
	.sp-only { display: inline; }
	.site-header__tel { display: none; }
	.btn--header { display: none; }

	.fv__inner { grid-template-columns: 1fr; gap: 28px; padding: 40px 20px 32px; }
	.fv__buttons .btn { flex: 1 1 100%; }
	.counter { grid-template-columns: 1fr 1fr; }

	.section { padding: 56px 0; }
	.nayami__list { grid-template-columns: 1fr; }
	.reasons__grid { grid-template-columns: 1fr; }
	/* 成績事例：スマホは横スワイプ（カードを縦積みしない） */
	.results__grid--swipe {
		display: flex; grid-template-columns: none;
		gap: 14px;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
		margin: 0 -20px; padding: 4px 20px 14px;
		scrollbar-width: none;
	}
	.results__grid--swipe::-webkit-scrollbar { display: none; }
	.results__grid--swipe .result-card {
		flex: 0 0 82%;
		scroll-snap-align: center;
	}
	.results__swipe-hint {
		display: block; text-align: center;
		font-size: 12px; color: rgba(255,255,255,.6); margin-top: 4px;
	}
	.courses__grid { grid-template-columns: 1fr; }
	.voice__grid { grid-template-columns: 1fr; }
	.teacher__inner { grid-template-columns: 1fr; gap: 24px; }
	.teacher__photo { max-width: 260px; margin: 0 auto; }
	.price__cards { grid-template-columns: 1fr; }
	.flow__steps { grid-template-columns: 1fr 1fr; }
	.flow__steps li:not(:last-child)::after { display: none; }

	.site-footer__inner { grid-template-columns: 1fr 1fr; gap: 26px; padding: 44px 20px 32px; }
	.site-footer__col--brand { grid-column: 1 / -1; }

	.sticky-cta { display: flex; }
	body { padding-bottom: 76px; }
	.cta-band { padding-bottom: 88px; }

	.mjk-info-table { grid-template-columns: 92px 1fr; }
	.mjk-flow li { padding: 70px 20px 20px 20px; }
	.mjk-flow li::after { left: 20px; top: 18px; }
}

/* =====================================================
   v1.1 追加レイヤー
   ===================================================== */

/* ---------- ヘッダーを広く ---------- */
.site-header__inner { max-width: 1560px; gap: 20px; padding: 8px 28px; }
.global-nav__list { gap: 2px; flex-wrap: nowrap; }
.global-nav__list a { padding: 8px 10px; font-size: 13.5px; white-space: nowrap; letter-spacing: .01em; }
.site-header__actions { gap: 12px; flex-shrink: 0; }

/* SNSアイコン */
.sns-list { display: flex; gap: 6px; list-style: none; margin: 0; padding: 0; }
.sns-list__link {
	display: grid; place-items: center;
	width: 34px; height: 34px; border-radius: 9px;
	background: var(--c-sub); color: var(--c-main);
	transition: transform .15s ease, background .15s ease, color .15s ease;
}
.sns-list__link svg { width: 17px; height: 17px; }
.sns-list__link:hover { transform: translateY(-2px); background: var(--c-main); color: #fff; opacity: 1; }
.sns-list__link--line:hover { background: #06c755; }
.sns-list__link--youtube:hover { background: #ff0000; }
.sns-list__link--x:hover { background: #000; }
.sns-list__link--instagram:hover { background: linear-gradient(45deg, #f09433, #dc2743, #bc1888); }
.sns-list--drawer { margin-top: 24px; justify-content: center; }
.sns-list--drawer .sns-list__link { background: rgba(255,255,255,.14); color: #fff; width: 42px; height: 42px; }
.sns-list--footer { margin-top: 16px; }

/* ---------- FV：フルスクリーン ---------- */
body.fvh-full .fv { min-height: 100svh; width: 100%; display: flex; flex-direction: column; justify-content: center; }
body.fvh-full .fv--static .fv__inner { flex: 1; align-content: center; padding-top: 40px; padding-bottom: 40px; }
body.fvh-full .fv--slider,
body.fvh-full .fv-slide { min-height: 100svh; }
.fv { position: relative; }

/* スクロールヒント */
.fv__scroll-hint {
	position: absolute; left: 50%; bottom: 14px; transform: translateX(-50%);
	font-family: var(--f-en); font-size: 11px; letter-spacing: .22em;
	color: var(--c-main); display: flex; flex-direction: column; align-items: center; gap: 6px;
	z-index: 3;
}
.fv--slider .fv__scroll-hint { color: #fff; }
.fv__scroll-hint span {
	width: 1px; height: 42px; background: currentColor; opacity: .5;
	animation: mjk-scrollhint 2s ease-in-out infinite;
	transform-origin: top;
}
@keyframes mjk-scrollhint {
	0% { transform: scaleY(0); opacity: 0; }
	40% { transform: scaleY(1); opacity: .6; }
	100% { transform: scaleY(1); opacity: 0; transform-origin: bottom; }
}
@media (prefers-reduced-motion: reduce) { .fv__scroll-hint span { animation: none; } }

/* ---------- FV：スライダー ---------- */
.fv--slider {
	position: relative; overflow: hidden;
	background: var(--grad-main);
	border-bottom: 4px solid var(--c-accent);
	min-height: 620px;
	--fv-scrim: .55; /* JS/インラインで上書き */
	--fv-pos: center;
	--fv-pos-sp: center;
}
.fv-slider__track { position: relative; width: 100%; min-height: inherit; }
.fv-slide {
	position: absolute; inset: 0;
	display: flex; align-items: center;
	opacity: 0; visibility: hidden;
	min-height: 620px;
}
.fv-slide.is-active { opacity: 1; visibility: visible; z-index: 2; }
.fv-slide:first-child { position: relative; }
.fv-slide__bg {
	position: absolute; inset: 0;
	background-size: cover;
	background-position: var(--fv-pos);
	background-color: var(--c-deep);
	will-change: transform, opacity;
}

/* --- アニメーション：フェード（既定） --- */
.fv-anim--fade .fv-slide { transition: opacity .9s ease, visibility .9s ease; }

/* --- アニメーション：スライド（横送り） --- */
.fv-anim--slide .fv-slide {
	transition: opacity .7s ease, transform .7s cubic-bezier(.5,.05,.2,1), visibility .7s ease;
	transform: translateX(40px);
}
.fv-anim--slide .fv-slide.is-active { transform: translateX(0); }

/* --- アニメーション：ズーム --- */
.fv-anim--zoom .fv-slide { transition: opacity .9s ease, transform 1s ease, visibility .9s ease; transform: scale(1.04); }
.fv-anim--zoom .fv-slide.is-active { transform: scale(1); }

/* --- アニメーション：Ken Burns（ゆっくり寄り） --- */
.fv-anim--kenburns .fv-slide { transition: opacity 1s ease, visibility 1s ease; }
.fv-anim--kenburns .fv-slide.is-active .fv-slide__bg { animation: mjk-kenburns 8s ease-out forwards; }
@keyframes mjk-kenburns {
	from { transform: scale(1.02) translateX(0); }
	to   { transform: scale(1.14) translateX(-1.5%); }
}
@media (prefers-reduced-motion: reduce) {
	.fv-slide { transition: opacity .3s ease !important; transform: none !important; }
	.fv-anim--kenburns .fv-slide.is-active .fv-slide__bg { animation: none; }
}
.fv-slide__scrim {
	position: absolute; inset: 0;
	background:
		linear-gradient(100deg,
			rgba(var(--c-deep-rgb), calc(var(--fv-scrim) + .28)) 0%,
			rgba(var(--c-deep-rgb), var(--fv-scrim)) 45%,
			rgba(var(--c-deep-rgb), calc(var(--fv-scrim) * .45)) 100%);
}
.fv-slide__inner {
	position: relative; z-index: 2;
	max-width: 1180px; margin: 0 auto; width: 100%;
	padding: 132px 28px 90px; /* 上部はヘッダー高さ分を確保 */
	color: #fff;
}
.fv-slide__title {
	color: #fff; font-size: clamp(28px, 4.6vw, 58px); font-weight: 900;
	margin: 0 0 18px; letter-spacing: .01em;
}
.fv-slide__line { display: block; }
.fv-slide.is-active .fv-slide__line {
	animation: mjk-slidein .8s cubic-bezier(.2,.7,.3,1) both;
}
.fv-slide.is-active .fv-slide__line:nth-child(2) { animation-delay: .12s; }
.fv-slide.is-active .fv-slide__sub { animation: mjk-slidein .8s .24s cubic-bezier(.2,.7,.3,1) both; }
.fv-slide.is-active .fv__buttons { animation: mjk-slidein .8s .36s cubic-bezier(.2,.7,.3,1) both; }
.fv-slide.is-active .fv__badge { animation: mjk-slidein .7s cubic-bezier(.2,.7,.3,1) both; }
@keyframes mjk-slidein {
	from { opacity: 0; transform: translateY(26px); }
	to { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
	.fv-slide.is-active .fv-slide__line,
	.fv-slide.is-active .fv-slide__sub,
	.fv-slide.is-active .fv__buttons,
	.fv-slide.is-active .fv__badge { animation: none; }
}
.fv-slide__sub { font-size: 17px; margin: 0 0 28px; max-width: 30em; opacity: .95; }
.fv--slider .fv__badge { background: var(--c-accent); color: var(--c-deep); }

.fv-slider__nav {
	position: absolute; z-index: 5; left: 50%; bottom: 62px; transform: translateX(-50%);
	display: flex; align-items: center; gap: 14px;
}
.fv-slider__arrow {
	width: 42px; height: 42px; border-radius: 50%;
	border: 1px solid rgba(255,255,255,.5); background: rgba(255,255,255,.08);
	color: #fff; font-size: 22px; line-height: 1; cursor: pointer;
	transition: background .15s ease;
}
.fv-slider__arrow:hover { background: var(--c-accent); color: var(--c-deep); border-color: var(--c-accent); }
.fv-slider__dots { display: flex; gap: 8px; }
.fv-slider__dot {
	width: 30px; height: 4px; border: none; border-radius: 2px; padding: 0;
	background: rgba(255,255,255,.4); cursor: pointer; transition: background .2s ease, width .2s ease;
}
.fv-slider__dot.is-active { background: var(--c-accent); width: 46px; }

/* ---------- カウンター帯（グラデ） ---------- */
.counter-band { padding: 34px 0 26px; }
.counter { padding-bottom: 0; }
.counter__note { padding-top: 14px; padding-bottom: 0; }

/* --- 濃色背景タイプ（白抜き文字） --- */
.counter-band--grad { background: var(--grad-main); }
.counter-band--main { background: var(--c-main); }
.counter-band--deep { background: var(--c-deep); }
.counter-band--grad .counter__item,
.counter-band--main .counter__item,
.counter-band--deep .counter__item {
	background: rgba(255, 255, 255, .08);
	border: 1px solid rgba(255, 255, 255, .14);
	backdrop-filter: blur(4px);
}
.counter-band--grad .counter__num, .counter-band--grad .counter__unit,
.counter-band--main .counter__num, .counter-band--main .counter__unit,
.counter-band--deep .counter__num, .counter-band--deep .counter__unit { color: var(--c-accent); }
.counter-band--grad .counter__label,
.counter-band--main .counter__label,
.counter-band--deep .counter__label { color: #fff; }
.counter-band--grad .counter__note,
.counter-band--main .counter__note,
.counter-band--deep .counter__note { color: rgba(255, 255, 255, .6); }

/* --- 白背景タイプ（スライダーFVと相性◎・デフォルト） --- */
.counter-band--white { background: #fff; border-bottom: 1px solid rgba(var(--c-main-rgb), .10); }
.counter-band--sub { background: var(--c-sub); }
.counter-band--white .counter__item,
.counter-band--sub .counter__item {
	background: rgba(var(--c-main-rgb), .04);
	border: 1px solid rgba(var(--c-main-rgb), .10);
}
.counter-band--white .counter__num, .counter-band--white .counter__unit,
.counter-band--sub .counter__num, .counter-band--sub .counter__unit { color: var(--c-main); }
.counter-band--white .counter__label,
.counter-band--sub .counter__label { color: var(--c-deep); }
.counter-band--white .counter__note,
.counter-band--sub .counter__note { color: rgba(var(--c-main-rgb), .55); }

/* --- アクセント背景タイプ --- */
.counter-band--accent { background: var(--c-accent); }
.counter-band--accent .counter__item {
	background: rgba(255, 255, 255, .45);
	border: 1px solid rgba(var(--c-deep-rgb), .12);
}
.counter-band--accent .counter__num,
.counter-band--accent .counter__unit,
.counter-band--accent .counter__label { color: var(--c-deep); }
.counter-band--accent .counter__note { color: rgba(var(--c-deep-rgb), .65); }

.results__swipe-hint { display: none; }

/* ---------- セクション：グラデ背景 ---------- */
.section--grad { background: var(--grad-soft); }

/* ---------- 選ばれる理由（写真つき交互レイアウト） ---------- */
.reasons__list { margin-top: 44px; display: grid; gap: 64px; }
.reason-row {
	max-width: 1180px; margin: 0 auto; width: 100%;
	padding: 0 28px;
	display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.reason-row:nth-child(even) .reason-row__media { order: 2; }
.reason-row__media { position: relative; }

/* 写真フレーム（写真あり時） */
.reason-row__frame { position: relative; border-radius: 18px; }
.reason-row__img {
	display: block;
	width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
	border-radius: 18px;
	position: relative; z-index: 1;
}
/* 模様「斜めストライプ」：写真の背後にずらしたストライプ帯を敷く */
.reason-row__media--stripe .reason-row__frame::before {
	content: ""; position: absolute; z-index: 0;
	right: -18px; bottom: -18px; width: 62%; height: 62%;
	border-radius: 18px;
	background: repeating-linear-gradient(45deg,
		rgba(var(--c-main-rgb), .16) 0 10px,
		rgba(var(--c-main-rgb), 0) 10px 20px);
}
.reason-row:nth-child(even) .reason-row__media--stripe .reason-row__frame::before {
	right: auto; left: -18px;
}
/* 模様「グレー（無地の影）」 */
.reason-row__media--plain .reason-row__img { box-shadow: 16px 16px 0 rgba(var(--c-main-rgb), .12); }
.reason-row:nth-child(even) .reason-row__media--plain .reason-row__img { box-shadow: -16px 16px 0 rgba(var(--c-main-rgb), .12); }

/* プレースホルダー（写真なし時） */
.reason-row__ph {
	width: 100%; aspect-ratio: 4 / 3;
	border-radius: 18px;
	display: grid; place-items: center;
	color: rgba(var(--c-main-rgb), .5); font-family: var(--f-display); font-weight: 700;
}
/* 写真なし × 斜めストライプ */
.reason-row__media--stripe .reason-row__ph {
	background:
		repeating-linear-gradient(45deg,
			rgba(var(--c-main-rgb), .10) 0 16px,
			rgba(var(--c-main-rgb), .02) 16px 32px);
	border: 2px solid rgba(var(--c-main-rgb), .14);
	box-shadow: 16px 16px 0 rgba(var(--c-main-rgb), .08);
}
/* 写真なし × グレー無地 */
.reason-row__media--plain .reason-row__ph {
	background: repeating-linear-gradient(45deg, var(--c-sub) 0 14px, #fff 14px 28px);
	border: 2px dashed rgba(var(--c-main-rgb), .28);
	box-shadow: 16px 16px 0 rgba(var(--c-main-rgb), .12);
}
.reason-row__num {
	position: absolute; top: -18px; left: -14px;
	display: grid; place-items: center;
	width: 66px; height: 66px; border-radius: 50%;
	background: var(--grad-accent); color: var(--c-deep);
	font-family: var(--f-en); font-weight: 800; font-size: 26px;
	box-shadow: 0 6px 18px rgba(var(--c-main-rgb), .2);
}
.reason-row__tag {
	display: inline-block;
	background: rgba(var(--c-red-rgb), .1); color: var(--c-red);
	font-size: 12.5px; font-weight: 700; padding: 4px 14px; border-radius: 999px;
	margin-bottom: 12px;
}
.reason-row__lead { margin: 0 0 4px; font-size: 13.5px; font-weight: 700; color: rgba(var(--c-main-rgb), .75); letter-spacing: .04em; }
.reason-row__title { font-size: clamp(21px, 2.6vw, 30px); font-weight: 900; margin: 0 0 16px; line-height: 1.5; }
.reason-row__text { margin: 0; color: #445; font-size: 15.5px; }
.reason-row__text strong { color: var(--c-deep); background: linear-gradient(transparent 62%, rgba(var(--c-accent-rgb), .55) 62%); }

/* ---------- フローズングリッド ---------- */
.frozen { background: var(--grad-main); color: #fff; padding: 0; }
.frozen__inner {
	max-width: 1280px; margin: 0 auto;
	display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 60px;
	padding: 0 28px;
	align-items: start;
}
.frozen__pane {
	position: sticky; top: 96px;
	padding: 96px 0;
}
.frozen__title { color: #fff; font-size: clamp(26px, 3.4vw, 40px); font-weight: 900; margin: 0 0 20px; line-height: 1.5; }
.frozen__text { opacity: .88; margin: 0 0 28px; }
.frozen__scroll { padding: 96px 0; display: grid; gap: 22px; }
.frozen-card {
	background: rgba(255,255,255,.07);
	border: 1px solid rgba(255,255,255,.14);
	border-radius: 18px; padding: 30px 30px 26px;
	backdrop-filter: blur(6px);
	transition: transform .3s ease, background .3s ease;
}
.frozen-card:hover { transform: translateX(6px); background: rgba(255,255,255,.12); }
.frozen-card__label { font-family: var(--f-en); font-size: 12px; letter-spacing: .2em; color: var(--c-accent); }
.frozen-card h3 { color: #fff; font-size: 21px; font-weight: 900; margin: 8px 0 8px; }
.frozen-card p { margin: 0; font-size: 14.5px; opacity: .85; }

/* ---------- お知らせ＋ブログ 2カラム ---------- */
.news__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.news__list a { flex-wrap: wrap; }
.news__list .cat-badge { flex-shrink: 0; }

/* ---------- ページヒーロー（タイトル左下オフセット・帯付き） ---------- */
.page-hero {
	position: relative;
	overflow: visible; /* タイトルボックスを下端からはみ出させるため */
	min-height: 340px;
	display: flex; align-items: flex-end;
	padding: 0;
	margin-bottom: 44px; /* はみ出し分を確保 */
}
/* 背景だけをクリップするラッパー */
.page-hero__media {
	position: absolute; inset: 0;
	overflow: hidden;
	background: var(--grad-main);
}
.page-hero__bg {
	position: absolute; inset: -6%;
	background-size: cover; background-position: center;
	transform: scale(1.08); will-change: transform;
}
.page-hero__scrim {
	position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(var(--c-deep-rgb), .45) 0%, rgba(var(--c-deep-rgb), .72) 100%);
}
.page-hero:not(.page-hero--img) .page-hero__scrim {
	background: radial-gradient(120% 140% at 15% 0%, rgba(255,255,255,.10) 0%, transparent 60%);
}
.page-hero__inner {
	position: relative; z-index: 2;
	max-width: 1180px; margin: 0 auto; width: 100%;
	padding: 130px 28px 0;
}
/* タイトルボックスをヒーロー下端からはみ出させる（オフセット） */
.page-hero__titlebox {
	position: relative;
	background: #fff;
	border-left: 8px solid var(--c-accent);
	border-radius: 0 14px 14px 0;
	padding: 26px 46px 26px 32px;
	margin-bottom: -44px;
	max-width: 82%;
	box-shadow: 0 18px 44px rgba(var(--c-deep-rgb), .28);
}
.page-hero__en {
	display: block;
	font-family: var(--f-en); font-weight: 800; font-size: 12px;
	letter-spacing: .28em; color: var(--c-red); margin-bottom: 4px;
}
.page-hero__title {
	color: var(--c-deep); font-size: clamp(24px, 3.4vw, 40px); font-weight: 900; margin: 0;
	line-height: 1.4;
}
.page-hero__title--post { font-size: clamp(19px, 2.4vw, 28px); line-height: 1.6; }
.page-hero__meta { margin: 0 0 8px; display: flex; gap: 10px; align-items: center; font-size: 13px; flex-wrap: wrap; }
.page-hero__meta time { font-family: var(--f-en); font-weight: 600; color: var(--c-red); }

/* パンくずバー */
.breadcrumb-bar { background: var(--c-bg); padding: 18px 0 0; }
.breadcrumb { font-size: 12px; color: #778; }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; margin: 0; padding: 0; }
.breadcrumb li + li::before { content: "›"; margin-right: 8px; color: #aab; }
.breadcrumb a { color: var(--c-main); text-decoration: none; border-bottom: 1px solid rgba(var(--c-main-rgb), .3); }
.breadcrumb [aria-current] { color: #778; }
.entry { padding-top: 40px; }

/* ---------- カテゴリータブ ---------- */
.cat-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.cat-tabs__item {
	display: inline-flex; align-items: center; gap: 6px;
	background: #fff; border: 2px solid var(--c-sub);
	border-radius: 999px; padding: 8px 18px;
	font-family: var(--f-display); font-weight: 700; font-size: 13.5px; color: var(--c-deep);
	transition: border-color .15s ease, background .15s ease, color .15s ease, transform .15s ease;
}
.cat-tabs__item:hover { border-color: var(--c-accent); transform: translateY(-2px); opacity: 1; }
.cat-tabs__item.is-active { background: var(--c-main); border-color: var(--c-main); color: #fff; }
.cat-tabs__count {
	font-family: var(--f-en); font-size: 11px;
	background: rgba(var(--c-main-rgb), .1); color: inherit;
	padding: 1px 7px; border-radius: 999px;
}
.cat-tabs__item.is-active .cat-tabs__count { background: rgba(255,255,255,.22); }
.tax-desc { background: #fff; border-radius: 12px; padding: 18px 22px; margin-bottom: 26px; font-size: 15px; }

/* ---------- アーカイブ（年グループ） ---------- */
.year-group--open { margin-bottom: 40px; }
.year-group__count {
	font-family: var(--f-en); font-size: 12px; font-weight: 600;
	background: var(--c-sub); color: var(--c-deep);
	padding: 2px 10px; border-radius: 999px; margin-left: 10px;
	vertical-align: middle;
}
.year-group--past {
	background: #fff; border-radius: 14px; margin-bottom: 12px;
	box-shadow: 0 2px 10px rgba(0,0,0,.05); overflow: hidden;
}
.year-group__summary {
	cursor: pointer; list-style: none;
	display: flex; align-items: center; gap: 4px;
	padding: 18px 22px;
}
.year-group__summary::-webkit-details-marker { display: none; }
.year-group--past .year-group__title {
	border: none; margin: 0; padding: 0; font-size: 22px;
}
.year-group__toggle {
	margin-left: auto; width: 12px; height: 12px;
	border-right: 3px solid var(--c-red); border-bottom: 3px solid var(--c-red);
	transform: rotate(45deg); transition: transform .2s ease;
}
.year-group--past[open] .year-group__toggle { transform: rotate(-135deg); }
.year-group--past .archive-list { padding: 0 22px 14px; }
.archive-item.is-hidden { display: none; }
.archive-more {
	display: block; margin: 20px auto 0;
	background: #fff; border: 2px solid var(--c-main); color: var(--c-main);
	font-family: var(--f-display); font-weight: 700; font-size: 14px;
	padding: 12px 34px; border-radius: 999px; cursor: pointer;
	transition: background .15s ease, color .15s ease;
}
.archive-more:hover { background: var(--c-main); color: #fff; }
.archive-empty { background: #fff; border-radius: 12px; padding: 30px; text-align: center; color: #778; }

/* 関連記事 */
.related { margin-top: 56px; background: #fff; border-radius: 14px; padding: 28px; }
.related__title { font-size: 19px; font-weight: 900; margin: 0 0 8px; }

/* ---------- トップへ戻る ---------- */
.to-top {
	position: fixed; right: 20px; bottom: 24px; z-index: 150;
	width: 48px; height: 48px; border-radius: 50%;
	border: none; cursor: pointer;
	background: var(--grad-main); color: var(--c-accent);
	font-size: 20px; font-weight: 700;
	box-shadow: 0 6px 20px rgba(var(--c-deep-rgb), .3);
	opacity: 0; visibility: hidden; transform: translateY(10px);
	transition: opacity .25s ease, transform .25s ease, visibility .25s;
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: none; }

/* ---------- リビール要素 ---------- */
.reveal-item { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal-item.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
	.reveal-item { opacity: 1; transform: none; transition: none; }
}

/* ボタンのマイクロインタラクション */
.btn { position: relative; overflow: hidden; }
.btn--accent::after {
	content: ""; position: absolute; inset: 0;
	background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,.55) 50%, transparent 70%);
	transform: translateX(-120%);
}
.btn--accent:hover::after { animation: mjk-shine .8s ease; }
@keyframes mjk-shine { to { transform: translateX(120%); } }
@media (prefers-reduced-motion: reduce) { .btn--accent:hover::after { animation: none; } }

/* =====================================================
   Responsive（v1.1）
   ===================================================== */
@media (max-width: 1240px) {
	.global-nav__list a { padding: 8px 8px; font-size: 12.5px; }
	.site-header__tel-num { font-size: 16px; }
}

@media (max-width: 1080px) {
	.frozen__inner { grid-template-columns: 1fr; gap: 0; }
	.frozen__pane { position: static; padding: 72px 0 24px; }
	.frozen__scroll { padding: 0 0 72px; }
	.reason-row { grid-template-columns: 1fr; gap: 26px; }
	.reason-row:nth-child(even) .reason-row__media { order: 0; }
	.news__grid { grid-template-columns: 1fr; gap: 44px; }
	.results__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 767px) {
	.site-header__inner { padding: 8px 16px; }
	.sns-list--header { display: none; }

	/* FVスライダー：スマホ */
	.fv--slider, .fv-slide { min-height: 520px; }
	.fv-slide__bg { background-position: var(--fv-pos-sp); }
	body.fvh-full .fv--slider,
	body.fvh-full .fv-slide { min-height: 100svh; }
	.fv-slide__inner { padding: 70px 20px 110px; }
	.fv-slide__scrim {
		background: linear-gradient(180deg,
			rgba(var(--c-deep-rgb), var(--fv-scrim)) 0%,
			rgba(var(--c-deep-rgb), calc(var(--fv-scrim) + .3)) 78%);
	}
	.fv-slide__sub { font-size: 15px; }
	.fv-slider__nav { bottom: 74px; gap: 10px; }
	.fv-slider__arrow { width: 36px; height: 36px; }
	.fv__scroll-hint { display: none; }

	.counter-band { padding: 24px 0 18px; }

	/* 選ばれる理由 */
	.reasons__list { gap: 44px; margin-top: 32px; }
	.reason-row { padding: 0 20px; }
	.reason-row__media--plain .reason-row__img,
	.reason-row__media--plain .reason-row__ph,
	.reason-row:nth-child(even) .reason-row__media--plain .reason-row__img { box-shadow: 10px 10px 0 rgba(var(--c-main-rgb), .12); }
	.reason-row__media--stripe .reason-row__ph { box-shadow: 10px 10px 0 rgba(var(--c-main-rgb), .08); }
	.reason-row__num { width: 54px; height: 54px; font-size: 21px; top: -14px; left: -8px; }

	/* フローズングリッド */
	.frozen__inner { padding: 0 20px; }
	.frozen-card { padding: 24px 22px 20px; }
	.frozen-card:hover { transform: none; }

	/* ページヒーロー：スマホは全幅の帯に */
	.page-hero { min-height: 220px; margin-bottom: 34px; }
	.page-hero__inner { padding: 90px 16px 0; }
	.page-hero__titlebox {
		max-width: 100%;
		margin-bottom: -34px;
		padding: 18px 18px 18px 16px;
		border-left-width: 6px;
		border-radius: 12px;
	}
	.page-hero__title { font-size: 21px; }
	.page-hero__title--post { font-size: 18px; }
	.breadcrumb-bar { padding-top: 14px; }
	.breadcrumb { font-size: 11px; }

	/* アーカイブ */
	.cat-tabs { gap: 6px; margin-bottom: 24px; }
	.cat-tabs__item { padding: 7px 14px; font-size: 12.5px; }
	.archive-item a { gap: 8px; padding: 13px 4px; }
	.archive-item__title { flex: 1 1 100%; }
	.year-group--past .archive-list { padding: 0 16px 12px; }
	.year-group__summary { padding: 14px 16px; }

	/* 追従フッター：4ボタン */
	.sticky-cta__item { font-size: 10.5px; padding: 7px 2px; }
	.sticky-cta__item svg { width: 18px; height: 18px; }
	.to-top { right: 12px; bottom: 84px; width: 42px; height: 42px; }

	.related { padding: 22px 18px; }
}

/* -------------------------------------------------
 * Instagram（SMASHプラグイン領域）
 * ------------------------------------------------- */
.insta__feed { margin-top: 28px; }
.insta__placeholder {
	display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px;
}
.insta__ph {
	aspect-ratio: 1 / 1; border-radius: 8px;
	background: var(--grad-soft);
	border: 1px dashed rgba(var(--c-main-rgb), .22);
}
.insta__note { margin: 14px 0 0; color: rgba(var(--c-main-rgb), .6); }
.insta .btn svg { width: 16px; height: 16px; margin-right: 6px; vertical-align: -3px; }

@media (max-width: 900px) {
	.insta__placeholder { grid-template-columns: repeat(3, 1fr); }
}
