/* =========================================================
   ファインモータースクール  -  style.css
   TOP（index.html）＋2階層目ページ固有のスタイル
   共通パーツは common.css を先に読み込むこと
   ========================================================= */

/* ----▼---▼▼--▼▼▼-▼▼▼▼- ヒーロー（PC：100vh / 画像は上下左右に余白）-▼▼▼▼-▼▼▼--▼▼---▼---- */
.hero {
	position: relative;
	height: 100vh;
	min-height: 600px;
	padding: 32px 48px 0;
}
.hero__slider {
	position: relative;
	/* 写真下の白帯: newsピル（bottom:16+高さ約68px）＋余白28pxを確保 */
	height: calc(100% - 112px);
	min-height: 420px;
	border-radius: 40px;
	overflow: hidden;
}
.hero__slide {
	/* 画像はインラインの --hero-pc / --hero-sp で指定（SPは767px以下で切替） */
	background-image: var(--hero-pc);
	background-size: cover;
	background-position: center;
	height: 100%;
}
/* 縦組みコピーを右上に2枚並べる */
.hero__copy {
	position: absolute;
	top: 40px;
	right: 40px;
	left: auto;
	z-index: 3;
	display: flex;
	flex-direction: row;
	gap: 10px;
	align-items: flex-start;
}
.hero__title,
.hero__lead {
	display: block;
	writing-mode: vertical-rl;
	background: #fff;
	color: var(--orange);
	font-family: var(--font-zen);
	font-weight: 700;
	font-size: 2.4vw;
	letter-spacing: 6px;
	line-height: 1.1;
	margin: 0;
	padding: 20px 12px;
}
/* ヒーロー写真スライダーのドット（Figma：写真内下部中央に白ドット） */
.hero__dots {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 18px;
	z-index: 5;
	display: flex;
	justify-content: center;
	gap: 20px;
}
.hero__dots .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background: #fff;
	opacity: .55;
	transition: .2s;
}
.hero__dots .swiper-pagination-bullet-active {
	opacity: 1;
}
/* LPバナースライダー：画像の上レイヤーに重ねる */
.hero__banners {
	position: absolute;
	left: 0;
	right: 0;
	/* newsピル（bottom:16+高さ約68px）との間に約80pxの余白を確保 */
	bottom: 164px;
	z-index: 6;
}
.hero__thumbs {
	width: 100%;
	overflow: hidden;
}
.hero__thumbs .swiper-slide {
	width: 400px;
	aspect-ratio: 400 / 206;
	border: 2px solid #fff;
	border-radius: 14px;
	overflow: hidden;
	background-size: cover;
	background-position: center;
	box-shadow: 0 6px 18px rgba(0,0,0,.18);
}

/* ----▼---▼▼--▼▼▼-▼▼▼▼- ニュースティッカー（PC：ヒーロー最下部にピル）-▼▼▼▼-▼▼▼--▼▼---▼---- */
.ticker {
	position: absolute;
	left: 48px;
	right: 48px;
	bottom: 30px;
	z-index: 6;
	display: flex;
	align-items: center;
	gap: 24px;
	padding: 16px 28px;
	background: #fff;
	border: 1.7px solid #dfdfdf;
	border-radius: 85px;
	box-shadow: var(--shadow-sm);
}
.ticker__tag {
	flex-shrink: 0;
	font-family: var(--font-jp);
	font-weight: 600;
	letter-spacing: .05em;
	background: #d96347;
	color: #fff;
	border-radius: 50px;
	padding: 5px 14px;
	font-size: 13px;
}
/* タグ色はnewsページ（.news-item__tag）と同じマップ（お知らせ=pink/メディア・プレス=orange/イベント・コラム=magenta） */
.ticker__tag.tag--pink    { background: #f2a7cd; }
.ticker__tag.tag--orange  { background: var(--orange-2); }
.ticker__tag.tag--magenta { background: var(--pink); }
.ticker__items {
	position: relative;
	flex: 1;
	min-width: 0;
	height: 1.5em;
}
.ticker__item {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	gap: 24px;
	color: var(--ink);
	font-size: 16px;
	font-weight: 700;
	white-space: nowrap;
	overflow: hidden;
	opacity: 0;
	visibility: hidden;
	transition: opacity .5s ease;
}
.ticker__item.is-active {
	opacity: 1;
	visibility: visible;
}
.ticker__item time {
	flex-shrink: 0;
	font-family: var(--font-en);
	font-weight: 700;
	color: var(--ink-2);
	font-size: 17px;
}
.ticker__item span {
	overflow: hidden;
	text-overflow: ellipsis;
}
.ticker__item:hover span {
	text-decoration: underline;
}

/* ----▼---▼▼--▼▼▼-▼▼▼▼- 送迎エリア -▼▼▼▼-▼▼▼--▼▼---▼---- */
.suttle-cta {
	position: relative;
	display: flex;
	justify-content: center;
	gap: 40px;
}
.suttle-cta::before {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	width: 400px;
	height: 400px;
	border-radius: 400px;
	background-color: var(--orange);
	opacity: .3;
	z-index: -1;
}
/* あしらい（Figma）：バス写真右上のストライプ円＋ピーチ円 */
.suttle-cta::after {
	content: "";
	position: absolute;
	right: -56px;
	top: -8%;
	width: 150px;
	height: 150px;
	border-radius: 50%;
	background: repeating-linear-gradient(45deg, #ec8f9c 0 5px, rgba(255,255,255,0) 5px 12px);
	opacity: .85;
}
.suttle-text {
	width: 400px;
}
.suttle-text p {
	font-size: 3.2rem;
	font-weight: bold;
	margin: 0 auto 40px;
}
.suttle-cta img {
	position: relative;
	height: 100%;
	width: 600px;
}

.area-cards {
	margin: 60px auto 0;
	max-width: 880px;
}
/* あしらい（Figma）：エリアカード左上・右下のドット三角
   （swiper化で overflow が隠れるため、外側の .container 基準で配置） */
.shuttle .container {
	position: relative;
}
/* #401: ドット装飾は装飾レイヤーとして文字・カードの背面に置く */
.shuttle .sec-head,
.shuttle .suttle-cta,
.shuttle .area-cards {
	position: relative;
	z-index: 1;
}
.shuttle .container::before {
	content: "";
	position: absolute;
	left: -14px;
	bottom: 560px;
	width: 70px;
	height: 62px;
	background-image: radial-gradient(#e8a06f 1.5px, rgba(255,255,255,0) 1.8px);
	background-size: 11px 11px;
	clip-path: polygon(0 0, 0 100%, 100% 100%);
	opacity: .9;
	z-index: 0;
}
.shuttle .container::after {
	content: "";
	position: absolute;
	right: -12px;
	bottom: 130px;
	width: 70px;
	height: 62px;
	background-image: radial-gradient(#e8a06f 1.5px, rgba(255,255,255,0) 1.8px);
	background-size: 11px 11px;
	clip-path: polygon(100% 0, 0 100%, 100% 100%);
	opacity: .9;
	z-index: 0;
}
/* ドット三角はSP（スライダー表示時）のみ。PCはグリッドのため位置が合わない */
@media (min-width: 768px) {
	.shuttle .container::before,
	.shuttle .container::after {
		content: none;
	}
}
.area-card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
}
.area-card span {
	background-color: var(--orange-2);
	color: var(--bg-soft);
	padding: 4px 10px;
	border-top-left-radius: 16px;
	border-bottom-right-radius: 16px;
}
.area-card__img {
	position: relative;
	aspect-ratio: 3/2;
	background-size: cover;
	background-position: center;
	padding: 10px;
}
.area-card__img::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100px;
	background: linear-gradient(rgba(255,255,255,0), rgba(255,255,255,1));
}
.area-card__body {
	position: relative;
	margin-top: -50px;
	padding: 16px;
}
.area-card__title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 2.1rem;
	font-weight: 700;
	color: var(--ink);
	margin-bottom: 8px;
	line-height: 1.5;
}
.area-card__title ion-icon {
	font-size: 4.2rem;
}
.area-card1 ion-icon { color: var(--orange-2); }
.area-card2 ion-icon { color: var(--orange); }
.area-card__body p {
	font-size: 12px;
	color: var(--muted);
	margin-bottom: 10px;
}

/* ----▼---▼▼--▼▼▼-▼▼▼▼- About -▼▼▼▼-▼▼▼--▼▼---▼---- */
/* 写真は「見出しの背景＋カードの背面」に重ねる（7/8版の実装を復元） */
.about__head {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 40px;
}
.feature-cards {
	position: relative;
	padding-top: 20vw;
	overflow: visible;
}
.about__photo {
	position: absolute;
	left: 0;
	top: -30vw;
	width: calc(100vw - var(--sidebar-w));
	margin: 0;
}
/* 写真はカード領域から下に半分ほどはみ出す設計。後続テキスト側の margin-top で衝突を回避 */
.about__photo img {
	width: 100%;
	aspect-ratio: 4/3;
	object-fit: cover;
}
.feature-card__img {
	aspect-ratio: 1/1;
	background-size: cover;
	background-position: center;
	border-radius: var(--radius);
}
/* カード上の英字キャプション（about RAKU-ECO など） */
.feature-card__cat {
	font-family: var(--font-en);
	font-weight: 700;
	font-size: 1.1rem;
	letter-spacing: .05em;
	color: var(--orange);
	margin-top: 0;
}
.feature-card h3 {
	font-size: 1.8rem;
	margin: 4px 0 12px;
}
.about .text {
	position: relative;
	width: fit-content;
	margin: 80px auto 60px;
	font-size: 2.4rem;
	font-weight: 500;
}
/* 本文左上のドット飾り（Figma：三角形に散るドット） */
.about .text::before {
	content: "";
	position: absolute;
	left: -56px;
	top: -8px;
	width: 72px;
	height: 64px;
	background-image: radial-gradient(#e8b88f 1.5px, rgba(255,255,255,0) 1.8px);
	background-size: 11px 11px;
	clip-path: polygon(0 0, 100% 100%, 0 100%);
	opacity: .9;
}
.about > a {
	position: relative;
	margin: 0 auto;
}
/* CTA右奥のひし形ドットパターン（Figma） */
.about > a.section-cta::before {
	content: "";
	position: absolute;
	right: -110px;
	top: -56px;
	z-index: -1;
	width: 150px;
	height: 150px;
	background-image: radial-gradient(#eda02f 1.4px, rgba(255,255,255,0) 1.7px);
	background-size: 10px 10px;
	transform: rotate(45deg);
	opacity: .55;
}

/* ----▼---▼▼--▼▼▼-▼▼▼▼- 校舎案内 -▼▼▼▼-▼▼▼--▼▼---▼---- */
.school .sec-head {
	position: relative;
	z-index: 2;
}
.school-cards {
	position: relative;
	margin-top: 28px;
	padding-top: 10vw;
	overflow: visible;
}
.school__photo {
	position: absolute;
	left: 0;
	top: -16vw;
	width: calc(100vw - var(--sidebar-w));
	margin: 0;
}
.school__photo img {
	width: 100%;
}
/* 校舎コラージュ（Figma Group51）：個別写真7枚をFigmaの散らし座標で絶対配置した
   1081×331pxのユニットを2枚並べ、-50%（＝1ユニット分）動かして継ぎ目なしループ */
.school__marquee {
	width: 100%;
	margin: 56px 0 0;
	overflow: hidden;
}
.school__marquee-track {
	display: flex;
	width: max-content;
	animation: school-marquee 26s linear infinite;
}
.school__marquee-unit {
	position: relative;
	width: 1081px;
	height: 331px;
	flex-shrink: 0;
}
.school__marquee-unit img {
	position: absolute;
	border-radius: 10px;
	object-fit: cover;
	max-width: none;
}
.school__marquee-unit img:nth-child(1) { left: 0;     top: 177px; width: 206px; height: 137px; }
.school__marquee-unit img:nth-child(2) { left: 144px; top: 64px;  width: 147px; height: 98px; }
.school__marquee-unit img:nth-child(3) { left: 316px; top: 137px; width: 170px; height: 113px; }
.school__marquee-unit img:nth-child(4) { left: 421px; top: 194px; width: 206px; height: 137px; }
.school__marquee-unit img:nth-child(5) { left: 596px; top: 64px;  width: 257px; height: 171px; }
.school__marquee-unit img:nth-child(6) { left: 799px; top: 177px; width: 147px; height: 98px; }
.school__marquee-unit img:nth-child(7) { left: 912px; top: 0;     width: 170px; height: 113px; }
@keyframes school-marquee {
	to {
		transform: translateX(-50%);
	}
}
@media (max-width: 767px) {
	.school__marquee-track {
		animation-duration: 20s;
	}
}
@media (prefers-reduced-motion: reduce) {
	.school__marquee-track {
		animation: none;
	}
}
.school-cards .swiper-wrapper {
	margin: 60px auto 0;
	max-width: 880px;
}
.school-card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
}
.school-card__img {
	position: relative;
	aspect-ratio: 3/2;
	background-size: cover;
	background-position: center;
	padding: 10px;
}
.school-card__img::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100px;
	background: linear-gradient(rgba(255,255,255,0), rgba(255,255,255,1));
}
.school-card__body {
	position: relative;
	z-index: 2;
	margin-top: -40px;
	padding: 16px;
}
.school-card__body h3 {
	font-size: 2.1rem;
	color: var(--orange);
	margin-bottom: 8px;
}
.school-card__body p {
	font-size: 12px;
	color: var(--muted);
	margin-bottom: 30px;
}
.school .section-text {
	/* aboutの本文（.about .text）とサイズ・余白を統一 */
	margin: 80px auto 60px;
	font-size: 2.4rem;
	font-weight: 500;
}

/* ----▼---▼▼--▼▼▼-▼▼▼▼- コース・料金 -▼▼▼▼-▼▼▼--▼▼---▼---- */
.course {
	/* 画面幅が狭まったら左右20pxの余白（max-widthを40px広げ、広い画面は従来と同一） */
	padding: 0 20px 40px;
	margin: 0 auto;
	max-width: 1407px;
}
.course .section-label {
	text-align: start;
	width: fit-content;
}
.course .section-label::after {
	left: 0;
	transform: none;
}
.course__banner {
	position: relative;
	background-size: cover;
	background-position: center;
	padding: 80px 80px 120px;
	color: #fff;
	border-radius: 40px;
}
/* Figma準拠：写真の下側をオレンジへフェード（黒→オレンジのブランドグラデ） */
.course__banner::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0,0,0,.18) 0%, rgba(0,0,0,0) 35%, rgba(224,106,50,.75) 78%, #de6a35 100%);
	border-radius: inherit;
}
.course__banner img {
	position: absolute;
	top: -100px;
	right: 60px;
	width: 600px;
}
.course__banner-inner {
	position: relative;
	z-index: 1;
	max-width: 620px;
}
.course__banner h2 {
	color: #fff;
	font-size: 3.6rem;
	line-height: 1.6;
	margin-bottom: 20px;
}
.course__banner-inner .text {
	text-align: start;
	margin-bottom: 50px;
}
.course .container {
	padding-inline: 60px;
}
/* コース選択カード：スライダーにせず折り返しグリッド（PC4列/SP2列） */
.course-cards {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
	margin-top: -80px;
}
.course-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-width: 0;
	gap: 10px;
	border: 2px solid var(--orange);
	border-radius: var(--radius);
	padding: 22px 10px;
	font-weight: 700;
	font-size: 1.6rem;
	color: var(--orange);
	background-color: var(--bg);
	aspect-ratio: 3/2;
}
.course-card__ico {
	font-size: 40px;
}
.course-card:hover {
	background: #fff7f2;
}

/* ----▼---▼▼--▼▼▼-▼▼▼▼- 卒業生の声 / FAQ / 会社情報 -▼▼▼▼-▼▼▼--▼▼---▼---- */
.cta-blocks.section {
	padding-block: 0;
}
.cta-blocks .container {
	display: flex;
	flex-direction: row;
	align-items: stretch;
	border-top: solid 1px var(--line);
	border-bottom: solid 1px var(--line);
	padding: 20px;
}
.cta-block {
	flex: 1;
	text-align: center;
	padding: 24px 28px;
	border-right: 1px solid var(--line);
	display: flex;
	flex-direction: column;
}
.cta-block:last-child {
	border-right: none;
}
.cta-block .section-label {
	margin-bottom: 20px;
}
.cta-block h2 {
	margin-bottom: 12px;
	text-align: center;
	font-size: 2.4rem;
}
.cta-block .section-text {
	margin-top: 0;
	margin-bottom: 40px;
}
.cta-block .btn,
.cta-block .section-cta {
	margin-top: auto;
	align-self: center;
}
/* あしらい（Figma）：voice左のストライプ円 / FAQ右下のダークドット / company左のドット円 */
.cta-block {
	position: relative;
}
.cta-block .section-label,
.cta-block h2,
.cta-block .section-text {
	position: relative;
	z-index: 1;
}

/* ----▼---▼▼--▼▼▼-▼▼▼▼- お知らせ -▼▼▼▼-▼▼▼--▼▼---▼---- */
.news {
	padding: 0;
	margin-bottom: 40px;
}
.news .container {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	gap: 60px;
	padding: 40px 20px;
}
/* 一覧CTA（リスト下・センター）は行を独立させる */
.news .container > .center {
	width: 100%;
	margin-top: 0;
}
.news .title {
	display: flex;
	flex-direction: column;
	gap: 90px;
}
.news .section-label {
	text-align: start;
	width: fit-content;
}
.news .title dd {
	margin-left: 0;
}
.news .title h2 {
	font-size: 2.4rem;
}
.news-list {
	flex: 1;
	max-width: 720px;
	margin-inline: auto;
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.news-item a {
	display: flex;
	gap: 20px;
	align-items: flex-start;
	padding: 20px;
	background-color: var(--bg);
	border-radius: 30px;
	box-shadow: var(--shadow-sm);
}
.news-item a:hover {
	color: var(--orange);
}
.news-item__date {
	flex-shrink: 0;
	text-align: center;
	line-height: 1.2;
	display: flex;
	flex-direction: column;
}
.news-item__date em {
	display: block;
	font-style: normal;
	font-size: 11px;
	color: var(--muted);
}
.news-item__date strong {
	font-family: var(--font-en);
	font-size: 3.2rem;
	color: var(--ink);
}
.news-item__tag {
	display: inline-block;
	margin-top: 4px;
	background: var(--pink);
	color: #fff;
	font-size: 10px;
	/* タグ幅を統一（表記は短縮形: イベント/プレス/メディア等） */
	width: 60px;
	text-align: center;
	padding: 4px 8px;
	border-radius: 20px;
}
.news-item__text {
	font-size: 18px;
	align-self: center;
}

/* =========================================================

   ラップトップ等の低い画面（PCレイアウト時・高さ≤860px）TOP
   キャッチコピーとバナースライダーの干渉解消。通常の高さでは変更なし

   ========================================================= */

@media (min-width: 1024px) and (max-height: 860px) {
	/* 5. hero自体の余白 */
	.hero {
		padding: 20px 32px 0;
	}
	/* 写真下の白帯もtickerの縮小に合わせて圧縮 */
	.hero__slider {
		height: calc(100% - 88px);
	}
	/* 3・4. キャッチコピーの文字サイズ・余白 */
	.hero__copy {
		top: 24px;
		right: 28px;
		gap: 8px;
	}
	.hero__title,
	.hero__lead {
		/* 基本3.6rem。さらに低い画面ではバナーと干渉しないよう高さ連動で縮小 */
		font-size: min(3.6rem, 4.6vh);
		letter-spacing: 4px;
		padding: 14px 10px;
	}
	/* 1・2. バナースライダーの位置・サイズ */
	.hero__banners {
		bottom: 118px;
	}
	.hero__thumbs .swiper-slide {
		width: 300px;
	}
	/* 6・7・8. tickerの位置・文字サイズ・余白 */
	.ticker {
		left: 32px;
		right: 32px;
		bottom: 20px;
		gap: 16px;
		padding: 10px 20px;
	}
	.ticker__tag {
		font-size: 11px;
		padding: 4px 12px;
	}
	.ticker__item {
		font-size: 14px;
		gap: 16px;
	}
}

/* =========================================================

   タブレット（≤1023px）TOP

   ========================================================= */

@media (max-width: 1023px) {
	/* 写真はPCと同様「見出しの背景＋カードの背面」に重ねる。
	   スライダーは横だけクリップ（overflow-x: clip）して縦の突出は許可 */
	.about__head,
	.school .sec-head {
		position: relative;
		z-index: 2;
	}
	.feature-cards,
	.school-cards {
		position: relative;
		padding-top: 30vw;
		overflow-x: clip;
		overflow-y: visible;
	}
	.feature-cards .swiper-wrapper,
	.school-cards .swiper-wrapper {
		position: relative;
		z-index: 1;
	}
	.about__photo,
	.school__photo {
		position: absolute;
		top: -34vw;
		bottom: auto;
		left: 0;
		width: 100%;
		margin: 0;
		z-index: 0;
	}
	.about__photo img,
	.school__photo img {
		height: auto;
		aspect-ratio: 1/1;
		object-fit: cover;
	}
	.school-cards .swiper-wrapper {
		margin-top: 28px;
	}

	.home .container {
		max-width: 1120px;
	}

	/* ヒーロー：ヘッダーと追従バーを除いた高さで画面いっぱい */
	.hero {
		height: calc(100vh - var(--header-h) - var(--quicklinks-h));
		height: calc(100dvh - var(--header-h) - var(--quicklinks-h));
		min-height: 460px;
		padding: 10px 12px 0;
	}
	.hero__slider {
		height: calc(100% - 76px);
		min-height: 260px;
		border-radius: 16px;
	}
	.hero__slide {
		background-image: var(--hero-sp, var(--hero-pc));
	}
	.hero__copy {
		top: 40px;
		right: 30px;
		gap: 8px;
	}
	.hero__title,
	.hero__lead {
		font-size: 2.8rem;
		letter-spacing: 5px;
		line-height: 1.12;
		padding: 14px 9px;
	}
	.hero__banners {
		bottom: 100px;
	}
	.hero__thumbs .swiper-slide {
		width: 132px;
	}

	/* ニュースをピル型で最下部に */
	.ticker {
		left: 12px;
		right: 12px;
		bottom: 14px;
		gap: 10px;
		padding: 10px 16px;
		border: 1.5px solid #dfdfdf;
		border-radius: 50px;
	}
	.ticker__tag {
		padding: 4px 10px;
		font-size: 11px;
	}
	.ticker__items {
		height: 1.5em;
	}
	.ticker__item {
		font-size: 12px;
		gap: 10px;
	}
	.ticker__item time {
		font-size: 13px;
	}

	/* コースバナー（TOP）：左右に余白 */
	.course {
		padding-inline: 20px;
		margin-top: 64px;
	}
	/* #402: contentsバナーと同じ構造（人物写真の下から文字が始まる） */
	.course__banner {
		padding: 230px 24px 96px;
		border-radius: 24px;
	}
	/* 人物はcontentsバナーと同じ見せ方（上部中央・大きく重ねる） */
	.course__banner img {
		top: -90px;
		right: auto;
		left: 50%;
		transform: translateX(-50%);
		width: min(400px, 88vw);
	}
	.course__banner-inner {
		text-align: center;
	}

	/* 送迎CTAは縦積み */
	.suttle-cta {
		flex-direction: column;
		align-items: center;
		gap: 24px;
	}
	.suttle-cta::before {
		width: 280px;
		height: 280px;
	}
	/* ストライプ円はテキストに被らないよう画像側へ・背面に */
	.suttle-cta::after {
		top: 34%;
		right: -48px;
		z-index: -1;
	}
	.suttle-text,
	.suttle-cta img {
		width: 100%;
		max-width: 600px;
	}

	/* お知らせ・お問い合わせは縦積み（Figma準拠：見出しセンター・CTAはリスト下） */
	.news .container {
		flex-direction: column;
		gap: 24px;
	}
	.news .title {
		gap: 16px;
	}
	.news .title dl {
		text-align: center;
	}
	.news .section-label {
		margin-inline: auto;
		text-align: center;
	}
	.news .section-label::after {
		left: 50%;
		transform: translateX(-50%);
	}

	/* voice / FAQ / company は縦積み */
	.cta-blocks .container {
		flex-direction: column;
	}
	.cta-block {
		border-right: none;
		border-bottom: 1px solid var(--line);
		padding: 36px 0;
	}
	.cta-block:last-child {
		border-bottom: none;
	}
}

/* =========================================================
   SP（≤767px）TOP
   ========================================================= */
@media (max-width: 767px) {
	/* SP：バナーはキャッチコピーの空間確保のためやや縮小 */
	.hero__thumbs .swiper-slide {
		width: 52vw;
	}
	/* キャッチコピー：端末の高さ・幅から「バナーに被らない最大サイズ」を自動算出
	   （hero高 = 100vh - header - quicklinks。コピー10文字＋余白から逆算） */
	.hero__title,
	.hero__lead {
		font-size: clamp(1.8rem, calc((100vh - 26.8vw - 320px) / 11.2), 2.8rem);
		letter-spacing: 3px;
		padding: 10px 8px;
	}
	/* about: Safariで縦書きh2が右にずれるためflexで実寸センタリング */
	.about .sec-head {
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	.about__photo {
		top: -50vw;
	}
	/* 送迎CTAの見出し文字（SPでは3.2remは過大） */
	.suttle-text p {
		font-size: 2rem;
	}
	/* about/school本文はSPで一段下げる */
	.about .text,
	.school .section-text {
		font-size: 2rem;
	}
	/* お知らせカード: SPはやや詰める */
	.news-item a {
		gap: 14px;
	}
	.news-item__text {
		font-size: 15px;
	}
	.course .container {
		padding-inline: 20px;
	}
	.hero__copy {
		top: 12px;
		right: 14px;
		gap: 6px;
	}

	.area-cards .swiper-slide,
	.feature-cards .swiper-slide,
	.school-cards .swiper-slide {
		width: 70%;
		height: auto;
	}
	.course-cards {
		grid-template-columns: repeat(2, 1fr);
	}
	/* SPは文字を一回り小さく（「準中型・中型車」「免許をお持ちの方」が矢印ごと1行に収まるサイズ） */
	.course-card {
		font-size: 1.3rem;
	}
	.course__banner h2 {
		font-size: 2.4rem;
	}
	.course__banner-inner {
		text-align: center;
	}
	.course .course__banner .section-label {
		margin-inline: auto;
		text-align: center;
	}
	.course .course__banner .section-label::after {
		left: 50%;
		transform: translateX(-50%);
	}
	.course__banner .section-cta {
		margin-inline: auto;
	}
}

/* =========================================================
   コース・料金ページ  (course.html)
   ※ 下層はPCでも上部ヘッダー型（.home の左サイドナビは使わない）
   ========================================================= */

/* ----▼---▼▼--▼▼▼-▼▼▼▼- 概要＋コース選択 -▼▼▼▼-▼▼▼--▼▼---▼---- */
.page .container {
	max-width: 1120px;
}
.page .intro,
.page .feature {
	padding-block: 88px;
	background-image: radial-gradient(#e8e3de 1.5px, transparent 1.5px);
	background-size: 18px 18px;
}
.page .intro h2,
.page .feature h2,
.page .payment h2 {
	font-family: var(--font-zen);
	font-weight: 700;
	font-size: 3.6rem;
	line-height: 1.4;
	color: var(--ink);
	margin: 24px 0 32px;
}
.page .intro .text,
.page .feature .text,
.page .payment .text {
	font-size: 16px;
	font-weight: 500;
	line-height: 1.9;
	color: var(--ink);
	max-width: 800px;
}
.page-course .select-cards {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}
.page-course .select-cards a {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
	background: #fff;
	border: 2px solid var(--orange);
	border-radius: 10px;
	padding: 28px 16px;
	transition: .2s;
}
.page-course .select-cards a:hover {
	background: #fff7f2;
}
.page-course .select-cards .ico {
	font-size: 46px;
	color: var(--orange);
	line-height: 1;
}
.page-course .select-cards .name {
	display: flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font-zen);
	font-weight: 700;
	font-size: 1.4rem;
	letter-spacing: .1em;
	color: var(--orange);
}

/* ----▼---▼▼--▼▼▼-▼▼▼▼- 制度・プラン紹介 -▼▼▼▼-▼▼▼--▼▼---▼---- */
/* 取得したい免許の補足文 */
.page-course .select-note {
	font-size: 1.4rem;
	margin: 16px 0 20px;
}
/* 教育訓練給付金制度／法人限定特別プラン（各独立セクション・写真＋黒ピル） */
.page-course .plan-sec {
	padding-block: 0 80px;
}
.page-course .plan-sec__body {
	margin-top: 40px;
}
.page-course .plan-sec__photo {
	display: block;
	width: min(560px, 100%);
	aspect-ratio: 380 / 247;
	object-fit: cover;
	border-radius: 10px;
}
.page-course .plan-sec .btn {
	margin-top: 32px;
}

/* ----▼---▼▼--▼▼▼-▼▼▼▼- お支払い方法 -▼▼▼▼-▼▼▼--▼▼---▼---- */
.page-course .payment {
	padding-block: 88px 120px;
}
.page-course .methods {
	display: flex;
	flex-direction: column;
	gap: 60px;
	max-width: 800px;
	margin-left: 10px;
}
.page-course .method h3 {
	font-family: var(--font-zen);
	font-weight: 700;
	font-size: 2.4rem;
	line-height: 1.04;
	color: var(--ink);
	padding-bottom: 20px;
	border-bottom: 1px solid var(--ink);
	margin-bottom: 20px;
}
.page-course .method p {
	font-size: 14px;
	line-height: 1.8;
	color: var(--ink);
}
.page-course .method a {
	color: var(--orange);
	text-decoration: underline;
	text-underline-offset: 4px;
}
.page-course .method ul {
	margin-top: 8px;
	font-size: 14px;
	line-height: 1.8;
	color: var(--ink);
}
.page-course .method li {
	padding-left: 1em;
	text-indent: -1em;
}
.page-course .method li::before {
	content: '・';
}
/* 現金分割：車種別の初回お支払い金額（グレーボックス） */
.page-course .method__prices {
	margin-top: 16px;
	background: #f2f2f2;
	border-radius: 8px;
	padding: 20px;
}
.page-course .method__prices li {
	padding-left: 0;
	text-indent: 0;
	line-height: 1.8;
}
.page-course .method__prices li::before {
	content: none;
}
.page-course .method__pdf {
	margin-top: 16px;
}
.page-course .jdebit {
	width: 300px;
	padding: 18px 24px;
	border: 1px solid var(--line);
	border-radius: 10px;
	box-shadow: var(--shadow-sm);
	margin-bottom: 20px;
}
.page-course .common {
	font-weight: 700;
	font-size: 2.0rem;
	color: var(--ink);
	margin-bottom: 24px;
}
.page-course .loan {
	display: flex;
	align-items: center;
	gap: 28px;
	margin-left: 8px;
}
.page-course .loan img {
	width: 105px;
}
.page-course .loan p {
	font-weight: 700;
	font-size: 2.0rem;
	color: var(--ink);
}

/* ----▼---▼▼--▼▼▼-▼▼▼▼- コース・料金ページ（タブレット・SP）-▼▼▼▼-▼▼▼--▼▼---▼---- */
@media (max-width: 1023px) {
	.page-hero {
		padding: 10px 10px 0;
	}
	.page-hero__img {
		height: 260px;
	}
	/* ラベル位置は common.css の変数連動（--wave-h）に委ねる */
}
@media (max-width: 767px) {
	/* Figma下層フレーム準拠：写真は浅め（150px）＋角丸12px */
	.page-hero__img {
		height: 150px;
		border-radius: 12px 12px 0 0;
	}
	.page-hero__img::after {
		height: 40px;
	}
	.page-hero__cat {
		font-size: 10px;
		padding: 4px 8px;
	}
	.page-hero__cat span {
		width: 6px;
		height: 6px;
	}
	.page-hero__label h1 {
		font-size: 2.1rem;
		padding: 8px 12px;
	}
	.page-label {
		font-size: 1.4rem;
	}
	.block-label {
		margin: 56px 0 28px;
	}
	.page .intro,
	.page .feature {
		padding-block: 64px;
	}
	.page .intro h2,
	.page .feature h2,
	.page .payment h2 {
		font-size: 3.2rem;
		margin: 20px 0 28px;
	}
	/* コース選択は2×2（デザイン実寸 195×160） */
	.page-course .select-cards {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}
	.page-course .select-cards a {
		height: 160px;
		padding: 14px 16px;
		gap: 6px;
	}
	.page-course .select-cards .ico {
		font-size: 42px;
	}
	/* 制度カードは横スクロール（デザイン：2枚目が見切れる見せ方） */
	.page-course .feature .cards {
		display: flex;
		gap: 36px;
		max-width: none;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		padding-bottom: 8px;
	}
	.page-course .feature .cards article {
		flex: 0 0 280px;
	}
	.page-course .payment {
		padding-block: 64px 88px;
	}
	.page-course .methods {
		gap: 48px;
		margin-left: 0;
	}
	.page-course .jdebit {
		width: 260px;
	}
	.page-course .loan {
		margin-left: 0;
	}
}

/* =========================================================
   無料送迎案内  (bus.html)
   ========================================================= */
.page-bus .intro h2 + .text {
	margin-bottom: 40px;
}

/* 各校へのCTAカード（Figma 1767:149328 現行デザイン／PCは横並び） */
.bus-school-cards {
	max-width: 880px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 28px;
}
.bus-school-card {
	--school-color: var(--orange-2);
	position: relative;
	display: flex;
	flex-direction: column;
	background: #fff;
	border-radius: 20px;
	box-shadow: var(--shadow);
	overflow: hidden;
}
.bus-school-card--ageo {
	--school-color: var(--orange);
}
.bus-school-card__badge {
	position: absolute;
	top: 6px;
	left: 5px;
	z-index: 2;
	background: var(--school-color);
	color: #fff;
	font-size: 1.5rem;
	font-weight: 700;
	padding: 7px 19px;
	border-radius: 17px 0 17px 0;
}
.bus-school-card__photo {
	position: relative;
	height: 200px;
}
.bus-school-card__photo img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.bus-school-card__photo::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0) 50%, #fff 91%);
}
.bus-school-card__body {
	position: relative;
	z-index: 1;
	flex: 1;
	display: flex;
	flex-direction: column;
	margin-top: -26px;
	padding: 0 18px 20px;
}
.bus-school-card__title {
	font-family: var(--font-zen);
	font-weight: 700;
	font-size: 2.4rem;
	line-height: 1.35;
	color: var(--school-color);
	padding-right: 60px;
}
.bus-school-card__icon {
	position: absolute;
	top: 0;
	right: 18px;
	font-size: 47px;
	color: var(--school-color);
}
.bus-school-card__area {
	margin: 14px 0 20px;
	font-size: 1.4rem;
	font-weight: 500;
	line-height: 1.5;
	color: var(--ink);
}
.bus-school-card__btn {
	position: relative;
	margin-top: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 54px;
	padding: 10px 40px;
	background: #fff;
	border-radius: 999px;
	box-shadow: inset 2px 2px 9px rgba(144, 144, 144, .25);
	color: var(--school-color);
	font-weight: 700;
	font-size: 1.5rem;
	line-height: 1.3;
	transition: opacity .2s;
}
.bus-school-card__btn b {
	font-size: 2rem;
}
.bus-school-card__btn::after {
	content: "";
	position: absolute;
	right: 24px;
	top: 50%;
	width: 8px;
	height: 8px;
	margin-top: -5px;
	border-top: 2px solid var(--school-color);
	border-right: 2px solid var(--school-color);
	transform: rotate(45deg);
}
.bus-school-card__btn:hover {
	opacity: .75;
}

/* 路線図（校舎タブ×路線タブ／Google My Maps埋め込み） */
.page-bus .bus-map {
	padding-block: 40px 72px;
}
.bus-map__panels {
	border: 1px solid var(--line);
	background: #fff;
	padding: 20px;
}
.bus-map__panel {
	display: none;
}
.bus-map__panel.is-active {
	display: block;
}
.bus-map__panel iframe {
	display: block;
	width: 100%;
	height: 480px;
	border: 0;
}
.bus-map__lines {
	flex-wrap: wrap;
	gap: 0 4px;
	margin-bottom: 16px;
}
.bus-map__lines button {
	white-space: nowrap;
	padding: 10px 16px;
	font-size: 1.4rem;
}
.bus-map__line-panel {
	display: none;
}
.bus-map__line-panel.is-active {
	display: block;
}
.bus-map__line-panel iframe {
	display: block;
	width: 100%;
	height: 480px;
	border: 0;
}
.bus-map__label {
	font-weight: 700;
	color: var(--orange);
	margin: 24px 0 8px;
}
.bus-map__gmap {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 6px;
	margin-top: 12px;
	font-size: 1.4rem;
	font-weight: 700;
	color: var(--pink);
	text-decoration: underline;
	text-underline-offset: 3px;
}
.bus-map__gmap ion-icon {
	font-size: 18px;
}

/* 最寄りの駅・地域から探す */
.page-bus .bus-search {
	padding-block: 0 72px;
}
.bus-search__toggle {
	width: 100%;
	border: none;
	background: none;
	cursor: pointer;
	border-top: 1px solid var(--line);
	padding-top: 32px;
}
.bus-search__toggle .arr {
	margin-left: auto;
	color: var(--ink);
	transition: .25s;
}
.bus-search__toggle[aria-expanded="false"] .arr {
	transform: rotate(-180deg);
}
.bus-search__toggle[aria-expanded="false"] + .bus-search__body {
	display: none;
}
.bus-search__intro {
	font-size: 1.4rem;
	line-height: 1.8;
	margin-bottom: 20px;
}
/* PC＝検索フォームの右に結果／SP＝下に結果 */
.bus-search__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 24px;
	align-items: start;
	max-width: 1000px;
}
.bus-search__tag {
	width: fit-content;
	background: var(--orange);
	color: #fff;
	font-weight: 700;
	font-size: 1.3rem;
	padding: 6px 18px;
	border-radius: 8px 8px 0 0;
}
.bus-search__form {
	background: var(--orange);
	border-radius: 0 14px 14px 14px;
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 14px;
	max-width: 560px;
}
.bus-search__form input,
.bus-search__form select {
	font-family: inherit;
	font-size: 1.5rem;
	color: var(--ink);
	background: #fff;
	border: none;
	border-radius: 10px;
	padding: 14px 16px;
}
.bus-search__form .btn {
	margin-inline: auto;
}
.bus-search__result[hidden] {
	display: none;
}
.bus-search__result {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 14px;
	box-shadow: var(--shadow-sm);
	padding: 24px;
	max-width: 560px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.bus-search__hit {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.bus-search__hit + .bus-search__hit {
	border-top: 1px dashed var(--line);
	padding-top: 16px;
	margin-top: 4px;
}
.bus-search__note {
	font-size: 1.3rem;
	line-height: 1.8;
}
.bus-search__result .bus-search__tag {
	border-radius: 8px;
}
.bus-search__lead {
	font-size: 1.5rem;
	font-weight: 700;
}
.bus-search__school {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 1.8rem;
	font-weight: 700;
}
.bus-search__school ion-icon,
.bus-search__school b {
	color: var(--orange);
	font-size: 2.4rem;
}
.bus-search__route {
	font-size: 1.4rem;
}
.bus-search__route b {
	font-size: 1.8rem;
}
.bus-search__result .btn {
	margin-inline: auto;
}

/* よくあるご質問 / 校舎リンク */
.page-bus .faq-block {
	padding-block: 0 72px;
}
.page-bus .faq-block .icon-head {
	border-top: 1px solid var(--line);
	padding-top: 32px;
}
.page-bus .bus-links {
	padding-block: 0 88px;
}
.page-bus .bus-links h2 {
	font-family: var(--font-zen);
	font-weight: 700;
	font-size: 2.2rem;
	line-height: 1.6;
	color: var(--orange);
	margin-bottom: 8px;
}
.page-bus .bus-links .sub {
	font-weight: 700;
	font-size: 1.4rem;
	margin-bottom: 28px;
}
.bus-links__buttons {
	display: flex;
	gap: 16px;
}
.bus-links__buttons .btn {
	flex: 1;
	max-width: none;
}
.bus-links__buttons .btn ion-icon {
	color: var(--orange);
	font-size: 22px;
}

/* SP調整 */
@media (max-width: 767px) {
	.icon-head {
		font-size: 1.9rem;
	}
	.tabs button {
		flex: 1;
		padding: 10px 8px;
		font-size: 1.3rem;
	}
	.bus-school-cards {
		grid-template-columns: minmax(0, 1fr);
		gap: 32px;
	}
	.bus-map__panels {
		padding: 14px;
	}
	.bus-map__lines {
		flex-wrap: nowrap;
		overflow-x: auto;
		padding-bottom: 4px;
	}
	.bus-map__lines button {
		flex: 0 0 auto;
		padding: 10px 12px;
		font-size: 1.3rem;
	}
	.bus-map__line-panel iframe {
		height: 360px;
	}
	.bus-search__grid {
		grid-template-columns: minmax(0, 1fr);
	}
	.bus-links__buttons {
		flex-direction: column;
	}
	.bus-links__buttons .btn {
		flex: none;
	}
}

/* =========================================================
   ファインの特長  (about.html)
   ========================================================= */
.block-label--pink::before {
	background: var(--pink);
}
.block-label span {
	font-family: var(--font-en);
}
.page-about .features {
	padding-block: 0 88px;
}
.page-about .features__list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 72px 48px;
	max-width: 960px;
}
.feature-item__img img {
	width: 100%;
}
.feature-item__cat {
	font-family: var(--font-en);
	font-weight: 700;
	font-size: 1.4rem;
	color: var(--orange);
	margin: 18px 0 6px;
}
.feature-item h3 {
	font-family: var(--font-zen);
	font-weight: 700;
	font-size: 2.6rem;
	color: var(--ink);
	margin-bottom: 14px;
}
.feature-item__text {
	font-size: 1.5rem;
	line-height: 1.9;
	margin-bottom: 24px;
}
@media (max-width: 767px) {
	.page-about .features__list {
		grid-template-columns: 1fr;
		gap: 56px;
	}
	.feature-item h3 {
		font-size: 2.3rem;
	}
}

/* =========================================================
   校舎案内  (school.html)
   ========================================================= */
/* 校舎カード（写真＋白ボックス） */
.page-school .school-cards-l {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
	margin-top: 48px;
}
.page-school .school-card {
	background: #fff;
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
}
.page-school .school-card__img {
	aspect-ratio: 3 / 2;
	background-size: cover;
	background-position: center;
}
.page-school .school-card__body {
	padding: 20px;
}
.page-school .school-card__body h3 {
	font-family: var(--font-zen);
	font-weight: 700;
	font-size: 2rem;
	color: var(--orange);
	margin-bottom: 8px;
}
.page-school .school-card__body p {
	font-size: 1.3rem;
	margin-bottom: 18px;
}

/* ご入校の流れ（車種スライダー） */
.page-school .flow {
	padding-block: 0 88px;
}
.page-school .flow h2 {
	font-family: var(--font-zen);
	font-weight: 700;
	font-size: 3.2rem;
	margin: 12px 0 20px;
}
.page-school .flow .text {
	margin-bottom: 40px;
}
.flow-swiper {
	/* 影(shadow-sm)がoverflow:hiddenで切れないようpaddingで逃がし、負マージンで相殺 */
	overflow: hidden;
	padding: 12px 12px 20px;
	margin: -12px -12px -20px;
}
.flow-swiper .flow-card {
	width: 360px;
	background: #fff;
	border-radius: var(--radius);
	box-shadow: var(--shadow-sm);
	padding: 24px;
	display: grid;
	grid-template-columns: 48px 1fr;
	gap: 8px 16px;
}
.flow-card h3 {
	grid-row: 1 / 3;
	display: flex;
	gap: 8px;
	writing-mode: vertical-rl;
}
.flow-card h3 .ja {
	font-family: var(--font-zen);
	font-weight: 700;
	font-size: 2.2rem;
	color: var(--orange);
	letter-spacing: .15em;
}
.flow-card h3 .en {
	font-family: var(--font-en);
	font-size: 1.1rem;
	color: var(--ink-2);
	letter-spacing: .1em;
}
.flow-card img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: 8px;
}
.flow-card .btn {
	justify-self: end;
}
.flow-swiper-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	margin-top: 20px;
}
.flow-swiper-nav .prev,
.flow-swiper-nav .next {
	width: 40px;
	height: 40px;
	border: 1px solid var(--line);
	border-radius: 50%;
	background: #fff;
	color: var(--ink);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	cursor: pointer;
	box-shadow: var(--shadow-sm);
}
/* Swiper側の width:100% を打ち消し（白ピルが横に伸び切る不具合対策） */
.flow-swiper-nav .flow-swiper-pagination {
	display: flex;
	width: auto;
	gap: 8px;
	background: #fff;
	border-radius: 20px;
	padding: 8px 14px;
	box-shadow: var(--shadow-sm);
}
.flow-swiper-pagination .swiper-pagination-bullet {
	width: 9px;
	height: 9px;
	background: #d8c9bf;
	opacity: 1;
	margin: 0;
}
.flow-swiper-pagination .swiper-pagination-bullet-active {
	background: var(--ink-2);
}

/* 無料送迎案内（school内） */
.page-school .shuttle-intro {
	padding-block: 0 72px;
}
.page-school .shuttle-intro h2 {
	font-family: var(--font-zen);
	font-weight: 700;
	font-size: 3.2rem;
	margin: 12px 0 8px;
}
.shuttle-intro__visual {
	position: relative;
}
.shuttle-intro__bus {
	position: relative;
	z-index: 1;
	width: min(480px, 90%);
}
/* あしらい（Figma）：バス背面のサーモン円＋右上ピンクストライプ。
   デザイン実測はSPのみのためSP限定（TOPのドット三角と同方針） */
@media (max-width: 767px) {
	.shuttle-intro__visual::before {
		content: "";
		position: absolute;
		top: -51px;
		right: -72px;
		width: 289px;
		height: 289px;
		border-radius: 50%;
		background: #f0bfa5;
	}
	.shuttle-intro__visual::after {
		content: "";
		position: absolute;
		top: -40px;
		right: -42px;
		width: 100px;
		height: 105px;
		border-radius: 50%;
		background: repeating-linear-gradient(135deg, #d94d89 0 2.5px, rgba(255,255,255,0) 2.5px 10px);
	}
}
.shuttle-intro__copy {
	position: relative;
	z-index: 1;
	font-size: 2.4rem;
	font-weight: 700;
	line-height: 1.7;
	margin: 8px 0 40px;
}
/* PCはエリアカード2枚を横並び（school.htmlはSwiper化していないため独自グリッド） */
.page-school .area-cards {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 32px;
}
.page-school .area-card__title ion-icon {
	color: var(--orange-2);
	font-size: 3.6rem;
}
.page-school .area-card .btn--wide {
	margin-inline: auto;
	display: flex;
}

/* 入校説明会カード */
.page-school .orientation {
	padding-block: 0 88px;
}
.orientation__list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 32px;
}
.orientation-card {
	position: relative;
	background: #fff;
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
}
.orientation-card .badge {
	position: absolute;
	top: 14px;
	left: 14px;
	z-index: 2;
	background: var(--orange-2);
	border-radius: 8px;
}
.orientation-card__img {
	position: relative;
	aspect-ratio: 4 / 3;
	background-size: cover;
	background-position: center;
}
.orientation-card__img::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100px;
	background: linear-gradient(rgba(255,255,255,0), rgba(255,255,255,1));
}
.orientation-card__body {
	padding: 0 20px 24px;
	margin-top: -36px;
	position: relative;
}
.orientation-card__body .cat {
	font-family: var(--font-en);
	font-weight: 700;
	font-size: 1.3rem;
	color: var(--orange);
}
.orientation-card__body h3 {
	font-family: var(--font-zen);
	font-weight: 700;
	font-size: 2.2rem;
	margin-bottom: 12px;
}
.orientation-card__body h3 mark {
	background: var(--orange);
	color: #fff;
	padding: 2px 8px;
	-webkit-box-decoration-break: clone;
	box-decoration-break: clone;
}
.orientation-card__body > p {
	font-size: 1.4rem;
	margin-bottom: 18px;
}
.orientation-card .btn {
	margin-inline: auto;
	display: flex;
}

/* SP調整（school） */
@media (max-width: 1023px) {
	.page-school .school-cards-l {
		grid-template-columns: 1fr;
		max-width: 480px;
	}
	.orientation__list {
		grid-template-columns: 1fr;
		max-width: 480px;
	}
}
@media (max-width: 767px) {
	.page-school .flow h2,
	.page-school .shuttle-intro h2 {
		font-size: 2.8rem;
	}
	.flow-swiper .flow-card {
		width: 78vw;
		padding: 18px;
	}
	.page-school .area-cards {
		position: relative;
		display: flex;
		flex-direction: column;
		gap: 32px;
	}
	/* あしらい（Figma）：エリアカード左上のピンクストライプ（左端に見切れ） */
	.page-school .area-cards::before {
		content: "";
		position: absolute;
		top: -45px;
		left: -81px;
		width: 122px;
		height: 124px;
		border-radius: 50%;
		background: repeating-linear-gradient(135deg, #d94d89 0 2.5px, rgba(255,255,255,0) 2.5px 10px);
	}
	.page-school .area-card {
		position: relative;
		z-index: 1;
	}
	.shuttle-intro__copy {
		font-size: 2rem;
	}
	/* バスは右へ見切れる大きさ（Figma: 467×209・右へはみ出し） */
	.shuttle-intro__bus {
		width: min(467px, calc(100% + 67px));
		max-width: none;
		margin-left: -3px;
	}
	/* 校舎カード：写真の右下に白カードが重なるレイアウト（Figma実測） */
	.page-school .school-card {
		background: none;
		border: none;
		border-radius: 0;
		box-shadow: none;
		overflow: visible;
	}
	.page-school .school-card__img {
		width: 91%;
		padding: 0;
		border-radius: 12px;
		box-shadow: var(--shadow-sm);
	}
	.page-school .school-card__img::before {
		content: none;
	}
	.page-school .school-card__body {
		position: relative;
		width: 77.5%;
		margin: -34px 3% 0 auto;
		background: #fff;
		border-radius: 12px;
		box-shadow: var(--shadow-sm);
		padding: 21px;
	}
	.page-school .school-card__body h3 {
		font-size: 1.4rem;
		margin-bottom: 6px;
	}
	.page-school .school-card__body p {
		font-size: 1.1rem;
		line-height: 1.4;
		margin-bottom: 14px;
	}
}

/* =========================================================
   お知らせ・ブログ  (news.html)
   ========================================================= */
/* カテゴリフィルタ（白pill＋アイコン） */
.page-news .news-filter {
	padding-block: 40px 8px;
}
.news-filter__list {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}
.news-filter__list a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #fff;
	border-radius: 999px;
	box-shadow: var(--shadow-sm);
	padding: 12px 24px;
	font-weight: 700;
	font-size: 1.4rem;
}
.news-filter__list a.is-active,
.news-filter__list a:hover {
	outline: 2px solid var(--orange);
	outline-offset: -2px;
}
.news-filter__list ion-icon {
	font-size: 18px;
	color: var(--orange);
}
.news-filter__list .c-orange { color: var(--orange-2); }
.news-filter__list .c-blue   { color: #2f9fd2; }
.news-filter__list .c-yellow { color: #f0b428; }
.news-filter__list .c-navy   { color: #33506e; }

/* 一覧（TOPの news-item を流用しつつ PICK UP を追加） */
.page-news .news-archive {
	padding-block: 24px 88px;
}
.page-news .news-list {
	max-width: 880px;
	margin-inline: 0;
	gap: 24px;
}
.news-item--pickup {
	position: relative;
}
.news-item__pickup {
	position: absolute;
	top: -14px;
	right: -10px;
	z-index: 2;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: var(--pink);
	color: #fff;
	font-family: var(--font-en);
	font-weight: 700;
	font-size: 1.2rem;
	line-height: 1.15;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}
.news-item__tag.tag--pink    { background: #f2a7cd; }
.news-item__tag.tag--orange  { background: var(--orange-2); }
.news-item__tag.tag--magenta { background: var(--pink); }

/* ページネーション */
.pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 14px;
	margin-top: 48px;
	border-top: 1px solid var(--line);
	padding-top: 40px;
	max-width: 880px;
	margin-inline: auto;
}
.pagination a,
.pagination span {
	width: 34px;
	height: 34px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-en);
	font-weight: 600;
	font-size: 1.6rem;
	color: var(--ink);
}
.pagination .is-current {
	background: var(--orange);
	color: #fff;
}
.pagination .next {
	border-radius: 50%;
	background: var(--orange);
	color: #fff;
	font-size: 18px;
}
/* WordPress(wp-pagenavi)出力用: ラッパーdivが挟まるため内側をflex化してモックと同じ横並びに */
.pagination .wp-pagenavi {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 14px;
}
.pagination .wp-pagenavi a,
.pagination .wp-pagenavi span {
	width: 34px;
	height: 34px;
}
.pagination .wp-pagenavi .current {
	background: var(--orange);
	color: #fff;
}
.pagination .wp-pagenavi .prevpostslink,
.pagination .wp-pagenavi .nextpostslink {
	border-radius: 50%;
	background: var(--orange);
	color: #fff;
	font-size: 18px;
}
.pagination .wp-pagenavi .extend {
	width: auto;
}
.pagination .wp-pagenavi .first,
.pagination .wp-pagenavi .last {
	width: auto;
	padding: 0 6px;
	font-family: var(--font-jp);
	font-size: 1.3rem;
}

/* =========================================================
   会社概要  (company.html)
   ========================================================= */
.page-company .company-outline .block-label {
	margin-top: 0;
}
/* 会社概要テーブル：PCはFigma(761:3533)準拠の2カラム（左＝代表者を大きく＋社名・屋号横並び／右＝資本金・役員） */
.company-dl {
	display: grid;
	grid-template-columns: 1fr 1.2fr 1.6fr;
	column-gap: 48px;
	padding-left: 64px;
}
.company-dl > div {
	padding: 18px 0;
}
.company-dl > div:nth-child(1) {
	grid-column: 1;
	grid-row: 2;
}
.company-dl > div:nth-child(2) {
	grid-column: 2;
	grid-row: 2;
}
.company-dl > div:nth-child(3) {
	grid-column: 1 / 3;
	grid-row: 1;
}
.company-dl > div:nth-child(4) {
	grid-column: 3;
	grid-row: 1;
	border-bottom: 1px solid var(--line);
}
.company-dl > div:nth-child(5) {
	grid-column: 3;
	grid-row: 2;
}
.company-dl dt {
	font-size: 1.3rem;
	color: var(--ink-2);
}
.company-dl dd {
	margin: 4px 0 0;
	font-size: 1.6rem;
	font-weight: 500;
}
.company-dl > div:nth-child(3) dd {
	font-size: 3.2rem;
	line-height: 1.4;
}
.company-dl > div:nth-child(3) dd::after {
	content: "";
	display: block;
	width: 42px;
	height: 1px;
	margin-top: 18px;
	background: var(--ink-2);
}
.company-dl dd.small {
	font-size: 1.5rem;
}

/* 各スクール概要（タブ＋パネル） */
.page-company .company-schools {
	padding-block: 0 72px;
}
.tabs--line button {
	border: none;
	border-bottom: 3px solid var(--line);
	border-radius: 0;
	background: none;
	padding: 12px 28px;
	font-size: 1.6rem;
}
.tabs--line button.is-active {
	background: none;
	color: var(--ink);
	border-bottom-color: var(--ink-3);
}
/* 会社概要ページのPCタブはFigma準拠のフォルダ型（アクティブタブがパネルとつながる）
   ※ .tabs--line 自体は bus 系ページと共用のため .page-company スコープで上書き */
.page-company .tabs--line {
	gap: 24px;
	align-items: flex-end;
}
.page-company .tabs--line button {
	border: 1px solid #999;
	border-bottom: none;
	border-radius: var(--radius-lg) var(--radius-lg) 0 0;
	background: #fff;
	color: var(--ink-2);
	width: 232px;
	padding: 14px 24px 12px;
	font-size: 1.8rem;
	text-align: left;
}
.page-company .tabs--line button::after {
	content: "";
	display: block;
	height: 4px;
	margin-top: 8px;
	background: #b3b3b3;
}
.page-company .tabs--line button.is-active {
	flex: 1;
	background: #f3f3f3;
	border-color: #f3f3f3;
	color: var(--ink);
	padding-top: 20px;
	font-size: 2rem;
}
.page-company .tabs--line button.is-active::after {
	background: var(--ink-2);
}
.company-schools__panel {
	display: none;
	background: #f3f3f3;
	border-radius: var(--radius-lg);
	padding: 48px 64px 40px;
}
.page-company .tabs--line + .company-schools__panel {
	border-top-left-radius: 0;
}
.company-schools__panel:last-of-type {
	border-top-right-radius: 0;
}
.company-schools__panel.is-active {
	display: flex;
	gap: 0 56px;
}
.company-schools__panel dl {
	flex: 1;
	min-width: 0;
}
.company-schools__panel dl > div {
	display: flex;
	align-items: baseline;
	gap: 24px;
	border-bottom: 1px solid #ddd;
	padding: 20px 0;
}
.company-schools__panel dl > div:first-child {
	border-top: 1px solid #ddd;
}
.company-schools__panel dt {
	width: 180px;
	flex-shrink: 0;
	font-size: 1.3rem;
	color: var(--ink-2);
	margin-bottom: 4px;
}
.company-schools__panel dd {
	flex: 1;
	margin: 0;
	font-size: 1.5rem;
}
.company-schools__panel dd li {
	padding-left: 1em;
	text-indent: -1em;
}
.company-schools__panel dd li::before {
	content: "・";
}

/* 沿革（PC＝Figma準拠：年代タブを左に縦積み・右に年表／SP＝横タブ＋縦タイムライン） */
.page-company .company-history {
	padding-block: 0 72px;
}
.page-company .company-history .container {
	display: grid;
	grid-template-columns: 300px minmax(0, 1fr);
	column-gap: 64px;
}
.page-company .company-history .block-label {
	grid-column: 1 / -1;
}
.page-company .company-history .tabs--box {
	grid-column: 1;
	grid-row: 2;
	align-self: start;
}
.page-company .company-history .history-panel {
	grid-column: 2;
	grid-row: 2;
}
.tabs--box {
	flex-direction: column;
	gap: 2px;
	margin-bottom: 0;
}
.tabs--box button {
	border: none;
	border-radius: 0;
	background: #f2f2f2;
	color: var(--ink-2);
	font-family: var(--font-en);
	font-size: 2.6rem;
	padding: 36px 28px;
	text-align: right;
	position: relative;
}
.tabs--box button.is-active {
	background: var(--ink-3);
	border-color: var(--ink-3);
	color: #fff;
	font-size: 3.4rem;
	padding-block: 50px;
}
.tabs--box button.is-active::after {
	content: "";
	position: absolute;
	left: 100%;
	top: 50%;
	transform: translateY(-50%);
	border: 14px solid transparent;
	border-left: 18px solid var(--ink-3);
	border-right: 0;
}
.history-panel {
	display: none;
}
.history-panel.is-active {
	display: block;
}
.timeline {
	position: relative;
	padding-left: 0;
}
.timeline::before {
	content: "";
	position: absolute;
	left: 169px;
	top: 8px;
	bottom: 8px;
	width: 2px;
	background: #f2c9b3;
}
.timeline li {
	position: relative;
	display: grid;
	grid-template-columns: 150px minmax(0, 1fr) auto;
	column-gap: 40px;
	padding-bottom: 44px;
}
.timeline li::before {
	content: "";
	position: absolute;
	left: 165px;
	top: 6px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--orange);
}
.timeline li > p {
	grid-column: 2;
	grid-row: 1;
}
.timeline li > .timeline__year {
	grid-column: 1;
}
.timeline__year {
	font-weight: 500;
	font-size: 1.3rem;
	margin-bottom: 4px;
}
.timeline li p {
	font-size: 1.4rem;
	line-height: 1.9;
}
.timeline li img {
	grid-column: 3;
	grid-row: 1;
	width: 190px;
	margin-top: 0;
}

/* 採用情報 */
.page-company .company-recruit {
	padding-block: 0 88px;
}
.page-company .company-recruit h2 {
	font-family: var(--font-zen);
	font-weight: 700;
	font-size: 3.2rem;
}
.page-company .company-recruit h2 span {
	color: var(--orange);
}
.page-company .company-recruit .text {
	margin: 12px 0 28px;
}
/* #418/#419: PCはテキスト左＋スタッフ写真右、SPは写真が上（Figma準拠） */
.page-company .company-recruit__grid {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 48px;
}
.page-company .company-recruit__body {
	flex: 1;
	max-width: 520px;
}
.page-company .company-recruit__label {
	color: var(--pink);
	font-family: var(--font-en);
	font-weight: 600;
	font-size: 1.6rem;
	margin-bottom: 8px;
}
.page-company .company-recruit__img {
	flex: 0 1 46%;
	max-width: 460px;
	height: auto;
}

/* タブレット幅：沿革・スクール概要の2カラムを詰めすぎないよう調整 */
@media (max-width: 1023px) {
	.company-schools__panel {
		padding: 32px 32px 28px;
	}
	.company-schools__panel.is-active {
		display: block;
	}
	.company-schools__panel dt {
		width: 140px;
	}
	.page-company .company-history .container {
		grid-template-columns: 220px minmax(0, 1fr);
		column-gap: 40px;
	}
	.tabs--box button {
		font-size: 2rem;
		padding: 24px 20px;
	}
	.tabs--box button.is-active {
		font-size: 2.4rem;
		padding-block: 32px;
	}
	.timeline li {
		grid-template-columns: 130px minmax(0, 1fr);
	}
	.timeline li img {
		grid-column: 2;
		grid-row: 2;
		margin-top: 12px;
	}
	.timeline::before {
		left: 149px;
	}
	.timeline li::before {
		left: 145px;
	}
}

@media (max-width: 767px) {
	.tabs--line button {
		flex: 1;
		padding: 12px 8px;
		font-size: 1.4rem;
	}

	/* ▼ SPは従来デザインのまま（上記PC向け調整の打ち消し） */
	.company-dl {
		display: block;
		padding-left: 0;
	}
	.company-dl > div {
		border-top: 1px solid var(--line);
		max-width: 720px;
	}
	.company-dl > div:nth-child(4) {
		border-bottom: none;
	}
	.company-dl dd {
		font-size: 2rem;
	}
	.company-dl > div:nth-child(3) dd {
		font-size: 2rem;
		line-height: inherit;
	}
	.company-dl > div:nth-child(3) dd::after {
		content: none;
	}
	.page-company .tabs--line {
		gap: 4px;
		align-items: stretch;
	}
	.page-company .tabs--line button {
		flex: 1;
		width: auto;
		border: none;
		border-bottom: 3px solid var(--line);
		border-radius: 0;
		background: none;
		color: var(--ink);
		padding: 12px 8px;
		font-size: 1.4rem;
		text-align: center;
	}
	.page-company .tabs--line button::after {
		content: none;
	}
	.page-company .tabs--line button.is-active {
		background: none;
		color: var(--ink);
		border-bottom-color: var(--ink-3);
		padding: 12px 8px;
		font-size: 1.4rem;
	}
	.company-schools__panel {
		background: #f7f5f3;
		padding: 32px 28px;
	}
	.company-schools__panel,
	.page-company .tabs--line + .company-schools__panel,
	.company-schools__panel:last-of-type {
		border-radius: 0 0 14px 14px;
	}
	.company-schools__panel.is-active {
		display: block;
	}
	.company-schools__panel dl > div {
		display: block;
		padding: 16px 0;
	}
	.company-schools__panel dl > div:first-child {
		border-top: none;
	}
	.company-schools__panel dt {
		width: auto;
	}
	.page-company .company-history .container {
		display: block;
	}
	.tabs--box {
		flex-direction: row;
		flex-wrap: wrap;
		gap: 10px;
		margin-bottom: 40px;
	}
	.tabs--box button {
		border: 1px solid var(--line);
		border-radius: 6px;
		background: #f2f0ee;
		font-size: 1.7rem;
		padding: 14px 26px;
		text-align: center;
	}
	.tabs--box button.is-active {
		background: var(--ink-3);
		font-size: 1.7rem;
		padding-block: 14px;
	}
	.tabs--box button.is-active::after {
		content: none;
	}
	.timeline {
		padding-left: 36px;
	}
	.timeline::before {
		left: 4px;
	}
	.timeline li {
		display: block;
		padding-bottom: 36px;
	}
	.timeline li::before {
		left: -36px;
	}
	.timeline__year {
		font-weight: 700;
		font-size: 1.5rem;
	}
	.timeline li img {
		width: 200px;
		margin-top: 12px;
	}

	.page-company .company-recruit h2 {
		font-size: 2.6rem;
	}
	.page-company .company-recruit__grid {
		flex-direction: column-reverse;
		align-items: stretch;
		gap: 28px;
	}
	.page-company .company-recruit__img {
		max-width: min(88%, 400px);
		margin-inline: auto;
	}
}

/* =========================================================
   卒業生の声  (voice.html)
   ========================================================= */
.page-voice main {
}
.page-voice .page-hero {
	background: #fff;
}
.page-voice .voice-filter {
	padding-block: 32px 8px;
}
.voice-filter__toggle {
	width: 100%;
	max-width: 880px;
	margin-inline: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border: none;
	background: var(--pink);
	color: #fff;
	font-weight: 700;
	font-size: 1.6rem;
	border-radius: 999px;
	padding: 18px 24px;
	cursor: pointer;
}
.voice-filter__toggle .ico {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: #fff;
	color: var(--pink);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
}
.voice-filter__toggle[aria-expanded="false"] + .voice-filter__body {
	display: none;
}
.voice-filter__body {
	max-width: 880px;
	margin-inline: auto;
	background: #fff;
	border-radius: 14px;
	box-shadow: var(--shadow-sm);
	padding: 20px 24px;
	margin-top: 12px;
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.voice-filter__group {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px 18px;
	font-size: 1.4rem;
}
.voice-filter__group p {
	font-weight: 700;
	min-width: 4em;
}
.voice-filter__group label {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}
.voice-filter__group input {
	accent-color: var(--pink);
	width: 16px;
	height: 16px;
}
.voice-filter__actions {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 24px;
	border-top: 1px solid #eee;
	padding-top: 16px;
	margin-top: 4px;
}
.voice-filter__submit {
	border: none;
	background: var(--pink);
	color: #fff;
	font-weight: 700;
	font-size: 1.5rem;
	padding: 10px 48px;
	border-radius: 999px;
	cursor: pointer;
}
.voice-filter__submit:hover {
	opacity: 0.85;
}
.voice-filter__reset {
	font-size: 1.3rem;
	color: #888;
	text-decoration: underline;
}

/* 声カード */
.page-voice .voice-archive {
	padding-block: 24px 88px;
}
.voice-list {
	display: flex;
	flex-direction: column;
	gap: 24px;
	max-width: 880px;
	margin-inline: auto;
}
.voice-card {
	display: grid;
	grid-template-columns: 80px 1fr;
	gap: 8px 20px;
	background: #fff;
	border-radius: var(--radius);
	box-shadow: var(--shadow-sm);
	padding: 28px;
}
.voice-card__avatar {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	object-fit: cover;
	grid-row: 1;
}
.voice-card__name {
	font-family: var(--font-zen);
	font-weight: 700;
	font-size: 2rem;
	color: var(--orange);
}
.voice-card__date {
	font-size: 1.4rem;
	margin: 2px 0 8px;
}
.voice-card__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
.voice-card__tags span {
	border: 1px solid var(--ink-2);
	border-radius: 999px;
	font-size: 1.1rem;
	padding: 2px 12px;
}
.voice-card__text {
	grid-column: 1 / -1;
	font-size: 1.5rem;
	line-height: 1.9;
}
.page-voice .pagination {
	background: none;
}

@media (max-width: 767px) {
	.voice-card {
		padding: 22px 18px;
		grid-template-columns: 72px 1fr;
	}
	.voice-card__avatar {
		width: 72px;
		height: 72px;
	}
}

/* =========================================================
   よくある質問  (faq.html)
   ========================================================= */
.page-faq main {
}
.page-faq .page-hero {
	background: #fff;
}
.page-faq .faq-archive {
	padding-block: 24px 88px;
}
.page-faq .faq-list__a {
	background: none;
}
.page-faq .faq-list {
	max-width: 880px;
	margin-inline: auto;
}
/* 開いている質問はオレンジの枠で囲む */
.page-faq .faq-list__item[open] {
	outline: 1.5px solid var(--orange-2);
	outline-offset: -1px;
	border-radius: 28px;
}

/* 絞り込みモーダル（Frame367準拠） */
.page-faq .filter-modal {
	padding: 60px 24px 32px;
}
.page-faq .filter-modal__group {
	padding-block: 18px;
	border-bottom: 1px solid var(--line);
}
.page-faq .filter-modal__group:first-of-type {
	padding-top: 0;
}
.page-faq .filter-modal__label {
	font-size: 1.4rem;
	font-weight: 700;
	margin-bottom: 12px;
}
.page-faq .filter-modal__label span {
	color: var(--orange);
	margin-right: 4px;
}
.page-faq .filter-modal__keyword {
	width: 100%;
	padding: 13px 14px;
	font-size: 1.4rem;
	background: #efefef;
	border-radius: 8px;
}
.page-faq .filter-modal__chips {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
}
.page-faq .filter-modal__chips input {
	position: absolute;
	width: 1px;
	height: 1px;
	opacity: 0;
	pointer-events: none;
}
.page-faq .filter-modal__chips label {
	position: relative;
	cursor: pointer;
}
.page-faq .filter-modal__chips span {
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--orange);
	border-radius: 8px;
	background: #fff;
	transition: background .2s;
}
.page-faq .filter-modal__chips input:checked + span {
	background: #fdeee2;
}
.page-faq .filter-modal__chips--icon span {
	flex-direction: column;
	gap: 6px;
	padding: 14px 4px;
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--orange);
}
.page-faq .filter-modal__chips--icon ion-icon,
.page-faq .filter-modal__chips--icon i {
	font-size: 22px;
}
.page-faq .filter-modal__chips--pill {
	grid-template-columns: repeat(2, 1fr);
	gap: 12px 8px;
}
.page-faq .filter-modal__chips--pill span {
	padding: 12px 8px;
	font-size: 1.3rem;
}
.page-faq .filter-modal__submit {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	margin-top: 24px;
	padding: 15px 12px 15px 24px;
	background: var(--pink);
	color: #fff;
	font-size: 1.5rem;
	font-weight: 700;
	border-radius: 999px;
	cursor: pointer;
}
.page-faq .filter-modal__submit .ico {
	display: grid;
	place-items: center;
	width: 30px;
	height: 30px;
	background: #fff;
	color: var(--pink);
	border-radius: 50%;
	font-size: 20px;
}

/* =========================================================
   在校生メニュー  (student_ageo.html / student_nishiomiya.html)
   ========================================================= */
.student-schedule {
	padding-block: 48px 24px;
}
.student-schedule__panel {
	background: #f2f0ee;
	border-radius: 14px;
	padding: 24px;
	max-width: 880px;
}
.student-schedule__nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 16px;
}
.student-schedule__nav p {
	font-weight: 700;
	font-size: 1.8rem;
}
.student-schedule__nav button {
	border: none;
	background: none;
	font-size: 1.4rem;
	font-weight: 500;
	color: var(--ink);
	cursor: pointer;
}
.student-schedule__table {
	width: 100%;
	border-collapse: collapse;
	background: none;
	text-align: center;
}
.student-schedule__table th,
.student-schedule__table td {
	border-left: 1px solid #ddd;
	padding: 14px 6px;
	font-size: 1.4rem;
}
.student-schedule__table th:first-child,
.student-schedule__table td:first-child {
	border-left: none;
}
.student-schedule__table thead th strong {
	display: block;
	font-family: var(--font-en);
	font-weight: 600;
	font-size: 2rem;
}
.student-schedule__table thead th span {
	font-size: 1.1rem;
	color: var(--ink-2);
}
.student-schedule__table tbody th {
	font-weight: 500;
}
.student-schedule__table tbody tr {
	border-top: 1px solid #ddd;
}
.student-schedule__note {
	font-size: 1.2rem;
	line-height: 1.9;
	margin-top: 16px;
}

/* オンデマンド学科 / MUSASI */
.student-online,
.student-musasi {
	padding-block: 24px;
}
.student-online__banner {
	display: block;
	width: min(420px, 100%);
	margin-top: 8px;
}
.student-musasi .note-text {
	margin-top: 12px;
}
.student-musasi__buttons {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-top: 28px;
}
.student-musasi__buttons .btn {
	justify-content: space-between;
	padding-inline: 28px;
}

/* サポーター紹介 */
.student-supporters {
	padding-block: 24px 88px;
}
.supporter-list {
	display: flex;
	flex-wrap: wrap;
	gap: 20px 60px;
}
.supporter-list li {
	display: flex;
	align-items: flex-start;
	gap: 24px;
	padding-block: 20px;
	width: calc(50% - 30px);
}
.supporter-list__img {
	flex-shrink: 0;
	width: 96px;
	height: 96px;
	border-radius: 50%;
	object-fit: cover;
	background: #e3e1df;
	color: #b5b2af;
	font-size: .9rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 2px;
}
.supporter-list__img ion-icon {
	font-size: 18px;
}
.supporter-list .name {
	font-family: var(--font-zen);
	font-weight: 700;
	font-size: 1.8rem;
	color: var(--orange);
	margin-bottom: 4px;
}
.supporter-list li div > p:not(.name) {
	font-size: 1.4rem;
	line-height: 1.9;
}

/* 検定スケジュール（WP結線分）: 曜日色・休校日・卒検/修検マーク（配色は旧サイト踏襲） */
.student-schedule__table th.is-sat strong,
.student-schedule__table th.is-sat span {
	color: #0f67a5;
}
.student-schedule__table th.is-sun strong,
.student-schedule__table th.is-sun span {
	color: #d22f2f;
}
.student-schedule__table th.is-close strong,
.student-schedule__table th.is-close span {
	color: #aaa;
	text-decoration: line-through;
}
.student-schedule__mark {
	display: inline-block;
	min-width: 3.2em;
	padding: 4px 6px;
	border-radius: 6px;
	color: #fff;
	font-size: 1.2rem;
	font-weight: 700;
	line-height: 1.2;
}
.student-schedule__mark--grad {
	background: #d96845;
}
.student-schedule__mark--comp {
	background: #0f67a5;
}
.student-schedule__nav button:disabled {
	opacity: 0.35;
	cursor: default;
}

/* 検定スケジュール: テーブルはパネル内に収める（列は均等割り） */
.student-schedule__table {
	width: 100%;
	table-layout: fixed;
}
@media (max-width: 767px) {
	/* SP: ヒーローと見出しの間の空白を詰める */
	.student-schedule {
		padding-block: 8px 24px;
	}
	.student-schedule .block-label {
		margin-top: 0;
	}
	.student-schedule__panel {
		padding: 16px 12px;
	}
}

/* 検定スケジュール: パネルはコンテンツ幅いっぱいに（PC10日表示のためmax-width撤廃） */
.student-schedule__panel {
	max-width: none;
}

/* サポーターリスト: PC=2カラム（上の基準値）、タブレット以下は1カラムに戻す */
@media (max-width: 1023px) {
	.supporter-list {
		gap: 0;
	}
	.supporter-list li {
		width: 100%;
	}
}
