@charset "utf-8";

/* ============================================
   共通スタイル
   ============================================ */

/* CSS変数 */
:root {
	/* カラー */
	--color-primary: #22245b;
	--color-secondary: #454d94;
	--color-text: #202020;
	--color-text-light: #535353;
	--color-link: #282828;
	--color-link-hover: #09479b;
	--color-white: #fff;
	--color-gray: #b5b5b5;
	--color-gray-light: #dcdcdc;
	--color-border: #ddd;
	--color-bg-gray: #eeeeee;
	--color-error: #e60012;

	/* フォントファミリー */
	--font-sans: "Noto Sans JP", sans-serif;
	--font-serif: "Noto Serif JP", serif;
	--font-garamond: "adobe-garamond-pro", serif;

	/* フォントサイズ */
	--text-xs: 1.2rem;
	--text-sm: 1.4rem;
	--text-base: 1.6rem;
	--text-lg: 1.8rem;
	--text-xl: 2.0rem;
	--text-2xl: 2.2rem;
	--text-3xl: 2.4rem;
	--text-4xl: 2.8rem;
	--text-5xl: 3.2rem;
	--text-6xl: 6.2rem;

	/* フォントウェイト */
	--font-thin: 100;
	--font-regular: 400;
	--font-medium: 500;
	--font-semibold: 600;
	--font-bold: 700;
}

/* ユーティリティクラス - フォントファミリー */
.font-serif { font-family: var(--font-serif); }
.font-garamond { font-family: var(--font-garamond); }

/* ユーティリティクラス - フォントウェイト */
.font-thin { font-weight: var(--font-thin); }
.font-medium { font-weight: var(--font-medium); }
.font-semibold { font-weight: var(--font-semibold); }
.font-bold { font-weight: var(--font-bold); }

/* ユーティリティクラス - フォントサイズ */
.text-xs { font-size: var(--text-xs); }
.text-sm { font-size: var(--text-sm); }
.text-base { font-size: var(--text-base); }
.text-lg { font-size: var(--text-lg); }
.text-xl { font-size: var(--text-xl); }
.text-2xl { font-size: var(--text-2xl); }
.text-3xl { font-size: var(--text-3xl); }
.text-4xl { font-size: var(--text-4xl); }
.text-5xl { font-size: var(--text-5xl); }
.text-6xl { font-size: var(--text-6xl); }

/* ユーティリティクラス - カラー */
.color-black { color: var(--color-text) !important; }
.color-white { color: var(--color-white) !important; }

.no-hover {
	pointer-events: none;
}

/* ------------------------------------------
   リセット
   ------------------------------------------ */
*,
::before,
::after {
	box-sizing: border-box;
	border-style: solid;
	border-width: 0;
}

* {
	margin: 0;
	padding: 0;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	-webkit-box-shadow: none;
	box-shadow: none;
	outline: none;
}

html {
	-webkit-text-size-adjust: 100%;
	-webkit-tap-highlight-color: transparent;
	overflow-x: hidden;
	overflow-y: scroll;
	height: 100%;
	font-size: 62.5%;
	scroll-behavior: smooth;
}

/* フォント読み込み中は非表示 */
html.wf-loading body {
	opacity: 0;
}
html.wf-active body,
html.wf-inactive body {
	opacity: 1;
	transition: opacity 0.2s ease-out;
}

body {
	margin: 0 auto;
	font-family: var(--font-sans);
	font-weight: var(--font-regular);
	color: var(--color-text);
}

/* メニュー開いたときのスクロール無効 */
body.menu-open {
	position: fixed;
	width: 100%;
	overflow: hidden;
}

html,
body,
select,
option,
optgroup {
	overflow-wrap: break-word;
	word-wrap: break-word;
}

main {
	display: block;
}

p,
table,
iframe,
form,
figure,
dl {
	margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: inherit;
	line-height: inherit;
	font-weight: inherit;
	margin: 0;
}

h1 {
	font-size: 3.8rem;
	font-weight: normal;
}
h2 {
	font-size: 3.2rem;
	font-weight: normal;
}
h3 {
	font-size: 2.8rem;
	font-weight: normal;
}
h4 {
	font-size: 2rem;
	font-weight: normal;
}
h5 {
	font-size: 1.8rem;
	font-weight: normal;
}

ul,
ol {
	margin: 0;
	padding: 0;
	list-style: none;
}

dt {
	font-weight: var(--font-medium);
}

dd {
	margin-left: 0;
}

a {
	background-color: transparent;
	text-decoration: none;
	color: inherit;
}

a:link {
	text-decoration: none;
	color: var(--color-link);
}

a:visited {
	text-decoration: none;
	color: var(--color-link);
}

a:hover{
	text-decoration: none;
	color: var(--color-link-hover);
}

b,
strong {
	font-weight: bolder;
}

small {
	font-size: 80%;
}

img,
iframe {
	vertical-align: bottom;
}

img {
	border: none;
	vertical-align: middle;
	height: auto;
	max-width: 100%;
	max-height: 100%;
}

p{
	text-align: justify;
	text-justify: inter-ideograph;
}

address {
	font-style:normal;
}

/* アンカーリンク時のヘッダー分のオフセット */
[id] {
	scroll-margin-top: 80px;
}

/* ------------------------------------------
   フォームタグリセット
   ------------------------------------------ */
button,
input,
select,
textarea {
	-webkit-appearance: none;
	appearance: none;
	color: inherit;
	font: inherit;
	background: transparent;
	padding: 0;
	margin: 0;
	outline: 0;
	border-radius: 0;
	text-align: inherit;
}

[type="checkbox"] {
	-webkit-appearance: checkbox;
	appearance: checkbox;
}

[type="radio"] {
	-webkit-appearance: radio;
	appearance: radio;
}

button,
input {
	overflow: visible;
}

button,
select {
	text-transform: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
	cursor: pointer;
	-webkit-appearance: none;
	appearance: none;
}

button[disabled],
[type="button"][disabled],
[type="reset"][disabled],
[type="submit"][disabled] {
	cursor: default;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
	border-style: none;
	padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
	outline: 1px dotted ButtonText;
}

select::-ms-expand {
	display: none;
}

option {
	padding: 0;
}

textarea {
	overflow: auto;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

[type="search"] {
	outline-offset: -2px;
}

[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

::-webkit-file-upload-button {
	-webkit-appearance: button;
	font: inherit;
}

label[for] {
	cursor: pointer;
}

[contenteditable] {
	outline: none;
}

[hidden] {
	display: none;
}

/* ------------------------------------------
   テーブルタグリセット
   ------------------------------------------ */
table {
	border-collapse: collapse;
	border-spacing: 0;
	empty-cells: show;
}

table caption{
	margin-bottom: 8px;
	text-align:left;
	font-weight: bold;
}

table th {
	font-weight: bold;
	text-align: center;
	vertical-align: middle;
}

table td {
	text-align: left;
	vertical-align: top;
}

table td.n {
	text-align: right;
}

td,
th {
	vertical-align: top;
	padding: 0;
}

th {
	text-align: left;
	font-weight: bold;
}

/* ------------------------------------------
   共通レイアウト
   ------------------------------------------ */
.container {
	max-width: 1120px;
	width: calc(100% - 80px);
	margin: 0 auto;
}

/* 汎用クラス */
.text-right { text-align: right; }
.text-center { text-align: center; }

/* フェードインアニメーション */
.fadeIn {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 1.5s ease, transform 1.5s ease;
}

.fadeIn.is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* フォーム系ページの text-center */
#contact .text-center p:last-child,
#confirm .text-center p:last-child{
	margin-bottom: 60px;
}

.text-red {
	color: var(--color-error);
}

/* スマホ用改行（PC非表示） */
.sp-break {
	display: none;
}

/* インデント */
.indent-1 {
	padding-left: 0.5em;
}

.indent-2 {
	padding-left: 2.5em;
}

.purpose-indent {
	padding-left: 0.8em;
}

.pc-none {
	display: none !important;
}

.sp-none {
	display: flex !important;
}

.none {
	display: none !important;
}

/* ------------------------------------------
   共通コンポーネント - ボタン
   ------------------------------------------ */
.btn-base,
.btn-base:link,
.btn-base:visited {
	position: relative;
	width: 280px;
	height: 70px;
	background-color: var(--color-white);
	border-radius: 5px;
	border: solid 1px;
	border-color: var(--color-primary);
	color: var(--color-primary);
	font-size: 2rem;
	font-family: var(--font-serif);
	font-weight: var(--font-medium);
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0px 29px;
	text-decoration: none;
	box-sizing: border-box;
	transition: all 0.3s ease;
}

@media (hover: hover) {
	.btn-base:hover {
		background-color: var(--color-primary);
		color: var(--color-white);
	}
}

.media-overlay .btn-base,
.media-overlay .btn-base:link,
.media-overlay .btn-base:visited {
	border: solid 0px;
	color: var(--color-primary);
}

@media (hover: hover) {
	.media-overlay .btn-base:hover {
		color: var(--color-white);
	}
}

/* 右向き矢印（→） */
.arrow-right:before,
.arrow-right:after {
	position: absolute;
	top: 55%;
	right: 30px;
	height: 1px;
	background: var(--color-primary);
	content: '';
}

.arrow-right:before {
	width: 30px;
	transform: translateY(-50%);
}

.arrow-right:after {
	width: 9px;
	transform: translateY(-50%) rotate(45deg);
	transform-origin: right center;
}

@media (hover: hover) {
	.btn-base:hover.arrow-right:before,
	.btn-base:hover.arrow-right:after {
		background: var(--color-white);
	}
}

/* 下向き矢印（∨） */
.arrow-down {
	margin: 0 auto;
}

.arrow-down:before,
.arrow-down:after {
	position: absolute;
	top: 48%;
	right: 30px;
	width: 8px;
	height: 1px;
	background: var(--color-primary);
	content: '';
}

.arrow-down:before {
	transform: translateY(-50%) translateX(3px) rotate(-45deg);
	transform-origin: right center;
}

.arrow-down:after {
	transform: translateY(-50%) translateX(-3px) rotate(45deg);
	transform-origin: left center;
}

/* 下向き矢印 - 展開後の上向き（現在未使用）
.arrow-down.open:before {
	transform: translateY(-50%) translateX(3px) rotate(45deg);
}

.arrow-down.open:after {
	transform: translateY(-50%) translateX(-3px) rotate(-45deg);
}
*/

/* Font Awesomeアイコン付きボタン */
.icon-fa i {
	position: absolute;
	right: 30px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 3rem;
	color: var(--color-primary);
	transition: transform 0.3s ease, color 0.3s ease;
}

@media (hover: hover) {
	.btn-base.icon-fa:hover i {
		color: var(--color-white);
	}
}

/* icon-faと組み合わせた場合は疑似要素を非表示 */
.arrow-down.icon-fa:before,
.arrow-down.icon-fa:after {
	display: none;
}

/* もっと見るボタンのアイコンサイズ調整 */
.arrow-down.icon-fa i {
	font-size: 2rem;
}

/* 展開時のアイコン回転（現在未使用）
.arrow-down.icon-fa.open i {
	transform: translateY(-50%) rotate(180deg);
}
*/

/* 展開時のボタン色（現在未使用）
.btn-base.open {
	background-color: var(--color-white);
	color: var(--color-primary);
}

@media (hover: hover) {
	.btn-base.open:hover {
		background-color: var(--color-primary);
		color: var(--color-white);
	}
}
*/

.info-btn {
	display: flex;
	justify-content: center;
	margin: 60px 0px;
}

.center-item {
	display: flex;
	justify-content: center;
}

/* ------------------------------------------
   共通コンポーネント - セクション
   ------------------------------------------ */
section {
	margin-top: 150px;
}

.section-title {
	font-size: 6.2rem;
	font-family: var(--font-garamond);
	font-weight: var(--font-semibold);
	color: var(--color-primary);
}

.section-title-sub {
	font-size: 1.8rem;
	font-family: var(--font-serif);
	font-weight: var(--font-medium);
}

h3.section-heading {
	font-size: 2.8rem;
	font-family: var(--font-serif);
	font-weight: var(--font-semibold);
	color: var(--color-primary);
}

.section-with-bar {
	display: flex;
	align-items: stretch;
}

.section-with-bar::before {
	content: '';
	width: 5px;
	background: var(--color-primary);
	margin-right: 20px;
	flex-shrink: 0;
}

.section-bar-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.section-bar-content .section-heading {
	font-size: 2.8rem;
	font-weight: var(--font-bold);
	color: var(--color-primary);
	margin: 0;
}

/* ------------------------------------------
   共通コンポーネント - 画像・メディア
   ------------------------------------------ */
picture:has(.img-full) {
	display: block;
	width: 100%;
	height: 400px;
}

picture:has(.img-full) .img-full {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* picture要素を使わない場合の後方互換 */
img.img-full:not(picture *) {
	width: 100%;
	height: 400px;
	object-fit: cover;
	display: block;
	margin-bottom: 100px;
}

/* 画像上にテキストをのせる */
.media-overlay {
	position: relative;
}

.media-overlay img {
	width: 100%;
	display: block;
	object-fit: cover;
}

.media-overlay .section-title {
	color: var(--color-white);
}

.media-overlay .section-title-sub {
	margin-top: 10px;
}

.media-overlay .container {
	color: var(--color-white);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

/* ------------------------------------------
   共通コンポーネント - パンくずリスト
   ------------------------------------------ */
.breadcrumb {
	position: absolute;
	top: 30px;
	margin: 0 40px;
	font-size: 1.4rem;
	font-family: var(--font-serif);
	font-weight: var(--font-regular);
	color: var(--color-white);
	display: flex;
	align-items: center;
	gap: 15px;
	z-index: 10;
}

.breadcrumb a {
	color: inherit;
	transition: opacity 0.3s ease;
}

.breadcrumb a:hover {
	opacity: 0.7;
}

/* 区切り矢印 */
.breadcrumb-separator {
	display: inline-block;
	width: 6px;
	height: 10px;
	position: relative;
}

.breadcrumb-separator::before,
.breadcrumb-separator::after {
	content: '';
	position: absolute;
	left: 0;
	width: 7px;
	height: 1px;
	background-color: var(--color-white);
}

.breadcrumb-separator::before {
	top: 0;
	transform: rotate(45deg);
	transform-origin: left center;
}

.breadcrumb-separator::after {
	bottom: 0;
	transform: rotate(-45deg);
	transform-origin: left center;
}

/* ------------------------------------------
   共通コンポーネント - ライン
   ------------------------------------------ */
.navy-line {
	margin-top: 15px;
	margin-bottom: 40px;
	height: 2px;
	background-color: var(--color-primary);
	transform: translateY(-50%);
}

.gray-line {
	margin-top: 30px;
	margin-bottom: 40px;
	height: 1px;
	background-color: var(--color-gray);
	transform: translateY(-50%);
}

/* ------------------------------------------
   共通コンポーネント - タグ
   ------------------------------------------ */
.tag-gray {
	display: inline-block;
	font-size: 1.2rem;
	font-weight: var(--font-medium);
	height: 20px;
	padding: 0 10px;
	border-radius: 10px;
	line-height: 20px;
	text-align: center;
	white-space: nowrap;
	min-width: 50px;
	background-color: var(--color-bg-gray);
	color: var(--color-primary);
}

/* ------------------------------------------
   共通コンポーネント - ニュースアイテム
   ------------------------------------------ */
.news-list-page {
	margin-top: 60px;
}

.news-item {
	display: flex;
	align-items: center;
	gap: 30px;
	padding: 30px 0px 30px 40px;
	border-bottom: 1px solid var(--color-border);
	transition: background-color 0.3s ease;
}

.news-item:hover {
	background-color: var(--color-bg-gray);
}

.news-item:first-child {
	border-top: 1px solid var(--color-border);
}

.news-date {
	font-size: 1.6rem;
	color: var(--color-text-light);
	font-family: var(--font-serif);
	flex-shrink: 0;
}

.news-tag {
	font-size: 1.3rem;
	background-color: var(--color-primary);
	border-radius: 3px;
	flex-shrink: 0;
	width: 100px;
	height: 20px;
	text-align: center;
}

.news-tag--new {
	background-color: var(--color-primary);
	color: var(--color-white);
}

.news-tag--member {
	background-color: var(--color-bg-gray);
}

.news-item:hover .news-tag--member {
	background-color: var(--color-white);
}

/* ------------------------------------------
   共通コンポーネント - ページネーション
   ------------------------------------------ */
.pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	margin-top: 60px;
	margin-bottom: 60px;
}

.pagination-btn {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 40px;
	border: 1px solid var(--color-border);
	background-color: var(--color-white);
	color: var(--color-text);
	font-family: var(--font-serif);
	font-size: 1.4rem;
	cursor: pointer;
	transition: all 0.3s ease;
}

.pagination-btn:hover {
	background-color: var(--color-bg-gray);
}

.pagination-btn.active {
	background-color: var(--color-primary);
	border-color: var(--color-primary);
	color: var(--color-white);
}

.pagination-btn.disabled {
	opacity: 0.4;
	cursor: not-allowed;
	pointer-events: none;
}

.pagination-prev,
.pagination-next {
	font-size: 1.2rem;
}

.pagination-ellipsis {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 40px;
	color: var(--color-text);
	font-family: var(--font-serif);
	font-size: 1.4rem;
}

/* ------------------------------------------
   共通コンポーネント - レポートカード
   ------------------------------------------ */
.report-card {
	width: 430px;
	display: block;
	text-decoration: none;
	color: var(--color-text);
	transition: opacity 0.3s ease;
}

.report-card:hover {
	opacity: 0.8;
}

.report-card-img {
	position: relative;
	width: 100%;
	height: 250px;
	overflow: hidden;
}

.report-card-img img {
	width: 100%;
	height: 100%;
	left: 50%;
	object-fit: cover;
}

.report-card-body {
	padding-top: 20px;
}

.report-card-meta {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}

.report-card-date {
	font-size: 1.6rem;
	font-family: var(--font-serif);
	color: var(--color-text-light);
}

.report-card-title {
	margin-top: 10px;
	font-size: 1.8rem;
	font-weight: var(--font-medium);
	line-height: 1.7;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	line-clamp: 4;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* ------------------------------------------
   共通コンポーネント - コピーライト
   ------------------------------------------ */
.copyright-img {
	position: relative;
}

.copyright {
	position: absolute;
	right: 8px;
	bottom: 7px;
	font-size: 1.2rem;
	font-weight: var(--font-regular);
	line-height: 1;
	color: #fff;
}

/* ------------------------------------------
   ヘッダー
   ------------------------------------------ */
header {
	position: sticky;
	top: 0;
	z-index: 100;
	background-color: var(--color-white);
}

.header-container {
	position: relative;
	padding: 10px 20px;
	display: flex;
	justify-content: space-between;
	transform-origin: top left;
}

.header-container h1 {
	flex-shrink: 0;
	font-size:0;
}

.header-container h1 img {
	width: auto;
	height: 50px;
}

.nav {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: center;
	font-size: 1.6rem;
	font-family: var(--font-serif);
	font-weight: var(--font-medium);
	white-space: nowrap;
	min-width: 0;
}

/* PC用ナビゲーション */
.nav-pc {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	gap: 25px;
}

/* モバイル用ナビゲーションはPC時非表示 */
.nav-mobile {
	display: none;
}

/* PC用ドロップダウンメニュー */
.nav-dropdown {
	position: static;
}

.nav-dropdown-menu {
	position: absolute;
	top: 100%;
	left: auto;
	transform: translateX(-40%);
	display: flex;
	background-color: #1e73be;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	list-style: none;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
	z-index: 100;
}

.nav-dropdown:hover .nav-dropdown-menu {
	opacity: 1;
	visibility: visible;
}

.nav-dropdown-menu li {
	padding: 0;
}

.nav-dropdown-menu li a {
	display: block;
	padding: 20px 30px;
	color: var(--color-white);
	text-decoration: none;
	white-space: nowrap;
	transition: background-color 0.3s ease;
}

.nav-dropdown-menu li a:hover {
	background-color: rgba(0, 0, 0, 0.05);
	opacity: 1;
}

/* 右端のドロップダウン（入塾について）は画面右端に寄せる */
.nav-dropdown--right {
	position: static;
}

.nav-dropdown--right .nav-dropdown-menu {
	left: auto;
	right: 20px;
	transform: none;
}

.nav a {
	transition: opacity 0.3s ease;
}

.nav a:hover {
	opacity: 0.7;
}

.header-login {
	height: 48px;
	padding: 0 20px;
	border-radius: 5px;
	background-color: var(--color-primary);
	color: var(--color-white) !important;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	transition: opacity 0.3s ease;
}

.header-login:hover {
	opacity: 0.8;
}

/* ハンバーガーメニュー */
.hamburger {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 6px;
	width: 59px;
	height: 59px;
	padding: 17px;
	background-color: var(--color-primary);
	border: none;
	cursor: pointer;
	z-index: 1001;
}

.hamburger span {
	display: block;
	width: 100%;
	height: 2px;
	background-color: var(--color-white);
	transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ハンバーガーメニュー開いた状態 */
.hamburger.open {
	position: fixed;
	top: 0;
	right: 0;
	background-color: var(--color-white);
}

.hamburger.open span:nth-child(1) {
	transform: translateY(8px) rotate(45deg);
	background-color: var(--color-primary);
}

.hamburger.open span:nth-child(2) {
	opacity: 0;
}

.hamburger.open span:nth-child(3) {
	transform: translateY(-8px) rotate(-45deg);
	background-color: var(--color-primary);
}



/* ------------------------------------------
   フッター
   ------------------------------------------ */
.foot-container {
	margin-top: 150px;
    background-color: var(--color-primary);
    color: var(--color-white);
}

.foot-copyright {
	font-size: 1.3rem;
	font-weight: var(--font-regular);
	display: flex;
	align-items: center;
	justify-content: center;
	height: 45px;
}

.privacy-link {
	font-size: 1.4rem;
	font-weight: var(--font-regular);
	text-align: center;
	padding: 15px 0;
}

.privacy-link a,
.privacy-link a:link,
.privacy-link a:visited {
	color: var(--color-white);
}

.disclaimer {
	font-size: 1.4rem;
	font-weight: var(--font-regular);
	text-align: center;
	background-color: var(--color-white);
	color: var(--color-primary);
	display: flex;
	align-items: center;
	justify-content: center;
	height: 45px;
}

.foot-menu {
	padding: 90px 0 50px;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.foot-btn-area {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.foot-map {
	flex: 1;
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	margin-left: 120px;
}

.foot-btn {
	width: 300px;
	height: 80px;
	background-color: var(--color-white);
	border-radius: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity 0.3s ease;
}

.foot-btn:hover {
	opacity: 0.8;
}

.foot-btn--login {
	background: var(--color-secondary);
	font-size: 2rem;
	font-family: var(--font-serif);
}

.foot-btn--login a {
	color: var(--color-white);
}

.foot-btn img {
	width: auto;
	padding: 0px 20px;
}

.foot-nav {
	list-style: none;
	font-family: var(--font-serif);
	font-weight: var(--font-medium);
}

.foot-nav-title {
	font-size: 1.8rem;
}

.foot-nav-title + .foot-nav-title {
	margin-top: 30px;
}

.foot-nav li {
	margin-bottom: 10px;
}

.foot-nav a {
	color: var(--color-white);
	white-space: wrap;
	transition: opacity 0.3s ease;
}

.foot-nav a:hover {
	opacity: 0.7;
}

.foot-nav-sub {
	font-size: 1.4rem;
}

.foot-nav-sub a::before {
	content: "・";
}

/* ------------------------------------------
   共通コンポーネント - CTAセクション
   ------------------------------------------ */
.cta-img {
	position: relative;
	margin-left: 40px;
	margin-right: 40px;
}

.cta-img img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.cta-information {
	padding-top: 60px;
	margin-bottom: 40px;
	color: var(--color-white);
}

.cta-heading {
	font-size: 6.2rem;
	font-family: var(--font-garamond);
	font-weight: var(--font-semibold);
	color: var(--color-white);
}

.cta-heading-sub {
	font-size: 1.8rem;
	font-family: var(--font-serif);
	color: var(--color-white);
}

.admission-guide {
	font-size: 1.8rem;
}

.cta-notice {
	border: solid 1px var(--color-white);
	width: 100%;
	padding: 30px;
	color: var(--color-white);
	top: 50%;
	box-sizing: border-box;
}

.cta-notice p {
	font-weight: normal;
	text-align: center;
}

.cta-title {
	font-size: 2.2rem;
	padding-bottom: 20px;
}

.cta-body {
	font-size: 1.6rem;
	line-height: 1.6;
}

.cta-img .container {
	position: relative;
	top: auto;
	left: auto;
	transform: none;
}

.cta-img .info-btn {
	margin: 0;
	padding: 60px 0;
}

/* ------------------------------------------
   共通コンポーネント - Contactバナー
   ------------------------------------------ */
.contact-banner {
	display: block;
	position: relative;
	text-decoration: none;
}

.contact-banner img {
	width: 100%;
	height: 300px;
	object-fit: cover;
	display: block;
	transition: opacity 0.3s ease;
	margin-top: 150px;
}

.contact-banner:hover img {
	opacity: 0.8;
}

.contact-banner-content {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 60px;
	z-index: 2;
}

.contact-banner-text {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.contact-banner-text .section-title {
	color: var(--color-white);
	margin-bottom: 10px;
}

.contact-banner-text .section-title-sub {
	color: var(--color-white);
}

.contact-banner-arrow {
	position: relative;
	width: 62px;
	height: 62px;
}

.contact-banner-arrow::before,
.contact-banner-arrow::after {
	content: '';
	position: absolute;
	right: 0;
	top: 50%;
	height: 2px;
	background: var(--color-white);
	transition: right 0.3s ease;
}

.contact-banner:hover .contact-banner-arrow::before,
.contact-banner:hover .contact-banner-arrow::after {
	right: -8px;
}

.contact-banner-arrow::before {
	width: 62px;
	transform: translateY(-50%);
}

.contact-banner-arrow::after {
	width: 18px;
	transform: translateY(-50%) rotate(45deg);
	transform-origin: right center;
}

.contact-banner .section-title-sub {
	font-size: 2.8rem;
	font-weight: var(--font-semibold);
}


/* ============================================
   PC版 ページ別スタイル
   ============================================ */

/* ------------------------------------------
   index
   ------------------------------------------ */
#index picture:has(.img-full) {
	height: 680px;
	overflow: hidden;
}

#index picture:has(.img-full) .img-full {
	height: 680px;
}

@media screen and (min-width: 959px) {
	#index picture:has(.img-full) .img-full {
		min-width: 1250px;
	}
}

/* メインビジュアル */
.main-visual {
	position: relative;
	margin-bottom: 100px;
}

.main-visual picture {
	display: block;
	width: 100%;
	height: 680px;
	overflow: hidden;
}

.main-visual .main-visual-bg {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

@media screen and (min-width: 959px) {
	.main-visual .main-visual-bg {
		min-width: 1250px;
	}
}

.main-visual-text {
	display: none;
}

/* Purpose */
.purpose {
	display: flex;
	overflow: visible;
	align-items: center;
	gap: 100px;
}

#index .container:first-of-type .purpose {
	margin-top: 0;
}

.purpose-block {
	flex-shrink: 0;
}



.purpose-img {
	position: relative;
	flex: 1;
	min-width: 0;
	margin-right: min(0px, calc((1280px - 100vw) / 2 + 30px));
}

@media screen and (max-width: 1220px) {
	.purpose {
		gap: 25px;
	}
}

.purpose-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.purpose-text {
	margin-top: 60px;
	padding-bottom: 30px;
	font-size: 2.4rem;
	font-family: var(--font-serif);
	font-weight: var(--font-bold);
}

/* purpose-textが連続する場合はmargin/paddingを外す */
.purpose-text + .purpose-text {
	margin-top: 0;
	padding-bottom: 0;
}

/* purpose-text内のbrで20pxの余白 */
.purpose-text p + p {
	margin-top: 20px;
}

/* about us */
.about-us img {
	height: 900px;
}

.about-us-area {
	display: flex;
	gap: clamp(40px, 12vw, 210px);
}

.about-us-title {
	flex-shrink: 0;
}

.about-us-text {
	line-height: 30px;
}

.about-us p + p {
	margin-top: clamp(20px, 2.5vw, 35px);
}

/* タイムライン（index） */
/* タイムラインスクロール固定 */
.timeline-scroll-area {
	height: 300vh;
	position: relative;
}

.timeline-sticky {
	position: sticky;
	top: 100px;
}

.timeline {
	position: relative;
	height: 20px;
	padding: 230px 0;
	box-sizing: content-box;
}

.timeline-line {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	height: 2px;
	background-color: var(--color-gray-light);
	transform: translateY(-50%);
}

/* 青い線（スクロールで伸びる） */
.timeline-line::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--color-primary);
	transform: scaleX(var(--progress, 0));
	transform-origin: left center;
}

.timeline-item {
	position: absolute;
	top: 50%;
	transform: translateX(-50%);
}

.timeline-dot {
	width: 14px;
	height: 14px;
	background-color: var(--color-primary);
	border-radius: 50%;
	transform: translateY(-50%) scale(0);
	transition: transform 0.3s ease;
}

.timeline-dot.visible {
	transform: translateY(-50%) scale(1);
}

.timeline-item .timeline-content {
	opacity: 0;
	transition: opacity 0.4s ease;
}

.timeline-item .timeline-content.visible {
	opacity: 1;
}

/* 4分割の中央に配置 */
.timeline-item:nth-child(2) {
	left: 12.5%;
}

.timeline-item:nth-child(3) {
	left: 37.5%;
}

.timeline-item:nth-child(4) {
	left: 62.5%;
}

.timeline-item:nth-child(5) {
	left: 87.5%;
}

/* 上に配置するコンテンツ */
.timeline-item--above .timeline-content {
	position: absolute;
	bottom: 100%;
	left: 50%;
	margin-bottom: 40px;
	transform: translateX(-50%);
	text-align: center;
	white-space: nowrap;
}

/* 下に配置するコンテンツ */
.timeline-item--below .timeline-content {
	position: absolute;
	top: 100%;
	left: 50%;
	margin-top: 40px;
	transform: translateX(-50%);
	text-align: center;
	white-space: nowrap;
}

.timeline-year {
	font-size: 3.6rem;
	font-family: var(--font-serif);
	color: var(--color-primary);
	font-weight: var(--font-medium);
	text-align: center;
}

.timeline-year span {
	font-size: 3rem;
}

.timeline-year::after {
	content: "";
	display: block;
	width: 20px;
	height: 2px;
	background-color: var(--color-primary);
	margin: 10px auto;
}

.timeline-text {
	font-size: 1.6rem;
	font-family: var(--font-serif);
	font-weight: var(--font-semibold);
	line-height: 1.6;
	text-align: center;
}

/* overview */
.overview img {
	height: 940px;
}

.overview-menu {
	margin-top: 80px;
	list-style: none;
	max-width: 620px;
}

.overview-menu-item {
	padding: 0 10px;
	border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.overview-menu-item:last-child {
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.overview-menu-item a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 35px 0;
	color: var(--color-white);
	font-size: 2.2rem;
	font-family: var(--font-serif);
	font-weight: var(--font-semibold);
	text-decoration: none;
	position: relative;
	transition: opacity 0.3s ease;
}

.overview-menu-item a:hover {
	opacity: 0.7;
}

.overview-menu-item a::before,
.overview-menu-item a::after {
	content: '';
	position: absolute;
	right: 0;
	height: 1px;
	background: var(--color-white);
	transition: right 0.3s ease;
}

.overview-menu-item a:hover::before,
.overview-menu-item a:hover::after {
	right: -8px;
}

.overview-menu-item a::before {
	width: 30px;
	top: 50%;
	transform: translateY(-50%);
}

.overview-menu-item a::after {
	width: 9px;
	transform: translateY(0%) rotate(45deg);
	transform-origin: right center;
}

/* training（index） */
.training {
	overflow: visible;
}

.training .container {
	display: flex;
	justify-content: space-between;
	gap: 140px;
}

.training-title {
	position: sticky;
	top: 80px;
	align-self: flex-start;
}

.training-title .btn-base {
	margin-top: 40px;
}

.index-training-card {
	background-color: var(--color-white);
	overflow: hidden;
	padding: 20px;
	border: solid 1px var(--color-primary);
	border-radius: 5px;
	max-width: 700px;
}

.index-training-card + .index-training-card {
	margin-top: 50px;
}

.index-training-card img {
	width: 100%;
	min-width: 100%;
	height: auto;
	display: block;
}

.index-training-item {
	display: flex;
	padding: 20px 0 8px;
	align-items: center;
}

.index-training-item-left {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	margin-left: -10px;
	padding: 0 20px;
	align-self: stretch;
	border-right: 1px solid var(--color-primary);
	font-family: var(--font-serif);
    font-weight: var(--font-bold);
	color: var(--color-primary);
}

.index-training-year {
	font-size: 3.2rem;
}

.index-training-sub {
	font-size: 1.8rem;
}

.index-training-item-right {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding-left: 20px;
}

.index-training-item-title {
	font-size: 2.2rem;
	color: var(--color-primary);
	margin-bottom: 5px;
}

.index-training-item-right p:last-child {
	font-size: 1.6rem;
	line-height: 1.8;
}

/* greeting */
.greeting {
	margin-top: 200px;
}

.greeting img {
	height: 600px;
}

.greeting .btn-base {
	margin-top: 40px;
}

/* report new-greeting（index スライダー） */
.report .container {
	position: relative;
}

/* レポートスライダーのコンテナ */
.report-title {
	overflow: hidden;
	margin-right: calc(-50vw + 50% + 8.5px);
}

.report-title-header {
	max-width: 1120px;
    width: calc(100% - 80px);
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 60px;
}

.report-title-left {
	display: flex;
	align-items: flex-end;
	gap: 60px;
}

.swiper-nav {
	display: flex;
	gap: 20px;
	flex-shrink: 0;
}

.report-swiper .swiper-slide,
.greeting-swiper .swiper-slide {
	width: auto;
}

/* 左右のナビゲーションボタン */
.report-prev,
.report-next,
.greeting-prev,
.greeting-next {
	width: 48px;
	height: 48px;
	cursor: pointer;
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background-color: #fff;
	border: 1px solid var(--color-primary);
}

/* 矢印（CSS線で描画） */
.report-prev::before,
.report-next::before,
.greeting-prev::before,
.greeting-next::before {
	content: '';
	width: 12px;
	height: 12px;
	border-top: 1px solid var(--color-primary);
	border-right: 1px solid var(--color-primary);
}

.report-prev::before,
.greeting-prev::before {
	transform: rotate(-135deg);
	margin-left: 10%;
}

.report-next::before,
.greeting-next::before {
	transform: rotate(45deg);
	margin-right: 10%;
}

/* ------------------------------------------
   news
   ------------------------------------------ */
#news .news-title {
	font-size: 3.2rem;
	font-family: var(--font-serif);
	font-weight: var(--font-semibold);
	padding: 10px 0px;
	border-bottom: 1px solid var(--color-primary);
}

.news-content {
	margin-top: 60px;
	margin-bottom: 90px;
	font-size: 1.6rem;
	font-weight: var(--font-regular);
	line-height: 1.8;
}

.news-content dl {
	font-size: 1.6rem;
}

#news .center-item {
	margin-bottom: 150px;
}

/* ------------------------------------------
   history
   ------------------------------------------ */
/* 年代タブ */
.decade-tabs {
	display: flex;
	margin-top: 100px;
}

.decade-tab {
	flex: 1;
	text-align: center;
	padding: 15px 35px;
	font-size: 1.8rem;
	font-family: var(--font-serif);
	font-weight: var(--font-medium);
	color: var(--color-gray);
	cursor: pointer;
	position: relative;
}

.decade-tab::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: var(--color-gray);
}

.decade-tab.active {
	color: var(--color-primary);
}

.decade-tab.active::after {
	background-color: var(--color-primary);
}

/* 年代コンテンツ */
#history h4,
#story h4 {
	color: var(--color-primary);
	display: flex;
	align-items: center;
	font-size: 2.2rem;
	font-weight: var(--font-medium);
	padding-bottom: 20px;
}

#history h4::before,
#story h4::before {
	content: '';
	display: block;
	width: 3px;
	height: 22px;
	background-color: var(--color-primary);
	margin-right: 20px;
}

#story h4::before {
	height: 26px;
}

.decade-contents p {
	font-size: 1.8rem;
	font-weight: var(--font-regular);
	padding: 5px 0px;
}

.decade-contents {
	margin-top: 80px;
}

.decade-content {
	display: none;
}

.decade-content.active {
	display: block;
}

.timeline-events {
	min-height: 140px;
}

#history p.highlight {
	font-weight: var(--font-bold);
	color: var(--color-primary);
}

#history p.highlight .year {
	font-weight: var(--font-regular);
	color: var(--color-text);
}

.timeline-events p {
	display: flex;
	line-height: 2;
}

.timeline-events .year {
	flex-shrink: 0;
	width: 60px;
}

/* ------------------------------------------
   story
   ------------------------------------------ */
.story-text {
	margin-bottom: 80px;
}

#story h4.tall-bar::before {
	height: 60px;
}

#story h4 span {
	font-size: 2.4rem;
	color: var(--color-primary);
}

#story h4 .en {
	letter-spacing: 3px;
}

.profile-container {
	display: flex;
	justify-content: space-between;
	margin-bottom: 40px;
}

.profile-area {
	margin-right: 50px;
}

.profile-area p {
	line-height: 2;
}

.profile-area p:nth-of-type(2) {
	margin-bottom: 30px;
}

.profile-img {
	position: relative;
}

.career-column {
	margin-bottom: 80px;
}

.career-column p,
.awards-container p {
	display: flex;
	line-height: 2;
}

.career-column .year,
.awards-container .year {
	flex-shrink: 0;
	width: 120px;
}

/* ------------------------------------------
   philosophy
   ------------------------------------------ */
.philosophy-text {
	margin-bottom: 90px;
}

.philosophy-img {
	position: relative;
	margin-bottom: 80px;
}

.activism-container p,
.humanism-container p {
	line-height: 30px;
}

.activism-container {
	margin-bottom: 60px;
}

/* ------------------------------------------
   library
   ------------------------------------------ */
.library-text {
	margin-bottom: 80px;
}

.shodo-container {
	display: flex;
	justify-content: space-between;
	gap: 50px;
}

.shodo-container img {
	width: 300px;
	padding-bottom: 20px;
}

.shodo-container p {
	font-size: 1.6rem;
	font-weight: var(--font-regular);
	width: calc(100% + 20px);
	margin-left: -10px;
	padding: 5px 0px;
}

.shodo-panel {
	width: 300px;
	height: 640px;
}

/* ------------------------------------------
   training（training.html）
   ------------------------------------------ */
.training-container {
	margin-bottom: 100px;
	transform-origin: top left;
}

.training-text {
	margin-bottom: 80px;
}

/* トレーニングカード */
.training-card {
	position: relative;
	display: flex;
	gap: 20px;
	margin-left: 160px;
	padding-bottom: 20px;
	border-bottom: 2px solid var(--color-primary);
}

.training-card-content {
	position: relative;
	flex: 1;
	min-width: 0;
	padding-left: 30px;
	align-self: flex-start;
}

.training-year-circle {
	position: absolute;
	left: -160px;
	top: 50%;
	transform: translateY(-50%);
	width: 140px;
	height: 140px;
	background: var(--color-primary);
	border-radius: 50%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	z-index: 1;
	color: var(--color-white);
	font-family: var(--font-serif);
	font-weight: var(--font-bold);
}

/* 最初の円から縦線を伸ばす */
.training-card:first-child .training-year-circle::after {
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	width: 2px;
	height: 2000px;
	background: var(--color-primary);
	transform: translateX(-50%);
	z-index: -1;
}

.training-sub-label {
	font-size: 1.6rem;
	text-align: center;
}

.training-year-label {
	font-size: 3.2rem;
}

.training-card-header {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-bottom: 15px;
}

.training-label {
	height: 20px;
	padding-left: 10px;
	border-left: 4px solid var(--color-primary);
	display: flex;
	align-items: center;
}

.training-label p {
	font-size: 1.8rem;
	color: var(--color-primary);
}

.training-card-title {
	font-size: 2.8rem;
	font-family: var(--font-serif);
	font-weight: var(--font-bold);
	color: var(--color-primary);
}

.training-card-desc {
	font-size: 1.6rem;
	font-family: var(--font-serif);
	color: var(--color-text);
}

.training-card-bullet {
	background: var(--color-bg-gray);
	padding: 10px 10px;
}

.training-card-bullet p {
	font-size: 1.4rem;
	font-family: var(--font-serif);
	font-weight: var(--font-semibold);
	color: var(--color-primary);
	margin: 0;
}

.training-card-bullet p::before {
	padding-left: 10px;
	content: '● ';
}

/* 1年目以降のバレット詳細 */
.training-card-bullet:has(.training-bullet-label) {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: auto 1fr;
	gap: 10px 15px;
}

/* 入塾前：1セットのみなので全幅 */
.training-card:first-child .training-card-bullet:has(.training-bullet-label) {
	grid-template-columns: 1fr;
}

.training-bullet-label:nth-child(1) {
	grid-column: 1;
	grid-row: 1;
}

.training-bullet-items:nth-child(2) {
	grid-column: 1;
	grid-row: 2;
}

.training-bullet-label:nth-child(3) {
	grid-column: 2;
	grid-row: 1;
	margin-left: 0;
}

.training-bullet-items:nth-child(4) {
	grid-column: 2;
	grid-row: 2;
}

.training-bullet-label {
	width: 100%;
	height: auto;
	background: var(--color-primary);
	color: var(--color-white);
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1.4rem;
	flex-shrink: 0;
	padding: 3px 15px;
}


.training-bullet-items {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	max-height: 8em;
}

.training-bullet-items p {
	display: flex;
	align-items: center;
}

.training-bullet-items p::before {
	content: '';
	width: 13px;
	height: 13px;
	background: var(--color-primary);
	border-radius: 50%;
	margin-right: 10px;
	flex-shrink: 0;
}

.training-card-img {
	position: relative;
	width: 300px;
	flex-shrink: 0;
	align-self: flex-end;
}

.training-card-img img {
	width: 100%;
	height: auto;
}

/* 斜め線（PC：円へ向かう斜線） */
.training-card::after {
	content: '';
	position: absolute;
	bottom: -1px;
	width: 2px;
	height: 150px;
	background: var(--color-primary);
	transform-origin: bottom center;
	transform: rotate(-35deg);
}

/* コネクター（PC版） */
.training-connector {
	position: relative;
	height: 250px;
}

/* 縦線（PC版：余白のみ） */
.training-connector-line {
	height: 100px;
}

/* 入塾ボックス */
.training-connector-box {
	position: absolute;
	left: calc(50% + 80px);
	top: 50%;
	transform: translate(-50%, -50%);
	width: 400px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--color-primary);
	font-size: 2.6rem;
	font-weight: var(--font-semibold);
	font-family: var(--font-serif);
	color: var(--color-primary);
	background: #fff;
}

/* 卒業ボックス（色反転） */
.training-connector-box.is-inverted {
	background: var(--color-primary);
	color: #fff;
}

/* 横線（縦線からボックスまで） */
.training-connector::before {
	content: '';
	position: absolute;
	left: 70px;
	top: 50%;
	width: calc(50% + 80px - 70px - 200px);
	height: 2px;
	background: var(--color-primary);
	transform: translateY(-50%);
}

/* 横線の左端の円 */
.training-connector::after {
	content: '';
	position: absolute;
	left: 65px;
	top: 50%;
	width: 10px;
	height: 10px;
	background: var(--color-primary);
	border-radius: 50%;
	transform: translateY(-50%);
}

.training-img p {
	margin-top: 10px;
	font-size: 1.4rem;
	font-weight: var(--font-regular);
	text-align: center;
}

/* PC版ではページネーション非表示 */
.training-swiper .swiper-pagination {
	display: none;
	position: relative;
	margin-top: 20px;
}

.training-swiper .swiper-pagination-bullet {
	background: var(--color-gray);
}

.training-swiper .swiper-pagination-bullet-active {
	background: var(--color-primary);
}

/* ------------------------------------------
   report（report.html）
   ------------------------------------------ */
.new-greeting {
	margin-bottom: 150px;
}

#report-list .report-card,
#report .report-card {
	width: 100%;
	max-width: none;
}

#report .report-card-img {
	position: relative;
	height: 250px;
}

/* 挨拶セクション */
.greeting-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 40px;
	margin-bottom: 80px;
}

.greeting-container:has(+ :not(.greeting-container)) {
	margin-bottom: 150px;
}

.greeting-container .report-text {
	width: 50%;
}

.greeting-container .section-with-bar {
	margin-bottom: 40px;
}

.greeting-container .copyright-img {
	width: 45%;
}

/* レポートカード：3カラムグリッド */
.report-container {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-bottom: 40px;
}

.greeting-container .section-with-bar::before {
	margin-right: 20px;
}

.role-name {
	font-size: 1.8rem;
	font-weight: var(--font-medium);
	color: var(--color-primary);
}

.staff-name {
	font-size: 2.4rem;
	font-weight: var(--font-bold);
	color: var(--color-primary);
}

.company-name {
	font-size: 1.8rem;
	font-family: var(--font-sans);
	font-weight: var(--font-regular);
	margin-top: 10px;
}

/* ------------------------------------------
   interview
   ------------------------------------------ */
#interview .section-heading {
	font-size: 3.2rem;
	color: var(--color-text);
}

.interview-container p {
	margin-bottom: 60px;
	line-height: 30px;
}

.interview-image {
	position: relative;
	display: block;
	margin: 0 auto 60px;
}

.interview-profile {
	display: grid;
	grid-template-columns: 3px 1fr;
	grid-template-rows: auto auto;
	column-gap: 20px;
	margin-bottom: 40px;
}

.interview-profile::before {
	content: '';
	grid-column: 1;
	grid-row: 1 / -1;
	background-color: var(--color-primary);
}

.profile-name {
	font-size: 2rem;
	font-weight: var(--font-bold);
}

.profile-text {
	font-size: 1.6rem;
	font-weight: var(--font-medium);
	margin-top: 5px;
}

.interview-credit {
	text-align: end;
	font-size: 1.4rem;
	line-height: 1.5;
}

.swiper-nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.swiper-nav a {
	color: var(--color-primary);
	transition: opacity 0.3s ease;
}

.swiper-nav a:hover {
	opacity: 0.7;
}

/* ------------------------------------------
   information
   ------------------------------------------ */
.information-container {
	padding: 40px 20px;
	border: solid 1px var(--color-primary);
	margin-bottom: 80px;
}

#information p {
	line-height: 30px;
}

.information-container p {
	text-align: center;
}

.information-title,
.info-heading {
	color: var(--color-primary);
	font-size: 2.2rem;
	font-weight: var(--font-medium);
	line-height: 1.2 !important;
}

.information-title {
	margin-bottom: 25px;
}

.info-container {
	display: flex;
	flex-direction: column;
	gap: 40px;
	margin-bottom: 80px;
}

#information .section-with-bar {
	margin-bottom: 10px;
}

.schedule-container {
	display: flex;
	flex-direction: column;
	gap: 30px;
	margin-bottom: 80px;
}

.schedule-block {
	display: flex;
	font-size: 2rem;
	font-weight: var(--font-regular);
	height: 60px;
}

.schedule-month {
	background-color: var(--color-primary);
	color: var(--color-white);
	width: 160px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	text-align: center;
	line-height: 1.2 !important;
}

.schedule-month::after {
	content: '';
	position: absolute;
	bottom: -20px;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-top: 10px solid var(--color-gray);
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
}

.schedule-block:last-of-type .schedule-month::after,
.schedule-block.no-arrow .schedule-month::after {
	display: none;
}

.schedule-content {
	border: solid 1px var(--color-primary);
	width: 100%;
	display: flex;
	align-items: center;
	padding: 0 4%;
}

.no-arrow .schedule-content {
	background-color: #fffab6;
}

.booklet-block {
	display: flex;
	justify-content: space-between;
	height: 355px;
}

.booklet-text {
	width: 780px;
}

.booklet-text p {
	margin-bottom: 40px;
}

.booklet-img {
	position: relative;
	margin-left: 90px;
}

/* ------------------------------------------
   contact
   ------------------------------------------ */
label.required::after {
	content: " *";
	color: red;
}

.form-container {
	display: flex;
	padding: 20px 0px;
}

#contact .font-serif + .form-container {
	margin-top: 60px;
}

.label-text {
	display: flex;
	align-items: center;
	font-weight: var(--font-medium);
	font-size: 1.8rem;
	padding: 25px 0px;
	width: 320px;
}

.input-field {
	display: flex;
	flex-direction: column;
	width: 100%;
}

.form-label {
	font-weight: var(--font-regular);
	font-size: 1.8rem;
	background-color: var(--color-bg-gray);
	padding: 25px 0px;
	padding-left: 20px;
	border-radius: 5px;
	width: 100%;
}

#contact .gray-line {
	margin: 0px;
}

.form-container textarea {
	resize: none;
	height: 300px;
}

.btn-base.submit-btn {
	background-color: var(--color-primary);
	color: var(--color-white);
	display: block;
	transition: 0.3s ease;
}

.btn-base.submit-btn:hover {
	background-color: var(--color-white);
	color: var(--color-primary);
	border: solid 1px var(--color-primary);
}

.terms-section {
	display: flex;
	flex-direction: column;
	padding-top: 20px;
}

.terms-title {
	font-size: 2rem;
	font-weight: var(--font-medium);
	margin-bottom: 10px;
}

.terms-box {
	border: 1px solid #ccc;
	padding: 20px;
	height: 250px;
	overflow-y: scroll;
	border-radius: 5px;
	line-height: 1.8;
}

.terms-box p {
	margin-bottom: 12px;
	font-size: 1.4rem;
}

.terms-box p:last-child {
	margin-bottom: 0;
}

.terms-agree {
	margin-top: 20px;
	text-align: center;
}

.terms-agree-label {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
}

.terms-agree-label input[type="checkbox"] {
	-webkit-appearance: none;
	appearance: none;
	width: 20px;
	height: 20px;
	border: 2px solid #ccc;
	border-radius: 3px;
	cursor: pointer;
	position: relative;
}

.terms-agree-label input[type="checkbox"]:checked {
	background-color: var(--color-primary);
	border-color: var(--color-primary);
}

.terms-agree-label input[type="checkbox"]:checked::after {
	content: "";
	position: absolute;
	left: 5px;
	top: 1px;
	width: 6px;
	height: 11px;
	border: solid var(--color-white);
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

.terms-error,
.form-error {
	display: none;
	color: var(--color-error);
	font-size: 1.4rem;
	margin-top: 10px;
}

.error .form-label {
	border: 1px solid var(--color-error);
}

.error .form-error,
.error .terms-error {
	display: block;
}

.error .terms-agree-label input[type="checkbox"] {
	border-color: var(--color-error);
}

.terms-error {
	text-align: center;
}

.terms-annotation {
	margin-top: 30px;
}

#contact .btn-base.submit-btn{
	margin: 80px auto 150px;
}

/* ------------------------------------------
   confirm
   ------------------------------------------ */
#confirm .gray-line {
	margin: 0px;
}

#confirm .form-container {
	padding: 0px;
}

#confirm .font-serif + .form-container {
	margin-top: 60px;
}

#confirm .label-text {
	padding: 30px 0px;
}

#confirm .btn-base {
	display: block;
}

.text-attention {
	width: 100%;
	margin-top: 20px;
	padding: 20px;
	border-radius: 3px;
	font-size: 1.6rem;
	border: solid 1px var(--color-primary);
	color: var(--color-primary);
	text-align: center;
}

.confirm-text {
	align-items: center;
	font-weight: var(--font-regular);
	font-size: 1.8rem;
	line-height: 30px;
	padding: 30px 0px;
}

.btn-container {
	display: flex;
	justify-content: center;
	gap: 30px;
	margin-top: 60px;
	text-align: center;
}

/* ------------------------------------------
   privacy
   ------------------------------------------ */
.privacy-text {
	margin-top: 60px;
	text-align: center;
}

@media screen and (max-width: 1200px) {
	.nav-pc {
		gap: 10px;
	}

	.nav-pc a {
		font-size: 1.4rem;
	}

	.header-login {
		width: 160px;
	}
}

@media screen and (max-width: 1050px) {
	.nav-pc {
		gap: 5px;
	}

	.nav-pc a {
		font-size: 1.3rem;
	}

	.header-login {
		width: 140px;
		font-size: 1.3rem;
	}
}


/* ============================================
   モバイル版 (max-width: 959px)
   ============================================ */

@media screen and (max-width: 959px) {

	/* ------------------------------------------
	   共通
	   ------------------------------------------ */
	section {
		margin-top: 100px;
	}
	.container {
		width: calc(100% - 40px);
	}

	img.img-full:not(picture *) {
		height: 250px;
	}

	#history img.img-full:not(picture *)
	#library img.img-full:not(picture *)
	#training img.img-full:not(picture *) {
		object-position: 70% center;
	}

	#information img.img-full:not(picture *) {
		object-position: 55% center;
	}

	#report img.img-full:not(picture *) {
		object-position: 0% center;
	}

	.sp-break {
		display: block;
	}

	.pc-none {
		display: flex !important;
	}

	.sp-none {
		display: none !important;
	}

	.pc-break {
		display: none;
	}

	h3.section-heading {
		font-size: 2.4rem;
	}

	/* ------------------------------------------
	   ヘッダー・ナビゲーション（モバイル）
	   ------------------------------------------ */
	.header-container {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		gap: 0;
		padding: 0px 0px 0px 15px;
	}

	.hamburger {
		display: flex;
	}

	.nav {
		position: fixed;
		top: 0;
		right: -1000px;
		height: 100vh;
		width: 100%;
		background-color: var(--color-white);
		flex-direction: column;
		align-items: flex-start;
		justify-content: flex-start;
		padding: 80px 40px 40px;
		gap: 0;
		z-index: 1000;
		transition: right 0.3s ease;
		overflow-y: auto;
	}

	.nav.open {
		right: 0;
		background-color: var(--color-primary);
	}

	/* PC用ナビゲーションはモバイル時非表示 */
	.nav-pc {
		display: none;
	}

	/* モバイル用ナビゲーション表示 */
	.nav-mobile {
		display: block;
		width: 100%;
	}

	.nav-mobile-list {
		list-style: none;
	}

	.nav-mobile-list:last-of-type {
		margin-bottom: 30px;
	}

	.nav-mobile-title {
		font-size: 1.8rem;
		font-family: var(--font-serif);
		padding: 20px 0;
		border-top: 1px solid rgba(255, 255, 255, 0.2);
	}

	/* お知らせの上のボーダーなし */
	.nav-mobile-list:first-of-type .nav-mobile-title:first-child {
		border-top: none;
	}

	.nav-mobile-title a {
		color: var(--color-white);
		transition: opacity 0.3s ease;
	}

	.nav-mobile-title a:hover {
		opacity: 0.7;
	}

	.nav-mobile-sub {
		font-size: 1.6rem;
		font-family: var(--font-serif);
		margin-bottom: 20px;
	}

	.nav-mobile-sub a {
		color: var(--color-white);
		transition: opacity 0.3s ease;
	}

	.nav-mobile-sub a::before {
		content: "・ ";
	}

	.nav-mobile-sub a:hover {
		opacity: 0.7;
	}

	.nav-mobile-login {
		margin-bottom: 35px;
	}

	.nav-mobile-login a {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 300px;
		height: 60px;
		background-color: var(--color-white);
		color: var(--color-primary);
		border-radius: 10px;
		font-size: 1.6rem;
		font-family: var(--font-serif);
		font-weight: var(--font-semibold);
		transition: opacity 0.3s ease;
	}

	.nav-mobile-login a:hover {
		opacity: 0.8;
	}

	/* モバイル用アコーディオンメニュー */
	.nav-mobile-accordion {
		position: relative;
	}

	.nav-accordion-toggle {
		display: flex;
		align-items: center;
		justify-content: space-between;
		cursor: pointer;
		color: var(--color-white);
	}

	.nav-accordion-icon {
		display: inline-block;
		width: 12px;
		height: 12px;
		margin-left: 10px;
		position: relative;
	}

	.nav-accordion-icon::before,
	.nav-accordion-icon::after {
		content: "";
		position: absolute;
		background-color: var(--color-white);
		transition: transform 0.3s ease;
	}

	.nav-accordion-icon::before {
		width: 12px;
		height: 2px;
		top: 50%;
		left: 0;
		transform: translateY(-50%);
	}

	.nav-accordion-icon::after {
		width: 2px;
		height: 12px;
		top: 0;
		left: 50%;
		transform: translateX(-50%);
	}

	.nav-mobile-accordion.open .nav-accordion-icon::after {
		transform: translateX(-50%) rotate(90deg);
	}

	.nav-accordion-content {
		list-style: none;
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.5s ease;
		padding: 0;
	}

	.nav-mobile-accordion.open .nav-accordion-content {
		max-height: 300px;
	}

	/* ------------------------------------------
	   パンくず（モバイル）
	   ------------------------------------------ */
	.breadcrumb {
		top: 10px;
		margin: 0 10px;
	}

	/* ------------------------------------------
	   フッター（モバイル）
	   ------------------------------------------ */
	.foot-container {
		margin-top: 100px;
	}

	.disclaimer {
		display: block;
		height: auto;
		padding: 10px;
		line-height: 1.6;
	}

	.foot-menu {
		display: block;
	}

	.foot-btn-area {
		align-items: center;
	}

	.foot-map {
		margin-left: auto;
		margin-right: auto;
		margin-top: 60px;
		display: grid;
		grid-template-columns: 1fr 1fr;
		grid-template-rows: auto auto;
		align-items: start;
		gap: 25px min(70px, 5vw);
		width: fit-content;
		max-width: 100%;
		text-align: left;
	}

	/* 左列上: お知らせ/®青経塾とは/歴史 */
	.foot-map .foot-nav:nth-child(1) {
		grid-column: 1;
		grid-row: 1;
	}

	/* 左列下: 塾主 遠山昌夫 */
	.foot-map .foot-nav:nth-child(2) {
		grid-column: 1;
		grid-row: 2;
	}

	/* 右列上: 研修内容/輝く塾生 */
	.foot-map .foot-nav:nth-child(3) {
		grid-column: 2;
		grid-row: 1;
	}

	/* 右列下: 入塾について */
	.foot-map .foot-nav:nth-child(4) {
		grid-column: 2;
		grid-row: 2;
	}

	/* ------------------------------------------
	   ニュースアイテム（モバイル）
	   ------------------------------------------ */
	.news-item {
		padding: 30px 0px;
		flex-wrap: wrap;
		gap: 10px 15px;
	}

	.news-tag {
		margin: 0;
	}

	.news-item dd:last-child {
		width: 100%;
		margin-left: 0;
	}

	/* ------------------------------------------
	   ページネーション（モバイル）
	   ------------------------------------------ */
	.pagination {
		gap: 4px;
		margin-top: 40px;
		margin-bottom: 40px;
	}

	.pagination-btn {
		width: 36px;
		height: 36px;
		font-size: 1.3rem;
	}

	.pagination-ellipsis {
		width: 30px;
		height: 36px;
	}

	/* ------------------------------------------
	   index（モバイル）
	   ------------------------------------------ */
	#index picture:has(.img-full) {
		height: 900px;
		overflow: hidden;
	}

	#index picture:has(.img-full) .img-full {
		height: 900px;
		object-fit: cover;
		object-position: bottom;
	}

	/* メインビジュアル モバイル */
	.main-visual {
		overflow: hidden;
		margin-bottom: min(100px, 18vw);
	}

	#index .main-visual picture {
		height: min(900px, 162vw);
	}

	#index .main-visual picture .main-visual-bg {
		min-width: auto;
		object-position: 80% center;
	}

	.main-visual-text {
		display: block;
		position: absolute;
		top: 48%;
		left: 50%;
		transform: translate(-50%, -50%);
		height: 70%;
	}

	.purpose {
		display: block;
		padding-left: 0;
	}

	.purpose-block {
		margin-bottom: 60px;
	}

	.purpose-text {
		font-size: 2rem;
	}

	.purpose-img {
		margin-right: 0;
		padding-right: 0;
	}

	.timeline-scroll-area {
		height: 300vh;
	}

	/* タイムライン縦型レイアウト */
	.timeline {
		height: auto;
		padding: 50px 0px 10px 40px;
		margin: 40px 0;
		margin-left: 40px;
	}

	.timeline-line {
		top: 0;
		bottom: 0;
		left: 8px;
		right: auto;
		width: 2px;
		height: 100%;
		transform: none;
	}

	.timeline-line::before {
		width: 100%;
		height: 100%;
		transform: scaleY(var(--progress, 0));
		transform-origin: top center;
	}

	.timeline-item {
		position: relative;
		top: auto;
		left: auto !important;
		transform: none;
		margin-bottom: 40px;
	}

	.timeline-item:last-child {
		margin-bottom: 0;
	}

	.timeline-dot {
		position: absolute;
		left: -38px;
		top: 5px;
		transform: scale(0);
	}

	.timeline-dot.visible {
		transform: scale(1);
	}

	.timeline-item--above .timeline-content,
	.timeline-item--below .timeline-content {
		position: relative;
		top: -15px;
		bottom: auto;
		margin: 0;
		white-space: normal;
	}

	.timeline-year {
		text-align: left;
	}

	.timeline-year::after {
		margin: 10px 0;
	}

	.timeline-text {
		text-align: left;
	}

	/* 1974年以外のtimeline-textを1行に */
	.timeline-item:not(:nth-child(2)) .timeline-content {
		display: flex;
		flex-wrap: wrap;
		align-items: baseline;
	}

	.timeline-item:not(:nth-child(2)) .timeline-year {
		width: 100%;
	}

	.timeline-item:not(:nth-child(2)) .timeline-text {
		display: inline;
	}

	/* about-us（モバイル） */
	.about-us-area {
		display: block;
	}

	.about-us-text {
		margin-top: 40px;
	}

	.about-us .media-overlay {
		display: flex;
		flex-direction: column;
	}

	.about-us img {
		position: absolute;
		height: 100%;
		object-position: 30% center;
	}

	.about-us .media-overlay .container {
		position: relative;
		top: 0;
		left: 0;
		transform: none;
		padding: 80px 0;
	}

	/* overview（モバイル） */

	.overview img {
		height: 800px;
		object-position: 63% center;
	}

	/* training index（モバイル） */
	.training .container {
		display: block;
	}

	.training-title {
		position: unset;
		margin-bottom: 60px;
	}

	.index-training-card {
		padding: 10px;
	}

	.index-training-item {
		flex-direction: column;
		padding: 15px 10px 5px;
	}

	.index-training-item-left {
		justify-content: flex-start;
		width: 100%;
		margin: 0;
		padding-bottom: 10px;
		border-right: none;
		border-bottom: 1px solid var(--color-primary);
	}

	.index-training-year {
		font-size: 2.6rem;
	}

	.training-sub-label {
		font-size: 2rem;
	}

	.index-training-item-right {
		padding: 10px 0 0;
		width: 100%;
	}

	.index-training-item-title {
		font-size: 1.8rem;
	}

	.index-training-item-right p:last-child {
		font-size: 1.4rem;
	}

	.index-training-card-container {
		justify-items: center;
	}

	/* greeting（モバイル） */
	.greeting {
    	margin-top: 100px;
	}

	.greeting img {
		object-position: 5% center;
	}

	/* report new-greeting slider（モバイル） */
	.report-title {
		margin-right: 0;
		overflow: hidden;
	}

	.report-title-header {
		width: 100%;
	}

	.report-card {
		width: calc(100vw - 40px);
		max-width: 430px;
	}

	.report .info-btn,
	.new-greeting .info-btn {
		margin-top: 30px;
	}

	/* CTA（モバイル） */
	.cta-img {
		margin-left: 20px;
		margin-right: 20px;
		display: flex;
		flex-direction: column;
	}

	.cta-img img {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		object-position: 24% center;
	}

	.cta-img .container {
		position: relative;
		top: 0;
		left: 0;
		transform: none;
		flex: 1;
		padding: 30px 0;
	}

	.cta-heading {
		font-size: 4.8rem;
	}

	.cta-notice {
		padding: 20px 10px;
	}

	.cta-title {
		font-size: 1.8rem;
		padding-bottom: 20px;
	}

	.cta-body {
		font-size: 1.2rem;
	}

	/* ------------------------------------------
	   news（モバイル）
	   ------------------------------------------ */
	#news .news-title {
		font-size: 2.4rem;
	}

	#news .media-overlay .img-full {
		object-position: 0% center;
	}

	/* ------------------------------------------
	   history（モバイル）
	   ------------------------------------------ */
	.decade-tabs {
		white-space: nowrap;
		overflow-x: auto;
	}

	.decade-contents p {
		font-size: 1.6rem;
	}

	/* ------------------------------------------
	   story（モバイル）
	   ------------------------------------------ */
	.profile-area {
		margin: 0;
	}

	.profile-container {
		display: block;
		margin-bottom: 60px;
	}

	.profile-container p {
		font-size: 1.6rem;
	}

	.profile-img {
		margin: 40px 30px 0;
	}
	
	.career-column {
		margin-bottom: 60px;
	}

	.career-column p {
		font-size: 1.6rem;
	}

	.career-column:first-child .year {
		width: 120px;
	}

	.awards-container p {
		font-size: 1.6rem;
	}

	/* ------------------------------------------
	   philosophy（モバイル）
	   ------------------------------------------ */
	.philosophy-text {
		margin-bottom: 40px;
	}

	/* ------------------------------------------
	   library（モバイル）
	   ------------------------------------------ */
	.shodo-container {
		display: grid;
		gap: 40px;
		flex-wrap: wrap;
		grid-template-columns: auto auto;
		justify-items: center;
		margin-bottom: 60px;
	}

	.shodo-container img {
		width: auto;
	}

	.shodo-panel {
		width: auto;
		height: auto;
	}

	/* ------------------------------------------
	   training（モバイル）
	   ------------------------------------------ */
	.training-swiper .swiper-pagination {
		display: block;
	}

	.training-card {
		flex-direction: column;
		margin-left: 0;
	}

	.training-card-title {
		font-size: 2rem;
	}

	.training-card-desc {
		font-size: 1.4rem;
	}

	.training-year-circle {
		position: static;
		left: auto;
		top: auto;
		transform: none;
		width: 80px;
		height: 80px;
		flex-shrink: 0;
	}

	.training-sub-label {
		font-size: 1rem;
		text-align: center;
	}

	.training-main-label {
		font-size: 2rem;
	}

	.training-year-label {
		font-size: 2rem;
	}

	.training-card-content {
		display: grid;
		grid-template-columns: 80px 1fr;
		gap: 15px 15px;
		padding: 0;
		width: 100%;
	}

	.training-year-circle {
		grid-column: 1;
		grid-row: 1 / -1;
		align-self: start;
	}

	.training-card-header {
		grid-column: 2;
		min-width: 0;
		margin: 0;
	}

	/* 卒業後：要旨を円の中心に揃える */
	.training-card:last-of-type .training-year-circle {
		align-self: center;
	}

	.training-card:last-of-type .training-card-header {
		align-self: center;
	}

	.training-card-bullet {
		grid-column: 1 / -1;
		width: 100%;
		height: auto;
	}

	/* バレット詳細（モバイル版：2カラムグリッド） */
	.training-card-bullet:has(.training-bullet-label) {
		display: flex;
		flex-direction: column;
		gap: 10px
	}

	.training-bullet-label {
		width: 100%;
		height: auto;
		writing-mode: horizontal-tb;
		text-align: center;
		margin: 0;
	}

	.training-bullet-items {
		display: block;
		columns: 2;
		max-height: none;
		margin: 0;
	}

	.training-card-img {
		width: 100%;
		order: -1;
	}

	/* 斜め線を非表示 */
	.training-card::after {
		display: none;
	}

	/* 円からの縦線を非表示 */
	.training-card:first-child .training-year-circle::after {
		display: none;
	}

	/* コネクター（モバイル版：縦並び中央） */
	.training-connector {
		display: flex;
		flex-direction: column;
		align-items: center;
		height: auto;
		margin-top: 0;
	}

	/* 線のみのコネクター（モバイル版） */
	.training-connector-line {
		display: block;
		width: 2px;
		height: 40px;
		background: var(--color-primary);
		margin: 0 auto;
	}

	/* 入塾ボックスの上下に縦線 */
	.training-connector::before,
	.training-connector::after {
		content: '';
		display: block;
		width: 2px;
		height: 40px;
		background: var(--color-primary);
		position: static;
		left: auto;
		top: auto;
		transform: none;
		border-radius: 0;
	}

	.training-connector-box {
		position: static;
		left: auto;
		transform: none;
		width: 100%;
		height: auto;
		padding: 20px 0;
		font-size: 2rem;
	}

	/* ------------------------------------------
	   report（モバイル）
	   ------------------------------------------ */
	.greeting-container {
		flex-direction: column;
		align-items: center;
		gap: 30px;
		margin-bottom: 60px;
	}

	.greeting-container .section-with-bar {
		margin-bottom: 30px;
	}

	.greeting-container:nth-of-type(even) {
		flex-direction: column-reverse;
	}

	.greeting-container:nth-of-type(odd) {
		flex-direction: column;
	}

	.greeting-container .report-text {
		width: 100%;
	}

	.greeting-container .copyright-img {
		width: 100%;
	}

	.greeting-container:has(+ :not(.greeting-container)) {
    	margin-bottom: 80px;
	}

	.new-greeting {
    	margin-bottom: 80px;
	}

	.report-container {
		display: block;
		justify-items: center;
	}

	.report-card {
		margin-bottom: 25px;
	}

	#report-list .report-card,
	#report .report-card {
		max-width: 360px;
	}

	/* ------------------------------------------
	   interview（モバイル）
	   ------------------------------------------ */
	#interview .section-heading {
		font-size: 2.4rem;
	}

	#interview .tall-bar p {
		padding-bottom: 30px;
	}

	#interview .tall-bar p::before {
		margin-right: 20px;
	}

	.interview-container p {
		margin-bottom: 40px;
	}

	.interview-image {
		margin-bottom: 40px;
	}

	/* ------------------------------------------
	   information（モバイル）
	   ------------------------------------------ */
	.info-container {
		gap: 30px;
		margin-bottom: 60px;
	}
	
	.schedule-container {
		margin-bottom: 60px;
	}

	.schedule-block {
		font-size: 1.4rem;
	}

	.information-title, .info-heading {
		font-size: 2rem;
	}

	/* booklet-block: テキスト→画像→ボタンの順に並び替え */
	.booklet-block {
		flex-direction: column;
		height: auto;
		align-items: center;
	}

	.booklet-text {
		display: contents;
	}

	.booklet-text p {
		order: 1;
	}

	.booklet-img {
		order: 2;
		margin-left: 0;
		margin-bottom: 40px;
		text-align: center;
		width: 80%;
	}

	.booklet-text .btn-base {
		order: 3;
		align-items: center;
	}

	.contact-banner img {
		object-position: 60% center;
		margin-top: 80px;
	}

	.contact-banner-content {
		padding: 0 10px;
		gap: 30px;
	}

	#information .contact-banner .section-title-sub {
		font-size: 1.3rem;
	}

	.contact-banner-arrow::after {
		width: 15px;
	}

	.contact-banner-arrow::before {
		width: 42px;
	}

	/* ------------------------------------------
	   contact（モバイル）
	   ------------------------------------------ */
	.form-container {
		flex-direction: column;
		gap: 10px;
	}

	.label-text {
		width: 100%;
		padding: 0;
	}

	.form-label {
		padding: 15px;
	}

	.form-container textarea {
		height: 250px;
	}

	.terms-section {
		gap: 10px;
	}

	/* ------------------------------------------
	   confirm（モバイル）
	   ------------------------------------------ */
	#confirm .form-container {
		padding: 20px 0;
	}

	#confirm .label-text {
		padding: 0;
	}

	.confirm-text {
		padding: 0;
		padding-top: 10px;
	}

	.btn-container {
		display: grid;
		margin-bottom: 0;
	}
}
