@charset "UTF-8";

/* ===== 入園について：申し込みの流れ・願書ダウンロード ===== */

/* ダウンロードボタン（赤／コーラル） */
.btn-style-red {
	background: #dd4444;
	border: 3px solid #dd4444;
}
.btn-style-red:hover {
	color: #dd4444;
	border: 3px solid #dd4444;
	background: #fff;
}

/* 入園のお申し込み セクション */
.admission-application .admission-download-heading {
	color: #534741;
	font-size: 2.4rem;
	font-weight: 700;
	line-height: 1.6;
	text-align: center;
	margin: 6% 0 2%;
}
.admission-application .admission-intro {
	line-height: 1.6;
	text-align: center;
	margin-bottom: 4%;
}

/* 申し込みの流れ STEP */
.admission-flow {
	max-width: 1040px;
	margin: 0 auto 6%;
}
.admission-flow > li {
	position: relative;
	min-height: 66px;
	background: #f5f4f2;
	border-radius: 6px;
	padding: 20px 25px 20px 120px;
	margin-bottom: 40px;
}
.admission-flow > li p {
	margin: 0;
	line-height: 1.6;
}
/* オレンジのSTEPタブ（カード左・縦いっぱい） */
.admission-flow .step-label {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 99px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #ffa741;
	color: #fff;
	font-family: Quicksand, sans-serif;
	font-size: 1.4rem;
	font-weight: 700;
	border-radius: 6px 0 0 6px;
}
/* 吹き出しの尻尾：オレンジタブの底に密着した下向き三角 */
.admission-flow > li:not(:last-child) .step-label::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	border-left: 11px solid transparent;
	border-right: 11px solid transparent;
	border-top: 14px solid #ffa741;
}

/* 郵送先・持参先ボックス */
.admission-address {
	max-width: 500px;
	margin: 0 auto 6%;
	background: #feeded;
	border: 2px solid #DD4444;
	border-radius: 5px;
	padding: 25px 30px;
	text-align: center;
}
/* 左揃えのテキストブロックを箱の中央に配置（Figma準拠） */
.admission-address-inner {
	display: inline-block;
	text-align: left;
}
.admission-address p {
	margin-bottom: 1em;
}
.admission-address p:last-child {
	margin-bottom: 0;
}

@media (max-width: 767px) {
	/* SPでも左タブの横並びを維持（タブ幅と本文余白を詰める） */
	.admission-flow > li {
		padding-left: 88px;
	}
	.admission-flow .step-label {
		width: 72px;
	}
	.admission-application .admission-download-heading {
		margin-top: 60px;
	}
}
