/*
Theme Name: BlankSlate Child
Template: blankslate
*/

:root {
	--color-blue: #3e9bd8;
	--color-blue-deep: #2385c7;
	--color-blue-soft: #e9f6ff;
	--color-text: #202b35;
	--color-muted: #5f6b75;
	--color-line: #d8ecfa;
	--shadow-soft: 0 14px 38px rgba(49, 136, 196, 0.16);
	--font-sans: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
	--font-serif: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	background: #fff;
	color: var(--color-text);
	font-family: var(--font-sans);
	letter-spacing: 0;
}

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

.only_sp {
	display: none;
}

.only_pc {
	display: block;
}

@media (max-width: 768px) {

	.only_sp {
		display: block;
	}

	.only_pc {
		display: none;
	}
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 10;
	background: rgba(255, 255, 255, 0.94);
	border-bottom: 1px solid rgba(209, 231, 247, 0.8);
	backdrop-filter: blur(12px);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	width: min(100%, 1640px);
	min-height: 148px;
	margin: 0 auto;
	padding: 22px 48px;
}

.site-logo {
	display: flex;
	align-items: center;
	gap: 18px;
	flex: 0 0 auto;
}

.site-logo__mark {
	position: relative;
	display: grid;
	place-items: center;
	width: 86px;
	height: 86px;
	color: var(--color-blue);
}

.site-logo__mark::before {
	content: "";
	position: absolute;
	inset: 14px 22px 8px;
	border: 8px solid currentColor;
	border-bottom-width: 16px;
	border-radius: 46% 46% 52% 52%;
	opacity: 0.55;
	transform: rotate(45deg);
}

.site-logo__mark span {
	position: absolute;
	width: 28px;
	height: 28px;
	border: 7px solid currentColor;
	border-radius: 50%;
	opacity: 0.5;
}

.site-logo__mark span:nth-child(1) {
	left: 0;
	bottom: 20px;
}

.site-logo__mark span:nth-child(2) {
	right: 0;
	bottom: 20px;
}

.site-logo__mark span:nth-child(3) {
	top: 3px;
	left: 29px;
}

.site-logo__text {
	display: grid;
	gap: 3px;
	color: var(--color-blue-deep);
}

.site-logo__sub {
	color: #3d4650;
	font-size: 16px;
	font-weight: 700;
}

.site-logo__name {
	font-size: 39px;
	font-weight: 500;
	letter-spacing: 0.14em;
}

.site-logo__en {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.22em;
	opacity: 0.64;
}

.site-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: clamp(22px, 3.1vw, 58px);
	flex: 1 1 auto;
	font-size: 17px;
	font-weight: 700;
	color: #242b33;
	white-space: nowrap;
}

.site-nav a {
	transition: color 0.2s ease;
}

.site-nav a:hover {
	color: var(--color-blue-deep);
}

.site-header__actions {
	display: grid;
	gap: 14px;
	width: 236px;
}

.header-tel,
.header-access {
	display: grid;
	place-items: center;
	min-height: 58px;
	border-radius: 8px;
	font-weight: 700;
}

.header-tel {
	background: rgba(246, 251, 255, 0.95);
	border: 1px solid var(--color-line);
	color: var(--color-blue-deep);
	box-shadow: 0 6px 18px rgba(35, 133, 199, 0.08);
}

.header-tel__number {
	font-size: 24px;
	line-height: 1.1;
}

.header-tel__note {
	margin-top: 4px;
	font-size: 12px;
	color: #69aee1;
}

.header-access {
	background: linear-gradient(180deg, #46a9e6, #278ccc);
	color: #fff;
	box-shadow: var(--shadow-soft);
}

.site-main {
	overflow: hidden;
}

.fv {
	position: relative;
	min-height: 842px;
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.93) 34%, rgba(255, 255, 255, 0.42) 54%, rgba(255, 255, 255, 0) 76%),
		linear-gradient(180deg, rgba(247, 252, 255, 0.24) 0%, rgba(255, 255, 255, 0.04) 100%),
		url("assets/images/fv-clinic-bg.png") center right / cover no-repeat;
}

.fv__bg {
	position: absolute;
	inset: 0;
	overflow: hidden;
}

.fv__photo {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 82% 45%, rgba(255, 255, 255, 0) 0 42%, rgba(255, 255, 255, 0.12) 62%, rgba(255, 255, 255, 0.36) 100%),
		linear-gradient(90deg, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0.58) 39%, rgba(255, 255, 255, 0.04) 70%, rgba(255, 255, 255, 0) 100%);
	pointer-events: none;
}

.fv__photo::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0) 46%, rgba(255, 255, 255, 0.16) 100%);
}

.fv__photo::after {
	content: none;
}

.fv::after {
	content: "";
	position: absolute;
	left: -4vw;
	right: -4vw;
	bottom: -50px;
	height: 146px;
	background: #e7f6ff;
	border-radius: 50% 50% 0 0 / 58% 58% 0 0;
	opacity: 0.78;
}

.fv__inner {
	position: relative;
	z-index: 1;
	width: min(100%, 1640px);
	margin: 0 auto;
	padding: 110px 48px 132px;
}

.fv__copy {
	width: min(850px, 100%);
}

.fv h1 {
	margin: 0;
	font-family: var(--font-serif);
	font-size: clamp(35px, 2.85vw, 64px);
	font-weight: 500;
	line-height: 1.72;
	color: #111;
}

.fv h1 span,
.intro h2 span {
	color: var(--color-blue);
}

.fv__lead {
	margin: 42px 0 0;
	color: #3f4b55;
	font-size: 18px;
	font-weight: 700;
	line-height: 2.15;
}

.fv-features {
	display: grid;
	grid-template-columns: repeat(4, minmax(132px, 1fr));
	gap: 20px;
	width: min(840px, 100%);
	margin: 46px 0 0;
	padding: 0;
	list-style: none;
}

.fv-features li {
	display: flex;
	align-items: center;
	justify-content: center;
	/* gap: 14px; */
	min-height: 92px;
	padding: 14px 20px;
	background: rgba(255, 255, 255, 0.88);
	border: 1px solid rgba(225, 241, 250, 0.9);
	border-radius: 999px;
	box-shadow: 0 10px 30px rgba(95, 152, 190, 0.1);
	color: #35424d;
	font-size: 14px;
	font-weight: 800;
	line-height: 1.55;
	text-align: center;
}

.fv-features__icon {
	display: grid;
	place-items: center;
	flex: 0 0 52px;
	width: 52px;
	height: 52px;
	color: var(--color-blue);
	line-height: 1;
}

.fv-features__icon svg {
	display: block;
	width: 100%;
	height: 100%;
	fill: none;
	stroke: currentColor;
	stroke-width: 4.4;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.fv__buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin-top: 48px;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	position: relative;
	width: min(100%, 406px);
	min-height: 82px;
	padding: 18px 64px 18px 42px;
	border-radius: 999px;
	font-size: 20px;
	font-weight: 800;
}

.button::after {
	content: ">";
	position: absolute;
	right: 34px;
	font-size: 24px;
	font-weight: 700;
}

.button--primary {
	background: linear-gradient(180deg, #45a9e5, #278dcd);
	color: #fff;
	box-shadow: var(--shadow-soft);
}

.button--outline {
	background: rgba(255, 255, 255, 0.82);
	border: 3px solid #b6ddf4;
	color: var(--color-blue-deep);
}

.intro {
	position: relative;
	z-index: 2;
	background: #fff;
	padding: 78px 24px 88px;
	text-align: center;
}

.intro__inner {
	width: min(1040px, 100%);
	margin: 0 auto;
}

.intro h2 {
	margin: 0;
	font-family: var(--font-serif);
	font-size: clamp(23px, 2.1vw, 40px);
	font-weight: 500;
	line-height: 1.8;
}

.intro__ornament {
	width: 44px;
	height: 22px;
	margin: 20px auto 28px;
	border-bottom: 3px solid var(--color-blue);
	border-radius: 50%;
	opacity: 0.8;
}

.intro p {
	margin: 0 auto 12px;
	color: #485560;
	font-size: 17px;
	font-weight: 700;
	line-height: 2.05;
}

.site-footer {
	padding: 28px 24px;
	background: #f2f9fe;
	color: #557184;
	text-align: center;
}

.site-footer p {
	margin: 0;
}

.obgyn {
	background: #fff;
	padding: 0 48px 86px;
}

.obgyn__hero {
	position: relative;
	min-height: 610px;
	margin: 0 -48px;
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.96) 45%, rgba(255, 255, 255, 0.2) 68%, rgba(255, 255, 255, 0) 100%),
		linear-gradient(180deg, rgba(255, 255, 255, 0) 70%, #fff 100%),
		url("assets/images/obgyn-bg.png") center right / cover no-repeat;
}

.obgyn__hero-inner {
	width: min(100%, 1740px);
	margin: 0 auto;
	padding: 54px 48px 48px;
}

.obgyn h2 {
	margin: 0;
	color: #226fa6;
	font-family: var(--font-serif);
	font-size: clamp(35px, 2.85vw, 64px);
	font-weight: 500;
	line-height: 1.45;
	text-shadow: 0 2px 0 rgba(255, 255, 255, 0.55);
}

.obgyn__line {
	position: relative;
	width: 390px;
	height: 26px;
	margin: 28px 0 36px;
	border-bottom: 3px solid #b7dcf6;
}

.obgyn__line::before,
.obgyn__line::after {
	content: "";
	position: absolute;
	background: #8dc7ee;
}

.obgyn__line::before {
	right: 4px;
	bottom: -8px;
	width: 42px;
	height: 3px;
	transform: rotate(34deg);
	transform-origin: right center;
}

.obgyn__line::after {
	right: -2px;
	bottom: -1px;
	width: 28px;
	height: 18px;
	border-radius: 0 18px 18px 0;
	clip-path: polygon(0 50%, 100% 0, 74% 50%, 100% 100%);
	opacity: 0.85;
}

.obgyn__text {
	width: min(760px, 52vw);
	color: #20272e;
	font-size: 16px;
	font-weight: 500;
	line-height: 2.1;
}

.obgyn__text p {
	margin: 0 0 12px;
}

.obgyn__cards {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px 28px;
	width: min(100%, 1740px);
	margin: -68px auto 0;
}

.obgyn-card {
	display: grid;
	grid-template-columns: 1fr;
	gap: 18px;
	min-height: 320px;
	padding: 34px 34px 30px;
	background: rgba(255, 255, 255, 0.92);
	border: 1px solid #d9ebf7;
	border-radius: 12px;
	box-shadow: 0 8px 22px rgba(53, 126, 176, 0.08);
}

.obgyn-card__head {
	display: flex;
	align-items: center;
	gap: 18px;
	min-height: 58px;
}

.obgyn-card__icon {
	display: grid;
	place-items: center;
	flex: 0 0 58px;
	width: 58px;
	height: 58px;
	border-radius: 50%;
	background: linear-gradient(145deg, #eef7ff, #e3f0fa);
	color: #4ba0db;
}

.obgyn-card__icon svg {
	display: block;
	width: 34px;
	height: 34px;
	fill: none;
	stroke: currentColor;
	stroke-width: 3.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.obgyn-card h3 {
	margin: 0;
	color: #1684d1;
	font-size: 22px;
	font-weight: 600;
	line-height: 1.25;
}

.obgyn-card p {
	margin: 0;
	color: #242b31;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.9;
}

.internal {
	background: #fff;
	padding: 0 48px 86px;
}

.internal__hero {
	min-height: 560px;
	margin: 0 -48px;
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.96) 43%, rgba(255, 255, 255, 0.35) 62%, rgba(255, 255, 255, 0) 100%),
		linear-gradient(180deg, rgba(255, 255, 255, 0) 70%, #fff 100%),
		url("assets/images/internal-bg.png") center right / cover no-repeat;
}

.internal__hero-inner,
.internal__inner {
	width: min(100%, 1740px);
	margin: 0 auto;
}

.internal__hero-inner {
	padding: 52px 48px 70px;
}

.internal__label {
	display: flex;
	align-items: center;
	gap: 26px;
	margin-bottom: 28px;
	color: #1377c5;
}

.internal__label-icon {
	display: grid;
	place-items: center;
	width: 128px;
	height: 128px;
	border-radius: 50%;
	background: linear-gradient(145deg, #eff8ff, #e4f1fb);
}

.internal__label-icon svg,
.internal-icon svg {
	display: block;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.internal__label-icon svg {
	width: 62px;
	height: 62px;
	stroke-width: 3.4;
}

.internal__label-ja {
	display: block;
	font-family: var(--font-serif);
	font-size: 52px;
	font-weight: 700;
	line-height: 1.05;
}

.internal__label-en {
	display: block;
	margin-top: 12px;
	font-family: Georgia, serif;
	font-size: 18px;
	font-weight: 700;
}

.internal h2 {
	margin: 0;
	color: #111820;
	font-family: var(--font-serif);
	font-size: clamp(35px, 2.85vw, 64px);
	font-weight: 500;
	line-height: 1.52;
}

.internal h2 span {
	color: #4a9bd8;
}

.internal__hero p {
	width: min(720px, 52vw);
	margin: 28px 0 0;
	color: #1d2730;
	font-size: 17px;
	font-weight: 500;
	line-height: 2.08;
}

.internal__inner {
	display: grid;
	gap: 36px;
	margin-top: -28px;
}

.internal-symptoms,
.internal-services,
.internal-support {
	background: rgba(247, 252, 255, 0.86);
	border: 1px solid #dceffc;
	border-radius: 16px;
	box-shadow: 0 10px 30px rgba(65, 142, 196, 0.09);
}

.internal-symptoms {
	padding: 28px 20px 26px;
}

.internal-symptoms h3,
.internal-services h3,
.internal-support h3 {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 26px;
	margin: 0;
	color: #1277c9;
	font-family: var(--font-serif);
	font-size: 30px;
	font-weight: 700;
	line-height: 1.35;
	text-align: center;
}

.internal-symptoms h3::before,
.internal-symptoms h3::after {
	content: "";
	width: 92px;
	height: 2px;
	background: #cce7f9;
}

.internal-symptoms__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin-top: 24px;
}

.internal-symptom {
	display: grid;
	place-items: center;
	gap: 14px;
	min-height: 168px;
	padding: 10px 18px;
	border-right: 1px solid #d7ebfa;
	border-bottom: 1px solid #d7ebfa;
	color: #1478c7;
	text-align: center;
}

.internal-symptom:nth-child(4n) {
	border-right: 0;
}

.internal-symptom:nth-child(n+5) {
	border-bottom: 0;
}

.internal-icon {
	display: grid;
	place-items: center;
	width: 92px;
	height: 92px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.9);
	color: #4a98df;
}

.internal-icon svg {
	width: 54px;
	height: 54px;
	stroke-width: 3.2;
}

.internal-symptom p {
	margin: 0;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.45;
}

.internal-services {
	padding: 26px 20px 28px;
}

.internal-services h3::before,
.internal-services h3::after,
.internal-support h3::before,
.internal-support h3::after {
	content: "";
	width: 38px;
	height: 18px;
	background: #5ca9e3;
	clip-path: polygon(0 50%, 35% 0, 45% 36%, 78% 0, 100% 18%, 66% 50%, 100% 82%, 78% 100%, 45% 64%, 35% 100%);
	opacity: 0.9;
}

.internal-services__grid {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 12px;
	margin-top: 26px;
}

.internal-service {
	display: grid;
	justify-items: center;
	align-content: start;
	gap: 12px;
	min-height: 250px;
	padding: 28px 16px 22px;
	background: rgba(255, 255, 255, 0.94);
	border: 1px solid #d9ecfa;
	border-radius: 10px;
	box-shadow: 0 8px 20px rgba(65, 142, 196, 0.07);
	text-align: center;
}

.internal-service .internal-icon {
	width: 76px;
	height: 76px;
	background: transparent;
}

.internal-service .internal-icon svg {
	width: 60px;
	height: 60px;
}

.internal-service h4 {
	margin: 0;
	color: #1478c7;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.38;
}

.internal-service p {
	margin: 0;
	color: #222b33;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.75;
}

.internal-support {
	padding: 30px 34px 34px;
}

.internal-support__list {
	margin-top: 28px;
	background: rgba(255, 255, 255, 0.88);
	border-radius: 14px;
	padding: 16px 30px;
}

.internal-support__list div {
	display: grid;
	grid-template-columns: 340px minmax(0, 1fr);
	gap: 28px;
	align-items: center;
	padding: 18px 0;
	border-bottom: 1px solid #cfe7f8;
}

.internal-support__list div:last-child {
	border-bottom: 0;
}

.internal-support__list h4 {
	position: relative;
	margin: 0;
	padding-left: 34px;
	color: #1478c7;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.45;
}

.internal-support__list h4::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.55em;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: #b7dbf6;
}

.internal-support__list p {
	margin: 0;
	color: #222b33;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.8;
}

.internal-support__note {
	margin: 22px 0 0;
	padding: 18px 24px;
	border-radius: 8px;
	background: #e7f4ff;
	color: #1478c7;
	font-size: 18px;
	font-weight: 700;
	text-align: center;
}

.abortion {
	overflow: hidden;
	background: #fff;
	padding: 0 70px 82px;
}

.abortion__hero {
	min-height: 580px;
	margin: 0 -70px;
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 42%, rgba(255, 255, 255, 0.38) 66%, rgba(255, 255, 255, 0.04) 100%),
		linear-gradient(180deg, rgba(255, 255, 255, 0) 73%, #fff 100%),
		url("assets/images/abortion-bg.png") center right / cover no-repeat;
}

.abortion__inner,
.abortion__cards {
	width: min(100%, 1740px);
	margin: 0 auto;
}

.abortion__inner {
	position: relative;
	min-height: 580px;
	padding: 64px 42px 44px;
}

.abortion__copy {
	width: min(820px, 54vw);
}

.abortion__heading {
	display: grid;
	grid-template-columns: 150px minmax(0, 1fr);
	gap: 34px;
	align-items: center;
}

.abortion__main-icon {
	display: grid;
	place-items: center;
	width: 150px;
	height: 150px;
	border-radius: 50%;
	background: linear-gradient(145deg, #fff0f6, #fde5ef);
	color: #ed8eb0;
}

.abortion__main-icon svg,
.abortion-card__icon svg {
	display: block;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.abortion__main-icon svg {
	width: 82px;
	height: 82px;
	stroke-width: 3.4;
}

.abortion__eyebrow {
	margin: 0 0 22px;
	color: #ee82a8;
	font-family: var(--font-serif);
	font-size: 30px;
	font-weight: 700;
	line-height: 1;
}

.abortion h2 {
	margin: 0;
	color: #162237;
	font-family: var(--font-serif);
	font-size: clamp(35px, 2.85vw, 64px);
	font-weight: 500;
	line-height: 1.48;
	letter-spacing: 0;
}

.abortion h2 span {
	color: #398cd1;
}

.abortion__line {
	position: relative;
	width: 790px;
	max-width: 100%;
	height: 1px;
	margin: 34px 0 38px;
	background: #b9dbf3;
}

.abortion__line::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 250px;
	width: 38px;
	height: 18px;
	background: #8fc4ec;
	clip-path: polygon(0 50%, 35% 0, 45% 36%, 78% 0, 100% 18%, 66% 50%, 100% 82%, 78% 100%, 45% 64%, 35% 100%);
	transform: translateY(-50%);
}

.abortion__copy>p {
	margin: 0;
	color: #17222e;
	font-size: 18px;
	font-weight: 500;
	line-height: 2.05;
}

.abortion__copy>p span {
	color: #ec769d;
	text-decoration: underline;
	text-decoration-color: #f3adc3;
	text-underline-offset: 4px;
	font-weight: 600;
}

.abortion__badge {
	position: absolute;
	right: 74px;
	top: 300px;
	display: grid;
	place-items: center;
	width: 208px;
	height: 208px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.9);
	border: 2px dotted #b9d8f3;
	box-shadow: 0 4px 24px rgba(59, 138, 201, 0.08);
	color: #3185c9;
	font-size: 25px;
	font-weight: 700;
	line-height: 1.75;
	text-align: center;
}

.abortion__badge::before,
.abortion__badge::after {
	content: "";
	position: absolute;
	left: 50%;
	width: 36px;
	height: 16px;
	background: #8fc4ec;
	clip-path: polygon(0 50%, 35% 0, 45% 36%, 78% 0, 100% 18%, 66% 50%, 100% 82%, 78% 100%, 45% 64%, 35% 100%);
	transform: translateX(-50%);
}

.abortion__badge::before {
	top: 30px;
}

.abortion__badge::after {
	bottom: 30px;
	transform: translateX(-50%) rotate(180deg);
}

.abortion__cards {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
	margin-top: -8px;
}

.abortion-card {
	position: relative;
	display: grid;
	grid-template-columns: 1fr;
	gap: 18px;
	align-content: start;
	min-height: 258px;
	padding: 38px 34px 30px;
	background: rgba(255, 255, 255, 0.94);
	border: 1px solid #dceefb;
	border-radius: 14px;
	box-shadow: 0 9px 24px rgba(65, 142, 196, 0.1);
}

.abortion-card__num {
	position: absolute;
	top: 20px;
	left: 26px;
	display: grid;
	place-items: center;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: #edf6ff;
	color: #70aee0;
	font-family: Georgia, serif;
	font-size: 24px;
	font-weight: 700;
}

.abortion-card__head {
	display: flex;
	align-items: center;
	gap: 24px;
	min-height: 132px;
	padding-bottom: 18px;
	border-bottom: 1px dotted #c7e2f6;
}

.abortion-card__icon {
	display: grid;
	place-items: center;
	flex: 0 0 132px;
	width: 132px;
	height: 132px;
	border-radius: 50%;
	background: linear-gradient(145deg, #f4faff, #eaf4fd);
	color: #4a98df;
}

.abortion-card__icon svg {
	width: 82px;
	height: 82px;
	stroke-width: 3.1;
}

.abortion-card h3 {
	margin: 0;
	color: #3185c9;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.55;
}

.abortion-card p {
	margin: 16px 0 0;
	color: #202830;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.85;
}

.clinic-info {
	overflow: hidden;
	background: #fff;
	padding-bottom: 90px;
}

.clinic-info__hero {
	min-height: 650px;
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 42%, rgba(255, 255, 255, 0.34) 64%, rgba(255, 255, 255, 0.02) 100%),
		linear-gradient(180deg, rgba(255, 255, 255, 0) 76%, #fff 100%),
		url("assets/images/about-clinic-bg.png") center right / cover no-repeat;
}

.clinic-info__inner,
.clinic-info__body {
	width: min(100%, 1540px);
	margin: 0 auto;
	padding-inline: 56px;
}

.clinic-info__copy {
	width: min(780px, 54vw);
	padding-top: 82px;
}

.section-title {
	color: #1e7fcb;
	font-family: var(--font-serif);
	text-align: center;
}

.section-title h2 {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 34px;
	margin: 0;
	font-size: 42px;
	font-weight: 700;
	line-height: 1.2;
}

.section-title h2::before,
.section-title h2::after,
.access-info__title h2::before,
.access-info__title h2::after {
	content: "";
	width: 48px;
	height: 24px;
	background: #91c5ed;
	clip-path: polygon(0 48%, 30% 0, 42% 38%, 72% 2%, 100% 22%, 66% 52%, 100% 82%, 72% 100%, 42% 62%, 30% 100%);
	opacity: 0.85;
}

.section-title h2::before,
.access-info__title h2::before {
	transform: rotate(180deg);
}

.section-title p {
	margin: 8px 0 0;
	font-family: Georgia, serif;
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 0.02em;
}

.section-title--left {
	text-align: center;
	width: 420px;
	max-width: 100%;
}

.clinic-info__copy>h3 {
	margin: 76px 0 38px;
	color: #161d27;
	font-family: var(--font-serif);
	font-size: clamp(34px, 2.5vw, 48px);
	font-weight: 500;
	line-height: 1.55;
}

.clinic-info__copy>h3 span {
	color: #2385c7;
}

.clinic-info__text {
	display: grid;
	gap: 16px;
	color: #222b34;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.95;
}

.clinic-info__text p {
	margin: 0;
}

.clinic-info__body {
	margin-top: -8px;
}

.clinic-message {
	/* display: grid; */
	grid-template-columns: 170px minmax(0, 1fr);
	align-items: center;
	gap: 18px;
	/* min-height: 170px; */
	padding: 28px 52px;
	border: 1px solid #b8dcf5;
	border-radius: 8px;
	background: rgba(250, 253, 255, 0.88);
	box-shadow: 0 10px 28px rgba(65, 142, 196, 0.06);
	text-align: center;
}

.clinic-message__leaf {
	width: 112px;
	height: 112px;
	margin-inline: auto;
	border-left: 5px solid #99c9eb;
	border-bottom: 5px solid #99c9eb;
	border-radius: 0 0 0 62px;
	opacity: 0.72;
	transform: rotate(-14deg);
}

.clinic-message p {
	margin: 0;
	color: #227fc6;
	font-family: var(--font-serif);
	font-size: 18px;
	font-weight: 700;
	line-height: 1.75;
	letter-spacing: 0.04em;
}

.access-info {
	margin-top: 94px;
}

.access-info__title {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 40px;
	color: #247fc6;
	font-family: Georgia, var(--font-serif);
	text-align: center;
}

.access-info__title::before,
.access-info__title::after {
	content: "";
	flex: 1 1 0;
	height: 1px;
	background: #cfe6f8;
}

.access-info__title h2 {
	display: inline-flex;
	align-items: center;
	gap: 30px;
	margin: 0 30px;
	font-size: 42px;
	font-weight: 500;
	line-height: 1.2;
}

.hours-card,
.access-panel {
	border: 1px solid #b8dcf5;
	border-radius: 8px;
	background: rgba(250, 253, 255, 0.9);
	box-shadow: 0 10px 28px rgba(65, 142, 196, 0.06);
}

.hours-card {
	padding: 50px 48px 44px;
}

.hours-card>p:first-child {
	margin: 0 0 34px;
	color: #202830;
	font-size: 18px;
	font-weight: 500;
}

.hours-table {
	width: 100%;
	border-collapse: collapse;
	background: #fff;
	table-layout: fixed;
	font-size: 18px;
	text-align: center;
}

.hours-table th,
.hours-table td {
	border: 1px solid #d5e8f7;
	padding: 24px 12px;
	color: #1f2933;
	font-weight: 500;
	vertical-align: middle;
}

.hours-table thead th {
	padding: 18px 12px;
	background: linear-gradient(180deg, #2489d1, #1474bd);
	color: #fff;
	font-weight: 700;
}

.hours-table thead th:first-child {
	width: 265px;
}

.hours-table tbody th {
	text-align: left;
	padding-left: 54px;
}

.hours-table td:nth-child(7) {
	font-size: 18px;
	line-height: 1.45;
}

.hours-card__note {
	margin: 34px 0 0;
	color: #1f2933;
	font-size: 18px;
	font-weight: 500;
}

.access-panel {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(420px, 0.98fr);
	margin-top: 40px;
}

.access-map,
.access-details {
	padding: 34px 44px;
}

.access-map {
	border-right: 1px solid #cfe6f8;
}

.access-map h3 {
	margin: 0 0 20px;
	color: #1478c7;
	font-size: 29px;
	font-weight: 700;
}

.map-visual {
	position: relative;
	overflow: hidden;
	height: 420px;
	border: 1px solid #d5e8f7;
	background:
		linear-gradient(14deg, transparent 48%, rgba(238, 118, 118, 0.25) 49% 51%, transparent 52%),
		linear-gradient(88deg, transparent 47%, rgba(86, 139, 180, 0.28) 48% 51%, transparent 52%),
		linear-gradient(0deg, transparent 48%, rgba(86, 139, 180, 0.18) 49% 51%, transparent 52%),
		linear-gradient(90deg, rgba(173, 206, 226, 0.45) 1px, transparent 1px),
		linear-gradient(0deg, rgba(173, 206, 226, 0.45) 1px, transparent 1px),
		#eef6fb;
	background-size: auto, auto, auto, 54px 54px, 54px 54px, auto;
}

.map-visual::before {
	content: "";
	position: absolute;
	inset: 70% -10% -10%;
	background: rgba(248, 221, 156, 0.45);
	transform: rotate(-8deg);
}

.map-visual__pin {
	position: absolute;
	left: 50%;
	top: 33%;
	width: 34px;
	height: 34px;
	border-radius: 50% 50% 50% 0;
	background: #e0372f;
	box-shadow: 0 3px 8px rgba(130, 30, 30, 0.25);
	transform: rotate(-45deg);
}

.map-visual__pin::after {
	content: "";
	position: absolute;
	inset: 9px;
	border-radius: 50%;
	background: #b81918;
}

.map-visual__clinic,
.map-visual__station {
	position: absolute;
	z-index: 1;
	padding: 4px 9px;
	border-radius: 4px;
	background: rgba(255, 255, 255, 0.8);
	color: #1684d1;
	font-size: 18px;
	font-weight: 700;
}

.map-visual__clinic {
	left: 57%;
	top: 34%;
	color: #e03232;
}

.map-visual__station--north {
	left: 19%;
	top: 34%;
}

.map-visual__station--south {
	left: 38%;
	bottom: 9%;
	color: #202830;
}

.map-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	min-width: 330px;
	min-height: 62px;
	margin: 30px auto 0;
	padding: 12px 28px;
	border: 2px solid #9ac9ec;
	border-radius: 999px;
	color: #2385c7;
	font-size: 21px;
	font-weight: 700;
}

.map-button span,
.access-detail__icon {
	display: grid;
	place-items: center;
	color: #8ebfe5;
}

.map-button svg {
	width: 24px;
	height: 24px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2.5;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.access-detail {
	display: grid;
	grid-template-columns: 54px minmax(0, 1fr);
	gap: 26px;
	padding: 23px 0;
	border-bottom: 1px solid #d5e8f7;
}

.access-detail:first-child {
	padding-top: 4px;
}

.access-detail:last-child {
	border-bottom: 0;
}

.access-detail__icon svg {
	width: 42px;
	height: 42px;
	fill: none;
	stroke: currentColor;
	stroke-width: 3;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.access-detail h3 {
	margin: 0 0 8px;
	color: #1478c7;
	font-size: 22px;
	font-weight: 700;
}

.access-detail p {
	margin: 0;
	color: #1f2933;
	font-size: 20px;
	font-weight: 500;
	line-height: 1.55;
}

@media (max-width: 1180px) {
	.site-header__inner {
		min-height: auto;
		padding: 18px 28px;
	}

	.site-nav {
		display: none;
	}

	.fv__photo {
		background:
			radial-gradient(circle at 82% 45%, rgba(255, 255, 255, 0) 0 34%, rgba(255, 255, 255, 0.14) 56%, rgba(255, 255, 255, 0.48) 100%),
			linear-gradient(90deg, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0.6) 46%, rgba(255, 255, 255, 0.02) 100%);
	}

	.obgyn__cards {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.obgyn-card {
		grid-template-columns: 1fr;
	}

	.internal-services__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.internal-support__list div {
		grid-template-columns: 260px minmax(0, 1fr);
	}

	.abortion__cards {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.abortion-card {
		grid-template-columns: 1fr;
	}

	.abortion__badge {
		right: 38px;
		width: 174px;
		height: 174px;
		font-size: 21px;
	}

	.clinic-info__copy {
		width: min(760px, 68vw);
	}

	.clinic-message p {
		font-size: 22px;
	}

	.access-panel {
		grid-template-columns: 1fr;
	}

	.access-map {
		border-right: 0;
		border-bottom: 1px solid #cfe6f8;
	}
}

@media (max-width: 760px) {
	.site-header__inner {
		gap: 16px;
		padding: 14px 18px;
	}

	.site-logo__mark {
		width: 58px;
		height: 58px;
	}

	.site-logo__name {
		font-size: 28px;
	}

	.site-logo__sub,
	.site-logo__en,
	.header-tel {
		display: none;
	}

	.site-header__actions {
		width: auto;
	}

	.header-access {
		min-height: 44px;
		padding: 0 16px;
		font-size: 13px;
		white-space: nowrap;
	}

	.fv {
		min-height: auto;
		background-position: 58% center;
	}

	.fv__photo {
		background:
			linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.74)),
			linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.48) 68%, rgba(255, 255, 255, 0.08) 100%);
	}

	.fv__inner {
		padding: 58px 22px 96px;
	}

	.fv h1 {
		font-size: 23px;
		line-height: 1.62;
	}

	.fv__lead {
		margin-top: 28px;
		font-size: 15px;
		line-height: 2;
	}

	.fv-features {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px;
		margin-top: 30px;
	}

	.fv-features li {
		min-height: 78px;
		padding: 12px 10px;
		border-radius: 18px;
		font-size: 12px;
	}

	.fv-features__icon {
		flex-basis: 34px;
		width: 34px;
		height: 34px;
	}

	.fv__buttons {
		display: grid;
		gap: 14px;
		margin-top: 32px;
	}

	.button {
		width: 100%;
		min-height: 62px;
		padding: 14px 48px 14px 28px;
		font-size: 16px;
	}

	.intro {
		padding: 54px 22px 64px;
	}

	.intro p {
		text-align: left;
		font-size: 15px;
		line-height: 1.95;
	}

	.obgyn {
		padding: 0 18px 54px;
	}

	.obgyn__hero {
		min-height: auto;
		margin: 0 -18px;
		background:
			linear-gradient(180deg, rgba(255, 255, 255, 0.84) 0%, rgba(255, 255, 255, 0.94) 52%, #fff 100%),
			url("assets/images/obgyn-bg.png") 70% top / auto 420px no-repeat;
	}

	.obgyn__hero-inner {
		padding: 260px 22px 34px;
	}

	.obgyn h2 {
		font-size: 23px;
	}

	.obgyn__line {
		width: 240px;
		margin: 20px 0 24px;
	}

	.obgyn__text {
		width: 100%;
		font-size: 16px;
		line-height: 1.95;
	}

	.obgyn__cards {
		grid-template-columns: 1fr;
		gap: 14px;
		margin-top: 0;
	}

	.obgyn-card {
		gap: 14px;
		min-height: auto;
		padding: 22px 18px;
		border-radius: 10px;
	}

	.obgyn-card__head {
		gap: 12px;
		min-height: 44px;
	}

	.obgyn-card__icon {
		flex-basis: 44px;
		width: 44px;
		height: 44px;
	}

	.obgyn-card__icon svg {
		width: 27px;
		height: 27px;
	}

	.obgyn-card h3 {
		font-size: 24px;
	}

	.obgyn-card p {
		font-size: 15px;
		line-height: 1.8;
	}

	.internal {
		padding: 0 18px 54px;
	}

	.internal__hero {
		min-height: auto;
		margin: 0 -18px;
		background:
			linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0.94) 48%, #fff 100%),
			url("assets/images/internal-bg.png") 68% top / auto 360px no-repeat;
	}

	.internal__hero-inner {
		padding: 240px 22px 34px;
	}

	.internal__label {
		gap: 14px;
		margin-bottom: 20px;
	}

	.internal__label-icon {
		width: 74px;
		height: 74px;
	}

	.internal__label-icon svg {
		width: 38px;
		height: 38px;
	}

	.internal__label-ja {
		font-size: 36px;
	}

	.internal__label-en {
		margin-top: 6px;
		font-size: 13px;
	}

	.internal h2 {
		font-size: 23px;
		line-height: 1.55;
	}

	.internal__hero p {
		width: 100%;
		font-size: 15px;
		line-height: 1.95;
	}

	.internal__inner {
		gap: 20px;
		margin-top: 0;
	}

	.internal-symptoms,
	.internal-services,
	.internal-support {
		border-radius: 12px;
	}

	.internal-symptoms {
		padding: 22px 12px 18px;
	}

	.internal-symptoms h3,
	.internal-services h3,
	.internal-support h3 {
		gap: 12px;
		font-size: 24px;
	}

	.internal-symptoms h3::before,
	.internal-symptoms h3::after {
		width: 30px;
	}

	.internal-symptoms__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		margin-top: 18px;
	}

	.internal-symptom {
		min-height: 132px;
		padding: 10px 8px;
	}

	.internal-symptom:nth-child(4n) {
		border-right: 1px solid #d7ebfa;
	}

	.internal-symptom:nth-child(2n) {
		border-right: 0;
	}

	.internal-symptom:nth-child(n+5) {
		border-bottom: 1px solid #d7ebfa;
	}

	.internal-symptom:nth-child(n+7) {
		border-bottom: 0;
	}

	.internal-icon {
		width: 66px;
		height: 66px;
	}

	.internal-icon svg {
		width: 40px;
		height: 40px;
	}

	.internal-symptom p {
		font-size: 15px;
	}

	.internal-services {
		padding: 22px 12px 18px;
	}

	.internal-services h3::before,
	.internal-services h3::after,
	.internal-support h3::before,
	.internal-support h3::after {
		width: 28px;
		height: 14px;
	}

	.internal-services__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 10px;
	}

	.internal-service {
		min-height: 196px;
		padding: 20px 10px 16px;
	}

	.internal-service .internal-icon {
		width: 58px;
		height: 58px;
	}

	.internal-service .internal-icon svg {
		width: 46px;
		height: 46px;
	}

	.internal-service h4 {
		font-size: 16px;
	}

	.internal-service p {
		font-size: 13px;
	}

	.internal-support {
		padding: 22px 16px 22px;
	}

	.internal-support__list {
		padding: 8px 14px;
	}

	.internal-support__list div {
		grid-template-columns: 1fr;
		gap: 6px;
		padding: 14px 0;
	}

	.internal-support__list h4 {
		padding-left: 24px;
		font-size: 17px;
	}

	.internal-support__list h4::before {
		width: 11px;
		height: 11px;
	}

	.internal-support__list p {
		font-size: 14px;
		line-height: 1.75;
	}

	.internal-support__note {
		padding: 14px 12px;
		font-size: 15px;
		line-height: 1.7;
	}

	.abortion {
		padding: 0 18px 54px;
	}

	.abortion__hero {
		min-height: auto;
		margin: 0 -18px;
		background:
			linear-gradient(180deg, rgba(255, 255, 255, 0.68) 0%, rgba(255, 255, 255, 0.94) 45%, #fff 100%),
			url("assets/images/abortion-bg.png") 72% top / auto 360px no-repeat;
	}

	.abortion__inner {
		min-height: auto;
		padding: 250px 22px 32px;
	}

	.abortion__copy {
		width: 100%;
	}

	.abortion__heading {
		grid-template-columns: 72px minmax(0, 1fr);
		gap: 16px;
	}

	.abortion__main-icon {
		width: 72px;
		height: 72px;
	}

	.abortion__main-icon svg {
		width: 44px;
		height: 44px;
	}

	.abortion__eyebrow {
		margin-bottom: 10px;
		font-size: 20px;
	}

	.abortion h2 {
		font-size: 23px;
		line-height: 1.5;
	}

	.abortion__line {
		width: 100%;
		margin: 22px 0 24px;
	}

	.abortion__line::after {
		left: 48%;
		width: 30px;
		height: 14px;
	}

	.abortion__copy>p {
		font-size: 15px;
		line-height: 1.95;
	}

	.abortion__badge {
		position: relative;
		top: auto;
		right: auto;
		width: 148px;
		height: 148px;
		margin: 26px auto 0;
		font-size: 17px;
	}

	.abortion__badge::before {
		top: 18px;
	}

	.abortion__badge::after {
		bottom: 18px;
	}

	.abortion__cards {
		grid-template-columns: 1fr;
		gap: 14px;
		margin-top: 0;
	}

	.abortion-card {
		grid-template-columns: 1fr;
		gap: 16px;
		min-height: auto;
		padding: 24px 18px 22px;
		border-radius: 12px;
	}

	.abortion-card__num {
		top: 12px;
		left: 14px;
		width: 40px;
		height: 40px;
		font-size: 17px;
	}

	.abortion-card__head {
		gap: 14px;
		min-height: 72px;
		padding-bottom: 12px;
	}

	.abortion-card__icon {
		flex-basis: 72px;
		width: 72px;
		height: 72px;
	}

	.abortion-card__icon svg {
		width: 46px;
		height: 46px;
	}

	.abortion-card h3 {
		font-size: 21px;
		line-height: 1.45;
	}

	.abortion-card p {
		margin-top: 10px;
		font-size: 14px;
		line-height: 1.75;
	}

	.clinic-info {
		padding-bottom: 54px;
	}

	.clinic-info__hero {
		min-height: auto;
		background:
			linear-gradient(180deg, rgba(255, 255, 255, 0.74) 0%, rgba(255, 255, 255, 0.94) 48%, #fff 100%),
			url("assets/images/about-clinic-bg.png") 68% top / auto 360px no-repeat;
	}

	.clinic-info__inner,
	.clinic-info__body {
		padding-inline: 18px;
	}

	.clinic-info__copy {
		width: 100%;
		padding-top: 255px;
	}

	.section-title--left {
		width: 100%;
	}

	.section-title h2,
	.access-info__title h2 {
		gap: 14px;
		font-size: 23px;
	}

	.section-title h2::before,
	.section-title h2::after,
	.access-info__title h2::before,
	.access-info__title h2::after {
		width: 30px;
		height: 15px;
	}

	.section-title p {
		font-size: 14px;
	}

	.clinic-info__copy>h3 {
		margin: 36px 0 24px;
		font-size: 30px;
		line-height: 1.55;
	}

	.clinic-info__text {
		gap: 12px;
		font-size: 15px;
		line-height: 1.9;
	}

	.clinic-info__body {
		margin-top: 0;
	}

	.clinic-message {
		grid-template-columns: 1fr;
		gap: 12px;
		min-height: auto;
		margin-top: 28px;
		padding: 22px 18px;
	}

	.clinic-message__leaf {
		width: 70px;
		height: 70px;
		border-left-width: 3px;
		border-bottom-width: 3px;
	}

	.clinic-message p {
		font-size: 18px;
		line-height: 1.75;
		text-align: center;
	}

	.access-info {
		margin-top: 54px;
	}

	.access-info__title {
		margin-bottom: 24px;
	}

	.access-info__title h2 {
		margin: 0 12px;
	}

	.hours-card {
		overflow-x: auto;
		padding: 24px 16px 22px;
	}

	.hours-card>p:first-child {
		margin-bottom: 18px;
		font-size: 17px;
	}

	.hours-table {
		min-width: 720px;
		font-size: 17px;
	}

	.hours-table th,
	.hours-table td {
		padding: 14px 8px;
	}

	.hours-table thead th:first-child {
		width: 150px;
	}

	.hours-table tbody th {
		padding-left: 18px;
	}

	.hours-table td:nth-child(7) {
		font-size: 15px;
	}

	.hours-card__note {
		margin-top: 18px;
		font-size: 16px;
	}

	.access-panel {
		margin-top: 24px;
	}

	.access-map,
	.access-details {
		padding: 22px 18px;
	}

	.access-map h3 {
		font-size: 22px;
	}

	.map-visual {
		height: 260px;
	}

	.map-visual__clinic,
	.map-visual__station {
		font-size: 13px;
	}

	.map-button {
		width: 100%;
		min-width: 0;
		min-height: 54px;
		margin-top: 18px;
		font-size: 16px;
	}

	.access-detail {
		grid-template-columns: 38px minmax(0, 1fr);
		gap: 14px;
		padding: 18px 0;
	}

	.access-detail__icon svg {
		width: 32px;
		height: 32px;
	}

	.access-detail h3 {
		font-size: 17px;
	}

	.access-detail p {
		font-size: 15px;
	}
}
/* ===============================
   下層ページ（page.php）
   =============================== */

/* ページタイトルエリア */
.page-hero {
	padding: 72px 24px 56px;
	background: linear-gradient(180deg, var(--color-blue-soft) 0%, #fff 100%);
	text-align: center;
}

.page-hero__title {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 34px;
	margin: 0;
	color: #1e7fcb;
	font-family: var(--font-serif);
	font-size: clamp(30px, 3.4vw, 42px);
	font-weight: 700;
	line-height: 1.3;
}

/* TOPページの section-title と同じ飾りモチーフ */
.page-hero__title::before,
.page-hero__title::after {
	content: "";
	flex-shrink: 0;
	width: 48px;
	height: 24px;
	background: #91c5ed;
	clip-path: polygon(0 48%, 30% 0, 42% 38%, 72% 2%, 100% 22%, 66% 52%, 100% 82%, 72% 100%, 42% 62%, 30% 100%);
	opacity: 0.85;
}

.page-hero__title::before {
	transform: rotate(180deg);
}

/* 本文エリア */
.page-body {
	padding: 64px 24px 110px;
}

.page-body__inner {
	max-width: 860px;
	margin: 0 auto;
}

.entry-content {
	color: var(--color-text);
	font-size: 16px;
	line-height: 2;
}

.entry-content > :first-child {
	margin-top: 0;
}

.entry-content h2 {
	margin: 64px 0 24px;
	padding: 14px 22px;
	background: var(--color-blue-soft);
	border-left: 4px solid var(--color-blue);
	border-radius: 0 8px 8px 0;
	color: var(--color-blue-deep);
	font-family: var(--font-serif);
	font-size: 26px;
	font-weight: 700;
	line-height: 1.5;
}

.entry-content h3 {
	margin: 48px 0 18px;
	padding-bottom: 10px;
	border-bottom: 2px solid var(--color-line);
	color: var(--color-text);
	font-family: var(--font-serif);
	font-size: 21px;
	font-weight: 700;
	line-height: 1.5;
}

.entry-content h4 {
	margin: 36px 0 14px;
	color: var(--color-blue-deep);
	font-size: 17px;
	font-weight: 700;
}

.entry-content p {
	margin: 0 0 1.6em;
}

.entry-content a {
	color: var(--color-blue-deep);
	text-decoration: underline;
}

.entry-content a:hover {
	opacity: 0.75;
}

.entry-content ul,
.entry-content ol {
	margin: 0 0 1.8em;
	padding-left: 1.6em;
}

.entry-content li {
	margin-bottom: 0.5em;
}

.entry-content li::marker {
	color: var(--color-blue);
}

.entry-content img {
	max-width: 100%;
	height: auto;
	border-radius: 10px;
}

.entry-content blockquote {
	margin: 0 0 1.8em;
	padding: 20px 26px;
	background: #f4fafe;
	border-left: 4px solid #91c5ed;
	border-radius: 0 10px 10px 0;
	color: var(--color-muted);
}

.entry-content blockquote p:last-child {
	margin-bottom: 0;
}

.entry-content table {
	width: 100%;
	margin: 0 0 1.8em;
	border-collapse: collapse;
	font-size: 15px;
}

.entry-content th,
.entry-content td {
	padding: 12px 16px;
	border: 1px solid var(--color-line);
	text-align: left;
}

.entry-content th {
	background: var(--color-blue-soft);
	color: var(--color-blue-deep);
	font-weight: 600;
}

.entry-content hr {
	margin: 48px 0;
	border: 0;
	border-top: 1px solid var(--color-line);
}

@media (max-width: 768px) {

	.page-hero {
		padding: 48px 20px 38px;
	}

	.page-hero__title {
		gap: 18px;
		font-size: 26px;
	}

	.page-hero__title::before,
	.page-hero__title::after {
		width: 34px;
		height: 17px;
	}

	.page-body {
		padding: 44px 20px 80px;
	}

	.entry-content {
		font-size: 15px;
	}

	.entry-content h2 {
		margin: 48px 0 20px;
		padding: 12px 16px;
		font-size: 21px;
	}

	.entry-content h3 {
		margin: 38px 0 16px;
		font-size: 18px;
	}

	.entry-content th,
	.entry-content td {
		padding: 10px 12px;
	}
}

iframe{
	width: 100%;
	max-width: 100%;
	height: auto;
	aspect-ratio: 3/2;
}

