/* ==========================================================================
   小児矯正LP 専用スタイル
   変換元: docs/design/lp-renewal/LP-Top.dc.html（インライン style をクラス化）
   ========================================================================== */

.lp-page {
	--lp-primary: #e49842;
	--lp-accent: #bdd251;
	--lp-sky: #dc79aa;
	--lp-bg: #fffbf2;
	--lp-text: #4a3f35;
	--lp-muted: #8a7a68;
	--lp-line: #eee1cf;
	--lp-white: #fff;

	/* 紫: --lp-sky(#dc79aa) を紫寄りに深めたトーン */
	--lp-purple-bg: #f2e5f5;
	--lp-purple-edge: #e1c4e9;
	--lp-purple-border: #a659c0;
	--lp-purple-text: #804393;

	/* 黄: --lp-accent(#bdd251) ベース */
	--lp-yellow-bg: #f3f9dc;
	--lp-yellow-edge: #daedab;
	--lp-yellow-border: #bdd251;
	--lp-yellow-text: #6a782b;

	/* ピンク: --lp-sky(#dc79aa) ベース */
	--lp-pink-bg: #fae1ed;
	--lp-pink-border: #dc79aa;
	--lp-pink-text: #ae4c80;

	/* 緑: --lp-accent(#bdd251) を緑寄りに深めたトーン */
	--lp-green-bg: #e5f6d5;
	--lp-green-edge: #d0eeba;
	--lp-green-border: #76b946;
	--lp-green-text: #4f7f2e;

	/* オレンジ: --lp-primary(#e49842) と同色のため変更なし */
	--lp-orange-bg: #fdf0dc;
	--lp-orange-edge: #f6dba8;
	--lp-orange-border: #e49842;
	--lp-orange-text: #8a5a1f;

	--lp-peach-bg: #ffeee0;

	--lp-font-round: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Yu Gothic", sans-serif;
	--lp-font-base: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;

	--lp-container: 1180px;

	margin: 0;
	background: var(--lp-bg);
	color: var(--lp-text);
	font-family: var(--lp-font-base);
	line-height: 1.8;
	-webkit-font-smoothing: antialiased;
}

.lp-page *,
.lp-page *::before,
.lp-page *::after {
	box-sizing: border-box;
}

.lp-page a {
	color: inherit;
	text-decoration: none;
}

.lp-page a:hover {
	opacity: 0.8;
}

.lp-page img {
	max-width: 100%;
	height: auto;
}

.sp-only {
	display: none;
}

.pc-only {
	display: block;
}

/* --------------------------------------------------------------------------
   共通パーツ
   -------------------------------------------------------------------------- */

.lp-section {
	padding: 64px 24px;
}

.lp-section__inner {
	max-width: var(--lp-container);
	margin-inline: auto;
}

.lp-section--purple {
	background: var(--lp-purple-bg);
	border-top: 4px dashed var(--lp-purple-edge);
	border-bottom: 4px dashed var(--lp-purple-edge);
}

.lp-section--yellow {
	background: var(--lp-yellow-bg);
	border-top: 4px dashed var(--lp-yellow-edge);
	border-bottom: 4px dashed var(--lp-yellow-edge);
}

.lp-section--pink {
	background: var(--lp-pink-bg);
}

.lp-section--green {
	background: var(--lp-green-bg);
	border-top: 4px dashed var(--lp-green-edge);
}

.lp-section--orange {
	background: var(--lp-orange-bg);
	border-top: 4px dashed var(--lp-orange-edge);
}

/* 見出し（点線の角丸ピル） */
.lp-heading {
	display: block;
	width: fit-content;
	max-width: 100%;
	margin: 0 auto 40px;
	padding: 10px 32px;
	background: var(--lp-white);
	border: 2px dashed var(--lp-primary);
	border-radius: 999px;
	color: var(--lp-primary);
	font-family: var(--lp-font-round);
	font-size: 22px;
	font-weight: 900;
	line-height: 1.5;
	text-align: center;
}

.lp-heading--purple {
	border-color: var(--lp-purple-border);
	color: var(--lp-purple-text);
	margin-bottom: 12px;
}

.lp-heading--yellow {
	border-color: var(--lp-yellow-border);
	color: var(--lp-yellow-text);
}

.lp-heading--pink {
	border-color: var(--lp-pink-border);
	color: var(--lp-pink-text);
}

.lp-heading--green {
	border-color: var(--lp-green-border);
	color: var(--lp-green-text);
}

.lp-heading--orange {
	border-color: var(--lp-orange-border);
	color: var(--lp-orange-text);
}

/* ボタン */
.lp-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 28px;
	border-radius: 999px;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
	white-space: nowrap;
}

.lp-btn__icon {
	display: inline-flex;
	width: 1.1em;
	height: 1.1em;
}

.lp-btn__icon svg {
	width: 100%;
	height: 100%;
	fill: currentColor;
}

.lp-btn.lp-btn--primary {
	background: var(--lp-primary);
	color: var(--lp-white);
}

.lp-btn.lp-btn--accent {
	background: var(--lp-accent);
	color: var(--lp-white);
}

.lp-btn.lp-btn--white {
	background: var(--lp-white);
	color: var(--lp-primary);
}

.lp-btn--tel {
	padding: 10px 20px;
	font-size: 15px;
	box-shadow: 0 4px 12px rgba(255, 143, 102, 0.35);
}

.lp-btn--lg {
	padding: 16px 36px;
	font-size: 18px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* 画像プレースホルダー（写真差し替え前の仮枠） */
.sk-slot {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 12px;
	background: #f0ebe2;
	border: 2px dashed #cdbfab;
	border-radius: 14px;
	color: var(--lp-muted);
	text-align: center;
}

.sk-slot__label {
	font-size: 12px;
	line-height: 1.5;
	overflow-wrap: anywhere;
}

.sk-slot--fill {
	width: 100%;
	height: 100%;
	border-radius: 0;
}

.sk-slot--circle {
	border-radius: 50%;
	object-fit: cover;
}

.sk-slot--sm {
	width: 96px;
	height: 96px;
	flex-shrink: 0;
}

.sk-slot--wide {
	width: 100%;
	aspect-ratio: 16 / 10;
	border-radius: 20px;
	object-fit: cover;
}

.sk-slot--banner {
	width: 100%;
	height: 140px;
	margin-bottom: 16px;
	border-radius: 16px;
}

.sk-slot--framed {
	width: 100%;
	aspect-ratio: 4 / 3;
	border-radius: 24px;
	box-shadow: 0 0 0 6px var(--lp-white), 0 12px 28px rgba(74, 63, 53, 0.1);
}

.sk-slot--photo {
	width: 100%;
	aspect-ratio: 4 / 3;
	border-radius: 20px;
}


/* 下層ページ用の小見出し */
.lp-subheading {
	margin: 0 0 24px;
	font-family: var(--lp-font-round);
	font-size: 24px;
	font-weight: 900;
}

/* --------------------------------------------------------------------------
   ヘッダー
   -------------------------------------------------------------------------- */

.lp-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(255, 251, 242, 0.97);
	backdrop-filter: blur(6px);
	border-bottom: 3px dashed #ffd3e0;
}

.lp-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 16px;
	max-width: var(--lp-container);
	margin-inline: auto;
	padding: 12px 24px;
}

.lp-brand {
	display: flex;
	align-items: center;
	gap: 10px;
}

.lp-brand .lp-brand__logo {
	height: 60px;
	width: auto;
}

.lp-brand__sub {
	padding-left: 10px;
	border-left: 1px solid #ddd0bc;
	color: var(--lp-muted);
	font-size: 13px;
}

.lp-nav {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
}

.lp-nav__link {
	font-size: 14px;
	font-weight: 500;
}

.lp-nav__link--sub {
	color: var(--lp-muted);
}

.lp-header__toggle {
	display: none;
	flex-direction: column;
	gap: 6px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
}

.lp-header__toggle-bar {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--lp-primary);
	transition: all 0.3s ease;
}

.lp-header__toggle.is-active .lp-header__toggle-bar:nth-child(1) {
	transform: translateY(8px) rotate(45deg);
}

.lp-header__toggle.is-active .lp-header__toggle-bar:nth-child(2) {
	opacity: 0;
}

.lp-header__toggle.is-active .lp-header__toggle-bar:nth-child(3) {
	transform: translateY(-8px) rotate(-45deg);
}


.lp-footer .mobile-bottom-bar {
	display: flex;
	flex-direction: column;
	position: fixed;
	bottom: 0;
	left: 0;
	width: fit-content;
	z-index: 9999;
}

.lp-footer .mobile-bottom-bar .bar-btn {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	width: 80px;
	height: 80px;
	padding: 14px 0;
	margin-left: 20px;
	margin-bottom: 20px;
	border-radius: 100%;
	font-weight: bold;
	font-size: 14px;
	line-height: 1;
	text-decoration: none;
	color: #ffffff;
	box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
	opacity: 1;
}

.lp-footer .mobile-bottom-bar .btn-map {
	color: var(--lp-white);
	background-color: var(--lp-sky);
	/* 地図ボタン */
}

.lp-footer .mobile-bottom-bar .btn-tel {
	color: var(--lp-white);
	background-color: var(--lp-primary);
	/* 電話ボタン */
}

.lp-footer .mobile-bottom-bar .btn-map .button-icon {
	width: 35px;
	height: 35px;
}

.lp-footer .mobile-bottom-bar .btn-tel .button-icon {
	width: 30px;
	height: 30px;
	margin-bottom: 4px;
}

/* ==========================================================================
   モバイル用（ハンバーガーメニュー表示・開閉スタイル）
   ========================================================================== */
@media screen and (max-width: 960px) { /* ※ブレイクポイントはデザインに合わせて調整してください */

	/* 1. ハンバーガーボタンを表示 */
	.lp-header__toggle {
		display: flex;
	}

	/* 2. モバイル時のナビゲーション（初期状態は非表示） */
	.lp-nav {
		display: none; /* 通常時は隠す */
		position: fixed;
		top: 80px; /* ヘッダーの高さに合わせて調整 */
		left: 0;
		width: 100%;
		height: calc(100vh - 80px);
		background-color: rgba(255, 251, 242, 0.98);
		flex-direction: column;
		align-items: center;
		justify-content: flex-start;
		padding: 40px 20px;
		gap: 24px;
		overflow-y: auto;
		z-index: 999;
	}

	/* 3. JSで is-active が付与されたら表示する */
	.lp-nav.is-active {
		display: flex !important;
	}

	/* モバイル内のリンクサイズ調整 */
	.lp-nav__link {
		font-size: 16px;
	}
}

/* --------------------------------------------------------------------------
   ヒーロー
   -------------------------------------------------------------------------- */

.lp-hero {
	position: relative;
	padding-bottom: 64px;
	background: var(--lp-bg);
	overflow: hidden;
}

.lp-hero__visual {
	position: relative;
	display: block;
	overflow: hidden;
	min-height: 460px;
}

.lp-hero__image {
	display: block;
	width: 100%;
	height: auto;
}

.lp-hero__badge {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 24px;
	text-align: center;
	z-index: 30;
	gap: 8px;
}

.lp-hero__badge-image {
	max-width: 180px;
	height: auto;
	margin-bottom: 12px;
}

.lp-hero__clinic-name {
	margin: 0;
	color: var(--lp-primary);
	font-family: var(--lp-font-round);
	font-size: 40px;
	font-weight: 700;
}

.lp-hero__decoration {
	position: absolute;
	z-index: 20;
}

.lp-hero__decoration--1 {
	top: 0;
	right: 20px;
	width: 300px;
	height: auto;
}

.lp-hero__decoration--2 {
	bottom: 500px;
	left: 20px;
	width: 300px;
	height: auto;
}

@media (min-width: 1650px) {

	.lp-hero__decoration--1,
	.lp-hero__decoration--2 {
		width: 400px;
	}

}

@media (max-width: 1255px) {
	.lp-hero__decoration--1 {
		width: 230px;
		right: -20px;
	}

	.lp-hero__decoration--2 {
		width: 200px;
		left: 0;
		bottom: 350px;
	}

}

@media (max-width: 810px) {
	.lp-hero__decoration--2 {
		width: 150px;
		left: -20px;
		bottom: 350px;
	}

}

@media (max-width: 735px) {
	.lp-hero__decoration--1 {
		width: 200px;
		top: 100px;
	}

	.lp-hero__decoration--2 {
		width: 150px;
		left: 0;
		bottom: 650px;
	}

}

@media (max-width: 560px) {
	.lp-hero__decoration--1 {
		top: 0;
	}

	.lp-hero__decoration--2 {
		left: -50px;
		bottom: 600px;
	}

}

@media (max-width: 500px) {
	.lp-hero__decoration--1 {
		right: -50px;
	}

	.lp-hero__decoration--2 {
		display: none;
	}

}

@media (max-width: 450px) {
	.lp-hero__decoration--1 {
		width: 180px;
		right: -50px;
	}

	.lp-hero__decoration--2 {
		display: inline-block;
		width: 100px;
		bottom: 750px;
		left: 0;
	}

}

/* 丸い3つの訴求ポイント
 * サイズは --lp-point-size 一箇所で管理する。
 */
.lp-points {
	--lp-point-size: 150px;

	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	max-width: 1000px;
	margin: 20px auto 0;
	padding: 0 24px;
	list-style: none;
	z-index: 10;
}

.lp-point {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: var(--lp-point-size);
	height: var(--lp-point-size);
	padding: 12px;
	background: var(--lp-accent);
	border-radius: 50%;
	box-shadow: 0 8px 20px rgba(74, 63, 53, 0.1);
	text-align: center;
}

.lp-point__icon {
	width: 64px;
	height: auto;
	margin-bottom: 6px;
}

.lp-point__text {
	margin: 0;
	color: var(--lp-white);
	font-size: 13.5px;
	font-weight: 700;
	line-height: 1.5;
}

.lp-hero__message {
	max-width: 820px;
	margin: 32px auto 0;
	padding: 0 24px;
	text-align: center;
}

.lp-hero__title {
	margin: 0 0 16px;
	color: var(--lp-primary);
	font-family: var(--lp-font-round);
	font-size: 32px;
	font-weight: 900;
}

.lp-hero__text {
	margin: 0 0 32px;
	font-size: 16px;
}

.lp-note {
	padding: 24px 28px;
	background: var(--lp-white);
	border: 2px dashed var(--lp-primary);
	border-radius: 20px;
	text-align: left;
}

.lp-note__title {
	margin: 0 0 10px;
	color: var(--lp-primary);
	font-family: var(--lp-font-round);
	font-size: 19px;
	font-weight: 700;
}

.lp-note__text {
	margin: 0;
	font-size: 15px;
}


/* --------------------------------------------------------------------------
   医師紹介
   -------------------------------------------------------------------------- */

.lp-doctors {
	padding-top: 56px;
	padding-bottom: 72px;
}

.lp-doctors__cards {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 28px;
	margin: 60px 0;
}

.lp-doctor {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.lp-doctor__photo {
	width: 100%;
	height: auto;
	margin-bottom: 16px;
}

.lp-doctor__name {
	margin: 0 0 4px;
	font-family: var(--lp-font-round);
	font-size: 28px;
	font-weight: 900;
}

.lp-doctor__role {
	margin: 0;
	font-size: 14px;
	font-weight: 700;
}

.lp-doctor--hidetoshi .lp-doctor__name,
.lp-doctor--hidetoshi .lp-doctor__role {
	color: var(--lp-accent);
}

.lp-doctor--minori .lp-doctor__name,
.lp-doctor--minori .lp-doctor__role {
	color: var(--lp-sky);
}

.lp-doctors__lead {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 36px;
	padding: 40px;
	background: var(--lp-peach-bg);
	border-radius: 28px;
}

.lp-doctors__lead-body {
	position: relative;
}

.lp-doctors__lead-title {
	margin: 0 0 16px;
	font-family: var(--lp-font-round);
	font-size: 24px;
	font-weight: 700;
}

.lp-doctors__lead-text {
	margin: 0 0 24px;
	font-size: 15px;
}

.lp-doctors__lead-image {
	width: 100%;
	height: auto;
}

.lp-doctors__lead-deco {
	position: absolute;
	bottom: 20px;
	right: 20px;
	width: fit-content;
	background-color: #00B4BC;
	padding: 10px 20px;
	color: var(--lp-white);
	text-align: center;
	border-radius: 40px;
	transform: rotate(10deg);
}

@media (max-width:555px) {
	.lp-doctors__lead-deco {
		bottom: 0;
		padding: 5px 10px;
		line-height: 1.2;
	}
}
/* --------------------------------------------------------------------------
   年齢別アプローチ
   -------------------------------------------------------------------------- */

.lp-ages {
	position: relative;
}

.lp-section__inner {
	position: relative;
	z-index: 10;
}

.lp-ages__note {
	margin: 0 0 36px;
	color: #7a6f63;
	font-size: 15px;
	text-align: center;
}

.lp-ages__tabs {
	display: grid;
	justify-content: center;
	align-items: center;
	/* スマホサイズ（デフォルト）：2列（＝3段）で配置 */
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
	/* 画像と画像の間隔 */
	max-width: 800px;
	/* 全体の最大幅（お好みに合わせて調整してください） */
	margin: 0 auto 32px;
	/* 中央寄せ */
	padding: 0 16px;
}

.lp-age-tab {
	display: block;
	width: 100%;
	min-width: 88px;
	padding: 0;
	background: var(--lp-white);
	border: 2px solid #dcede7;
	border-radius: 16px;
	color: var(--lp-text);
	font-family: inherit;
	cursor: pointer;
	text-align: center;
}

.lp-age-tab.is-active {
	background: var(--lp-primary);
	border-color: var(--lp-primary);
	color: var(--lp-white);
}

.lp-age-tab__period {
	display: block;
	font-size: 12px;
	opacity: 0.85;
}

.lp-age-tab__label {
	display: block;
	font-family: var(--lp-font-round);
	font-size: 18px;
	font-weight: 900;
}

.lp-age-panel {
	display: grid;
	align-items: center;
	justify-content: center;
	grid-template-columns: 0.85fr 1.15fr;
	gap: 36px;
	padding: 40px;
	background: var(--lp-white);
	border-radius: 28px;
	box-shadow: 0 12px 32px rgba(74, 63, 53, 0.08);
}

.lp-age-panel[hidden] {
	display: none;
}

.lp-age-panel__visual {
	position: relative;
	width: 100%;
	min-width: 0;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	border-radius: 20px;
}

.lp-age-panel__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	/* 枠に合わせて綺麗に切り抜き・フィットさせる */
	border-radius: 20px;
	/* 角丸をつける場合 */
	display: block;
}

.lp-age-panel__tag {
	margin: 0 0 8px;
	color: var(--lp-accent);
	font-size: 13px;
	font-weight: 700;
}

.lp-age-panel__title {
	margin: 0 0 16px;
	font-family: var(--lp-font-round);
	font-size: 22px;
	font-weight: 700;
}

.lp-age-panel__desc {
	margin: 0 0 24px;
	font-size: 15px;
}

.lp-menu {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin: 0 0 24px;
	padding-top: 20px;
	border-top: 1px solid var(--lp-line);
}

.lp-age-panel__cta {
	text-align: right;
}

.lp-menu__row {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	font-size: 14px;
}

.lp-menu__term {
	max-width: 70%;
}

.lp-menu__name {
	display: block;
	font-weight: 700;
}

.lp-menu__note {
	display: block;
	margin-top: 4px;
	color: var(--lp-muted);
	font-size: 12.5px;
}

.lp-menu__price {
	margin: 0;
	color: var(--lp-primary);
	font-weight: 700;
	white-space: nowrap;
}

.lp-text-highlight {
	color: var(--lp-sky);
	/* テーマのアクセントカラー（または #e6005c など直接指定） */
	font-weight: bold;
}

.lp-ages__decoration--1 {
	position: absolute;
	top: 0;
	right: 0;
	width: 250px;
	height: auto;
	z-index: 1;
}

@media (min-width: 1200px) {
	.lp-ages__decoration--1 {
		width: 400px;
	}
}

@media (max-width: 720px) {
	.lp-ages__decoration--1 {
		width: 180px;
	}
}

@media (max-width: 720px) {
	.lp-ages__decoration--1 {
		width: 150px;
	}
}

/* --------------------------------------------------------------------------
   毎月 赤ちゃん教室を開催
   -------------------------------------------------------------------------- */

.lp-baby-class__body {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

/* スライダー全体の領域調整 */
.baby-class-swiper {
	width: 100%;
	position: relative;
	padding-bottom: 40px;
	/* パジネーション（ドット）用の下部余白 */
}

.baby-class-swiper .swiper-button-next,
.baby-class-swiper .swiper-button-prev {
	width: 44px;
	height: 44px;
	margin-top: -22px;
}

.baby-class-swiper .swiper-button-next::after,
.baby-class-swiper .swiper-button-prev::after {
	font-size: 20px;
	color: var(--lp-primary);
	width: 44px;
	height: 44px;
	line-height: 1;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 100%;
	background-color: rgba(255, 255, 255, 1);
	box-shadow: 0 4px 12px rgba(74, 63, 53, 0.1);
}

.lp-baby-class__body .baby-class-swiper .swiper-pagination-bullet-active {
	background-color: var(--lp-primary);
	opacity: 1;
}

.lp-baby-class__body img {
	display: block;
	width: 100%;
	max-width: 600px;
	height: auto;
	margin: 0 auto;
}

.lp-baby-class__decorations {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.lp-baby-class__decoration {
	width: 80px;
	height: auto;
}

/* --------------------------------------------------------------------------
   なぜ早くから相談したほうがいいの？
   -------------------------------------------------------------------------- */

.lp-why {
	padding-top: 72px;
	padding-bottom: 72px;
}

.lp-why__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 48px;
}

.lp-why__image {
	width: 100%;
	height: auto;
	box-shadow: 0 0 0 6px var(--lp-white), 0 12px 28px rgba(74, 63, 53, 0.1);
}

.lp-why__title {
	margin: 0 0 16px;
	color: var(--lp-primary);
	font-family: var(--lp-font-round);
	font-size: 28px;
	font-weight: 900;
}

.lp-why__strong {
	margin: 0 0 16px;
	font-size: 16px;
	font-weight: 700;
}

.lp-why__text {
	margin: 0 0 16px;
	font-size: 15px;
}

.lp-why__text:last-child {
	margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   矯正方法
   -------------------------------------------------------------------------- */

.lp-methods__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 28px;
}

.lp-methods__text {
	text-align: center;
}

.lp-method {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 20px;
	padding: 28px;
	background: var(--lp-white);
	border-radius: 24px;
}

.lp-method__photo {
	width: 100%;
	height: auto;
}

.lp-method__label {
	margin: 0 0 6px;
	color: var(--lp-accent);
	font-size: 12.5px;
	font-weight: 700;
}

.lp-method__title {
	margin: 0 0 10px;
	font-family: var(--lp-font-round);
	font-size: 18px;
	font-weight: 700;
}

.lp-method__desc {
	margin: 0;
	font-size: 14px;
}

/* --------------------------------------------------------------------------
   選ばれる3つの特徴
   -------------------------------------------------------------------------- */

.lp-features__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.lp-feature {
	position: relative;
	padding: 28px;
	background: var(--lp-white);
	border-radius: 24px;
	text-align: center;
}

.lp-feature__photo {
	width: 100%;
	height: auto;
	margin-bottom: 16px;
}

.lp-feature__title {
	margin: 0 0 10px;
	font-family: var(--lp-font-round);
	font-size: 17px;
	font-weight: 700;
}

.lp-feature__desc {
	margin: 0;
	font-size: 14px;
}

/*以下デコレーション画像*/
.lp-feature--1 .lp-feature__photo {
	position: relative;
	z-index: 10;
}

.lp-feature--1 .lp-feature__deco--a {
	position: absolute;
	top: 0;
	left: 0;
	width: 80px;
	height: auto;
	z-index: 1;
}

@media (max-width:899px) {
	.lp-feature--1 .lp-feature__deco--a {
		width: 100px;
	}
	
}

.lp-feature--2 .lp-feature__photo {
	position: relative;
	z-index: 1;
}

.lp-feature--2 .lp-feature__deco--a {
	position: absolute;
	top: 10px;
	right: 10px;
	width: 80px;
	height: auto;
	z-index: 10;
}

.lp-feature--2 .lp-feature__deco--b {
	position: absolute;
	top: 200px;
	left: 10px;
	width: 80px;
	height: auto;
	z-index: 10;
}

@media (max-width:499px) {
	.lp-feature--2 .lp-feature__deco--b {
		top: 250px;
	}
}
@media (max-width:399px) {
	.lp-feature--2 .lp-feature__deco--b {
		top: 200px;
	}
}

.lp-feature--3 .lp-feature__photo {
	position: relative;
	z-index: 1;
}
	
.lp-feature--3 .lp-feature__deco--a {
	position: absolute;
	top: 10px;
	right: 10px;
	width: 80px;
	height: auto;
	z-index: 10;
}

/* --------------------------------------------------------------------------
   治療の流れ
   -------------------------------------------------------------------------- */

.lp-flow__inner {
	max-width: 820px;
}

.lp-flow__list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.lp-flow-step {
	display: grid;
	grid-template-columns: 1fr 100px 1fr;
	grid-auto-flow: row dense;
	align-items: stretch;
	column-gap: 24px;
}

.lp-flow-step__marker {
	grid-column: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.lp-flow-step__num {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 56px;
	height: 56px;
	background: var(--lp-orange-border);
	border-radius: 50%;
	color: var(--lp-white);
	font-family: var(--lp-font-round);
	line-height: 1.1;
}

.lp-flow-step__num-label {
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 0.05em;
}

.lp-flow-step__num-value {
	font-size: 18px;
	font-weight: 900;
}

.lp-flow-step__marker .lp-flow-step__title {
	margin: 8px 0 0;
	color: var(--lp-orange-border);
	font-family: var(--lp-font-round);
	font-size: 17px;
	font-weight: 700;
	text-align: center;
	white-space: nowrap;
}

.lp-flow-step__line {
	flex: 1;
	width: 2px;
	margin: 8px 0 0;
	background: var(--lp-orange-edge);
}

/* ステップごとに本文を左右交互に配置する */
.lp-flow-step:nth-child(odd) .lp-flow-step__body {
	grid-column: 3;
}

.lp-flow-step:nth-child(even) .lp-flow-step__body {
	grid-column: 1;
}

.lp-flow-step:nth-child(odd) .lp-flow-step__decorations {
	grid-column: 1;
}

.lp-flow-step:nth-child(even) .lp-flow-step__decorations {
	grid-column: 3;
}

/* 最後のステップは下に続く線を出さない（原本の hasLine: false 相当） */
.lp-flow-step:last-child .lp-flow-step__line {
	display: none;
}

.lp-flow-step__body {
	padding-bottom: 32px;
}

.lp-flow-step:last-child .lp-flow-step__body {
	grid-column: 1 / -1;
	max-width: 320px;
	margin-inline: auto;
	padding-bottom: 0;
	text-align: center;
}

.lp-flow-step__body .lp-flow-step__photo {
	width: 100%;
	max-width: 320px;
	height: auto;
	margin-bottom: 12px;
}

.lp-flow-step__desc {
	margin: 0;
	font-size: 14.5px;
}

/* ステップ全体の共通デザイン */
.lp-flow-step__decorations {
	position: relative;
}

.lp-flow-step__deco {
	position: absolute;
	height: auto;
}

/* STEP 1 の装飾画像の位置指定 */
.lp-flow-step__decorations .lp-flow-step__deco--1 {
	bottom: 30px;
	left: 20px;
	width: 250px;
}

.lp-flow-step__decorations .lp-flow-step__deco--2 {
	top: 15px;
	right: -20px;
	width: 280px;
}

.lp-flow-step__decorations .lp-flow-step__deco--3 {
	bottom: 20px;
	left: 0;
	width: 230px;
}

.lp-flow-step__decorations .lp-flow-step__deco--4 {
	bottom: 20px;
	right: 0;
	width: 250px;
}

.lp-flow-step__decorations .lp-flow-step__deco--5 {
	bottom: 20px;
	left: 0;
	width: 230px;
}

@media (max-width: 720px) {
	.lp-flow-step__deco {
		display: none;
	}
}

/* --------------------------------------------------------------------------
	 使用できるクレジットカード
	 -------------------------------------------------------------------------- */
.lp-credit-card__inner {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

/* --------------------------------------------------------------------------
   最終CTA
   -------------------------------------------------------------------------- */

.lp-cta {
	padding: 56px 24px;
	background: var(--lp-primary);
	border-top: 4px dashed rgba(255, 255, 255, 0.4);
	text-align: center;
}

.lp-cta__title {
	margin: 0 0 20px;
	color: var(--lp-white);
	font-family: var(--lp-font-round);
	font-size: 24px;
	font-weight: 700;
}

.lp-cta__buttons {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 16px;
}

/* --------------------------------------------------------------------------
   下層ページの見出し帯
   -------------------------------------------------------------------------- */

.lp-pagehead {
	padding: 56px 24px;
	text-align: center;
}

.lp-pagehead--blue {
	background: #d9f1fa;
	border-bottom: 4px dashed #b7e4f5;
}

.lp-pagehead--yellow {
	background: var(--lp-yellow-bg);
	border-bottom: 4px dashed var(--lp-yellow-edge);
}

.lp-pagehead__eyebrow {
	margin: 0 0 12px;
	color: var(--lp-accent);
	font-family: var(--lp-font-round);
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.05em;
}

.lp-pagehead__title {
	margin: 0 0 16px;
	color: var(--lp-primary);
	font-family: var(--lp-font-round);
	font-size: 36px;
	font-weight: 900;
}

.lp-pagehead__lead {
	max-width: 640px;
	margin: 0 auto;
	font-size: 16px;
}

/* --------------------------------------------------------------------------
   医師紹介ページ
   -------------------------------------------------------------------------- */

.lp-profiles {
	padding-top: 24px;
	padding-bottom: 72px;
}

.lp-profiles__inner {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.lp-profile {
	display: grid;
	grid-template-columns: 0.5fr 1fr;
	align-items: center;
	gap: 36px;
	padding: 36px;
	background: var(--lp-white);
	border-radius: 28px;
	box-shadow: 0 8px 24px rgba(74, 63, 53, 0.08);
}

.lp-profile--reverse {
	grid-template-columns: 1fr 0.5fr;
}

.lp-profile__photo {
	width: 100%;
	height: auto;
}

.lp-profile__role {
	margin: 0 0 6px;
	color: var(--lp-accent);
	font-size: 13px;
	font-weight: 700;
}

.lp-profile__name {
	margin: 0 0 16px;
	font-family: var(--lp-font-round);
	font-size: 24px;
	font-weight: 700;
}

.lp-profile__text {
	margin: 0;
	font-size: 15px;
}

.lp-message {
	display: grid;
	grid-template-columns: 0.6fr 1fr;
	align-items: center;
	gap: 36px;
	padding: 40px;
	background: var(--lp-green-bg);
	border: 2px dashed var(--lp-green-edge);
	border-radius: 28px;
}

.lp-message__photo {
	width: 100%;
	height: auto;
}

.lp-message__title {
	margin: 0 0 16px;
	color: var(--lp-primary);
	font-family: var(--lp-font-round);
	font-size: 22px;
	font-weight: 700;
}

.lp-message__text {
	margin: 0 0 16px;
	font-size: 15px;
}

.lp-message__sign {
	margin: 0;
	font-weight: 700;
}

.lp-profiles__cta {
	padding-top: 8px;
	text-align: center;
}

/* --------------------------------------------------------------------------
   症例とご費用ページ
   -------------------------------------------------------------------------- */

.lp-prices {
	padding-top: 24px;
	padding-bottom: 72px;
}

.lp-prices__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 28px;
}

.lp-price-card {
	padding: 32px;
	background: var(--lp-white);
	border-radius: 24px;
	box-shadow: 0 8px 24px rgba(74, 63, 53, 0.08);
}

.lp-price-card__period {
	margin: 0 0 6px;
	color: var(--lp-accent);
	font-size: 13px;
	font-weight: 700;
}

.lp-price-card__title {
	margin: 0 0 20px;
	font-family: var(--lp-font-round);
	font-size: 20px;
	font-weight: 700;
}

.lp-price-list {
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin: 0;
}

.lp-price-list__row {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	padding-bottom: 10px;
	border-bottom: 1px dashed var(--lp-line);
}

.lp-price-list__term {
	max-width: 65%;
}

.lp-price-list__name {
	display: block;
	font-size: 14.5px;
	font-weight: 700;
}

.lp-price-list__note {
	display: block;
	margin-top: 4px;
	color: var(--lp-muted);
	font-size: 12px;
}

.lp-price-list__price {
	margin: 0;
	color: var(--lp-primary);
	font-weight: 700;
	white-space: nowrap;
}

.lp-prices__note {
	margin: 20px 0 0;
	color: var(--lp-muted);
	font-size: 12.5px;
}

.lp-cases {
	padding-top: 72px;
	padding-bottom: 72px;
}

.lp-cases .lp-subheading {
	margin-bottom: 32px;
}

.lp-cases__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 28px;
}

.lp-case {
	padding: 28px;
	background: var(--lp-white);
	border-radius: 24px;
	box-shadow: 0 8px 24px rgba(74, 63, 53, 0.06);
}

.lp-case__label {
	margin: 0 0 14px;
	color: var(--lp-accent);
	font-family: var(--lp-font-round);
	font-size: 14px;
	font-weight: 900;
}

.lp-case__photos {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 18px;
}

.lp-case__photos .lp-case__photo {
	width: 45%;
	height: auto;
	border-radius: 14px;
}

.lp-case__arrow {
	color: #bdd251;
	font-size: 20px;
}

/* 主訴・治療期間などの明細。dt を見出し、dd を内容として横並びにする */
.lp-case__detail {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 8px 12px;
	margin: 0;
	font-size: 13.5px;
}

.lp-case__detail dt {
	font-weight: 700;
	white-space: nowrap;
}

.lp-case__detail dd {
	margin: 0;
}

.lp-case__risk-term,
.lp-case__risk {
	color: var(--lp-muted);
	font-size: 12px;
}

.lp-cases__cta {
	padding-top: 56px;
	padding-bottom: 56px;
	text-align: center;
}

/* --------------------------------------------------------------------------
   フッター
   -------------------------------------------------------------------------- */

.lp-footer {
	padding: 56px 24px 24px;
	background: var(--lp-bg);
}

/* TOP以外は上に区切りの点線を入れる（TOPは直前のCTA帯が区切りになるため不要） */
.lp-footer--edged {
	border-top: 3px dashed #ffd3e0;
}

.lp-footer__inner {
	max-width: var(--lp-container);
	margin-inline: auto;
}

.lp-footer__top {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 36px;
	margin-bottom: 40px;
}

.lp-footer__gaikan {
	width: 100%;
	height: auto;
	border-radius: 20px;
}

.lp-footer__map {
	width: 100%;
	height: 260px;
	border: 0;
	border-radius: 20px;
}

.lp-footer__info .lp-footer__logo {
	display: block;
	height: 100px;
	width: auto;
	margin: 0 0 12px;
}

.lp-footer__address {
	margin: 0 0 8px;
	font-size: 14.5px;
}

.lp-footer__access {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 8px;
	margin: 0 0 16px;
}

.lp-footer__access img {
	width: 50%;
	max-width: 182px;
}


.lp-footer__nav {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	padding: 24px 0;
	border-top: 1px solid var(--lp-line);
	color: var(--lp-muted);
	font-size: 13.5px;
}

.lp-footer__copy {
	margin: 16px 0 0;
	color: #b0a390;
	font-size: 12.5px;
	text-align: center;
}

/* --------------------------------------------------------------------------
   レスポンシブ
   原本は固定幅前提だったため、狭い画面向けの調整はここで追加している。
   -------------------------------------------------------------------------- */

@media (max-width: 900px) {
	.lp-section {
		padding: 48px 20px;
	}

	.lp-heading {
		font-size: 19px;
		padding: 10px 24px;
	}

	.lp-hero__clinic-name {
		font-size: 32px;
	}

	.lp-doctors__cards,
	.lp-doctors__lead,
	.lp-why__inner,
	.lp-methods__grid,
	.lp-age-panel,
	.lp-footer__top,
	.lp-profile,
	.lp-profile--reverse,
	.lp-message,
	.lp-prices__grid,
	.lp-cases__grid {
		grid-template-columns: 1fr;
	}

	.lp-footer__top .lp-footer__info,
	.lp-footer__top .lp-footer__info img {
		margin: 0 auto;
		align-items: center;
		text-align: center;
	}

	.lp-footer__info .lp-footer__access {
		justify-content: center;
	}


	.lp-features__grid {
		grid-template-columns: 1fr;
	}

	.lp-doctors__lead,
	.lp-age-panel {
		padding: 28px;
	}

	/* 画像とテキストの順序が逆のカードも、縦積み時は画像を先に出す */
	.lp-profile--reverse .lp-profile__body {
		order: 2;
	}

	.lp-profile,
	.lp-message,
	.lp-price-card {
		padding: 28px;
	}

	.lp-pagehead__title {
		font-size: 28px;
	}

	.lp-price-list__term {
		max-width: none;
	}

	.lp-why__inner {
		gap: 28px;
	}

	.lp-why__title {
		font-size: 24px;
	}

	.lp-menu__term {
		max-width: none;
	}
}

@media (min-width: 721px) {
	.lp-footer .mobile-bottom-bar .btn-tel {
		display: none !important;
	}

	.lp-footer .mobile-bottom-bar .bar-btn {
		width: 100px;
		height: 100px;
	}

	.lp-footer .mobile-bottom-bar .btn-map .button-icon {
		width: 50px;
		height: 50px;
	}
}

@media (max-width: 720px) {

	/* 左右交互のジグザグは幅が足りないため、STEP円を左、タイトル・画像・本文を右列に積む1列構成に変える。
	   marker/body は display: contents で入れ物を消し、中の要素を直接グリッドに配置する。 */
	.lp-flow-step {
		grid-template-columns: 56px 1fr;
		grid-template-areas:
			"num   title"
			"line  photo"
			"line  desc";
		column-gap: 20px;
		row-gap: 4px;
		margin-bottom: 28px;
	}

	.lp-flow-step__marker,
	.lp-flow-step__body {
		display: contents;
	}

	.lp-flow-step__num {
		grid-area: num;
	}

	.lp-flow-step__marker .lp-flow-step__title {
		grid-area: title;
		align-self: center;
		margin: 0;
		text-align: left;
	}

	.lp-flow-step__line {
		grid-area: line;
		width: 2px;
		height: 100%;
		margin: 0 auto;
	}

	.lp-flow-step__body .lp-flow-step__photo {
		grid-area: photo;
		margin-bottom: 0;
	}

	.lp-flow-step__desc {
		grid-area: desc;
	}

	.lp-header__inner {
		gap: 10px;
		padding: 10px 16px;
	}

	.lp-brand .lp-brand__logo {
		height: 40px;
	}

	.lp-brand__sub {
		font-size: 11px;
	}

	.lp-nav__link {
		font-size: 12.5px;
	}

	.lp-btn--tel {
		padding: 8px 16px;
		font-size: 13px;
	}

	.lp-hero__visual {
		min-height: 0;
	}

	/* サイズ変数だけ差し替えれば、引き上げ量（高さの半分）も自動で追従する */
	.lp-points {
		--lp-point-size: 108px;

		gap: 8px;
		padding: 0 12px;
	}

	.lp-point {
		padding: 6px;
	}

	.lp-point__icon {
		width: 50px;
		margin-bottom: 4px;
	}

	/* 「子・パパママ・医師」の9文字が1行に収まるサイズ */
	.lp-point__text {
		font-size: 10.5px;
	}

	.lp-note {
		padding: 20px;
	}

	.lp-method {
		grid-template-columns: 1fr;
	}

	.lp-cta__buttons {
		flex-direction: column;
		align-items: stretch;
	}

	.lp-btn--lg {
		padding: 14px 24px;
		font-size: 16px;
	}

	.lp-header__toggle {
		display: flex;
	}

	.lp-nav {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		flex-direction: column;
		gap: 0;
		width: 100%;
		padding: 16px 24px;
		background: rgba(255, 251, 242, 0.98);
		backdrop-filter: blur(6px);
		border-bottom: 3px dashed #ffd3e0;
	}

	.lp-nav.is-active {
		display: flex;
	}

	.lp-nav__link {
		padding: 12px 0;
		border-bottom: 1px solid var(--lp-line);
	}

	.lp-nav__link:last-child {
		border-bottom: none;
	}

	.lp-footer__nav {
		gap: 12px 16px;
	}

	.lp-pagehead {
		padding: 40px 20px;
	}

	.lp-pagehead__title {
		font-size: 24px;
	}

	/* 明細は見出しと内容を縦積みにする（「主訴・治療内容」が折り返せないため） */
	.lp-case__detail {
		grid-template-columns: 1fr;
		gap: 2px;
	}

	.lp-case__detail dd {
		margin-bottom: 8px;
	}

	.lp-subheading {
		font-size: 20px;
	}

	.sp-only {
		display: block;
	}

	.pc-only {
		display: none;
	}

}

/* 450px〜720px幅は画面が広くなる分、バッジ（吹き出し画像＋医院名）も大きく表示する */
@media (min-width: 451px) and (max-width: 720px) {
	.lp-hero__badge {
		top: 60%;
	}

	.lp-hero__badge .lp-hero__badge-image {
		max-width: 420px;
	}

	.lp-hero__clinic-name {
		font-size: 44px;
	}
}

@media (max-width: 450px) {
	.lp-hero__badge {
		top: 60%;
	}

	.lp-hero__badge .lp-hero__badge-image {
		max-width: 300px;
	}

	.lp-hero__clinic-name {
		font-size: 26px;
	}
}

/* 900px〜500pxは1カラム表示になり画像が広がりすぎるため、幅を抑えて中央寄せにする */
@media (min-width: 501px) and (max-width: 900px) {
	.lp-feature .lp-feature__photo {
		max-width: 260px;
		margin-inline: auto;
	}
}

/* --------------------------------------------------------------------------
   年齢別タブ（画像切り替え・スタイルリセット）
   -------------------------------------------------------------------------- */

/* 1. ボタン自体の背景・枠線・余白をクリア */
.lp-age-tab {
	min-width: auto;
	padding: 0;
	background: transparent;
	border: none;
	border-radius: 0;
	box-shadow: none;
	cursor: pointer;
}

.lp-age-tab.is-active {
	background: transparent;
	border-color: transparent;
}

/* 2. 画像の切り替え制御 */
/* 通常時はアクティブ用画像を隠す */
.lp-age-tab__img--active {
	display: none;
}

.lp-age-tab__img--default {
	display: block;
}

/* .is-active がついた時はアクティブ画像を表示し、通常画像を隠す */
.lp-age-tab.is-active .lp-age-tab__img--active {
	display: block;
}

.lp-age-tab.is-active .lp-age-tab__img--default {
	display: none;
}

/* 画像サイズはお好みに合わせて調整してください */
.lp-page .lp-age-tab__img {
	margin: 0 auto;
	width: 100%;
	max-width: 200px;
	/* タブ画像の幅 */
	height: auto;
}