/**
 * 1.0 募集要項ページの基盤
 *
 * 募集概要、年度別学費、出願手順、注意事項、Web出願確認領域のページ固有レイアウトを管理する。
 * 色・余白など入学情報ページ群で共有するデザイントークンはadmissions/base.cssから継承し、
 * このファイルでは募集要項だけに必要な構造とレスポンシブ差分に限定して定義する。
 * 共通値を直接色コードで複製しないことで、ブランドカラー変更時の修正箇所と上書き競合を増やさない。
 */

.page-guidelines {
	background: var(--white);
}

.guidelines-details,
.guidelines-tuition {
	padding: 104px 0;
}

.guidelines-details {
	background: var(--white);
}

.guidelines-tuition {
	background: #fffafc;
	border-top: 1px solid rgba(239, 120, 188, 0.65);
}

.guidelines-section-head {
	max-width: 760px;
	margin: 0 auto 46px;
	text-align: center;
}

.guidelines-section-head .accent-line {
	margin-inline: auto;
}

/**
 * 2.0 募集概要（デスクトップ）
 *
 * 対象学年、出願区分、募集時期などを一覧比較できるよう、PCでは複数列の概要カードで表示する。
 */

.details-table-wrap {
	overflow: hidden;
	border: 1px solid rgba(239, 120, 188, 0.95);
	border-radius: 18px;
	box-shadow: 0 14px 36px rgba(158, 83, 105, 0.06);
}

.details-table {
	width: 100%;
	border-collapse: collapse;
	background: var(--white);
	table-layout: fixed;
}

.details-table th,
.details-table td {
	padding: 23px 20px;
	border-right: 1px solid rgba(239, 120, 188, 0.95);
	border-bottom: 1px solid rgba(239, 120, 188, 0.95);
	text-align: center;
	vertical-align: middle;
}

.details-table tr > *:last-child {
	border-right: 0;
}

.details-table tbody tr:last-child > * {
	border-bottom: 0;
}

.details-table thead th {
	color: var(--white);
	background: linear-gradient(135deg, var(--wine-deep), var(--wine));
	font-family: "Yu Mincho", serif;
	font-size: 15px;
	letter-spacing: 0.1em;
}

.details-table thead th:first-child {
	width: 170px;
}

.details-table tbody th {
	color: var(--rose);
	background: rgba(239, 120, 188, .030);
	font-size: 13px;
	letter-spacing: 0.08em;
}

.details-table td {
	color: var(--muted);
	font-size: 13px;
	line-height: 1.8;
}

.details-table td small {
	font-size: 11px;
}

.details-table__summary {
	color: var(--rose);
	font-weight: 600;
}

.details-table__new-note {
	color: #3f383b;
	background: #eeeeee;
	font-weight: 500;
	line-height: 1.75;
	text-align: left;
}

.details-table__new-note-line {
	display: block;
	white-space: nowrap;
}

/**
 * 2.1 募集概要（スマートフォン）
 *
 * 狭い画面では概要カードを縦方向へ並べ替え、項目名と値の対応関係を崩さない。
 */

.details-mobile {
	display: none;
}

/**
 * 3.0 年度別学費
 *
 * 入学金・授業料・その他費用を同じ表構造で比較できるようにし、強調すべき金額だけをアクセント表示する。
 */

.tuition-panel {
	max-width: 1040px;
	margin-inline: auto;
	padding: 44px 46px 34px;
	background: var(--white);
	border: 1px solid rgba(239, 120, 188, 0.95);
	border-radius: 20px;
	box-shadow: 0 16px 42px rgba(158, 83, 105, 0.07);
}

.tuition-table-wrap {
	overflow: hidden;
	border: 1px solid rgba(239, 120, 188, 0.98);
	border-radius: 16px;
}

.tuition-table {
	width: 100%;
	table-layout: fixed;
	border-collapse: collapse;
	background: var(--white);
}

.tuition-table th,
.tuition-table td {
	height: 68px;
	padding: 16px 20px;
	border-right: 1px solid rgba(239, 120, 188, 0.98);
	border-bottom: 1px solid rgba(239, 120, 188, 0.98);
	text-align: center;
	vertical-align: middle;
}

.tuition-table tr > *:last-child {
	border-right: 0;
}

.tuition-table tbody tr:last-child > * {
	border-bottom: 0;
}

.tuition-table thead th {
	color: var(--rose);
	background: rgba(239, 120, 188, .055);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
}

.tuition-table tbody th {
	width: 34%;
	color: var(--rose);
	background: #fff9fb;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.06em;
}

.tuition-table tbody td {
	color: #5f5559;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.02em;
}

.tuition-table__total th {
	color: var(--rose);
	background: rgba(239, 120, 188, .055);
}

.tuition-table tbody .tuition-table__total td {
	color: var(--white);
	background: linear-gradient(135deg, var(--wine-deep), var(--wine));
	font-weight: 700;
}

.tuition-notes {
	margin-top: 16px;
	color: var(--muted);
	font-size: 11px;
	line-height: 1.75;
}

.tuition-notes p {
	margin: 0;
}

.tuition-notes p + p {
	margin-top: 2px;
}

.tuition-payment-info {
	margin-top: 30px;
	padding-top: 28px;
	border-top: 1px solid rgba(239, 120, 188, 0.95);
}

.tuition-payment-info__item + .tuition-payment-info__item {
	margin-top: 24px;
}

.tuition-payment-info__item h3 {
	margin: 0 0 8px;
	color: var(--wine);
	font-family: "Yu Mincho", serif;
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 0.08em;
}

.tuition-payment-info__item p,
.tuition-payment-info__notice {
	margin: 0;
	color: #4f464a;
	font-size: 14px;
	line-height: 1.9;
}

.tuition-payment-info__item strong {
	color: var(--rose);
	font-weight: 700;
}

.tuition-payment-info__notice {
	margin-top: 26px;
	padding-top: 22px;
	border-top: 1px dashed rgba(158, 83, 105, 0.35);
}

/**
 * 4.0 出願フロー全体
 *
 * 事前確認から願書送信までの大きな流れを先に示し、その後の詳細手順へ自然に接続する。
 */

.guidelines-flow {
	padding: 110px 0;
	background: linear-gradient(180deg, rgba(239, 120, 188, .030), rgba(239, 120, 188, .055));
	border-top: 1px solid rgba(239, 120, 188, 0.72);
	border-bottom: 1px solid rgba(239, 120, 188, 0.72);
}

.guidelines-flow__head {
	margin-bottom: 58px;
}

.guidelines-flow__layout {
	display: grid;
	grid-template-columns: 1.08fr 0.92fr;
	gap: 34px;
	align-items: start;
}

.guidelines-flow__main {
	padding-top: 2px;
}

.guidelines-flow__aside {
	display: grid;
	gap: 24px;
	align-self: start;
}

.guidelines-flow__photo {
	margin: 0;
	overflow: hidden;
	aspect-ratio: 16 / 9;
	background: var(--white);
	border: 1px solid rgba(239, 120, 188, 0.92);
	border-radius: 18px;
	box-shadow: 0 16px 40px rgba(158, 83, 105, 0.09);
}

.guidelines-flow__photo img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	object-position: center center;
}

/**
 * 5.0 出願手順
 *
 * 必要書類・入力・確認・送信を番号付きステップで整理し、各工程で迷わない読み順を保つ。
 */

.vertical-flow {
	position: relative;
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 12px;
}

.vertical-flow::before {
	content: "";
	position: absolute;
	top: 30px;
	bottom: 30px;
	left: 28px;
	width: 2px;
	background: linear-gradient(180deg, rgba(239, 120, 188, 0.38), rgba(86, 209, 202, 0.24));
}

.vertical-flow li {
	position: relative;
	display: grid;
	grid-template-columns: 56px 1fr;
	gap: 12px;
	align-items: stretch;
}

.vertical-flow__marker {
	position: relative;
	z-index: 1;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	padding-top: 4px;
}

.vertical-flow__icon {
	position: relative;
	width: 56px;
	height: 56px;
	display: grid;
	place-items: center;
	color: var(--rose);
	background: var(--white);
	border: 2px solid rgba(239, 120, 188, 0.34);
	border-radius: 50%;
	box-shadow: 0 12px 28px rgba(158, 83, 105, 0.08);
	transition:
		transform var(--shs-hover-lift-duration) var(--shs-hover-lift-ease),
		box-shadow var(--shs-hover-lift-duration) var(--shs-hover-lift-ease);
}

.vertical-flow__icon::before {
	content: "";
	position: absolute;
	inset: -2px;
	border-radius: 50%;
	background: conic-gradient( from 310deg, var(--aqua) 0 58deg, transparent 58deg 360deg );
	-webkit-mask: radial-gradient( farthest-side, transparent calc(100% - 3px), #000 calc(100% - 2px) );
	mask: radial-gradient( farthest-side, transparent calc(100% - 3px), #000 calc(100% - 2px) );
	transform: rotate(0deg);
	transform-origin: center;
	transition: transform 0.58s cubic-bezier(0.22, 1, 0.36, 1);
}

.vertical-flow__icon::after {
	content: "";
	position: absolute;
	inset: 6px;
	background: rgba(239, 120, 188, 0.045);
	border: 1px solid rgba(239, 120, 188, 0.16);
	border-radius: 50%;
}

.vertical-flow li:hover .vertical-flow__icon {
	transform: translateY(-3px);
	box-shadow: 0 18px 34px rgba(158, 83, 105, 0.13);
}

.vertical-flow li:hover .vertical-flow__icon::before {
	transform: rotate(92deg);
}

.vertical-flow__icon .material-symbols-outlined {
	position: relative;
	z-index: 1;
	font-family: "Material Symbols Outlined";
	font-size: 24px;
	font-weight: normal;
	font-style: normal;
	letter-spacing: normal;
	text-transform: none;
	white-space: nowrap;
	word-wrap: normal;
	direction: ltr;
	-webkit-font-feature-settings: "liga";
	-webkit-font-smoothing: antialiased;
	font-variation-settings: "FILL" 0, "wght" 350, "GRAD" 0, "opsz" 40;
	line-height: 1;
}

.vertical-flow__card {
	position: relative;
	padding: 12px 16px 11px;
	background: rgba(255, 255, 255, 0.94);
	border: 1px solid rgba(239, 120, 188, 0.18);
	border-radius: 18px;
	box-shadow: 0 10px 20px rgba(158, 83, 105, 0.05);
	transition:
		transform var(--shs-hover-lift-duration) var(--shs-hover-lift-ease),
		box-shadow var(--shs-hover-lift-duration) var(--shs-hover-lift-ease),
		border-color var(--shs-hover-lift-duration) var(--shs-hover-lift-ease);
}

.vertical-flow__card::before {
	content: "";
	position: absolute;
	top: 20px;
	left: -10px;
	width: 10px;
	height: 10px;
	background: var(--rose);
	clip-path: polygon(0 50%, 100% 0, 100% 100%);
}

.vertical-flow li:hover .vertical-flow__card {
	transform: translateY(var(--shs-hover-card-lift-distance));
	border-color: rgba(239, 120, 188, 0.36);
	box-shadow: 0 22px 42px rgba(158, 83, 105, 0.12);
}

.vertical-flow__step {
	display: inline-flex;
	flex-direction: row;
	align-items: baseline;
	gap: 6px;
	color: var(--rose);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 18px;
	line-height: 1;
	letter-spacing: 0.02em;
}

.vertical-flow__step::before {
	content: "STEP";
	margin-bottom: 0;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.08em;
}

.vertical-flow h3 {
	margin: 8px 0 0;
	color: var(--wine);
	font-family: "Yu Mincho", serif;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.4;
	letter-spacing: 0.04em;
}

.vertical-flow h3::after {
	content: "";
	display: block;
	width: 26px;
	height: 2px;
	margin-top: 8px;
	border-radius: 999px;
	background: var(--rose);
}

.vertical-flow p {
	margin: 9px 0 0;
	color: var(--muted);
	font-size: 11px;
	line-height: 1.6;
}

/**
 * 6.0 出願時の注意事項
 *
 * 入力前に確認すべき条件と提出上の注意を独立領域へまとめ、重要情報を手順本文に埋もれさせない。
 */

.guidelines-notice {
	padding: 32px 34px 34px;
	background: rgba(255, 255, 255, 0.82);
	border: 1px solid rgba(158, 83, 105, 0.32);
	border-left: 5px solid var(--wine);
	border-radius: 18px;
	box-shadow: 0 14px 38px rgba(158, 83, 105, 0.07);
}

.guidelines-notice__title {
	display: flex;
	align-items: center;
	gap: 13px;
}

.guidelines-notice__title span {
	width: 36px;
	height: 36px;
	display: grid;
	place-items: center;
	color: var(--wine);
	border: 1px solid var(--wine);
	border-radius: 50%;
	font-family: Georgia, serif;
	font-size: 19px;
}

.guidelines-notice h2 {
	margin: 0;
	color: var(--wine);
	font-family: "Yu Mincho", serif;
	font-size: 24px;
	letter-spacing: 0.1em;
}

.guidelines-notice ul {
	margin: 28px 0 0;
	padding-left: 1.3em;
	color: var(--muted);
	font-size: 12px;
	line-height: 2;
}

.guidelines-notice li + li {
	margin-top: 12px;
}

/**
 * 7.0 Web出願前の確認領域
 *
 * 出願区分・同意事項・オンライン願書への導線をまとめ、未確認のまま次工程へ進まない構造を支える。
 */

.guidelines-application-gate {
	margin-top: 64px;
	padding: 46px 50px 50px;
	background: rgba(255, 255, 255, 0.92);
	border: 1px solid rgba(158, 83, 105, 0.28);
	border-radius: 22px;
	box-shadow: 0 18px 46px rgba(158, 83, 105, 0.09);
}

.guidelines-application-gate__heading {
	max-width: 760px;
	margin: 0 auto;
	text-align: center;
}

.guidelines-application-gate__heading h2 {
	margin: 8px 0 14px;
	color: var(--wine);
	font-family: "Yu Mincho", serif;
	font-size: clamp(24px, 2.8vw, 34px);
	font-weight: 500;
	line-height: 1.55;
	letter-spacing: 0.07em;
}

.guidelines-application-gate__heading > p:last-child {
	margin: 0;
	color: var(--muted);
	font-size: 13px;
	line-height: 1.9;
}

.guidelines-application-agreement {
	width: fit-content;
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 32px auto 0;
	padding: 15px 22px;
	color: var(--rose);
	background: rgba(239, 120, 188, .030);
	border: 1px solid rgba(158, 83, 105, 0.35);
	border-radius: 999px;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.5;
	cursor: pointer;
}

.guidelines-application-agreement input {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip-path: inset(50%);
	white-space: nowrap;
}

.guidelines-application-agreement__mark {
	width: 22px;
	height: 22px;
	flex: 0 0 22px;
	position: relative;
	background: var(--white);
	border: 1px solid rgba(158, 83, 105, 0.48);
	border-radius: 5px;
	transition: background-color 0.2s ease, border-color 0.2s ease;
}

.guidelines-application-agreement__mark::after {
	content: "";
	position: absolute;
	top: 4px;
	left: 7px;
	width: 6px;
	height: 10px;
	border-right: 2px solid var(--white);
	border-bottom: 2px solid var(--white);
	opacity: 0;
	transform: rotate(45deg) scale(0.7);
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.guidelines-application-agreement input:checked + .guidelines-application-agreement__mark {
	background: var(--wine-deep);
	border-color: var(--wine-deep);
}

.guidelines-application-agreement input:checked + .guidelines-application-agreement__mark::after {
	opacity: 1;
	transform: rotate(45deg) scale(1);
}

.guidelines-application-agreement input:focus-visible + .guidelines-application-agreement__mark {
	outline: 3px solid rgba(158, 83, 105, 0.2);
	outline-offset: 3px;
}

.guidelines-application-gate__status {
	margin: 13px 0 0;
	color: var(--muted);
	font-size: 11px;
	line-height: 1.7;
	text-align: center;
}

.guidelines-application-gate__actions {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
	margin-top: 28px;
}

.guidelines-application-button {
	min-height: 100px;
	position: relative;
	display: grid;
	grid-template-columns: 1fr auto;
	align-content: center;
	gap: 4px 18px;
	padding: 22px 26px;
	color: var(--white);
	background: var(--wine-deep);
	border: 1px solid var(--wine-deep);
	border-radius: 16px;
	font-family: inherit;
	text-align: left;
	cursor: pointer;
	transition:
		transform var(--shs-hover-lift-duration) var(--shs-hover-lift-ease),
		box-shadow var(--shs-hover-lift-duration) var(--shs-hover-lift-ease),
		background-color var(--shs-hover-lift-duration) var(--shs-hover-lift-ease);
}

.guidelines-application-button--transfer {
	color: var(--rose);
	background: var(--white);
}

.guidelines-application-button__label {
	grid-column: 1;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.04em;
}

.guidelines-application-button strong {
	grid-column: 1;
	font-family: "Yu Mincho", serif;
	font-size: 21px;
	font-weight: 600;
	letter-spacing: 0.08em;
}

.guidelines-application-button > span[aria-hidden="true"] {
	grid-column: 2;
	grid-row: 1 / 3;
	align-self: center;
	font-size: 20px;
	transition: transform 0.2s ease;
}

.guidelines-application-button small {
	grid-column: 2;
	grid-row: 1 / 3;
	align-self: center;
	padding: 5px 9px;
	color: var(--wine);
	background: rgba(255, 255, 255, 0.72);
	border-radius: 999px;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.05em;
}

.guidelines-application-button:not(:disabled):hover,
.guidelines-application-button:not(:disabled):focus-visible {
	transform: translateY(-2px);
	box-shadow: 0 14px 30px rgba(158, 83, 105, 0.18);
}

.guidelines-application-button:not(:disabled):hover > span[aria-hidden="true"],
.guidelines-application-button:not(:disabled):focus-visible > span[aria-hidden="true"] {
	transform: translateX(4px);
}

.guidelines-application-button:disabled {
	color: #9d8c93;
	background: #f3edef;
	border-color: rgba(239, 120, 188, .140);
	cursor: not-allowed;
	box-shadow: none;
}

.guidelines-application-button--transfer:disabled {
	background: #f8f5f6;
}

/**
 * 8.0 タブレット表示
 *
 * 900px以下では横長の募集概要表をカードへ切り替え、出願フローの本文と補助情報も縦方向へ再配置する。
 * 表を縮小して文字を読みにくくするのではなく、情報の対応関係を保ったまま横スクロールを防ぐ。
 */

@media (max-width: 900px) {
	.details-table-wrap {
		display: none;
	}

	.details-mobile {
		display: grid;
		gap: 18px;
	}

	.details-mobile__card {
		overflow: hidden;
		background: var(--white);
		border: 1px solid var(--line);
		border-radius: 16px;
		box-shadow: 0 12px 30px rgba(158, 83, 105, 0.055);
	}

	.details-mobile__card h3 {
		margin: 0;
		padding: 20px 24px;
		color: var(--white);
		background: linear-gradient(135deg, var(--wine-deep), var(--wine));
		font-family: "Yu Mincho", serif;
		font-size: 22px;
		letter-spacing: 0.09em;
	}

	.details-mobile__card h3 span {
		margin-right: 14px;
		font-family: Georgia, serif;
		font-size: 17px;
	}

	.details-mobile__card dl {
		margin: 0;
		padding: 10px 24px 22px;
	}

	.details-mobile__card dl > div {
		display: grid;
		grid-template-columns: 120px 1fr;
		gap: 18px;
		padding: 15px 0;
		border-bottom: 1px solid var(--line);
	}

	.details-mobile__card dl > div:last-child {
		border-bottom: 0;
	}

	.details-mobile__card dt {
		color: var(--rose);
		font-size: 12px;
		font-weight: 700;
	}

	.details-mobile__card dd {
		margin: 0;
		color: var(--muted);
		font-size: 12px;
		line-height: 1.7;
	}

	.guidelines-flow__head {
		margin-bottom: 44px;
	}

	.guidelines-flow__layout {
		grid-template-columns: 1fr;
		gap: 48px;
	}

	.guidelines-flow__aside {
		grid-template-columns: 1.05fr 0.95fr;
		align-items: stretch;
	}

	.guidelines-flow__photo {
		aspect-ratio: auto;
		min-height: 320px;
	}

	.guidelines-notice {
		margin-left: 0;
	}
}

/**
 * 8.1 スマートフォン表示
 *
 * 700px以下では学費表・出願ステップ・確認導線の余白と文字サイズを端末幅に合わせ、操作要素を1列へ統一する。
 * PCの情報量は省略せず、タップ領域と本文の可読幅を確保するためにこの範囲だけ寸法を縮小する。
 */

@media (max-width: 700px) {
	.guidelines-details,
	.guidelines-tuition,
	.guidelines-flow {
		padding-block: 72px;
	}

	.guidelines-section-head {
		margin-bottom: 34px;
	}

	.tuition-panel {
		padding: 22px 18px 20px;
		border-radius: 16px;
	}

	.tuition-table-wrap {
		border-radius: 12px;
	}

	.tuition-table th,
	.tuition-table td {
		height: 58px;
		padding: 12px 8px;
	}

	.tuition-table thead th,
	.tuition-table tbody th {
		font-size: 11px;
	}

	.tuition-table tbody td {
		font-size: 12px;
	}

	.tuition-notes {
		margin-top: 13px;
		font-size: 10px;
	}

	.tuition-payment-info {
		margin-top: 24px;
		padding-top: 22px;
	}

	.tuition-payment-info__item + .tuition-payment-info__item {
		margin-top: 20px;
	}

	.tuition-payment-info__item h3 {
		margin-bottom: 6px;
		font-size: 16px;
	}

	.tuition-payment-info__item p,
	.tuition-payment-info__notice {
		font-size: 12px;
		line-height: 1.85;
	}

	.tuition-payment-info__notice {
		margin-top: 22px;
		padding-top: 18px;
	}

	.guidelines-flow__head {
		margin-bottom: 36px;
	}

	.vertical-flow {
		gap: 12px;
	}

	.vertical-flow::before {
		top: 28px;
		bottom: 28px;
		left: 24px;
	}

	.vertical-flow li {
		grid-template-columns: 48px 1fr;
		gap: 10px;
	}

	.vertical-flow__marker {
		padding-top: 6px;
	}

	.vertical-flow__icon {
		width: 48px;
		height: 48px;
	}

	.vertical-flow__icon::after {
		inset: 5px;
	}

	.vertical-flow__icon .material-symbols-outlined {
		font-size: 20px;
	}

	.vertical-flow__card {
		padding: 13px 14px 12px;
		border-radius: 15px;
	}

	.vertical-flow__card::before {
		top: 18px;
		left: -7px;
		width: 7px;
		height: 7px;
	}

	.vertical-flow__step {
		font-size: 16px;
	}

	.vertical-flow h3 {
		margin-top: 6px;
		font-size: 15px;
	}

	.vertical-flow p {
		margin-top: 8px;
		font-size: 10px;
		line-height: 1.6;
	}

	.guidelines-flow__aside {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.guidelines-flow__photo {
		min-height: 0;
		aspect-ratio: 16 / 10;
	}

	.guidelines-notice {
		margin-left: 0;
		padding: 32px 26px;
	}

	.guidelines-application-gate {
		margin-top: 42px;
		padding: 34px 22px 26px;
		border-radius: 18px;
	}

	.guidelines-application-gate__heading h2 {
		font-size: 24px;
	}

	.guidelines-application-agreement {
		width: 100%;
		justify-content: center;
		margin-top: 26px;
		padding-inline: 16px;
		border-radius: 12px;
	}

	.guidelines-application-gate__actions {
		grid-template-columns: 1fr;
		gap: 12px;
		margin-top: 22px;
	}

	.guidelines-application-button {
		min-height: 88px;
		padding: 19px 20px;
	}

	.guidelines-application-button strong {
		font-size: 18px;
	}
}

/**
 * 8.2 小型スマートフォン表示
 *
 * 430px以下では募集概要カードと出願ステップの固定幅だけをさらに圧縮し、最小幅端末でも横方向にはみ出さないようにする。
 * セクション構成や表示情報は変えず、可読性を損なわない範囲でアイコン・文字・間隔のみを調整する。
 */

@media (max-width: 430px) {
	.details-mobile__card dl > div {
		grid-template-columns: 88px 1fr;
		gap: 12px;
	}

	.vertical-flow li {
		grid-template-columns: 42px 1fr;
		gap: 9px;
	}

	.vertical-flow::before {
		top: 24px;
		bottom: 24px;
		left: 21px;
	}

	.vertical-flow__icon {
		width: 42px;
		height: 42px;
	}

	.vertical-flow__icon::after {
		inset: 4px;
	}

	.vertical-flow__icon .material-symbols-outlined {
		font-size: 18px;
	}

	.vertical-flow__card {
		padding: 12px 12px 10px;
	}

	.vertical-flow__step {
		font-size: 15px;
		gap: 5px;
	}

	.vertical-flow h3 {
		font-size: 14px;
	}

	.vertical-flow p {
		font-size: 10px;
	}
}
