@charset "UTF-8";
/*
Theme Name: employment2
Description: まらまデンタルクリニック新座 採用サイト
Version: 1.0
Author: 9design
*/

/* ===========================================
1. Google Fonts 読み込み
=========================================== */
@import url("https://fonts.googleapis.com/css2?family=Libre+Baskerville:wght@400;700&family=Noto+Sans+JP:wght@400;500;700&family=Noto+Serif+JP:wght@400;500;700&family=UoqMunThenKhung&display=swap");

/* ===========================================
2. CSS変数（カラー・フォント・サイズ）
=========================================== */
:root {
	/* ---- Color ---- */
	--c-white: #ffffff;
	--c-green: #73cd58;
	/* メイングリーン（ヘッダーCTA等） */
	--c-green-accent: #0ea880;
	/* アクセントグリーン（エントリーCTA） */
	--c-olive: #6d592e;
	/* ダークオリーブ（見出し・濃色ボタン） */
	--c-text: #77580a;
	/* 本文濃色 */
	--c-text-sub: #84715b;
	/* サブテキスト */
	--c-text-en: #c0b293;
	/* 英字サブラベル */
	--c-bg-beige: #fcf6e0;
	/* 背景ベージュ */
	--c-bg-cream: #fff7eb;
	/* 背景クリーム */
	--c-border: #e8dfc8;
	/* 区切り線（仮） */

	/* ---- Font ---- */
	--ff-jp:
		"Noto Sans JP", -apple-system, BlinkMacSystemFont, "Hiragino Sans",
		"ヒラギノ角ゴ ProN", "Yu Gothic", sans-serif;
	--ff-heading:
		"UoqMunThenKhung", "Noto Serif JP", "Hiragino Mincho ProN", serif;

	/* ---- Container ---- */
	--container: 1280px;
	--container-wide: 1333px;
	--container-narrow: 800px;

	--container-width: 1280px;
	--policy-container-width: 1333px;
	--interview-container-width: 1333px;
	--numbers-container-width: 1088px;
	--profile-container-width: 1160px;

	/* ---- Header ---- */
	--header-h: 80px;

	/* ---- Footer ---- */
	--footer-w: 1087px;
}

/* ===========================================
3. リセット（最小限）
=========================================== */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	font-size: 62.5%;
	/* 1rem = 10px */
	scroll-behavior: auto;
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	font-family: var(--ff-jp);
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1.8;
	color: var(--c-text);
	background: var(--c-white);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
	margin: 0;
}

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

a {
	color: inherit;
	text-decoration: none;
	transition: opacity 0.2s ease;
}

a:hover {
	opacity: 0.7;
}

img,
svg,
video {
	display: block;
	max-width: 100%;
	height: auto;
}

button {
	font: inherit;
	color: inherit;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
}

input,
textarea,
select {
	font: inherit;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* ===========================================
4. 共通タイポグラフィ
=========================================== */
.c-heading {
	font-family: var(--ff-heading);
	font-weight: 400;
	color: var(--c-olive);
	letter-spacing: 0.0375em;
	line-height: 1.4;
}

.c-heading--xl {
	font-size: 6.4rem;
	line-height: 1.125;
	letter-spacing: 0.0375em;
}

.c-heading--lg {
	font-size: 4rem;
	line-height: 1.4;
}

.c-heading--md {
	font-size: 3.2rem;
	line-height: 1.4;
}

.c-heading--sm {
	font-size: 2.4rem;
	line-height: 1.5;
}

.c-subheader-en {
	display: block;
	font-family: var(--ff-heading);
	font-size: 1.6rem;
	color: var(--c-text-en);
	letter-spacing: 0.05em;
	font-weight: 400;
}

.c-text {
	font-family: var(--ff-jp);
	font-size: 1.6rem;
	line-height: 1.8;
	color: var(--c-text);
}

.c-text--sm {
	font-size: 1.4rem;
}

.c-text--sub {
	color: var(--c-text-sub);
}

.common-herb-01 {
	position: absolute;
	top: -14%;
	right: 10%;
	z-index: -1;
}

@media (max-width: 1200px) {
	.common-herb-01 {
		right: 5%;
		top: -8%;
		max-width: 130px;
	}
}

@media (max-width: 768px) {
	.common-herb-01 {
		top: -8%;
		max-width: 100px;
	}
}

@media (max-width: 510px) {
	.common-herb-01 {
		top: -6%;
		max-width: 70px;
	}
}

.c-title-01 {
	margin-bottom: 28px;
}

.c-title-01__en {
	font-family: var(--ff-heading);
	font-size: 1.6rem;
	letter-spacing: 0.05em;
	color: var(--c-text-en);
}

.c-title-01__title {
	font-family: var(--ff-heading);
	font-size: 4.8rem;
	font-weight: 400;
	line-height: 1.25;
	color: var(--c-olive);
	margin-block: 0;
	letter-spacing: 0.12em;
}

.c-title-01__title br{
	display:none;
}

.c-title-01__title--black {
	color: #494949;
}

@media (max-width: 1200px) {
	.c-title-01__title br{
		display:block;
	}
}

@media (max-width: 1024px) {
	.c-title-01__title {
		font-size: 3.6rem;
	}
}

@media (max-width: 768px) {
	.c-title-01__en {
		font-size: 1.4rem;
	}

	.c-title-01__title {
		font-size: 3.2rem;
	}
}

@media (max-width: 768px) {
	.c-title-01__title {
		font-size: 2.6rem;
	}
}

.c-title-02 {
	margin-bottom: 32px;
	text-align: center;
}

.c-title-02--left {
	text-align: left;
}

.c-title-02--border {
	padding-bottom: 20px;
	border-bottom: 1px solid var(--c-green);
}

.c-title-02__sub {
	display: block;
	color: var(--c-green);
	font-size: 2.2rem;
	margin-bottom: 0.5em;
	font-weight: 700;
}

.c-title-02__sub--en {
	font-family: var(--ff-heading);
	letter-spacing: 0.05em;
	font-weight: 400;
}

.c-title-02__title {
	font-family: var(--ff-heading);
	font-size: 4.8rem;
	font-weight: 400;
	color: var(--c-olive);
	margin: 0;
	line-height: 1.5;
}

@media (max-width: 1024px) {
	.c-title-02__title {
		font-family: var(--ff-heading);
		font-size: 3.6rem;
	}

	.c-title-02__sub--small {
		font-size: 1.6rem;
	}

	.c-title-02__title--small {
		font-size: 3.6rem;
		line-height: 1.5;
	}
}

@media (max-width: 768px) {
	.c-title-02__sub {
		font-size: 1.6rem;
	}

	.c-title-02__title {
		font-size: 2.8rem;
	}
}

.c-flow-01 {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 25px;
}

.c-flow-01__item {
	background: #f6f4eb;
	border-radius: 8px;
	padding: 25px 28px;
}

.c-flow-01__time {
	font-family: var(--ff-heading);
	font-size: 2.4rem;
	color: var(--c-green);
	margin-right: 16px;
	letter-spacing: 0.05em;
}

.c-flow-01__step {
	font-family: "UoqMunThenKhung";
	font-size: 2.4rem;
	font-weight: 500;
	color: var(--c-olive);
	display: inline-block;
}

.c-flow-01__text {
	font-size: 1.6rem;
	line-height: 2;
	color: var(--c-text);
	margin: 8px 0 0;
}

@media (max-width: 768px) {
	.c-flow-01 {
		gap: 10px;
	}
	.c-flow-01__text {
		font-size: 1.5rem;
	}

	.c-flow-01__item {
		padding: 20px;
	}

	.c-flow-01__item-head {
		margin-bottom: 0.25em;
	}

	.c-flow-01__desc {
		font-size: 1.5rem;
	}

	.c-flow-01__step,
	.c-flow-01__time{
		font-size:1.8rem;
	}
}

.c-note-01 {
	margin-top: 25px;
	font-size: 1.6rem;
	line-height: 1.8;
	color: var(--c-text-sub);
}

.c-note-01 p {
	margin: 0;
}

@media (max-width: 768px) {
	.c-note-01 {
		font-size: 1.4rem;
	}
}

.c-card-01 {
	background: var(--c-white);
	border: 1.5px solid #c8e4b0;
	border-radius: 12px;
	padding: 45px 45px 37px;
	position: relative;
}
.c-card-01__card-num {
	position: absolute;
	top: -18px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 60px;
	font-size: 2.4rem;
	background: var(--c-green);
	color: var(--c-white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--ff-heading);
}
.c-card-01__card-title {
	font-family: "UoqMunThenKhung", var(--ff-heading);
	font-weight: 400;
	font-size: 2.8rem;
	line-height: 1.5;
	color: var(--c-olive);
	margin-block: 20px;
	text-align: center;
}
.c-card-01__card-text {
	font-size: 1.6rem;
	line-height: 2;
	font-weight: 500;
	color: var(--c-text);
	margin: 0;
}

.c-blocks-01 {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.c-blocks-01__block {
	background: var(--c-white);
	border-radius: 12px;
	padding: 24px 28px;
}

.c-blocks-01__block-title {
	font-family: "UoqMunThenKhung", var(--ff-heading);
	font-weight: 400;
	font-size: 2.4rem;
	color: var(--c-green);
	margin: 0 0 12px;
}

.c-blocks-01__block-text {
	font-size: 1.6rem;
	line-height: 2;
	color: var(--c-text);
	margin: 0;
}

.c-blocks-01__block .c-bubble-01{
	margin-top:3.2rem;
}
@media (max-width: 768px) {
	.c-blocks-01__block-title {
		font-size: 2rem;
	}

	.c-card-01 {
		padding: 32px;
	}

	.c-card-01__card-title {
		font-size: 2rem;
	}
	.c-card-01__card-text {
		font-size: 1.5rem;
	}
	.c-blocks-01__block-text{
		font-size: 1.5rem;
	}
}

.c-bubble-01 {
	position: relative;
	display: flex;
	align-items: center;
	gap: 16px;
	max-width: 100%;
	margin-top: 40px;
	z-index: 3;
	background: transparent;
	font-size: 1.6rem;
	line-height: 1.68;
}
.c-bubble-01__bubble-icon {
	flex-shrink: 0;
	width: 100px;
	height: 100px;
	border-radius: 50%;
	overflow: hidden;
	background: #fff;
	z-index: 4;
}
.c-bubble-01__bubble-icon img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.c-bubble-01__bubble-text {
	background: #f1faee;
	border: 1.5px solid #8fbf6e;
	border-radius: 10px;
	padding: 14px 20px;
	font-size: 1.6rem;
	line-height: 1.8;
	color: var(--c-text);
	position: relative;
	flex: 1;
}
.c-bubble-01__bubble-text::before {
	content: "";
	position: absolute;
	left: -10px;
	top: 50%;
	transform: translateY(-50%);
	width: 0;
	height: 0;
	border: 9px solid transparent;
	border-right-color: #8fbf6e;
	border-left: 0;
}
.c-bubble-01__bubble-text::after {
	content: "";
	position: absolute;
	left: -7px;
	top: 50%;
	transform: translateY(-50%);
	width: 0;
	height: 0;
	border: 8px solid transparent;
	border-right-color: #f1faee;
	border-left: 0;
}
.c-bubble-01--col {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 12px;
	background: transparent;
}
.c-bubble-01--col .c-bubble-01__bubble-text {
	background: #eaf5de;
	border-radius: 12px;
	padding: 14px 18px;
	font-size: 1.3rem;
	line-height: 1.8;
	color: var(--c-text);
	text-align: left;
	position: relative;
	width: 100%;
	box-sizing: border-box;
}
.c-bubble-01--col .c-bubble-01__bubble-text::before {
	content: "";
	position: absolute;
	left: 50%;
	top: auto;
	bottom: -10px;
	transform: translateX(-50%);
	border: 10px solid transparent;
	border-bottom: 0;
	border-top-color: #8fbf6e;
	border-right-color: transparent;
}
.c-bubble-01--col .c-bubble-01__bubble-text::after {
	left: 50%;
	top: auto;
	bottom: -7px;
	transform: translateX(-50%);
	border: 9px solid transparent;
	border-top-color: #eaf5de;
	border-right-color: transparent;
	border-bottom: 0;
}
.c-bubble-01--col .c-bubble-01__bubble-icon {
	width: 130px;
	height: 130px;
	border-radius: 50%;
	overflow: hidden;
	margin-top: 8px;
	align-self: center;
}
.c-bubble-01--col .c-bubble-01__bubble-icon img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

@media (min-width: 769px) {
	.c-bubble-01--overlap {
		max-width: unset;
		width: calc(100% + 120px);
	}
}

@media (max-width: 768px) {
	.c-bubble-01 {
		margin-top: 30px;
		align-items: flex-start;
		margin-left: 0;
		max-width: 100%;
		display: block;
	}
	.c-bubble-01--col .c-bubble-01__bubble-icon,
	.c-bubble-01__bubble-icon {
		width: 100px;
		height: 100px;
		margin: 0 auto;
	}
	.c-bubble-01__bubble-text::before {
		left: calc(50% - 10px);
		top: -5px;
		transform: translateY(-50%) rotate(90deg);
		border: 10px solid transparent;
		border-right-color: #8fbf6e;
		border-left: 0;
	}
	.c-bubble-01__bubble-text::after {
		left: calc(50% - 9px);
		top: -4px;
		transform: translateY(-50%) rotate(90deg);
	}
}

.c-sp-fixed {
	position: sticky;
	bottom: 0;
	background-image: linear-gradient(
		to top,
		#fff 0%,
		#fff 50%,
		transparent 100%
	);
	padding: 16px;
	padding-top: 30px;
	z-index: 10;
	display: none;
	pointer-events: none;
}

.c-sp-fixed__wrapper {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	max-width: 624px;
	gap: 24px;
	margin-inline: auto;
}

.c-sp-fixed__btn {
	display: block;
	color: #fff;
	background-color: var(--c-olive);
	border-radius: 5px;
	font-size: 2.1rem;
	line-height: 1;
	font-size: 16px;
	font-weight: 700;
	text-align: center;
	padding: 20px;
	box-shadow: 0 4px 4px #00000040;
	pointer-events: auto;
}

.c-sp-fixed__btn--green {
	background-color: var(--c-green-accent);
}

@media (max-width: 1024px) {
	.c-sp-fixed {
		display: block;
	}
}

@media (max-width: 768px) {
	.c-sp-fixed {
		padding: 16px calc(5% + 40px) 16px 5%;
	}
	.c-sp-fixed__wrapper {
		gap: 0;
	}
	.c-sp-fixed__wrapper li {
		margin-right: 5px;
	}
	.c-sp-fixed__btn {
		font-size: 1.5rem;
		padding: 12px 14px;
	}
}

.c-decor-wrapper {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	overflow: hidden;
}

.c-sticky-image {
	position: sticky;
	top: 155px;
}

@media (max-width: 1024px) {
	.c-sticky-image {
		top: 135px;
	}
}

@media (max-width: 768px) {
	.c-sticky-image {
		position: static;
	}
}

/* ===========================================
5. レイアウト共通
=========================================== */
.l-container {
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 20px;
}

.l-container--wide {
	max-width: var(--container-wide);
}

.l-container--narrow {
	max-width: var(--container-narrow);
}

.l-section {
	padding: 100px 0;
}

/* ===========================================
6. ユーティリティ
=========================================== */
.u-visually-hidden {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.u-pc-only {
	display: block;
}

.u-sp-only {
	display: none;
}

.u-bg-cream {
	background-color: var(--c-bg-cream);
}

/* ===========================================
7. レスポンシブ（SP: 768px以下）
=========================================== */
@media (max-width: 768px) {
	html {
		font-size: 56.25%;
		/* 1rem = 9px に縮小 */
	}

	body {
		font-size: 1.6rem;
	}

	.l-container,
	.l-container--wide,
	.l-container--narrow {
		padding: 0 16px;
	}

	.l-section {
		padding: 60px 0;
	}

	.c-heading--xl {
		font-size: 4rem;
	}

	.c-heading--lg {
		font-size: 2.8rem;
	}

	.c-heading--md {
		font-size: 2.4rem;
	}

	.c-heading--sm {
		font-size: 2rem;
	}

	.u-pc-only {
		display: none;
	}

	.u-sp-only {
		display: block;
	}
}

/* ===========================================
8. 共通ボタン
=========================================== */
.c-btn {
	display: inline-flex;
	align-items: center;
	justify-content: flex-start;
	gap: 20px; /* テキストと矢印の間 */
	padding: 15px 20px 16px 30px; /* 上下30 / 右20 / 左70 */
	font-family: var(--ff-jp);
	font-size: 1.6rem;
	font-weight: 700;
	color: var(--c-white);
	background: var(--c-green);
	border-radius: 5px;
	line-height: 1.35;
	text-decoration: none;
	transition: opacity 0.2s ease;
	cursor: pointer;
	box-shadow: 3px 3px 12px -6px #777;
}

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

/* 矢印（白線・塗りなし） */
.c-btn__arrow {
	flex-shrink: 0;
	position: relative;
	display: inline-flex;
	width: 25px;
	height: 25px;
	border: 1.5px solid #fff;
	border-radius: 50%;
	background: transparent;
	font-size: 0;
}

.c-btn__arrow::before {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 11px;
	height: 1px;
	background: #fff;
	transform: translate(-50%, -50%);
}

.c-btn__arrow::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 8px;
	height: 8px;
	border-top: 1.5px solid #fff;
	border-right: 1.5px solid #fff;
	transform: translate(calc(-50% + 1px), -50%) rotate(45deg);
}

/* 色バリエーション（そのまま残す） */
.c-btn--green {
	background: var(--c-green);
}
.c-btn--olive {
	background: var(--c-olive);
}
.c-btn--teal {
	background: var(--c-green-accent);
}

/* ヘッダー用は小さめなので余白を上書き */

.c-btn--lg {
	font-size: 1.6rem;
	gap: 24px;
	padding: 16px 20px 16px 32px;
}

.c-btn--center {
	position: relative;
	justify-content: center;
	padding-inline: 45px;
}

.c-btn--center .c-btn__arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 20px;
}

/* ===========================================
共通：丸矢印（緑円 + 白矢印）
=========================================== */
.c-arrow {
	flex-shrink: 0;
	position: relative;
	display: inline-flex;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: var(--c-green);
	font-size: 0;
}

.c-arrow::before {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 11px;
	height: 1.5px;
	background: #fff;
	transform: translate(-50%, -50%);
}

.c-arrow::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 8px;
	height: 8px;
	border-top: 1.5px solid #fff;
	border-right: 1.5px solid #fff;
	transform: translate(calc(-50% + 1px), -50%) rotate(45deg);
}

/* ===========================================
9. ヘッダー
=========================================== */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	width: 100%;
	background: var(--c-white);
	z-index: 1000;
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	max-width: 1858px;
	margin: 0 auto;
	padding: 12px 30px;
	position: relative;
	box-sizing: content-box;
}

.site-header__logo {
	flex-shrink: 0;
	max-width: 25%;
	min-width: 150px;
}

.site-logo {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	width: 100%;
	max-width: 393px;
	gap: 8px;
}

.site-logo__img {
	width: 100%;
	height: auto;
}

.site-logo__badge {
	display: inline-block;
	padding: 0 12px;
	font-family: var(--ff-heading);
	text-align: center;
	font-size: 1.4rem;
	letter-spacing: 1px;
	color: var(--c-olive);
	border: 1px solid var(--c-olive);
	border-radius: 999px;
	width: 100%;
}

.site-header__nav {
	flex: 1;
}

.site-header__cta {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-shrink: 0;
}

.site-header__burger {
	display: none;
}

.site-header__burger span {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--c-olive);
}

.site-header__btn {
	--arrow-size: 12px;
	gap: 16px;
	font-size: 1.6rem;
	padding: 15px 20px;
}

.site-header__btn.c-btn .c-btn__arrow {
	width: var(--arrow-size);
	height: var(--arrow-size);
}

.site-header__btn.c-btn .c-btn__arrow::before {
	width: 6px;
}

.site-header__btn.c-btn .c-btn__arrow::after {
	width: 4px;
	height: 4px;
}

@media (max-width: 1550px) {
	.site-header__logo {
		max-width: 23%;
	}
	.site-header__cta {
		gap: 5px;
	}

	.site-header__btn {
		font-size: 1.1rem;
		padding-inline: 10px;
	}

	.site-header__inner {
		gap: 10px;
	}
}

@media (max-width: 1200px) {
	.site-header__inner{
		padding: 12px 20px;
	}
	.site-header__logo {
		max-width: 16%;
	}
}

@media (max-width: 1024px) {
	.site-header__nav,
	.site-header__cta {
		display: none;
	}

	.site-header__burger {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: 5px;
		width: 40px;
		height: 40px;
		padding: 0;
		cursor: pointer;
	}

	body.is-sp-menu-open .site-header__nav {
		display: block;
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		background: #fff;
		padding: 16px 20px 20px;
		box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
		z-index: 1001;
	}

	body.is-sp-menu-open .site-header__nav .global-nav {
		display: block;
	}

	.site-header__nav .global-nav {
		width: 100%;
		margin: 0;
		padding: 0;
		list-style: none;
		gap: 0;
	}

	.site-header__nav .global-nav > li {
		padding: 0;
		border-bottom: 1px solid #eee;
	}

	.site-header__nav .global-nav > li > a {
		display: block;
		padding: 14px 8px;
		font-size: 1.5rem;
		line-height: 1.6;
		pointer-events: auto !important;
		cursor: pointer !important;
	}

	.site-header__nav .global-nav .sub-menu {
		display: none;
		position: static;
		transform: none;
		min-width: 0;
		margin: 0 0 8px 0;
		padding: 0 0 0 16px;
		box-shadow: none;
		border-radius: 0;
		opacity: 1;
		visibility: visible;
		transition: none;
	}

	.site-header__nav .global-nav > li.is-open > .sub-menu {
		display: block;
	}

	.site-header__nav .global-nav .sub-menu li {
		border-bottom: none;
	}

	.site-header__nav .global-nav .sub-menu li a {
		display: block;
		padding: 10px 8px;
		font-size: 1.4rem;
		line-height: 1.6;
		color: var(--c-text);
		white-space: normal;
		text-decoration: none;
	}

	.site-header__nav .global-nav > li.menu-item-has-children > a::after {
		content: "▼";
		font-size: 0.8em;
		margin-left: 6px;
		color: var(--c-green);
	}

	.site-header__nav .global-nav > li.menu-item-has-children.is-open > a::after {
		content: "▲";
	}
}

@media (max-width: 1024px) {
	.site-header .site-logo__badge {
		font-size: 1rem;
		line-height: 1.8;
	}
}

/* ===========================================
10. CTA セクション（募集要項・エントリー）
=========================================== */
.recruit-wrapper,
.p-cta {
	position: relative;
	padding: 80px 20px;
	background: linear-gradient(135deg, #7fcf5e 0%, #6bb94a 100%);
	color: var(--c-white);
	text-align: center;
	overflow: hidden;
}

.p-cta__inner {
	position: relative;
	z-index: 1;
	max-width: 800px;
	margin: 0 auto;
}

.p-cta__subheader {
	display: block;
	font-family: var(--ff-heading);
	font-size: 1.4rem;
	letter-spacing: 0.1em;
	color: rgba(255, 255, 255, 0.85);
	margin-bottom: 8px;
}

.p-cta__heading {
	font-family: var(--ff-heading);
	font-size: 4rem;
	font-weight: 400;
	line-height: 1.4;
	margin-bottom: 12px;
}

.p-cta__lead {
	font-size: 1.4rem;
	line-height: 1.8;
	margin-bottom: 32px;
}

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

.p-cta .c-btn {
	min-width: 220px;
}

/* ===========================================
11. フッター（修正版）
=========================================== */
.site-footer {
	position: relative;
	background: var(--c-white);
	padding-top: 100px;
	color: var(--c-text);
}

/* ナビ専用ラッパー（4列・幅広） */
.site-footer__nav-wrap {
	max-width: var(--footer-w);
	margin: 0 auto;
	padding-bottom: 70px;
	border-bottom: 1px solid #d1d1d1;
	margin-bottom: 40px;
}

/* ナビ部分：4列 */
.site-footer__nav {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1fr;
	gap: 20px;
}

.footer-nav {
	display: flex;
	flex-direction: column;
	gap: 12px;
	font-weight: 500;
	color: var(--c-text);
	font-size: 1.9rem;
}

.footer-nav a {
	font-weight: 500;
	color: var(--c-text);
}

.footer-nav__item--child {
	font-size: 1.6rem;
}

/* infoラッパー（2列） */

.site-footer__inner {
	max-width: var(--footer-w);
	margin: 0 auto;
}

/* info部分：2列のまま */
.site-footer__info {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	padding-top: 40px;
	padding-bottom: 77px;
}

.site-footer__clinic {
	max-width: 335px;
}

.site-footer__clinic-name {
	margin-bottom: 25px;
}

.site-footer__corp-link {
	display: inline-block;
	padding-block: 4px;
	text-align: center;
	font-size: 1.9rem;
	border: 1px solid var(--c-olive);
	color: var(--c-olive);
	margin-bottom: 16px;
	width: 100%;
	border-radius: 50px;
	font-family: var(--ff-heading);
}

.site-footer__logo {
	width: 100%;
	height: auto;
	margin-bottom: 12px;
}

.site-footer__address {
	font-size: 1.6rem;
	line-height: 1.7;
	margin-bottom: 8px;
}

.site-footer__tel {
	font-size: 2rem;
	color: var(--c-text-sub);
	font-family: var(--ff-jp);
	font-weight: 700;
	margin-bottom: 12px;
}

.site-footer__tel a {
	font-size: 3.5rem;
	line-height: 1;
	color: var(--c-text-sub);
	font-family: var(--ff-jp);
	font-weight: 700;
}

.schedule-table {
	width: 100%;
	font-size: 1.2rem;
	border-collapse: collapse;
}

.schedule-table th,
.schedule-table td {
	padding: 8px 4px;
	text-align: center;
	border-bottom: 1px solid #000000;
	font-size: 1.6rem;
}

.schedule-table thead th {
	font-weight: 700;
	font-size: 1.6rem;
}

.schedule-note {
	margin-top: 25px;
	font-size: 1.6rem;
	color: var(--c-text-sub);
	line-height: 1.6;
}

.schedule-note2 {
	display: flex;
	margin-top: 17px;
	font-size: 1.6rem;
	color: var(--c-text-sub);
	line-height: 1.6;
}

.site-footer__copy {
	text-align: center;
	font-size: 1.4rem;
	background: #73cd58;
	color: var(--c-white);
	border-top: 1px solid #eee;
	width: 100%;
	padding: 22px 0;
}

.site-footer__btn {
	margin-top: 16px;
	width: 100%;
	justify-content: space-between;
	padding-block: 23px;
	gap: 40px;
	box-shadow: 3px 3px 12px -6px #7779;
}

.pagetop {
	position: fixed;
	right: 24px;
	bottom: 24px;
	z-index: 50;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	background: var(--c-green);
	color: var(--c-white);
	border-radius: 50%;
	font-size: 1.8rem;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* ========== レスポンシブ ========== */
@media (max-width: 1087px) {
	.site-footer__nav-wrap,
	.site-footer__inner {
		padding-inline: 16px;
	}
	.site-footer__nav {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 1024px) {
	.pagetop {
		bottom: 100px;
	}
}

@media (max-width: 768px) {
	.site-footer {
		padding-top: 60px;
	}

	.site-footer__nav-wrap {
		padding: 0 16px 40px;
	}

	.footer-nav {
		font-size: 1.6rem;
	}

	.footer-nav__item--child {
		font-size: 1.2rem;
	}

	.site-footer__inner {
		padding: 0 16px;
	}

	.site-footer__info {
		grid-template-columns: 1fr;
		gap: 24px 30px;
		padding-top: 30px;
	}

	.site-footer__clinic {
		max-width: 100%;
		text-align: center;
	}

	.site-footer__corp-link {
		margin-bottom: 60px;
	}

	.site-footer__btn {
		width: auto;
	}

	.site-footer__copy {
		font-size: 1rem;
	}

	.pagetop {
		width: 40px;
		height: 40px;
		right: 16px;
		bottom: 75px;
	}
}

/* ===========================================
12. ページタイトル部（共通）
=========================================== */
.p-page-title {
	position: relative;
	padding: 80px 20px 100px;
	text-align: center;
	overflow: hidden;
	min-height: 320px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-blend-mode: normal;
	background: no-repeat center / cover;
}

.p-page-title__inner {
	background: transparent;
	position: relative;
	z-index: 2;
	text-align: center;
}

.p-page-title__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.p-page-title__bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.3;
}

.p-page-title__badge {
	display: inline-block;
	background: var(--c-green);
	color: #fff;
	font-family: var(--ff-heading);
	font-size: 1.92rem;
	letter-spacing: 0.1em;
	padding: 3px 16px;
	border-radius: 4px;
	margin-bottom: 16px;
	min-width: 145px;
}

.p-page-title__heading {
	font-family: var(--ff-heading);
	font-size: 5.6rem;
	font-weight: 400;
	color: var(--c-olive);
	letter-spacing: 0.075em;
	line-height: 1.3;
}

.p-page-title--interview {
	background-image: url(images/page-title/page-title-interview.jpg);
	background-size: cover;
	background-position: center;
}

.p-page-title--recruit {
	background-image: url(images/page-title/page-title-recruit.jpg);
	background-size: cover;
	background-position: center;
}

.p-page-title--top {
	display: none !important;
}

@media (max-width: 1024px) {
	.p-page-title__heading {
		font-size: 4rem;
	}
}

@media (max-width: 768px) {
	.p-page-title {
		padding: 50px 16px;
		min-height: 200px;
	}

	.p-page-title__heading {
		font-size: 3rem;
	}

	.p-page-title__badge {
		font-size: 1rem;
		margin-bottom: 16px;
	}
}

/* ===========================================
13. パンくず
=========================================== */

/* ===========================================
14. レスポンシブ調整（SP）
=========================================== */
@media (max-width: 1024px) {
	.site-header__nav,
	.site-header__cta {
		display: none;
	}

	.site-header__burger {
		display: flex;
	}
}

@media (max-width: 768px) {
	.site-header__inner {
		padding: 8px 16px;
	}

	.site-logo {
		width: 160px;
	}

	.p-cta {
		padding: 50px 16px;
	}

	.p-cta__heading {
		font-size: 2.8rem;
	}

	.site-footer__nav,
	.site-footer__info {
		padding-top: 30px;
	}

	.pagetop {
		width: 40px;
		height: 40px;
		right: 16px;
		bottom: 16px;
	}
}

/* ============================================
8. Page title (common)
============================================ */

/* ============================================
9. Interview archive
============================================ */
.p-interview-archive {
	background: var(--c-bg-cream);
}

.p-interview-list {
	padding: 100px 0;
}

.p-interview-list .l-container {
	max-width: var(--interview-container-width);
}

.p-interview-list__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 60px clamp(2.4rem, 1.61rem + 1.02vw, 3.2rem);
}

.p-interview-list__empty {
	text-align: center;
	color: var(--c-text-sub);
	padding: 60px 0;
}

/* card */
.p-interview-card__link {
	display: block;
	color: inherit;
}

.p-interview-card__link:hover {
	opacity: 1;
}

.p-interview-card__link:hover .p-interview-card__img img {
	transform: scale(1.05);
}

.p-interview-card__img {
	margin: 0 0 16px;
	overflow: hidden;
	aspect-ratio: 415 / 450;
	background: #eee;
	border-radius: 20px;
}

.p-interview-card__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}

.p-interview-card__body {
	padding: 0 4px;
}

.p-interview-card__caption {
	font-size: 1.8rem;
	color: var(--c-text-sub);
	line-height: 1.6;
	margin-bottom: 10px;
}

.p-interview-card__catch {
	font-family: var(--ff-heading);
	font-size: 2.8rem;
	font-weight: 400;
	color: var(--c-text);
	line-height: 1.3;
	margin-bottom: 16px;
}

.p-interview-card__meta {
	display: flex;
	align-items: center;
	gap: 12px;
}

.p-interview-card__tag {
	display: inline-block;
	background: var(--c-green-accent);
	color: #fff;
	font-size: 1.6rem;
	padding: 0px 22px;
	border-radius: 999px;
	letter-spacing: 0.05em;
}

.p-interview-card__tag--doctor{
	background: #73cd58;
}

.p-interview-card__tag--assistant {
	background: #6d592e;
}

.p-interview-card__name {
	font-weight: 500;
	font-size: 1.8rem;
	color: var(--c-text-sub);
}

/* ============================================
10. Pagination
============================================ */
.p-pagination {
	margin-top: 80px;
	display: flex;
	justify-content: center;
	gap: 8px;
	flex-wrap: wrap;
}

.p-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 12px;
	background: #fff;
	border: 1px solid var(--c-border);
	color: var(--c-text);
	font-size: 1.4rem;
	border-radius: 4px;
	transition: all 0.2s;
}

.p-pagination .page-numbers.current,
.p-pagination .page-numbers:hover {
	background: var(--c-olive);
	color: #fff;
	border-color: var(--c-olive);
	opacity: 1;
}

/* ============================================
Responsive
============================================ */
@media (max-width: 768px) {
	.p-interview-list {
		padding: 60px 0;
	}

	.p-interview-list__grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.p-interview-card__catch {
		font-size: 1.6rem;
	}
}

/* ============================================
10. CTA Fixed (募集要項・エントリー)
============================================ */
.c-cta-fixed {
	position: relative;
	background-color: var(--c-green);
	background-image: url(images/common/cta-pattern.png);
	background-repeat: no-repeat;
	background-position: center top;
	background-size: cover;
	padding: 80px 20px;
	text-align: center;
	color: var(--c-white);
	overflow: hidden;
}

.c-cta-fixed__inner {
	max-width: 1000px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}

.c-cta-fixed__title.c-title-01 .c-title-01__en,
.c-cta-fixed__title.c-title-01 .c-title-01__title {
	color: var(--c-white);
}

.c-cta-fixed__title.c-title-01 .c-title-01__en {
	margin-bottom: 0;
}

.c-cta-fixed__lead {
	font-size: 1.8rem;
	line-height: 1.8;
	margin-bottom: 40px;
}

.c-cta-fixed__btns {
	display: flex;
	justify-content: center;
	gap: 24px;
	flex-wrap: wrap;
}

.c-cta-fixed .c-btn {
	font-size: 2.1rem;
	font-weight: 700;
	box-shadow: 0 4px 4px #00000040;
	padding-block: 27px;
	width: 300px;
	justify-content: space-between;
}

@media (max-width: 768px) {
	.c-cta-fixed {
		padding: 40px 20px;
	}

	.c-cta-fixed__title {
		font-size: 3.2rem;
	}

	.c-cta-fixed__lead {
		font-size: 1.4rem;
	}

	.c-cta-fixed__btns {
		flex-direction: column;
		align-items: center;
		gap: 16px;
	}

	.c-cta-fixed .c-btn {
		max-width: 100%;
		font-size: 1.6rem;
		padding: 20px 20px;
		padding-right: 45px;
	}
}

/* ============================================
11. Interview Single
============================================ */
.l-interview-single {
	background-color: var(--c-bg-cream);
	padding: 105px 0 0;
}

.l-container--narrow {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 20px;
}

/* プロフィールカード */
.p-interview-profile__inner {
	display: flex;
	background-color: var(--c-white);
	border-radius: 12px;
	max-width: 1280px;
	margin: 0 auto;
	overflow: hidden;
	min-height: 300px;
	padding: 0;
}

.p-interview-profile__thumb {
	flex: 0 0 35%;
	border-radius: 12px 0 0 12px;
	overflow: hidden;
}

.p-interview-profile__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.p-interview-profile__body {
	padding: 40px 48px;
	display: flex;
	flex-direction: column;
	justify-content: center; /* ← 縦中央 */
	flex: 1;
}

.p-interview-profile__meta {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 25px;
}

.p-interview-profile__tag {
	display: inline-block;
	background-color: var(--c-green-accent);
	color: var(--c-white);
	font-size: 1.6rem;
	padding: 0px 26px;
	border-radius: 999px;
}

.postid-1520 .p-interview-profile__tag {
	background-color: #73cd58;
}

.p-interview-profile__tag--assistant {
	background-color: #6d592e;
}

.p-interview-profile__name {
	font-size: 2.2rem;
	color: var(--c-text);
	font-weight: 500;
}

.p-interview-profile__caption {
	font-size: 2.4rem;
	color: #73cd58;
	margin-bottom: 0.5em;
	line-height: 1.6;
}

.p-interview-profile__catch {
	font-family: var(--ff-heading);
	font-size: 3.2rem;
	font-weight: 400;
	color: var(--c-text);
	line-height: 1.5;
	margin-bottom: 15px;
	letter-spacing: 0.02em;
}

.p-interview-profile__info {
	font-size: 1.6rem;
	color: var(--c-text);
	line-height: 1.8;
}

.p-interview-profile__info-row {
	display: flex;
	gap: 4px;
}

.p-interview-profile__info dt {
	font-weight: 500;
}

.p-interview-profile__info dd {
	margin: 0;
}

/* Q&A セクション */
.p-interview-qa {
	padding: 40px 0 60px;
}

.p-interview-qa__area {
	font-size: 1.5rem;
	line-height: 1.9;
	color: var(--c-text);
}

.p-interview-qa__area .qa-question {
	font-size: 1.7rem;
	font-weight: 600;
	color: var(--c-text);
	padding-bottom: 12px;
	border-bottom: 1px solid var(--c-green);
	margin: 32px 0 16px;
}

.p-interview-qa__area h3 {
	font-size: 2.4rem;
	padding-left: 2em;
	padding-bottom: 10px;
	font-weight: 600;
	color: var(--c-text);
	border-bottom: 1px solid var(--c-green);
	margin: 32px 0 16px;
}

.p-interview-qa__area p {
	margin-bottom: 16px;
	font-size: 1.5rem;
}

.p-interview-qa__area p::before {
	font-size: 2rem;
}

/* 院長コメント */
.p-director-comment {
	position: relative;
	background-color: #fff;
	padding-block: 100px 10px;
	margin-top: 40px;
}

.p-director-comment + .p-interview-nav {
	background-color: #fff;
}

.p-director-comment__photo {
	width: 200px;
	height: 200px;
	border-radius: 50%;
	overflow: hidden;
	margin: 0 auto -60px;
	position: relative;
	z-index: 2;
}

.p-director-comment__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.p-director-comment__card {
	background-color: #e8f5de;
	border-radius: 16px;
	padding: 90px 60px 50px;
	text-align: left;
}

.p-director-comment__tag {
	display: block;
	width: fit-content;
	margin: 0 auto 32px;
	background-color: var(--c-green);
	color: var(--c-white);
	font-size: 2.4rem;
	padding :0.15em 1em 0.25em 1em;
	border-radius: 999px;
	text-align: center;
}

.p-director-comment__list {
	margin: 0;
}

.p-director-comment__item {
	margin-bottom: 43px;
}

.p-director-comment__title {
	font-size: 2.4rem;
	font-weight: 600;
	color: var(--c-green);
	padding-bottom: 10px;
	border-bottom: 1px solid var(--c-green);
	margin-bottom: 14px;
}

.p-director-comment__body {
	font-size: 1.5rem;
	line-height: 1.8;
	font-weight: 500;
	color: var(--c-text);
	margin: 0;
}

/* 前後ナビ */
.p-interview-nav {
	padding: 40px 0 20px;
}

.p-interview-nav__inner {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	align-items: center;
}

.p-interview-nav__prev,
.p-interview-nav__next {
	width: 300px;
}

.p-interview-nav__prev a,
.p-interview-nav__next a {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	background-color: var(--c-green);
	color: var(--c-white);
	position: relative;
	padding: 20px 50px;
	border-radius: 8px;
	text-decoration: none;
	font-size: 2.1rem;
	transition: opacity 0.2s;
}

.p-interview-nav__prev a:hover,
.p-interview-nav__next a:hover {
	opacity: 0.85;
}

/*.p-interview-nav__next a {
justify-content: space-between;
}*/

.p-interview-nav__center a {
	color: #73cd58;
	font-size: 2.1rem;
	text-decoration: none;
	text-decoration: underline;
}

.p-interview-nav__arrow {
	font-size: 1.6rem;
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	top: 50%;
	width: 25px;
	height: 25px;
	border: 1px solid currentColor;
	border-radius: 50%;
	transform: translateY(-50%);
}

.p-interview-nav__prev .p-interview-nav__arrow {
	left: 24px;
}

.p-interview-nav__next .p-interview-nav__arrow {
	right: 24px;
}

@media (max-width: 768px) {
	.l-interview-single {
		padding: 60px 0 0;
	}
	.p-interview-profile__inner {
		flex-direction: column;
	}

	.p-interview-profile__thumb {
		flex: 0 0 auto;
		width: 100%;
		border-radius: 12px;
	}

	.p-director-comment {
		padding-block: 60px 10px;
	}

	.p-director-comment__photo {
		width: 120px;
		height: 120px;
	}

	.p-interview-profile__body {
		padding: 2.4rem;
	}

	.p-interview-profile__meta {
		margin-bottom: 1em;
	}

	.p-interview-profile__name {
		font-size: 1.6rem;
	}

	.p-interview-profile__caption {
		font-size: 1.6rem;
	}

	.p-interview-profile__catch {
		font-size: 2.4rem;
	}

	.p-director-comment__tag {
		font-size: 1.6rem;
	}

	.p-director-comment__title {
		font-size: 1.6rem;
	}

	.p-director-comment__item {
		margin-bottom: 20px;
	}

	.p-director-comment__card {
		padding: 80px 24px 40px;
	}

	.p-interview-nav__inner {
		flex-direction: column;
	}

	.p-interview-nav__prev,
	.p-interview-nav__next {
		width: auto;
		flex: 1;
	}

	.p-interview-nav__center a,
	.p-interview-nav__prev a,
	.p-interview-nav__next a {
		font-size: 1.6rem;
		padding: 20px;
		width: 280px;
	}
	.p-interview-nav__prev a {
		padding: 20px 10px 20px 30px;
	}
}

@media (max-width: 460px) {
	/*.p-interview-nav__center a,
	.p-interview-nav__prev a,
	.p-interview-nav__next a {
	text-indent: -9999px;
}
	.p-interview-nav__arrow{
	text-indent: 0px;
}*/
}

/* Q&A 装飾 */
.p-interview-qa__area h3 {
	position: relative;
	padding-left: 1.5em;
}

.p-interview-qa__area h3::before {
	content: "Q.";
	position: absolute;
	left: 0;
	color: var(--c-green);
	font-weight: 700;
}

.p-interview-qa__area h3 + p {
	position: relative;
	padding-left: 2.4em;
}

.p-interview-qa__area h3 + p::before {
	content: "A.";
	position: absolute;
	left: 0;
	color: #c0b293;
	font-weight: 700;
}
@media (max-width: 768px) {
	.p-interview-qa__area h3 {
		font-size: 1.8rem;
		padding-left: 2.1em;
	}

	.p-interview-qa__area p {
		font-size: 14px;
	}
}
/* ============================================
12. 99の質問 / FAQ
============================================ */
.page-layout {
	background-color: var(--c-bg-cream);
	padding: 60px 0 100px;
}

.sub-wrapper {
	max-width: 880px;
	margin: 0 auto;
	padding: 0 20px;
}

/* 目次 */
.faq99-menu {
	margin-bottom: 60px;
	top: 170px;
}

#faq_tob {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px 20px;
	list-style: none;
	padding: 24px 15px;
	background-color: var(--c-white);
	border-radius: 12px;
	margin: 0;
}

#faq_tob li {
	margin: 0;
}

#faq_tob li a {
	display: block;
	padding: 10px 16px 10px 28px;
	color: var(--c-text);
	text-decoration: none;
	font-size: 1.6rem;
	border-bottom: 1px solid var(--c-green);
	position: relative;
	transition: opacity 0.2s;
}

#faq_tob li a::before {
	content: "";
	position: absolute;
	left: 8px;
	top: 50%;
	transform: translateY(-50%);
	width: 8px;
	height: 8px;
	border-right: 2px solid var(--c-green);
	border-bottom: 2px solid var(--c-green);
	transform: translateY(-70%) rotate(45deg);
}

#faq_tob li a:hover {
	opacity: 0.7;
}

/* カテゴリブロック */
.faq99-block {
	margin-bottom: 40px;
	background-color: var(--c-white);
	border-radius: 12px;
	padding: 40px 48px;
}

.faq99-block:last-child {
	margin-bottom: 0;
}

.faq99-block:nth-of-type(4) .faq-item:nth-of-type(6) .faq-photo img {
	object-position: 0 -380px;
}

.faq99-block h2 {
	font-family: var(--ff-heading);
	font-size: 3.6rem;
	font-weight: 400;
	color: var(--c-green);
	text-align: center;
	padding-bottom: 20px;
	margin: 0 0 32px;
	border-bottom: 2px solid var(--c-green);
	letter-spacing: 0.05em;
}

/* Q&Aアイテム */
.faq-item {
	padding: 24px 0;
	border-bottom: 1px dashed #ddd;
}

.faq-item:last-child {
	border-bottom: none;
}

.faq-item h3 {
	font-size: 1.8rem;
	font-weight: 600;
	color: var(--c-text);
	margin: 0 0 12px;
	line-height: 1.6;
	letter-spacing: 0.02em;
}

.faq-item p {
	font-size: 1.6rem;
	line-height: 2;
	color: var(--c-text);
	margin: 0;
	padding-left: 1.5em;
}

.faq-item p small {
	display: inline-block;
	font-size: 1.3rem;
	margin-top: 6px;
	line-height: 1.7;
}

/* 目次に戻る */
.mokuji-link {
	text-align: right;
	margin: -20px 0 40px;
}

.mokuji-link a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 1.3rem;
	color: var(--c-olive);
	text-decoration: none;
	padding: 8px 16px;
	border: 1px solid var(--c-olive);
	border-radius: 999px;
	transition: all 0.2s;
}

.mokuji-link a::before {
	content: "↑";
	font-size: 1.4rem;
}

.mokuji-link a:hover {
	background-color: var(--c-olive);
	color: var(--c-white);
}

@media (max-width: 1024px) {
	.faq99-block:nth-of-type(4) .faq-item:nth-of-type(6) .faq-photo img {
		object-position: 0 -24vw;
	}
}

/* レスポンシブ */
@media (max-width: 768px) {
	.page-layout {
		padding: 20px;
	}

	#faq_tob {
		grid-template-columns: 1fr;
		padding: 20px;
		gap: 0;
	}

	.faq99-block {
		padding: 24px 20px;
		margin-bottom: 2.4rem;
	}

	.faq99-block h2 {
		font-size: 2.2rem;
		margin-bottom: 0;
	}

	.faq-item h3 {
		font-size: 1.5rem;
	}

	.faq-item p {
		font-size: 1.5rem;
		padding-left: 0;
	}

	.faq99-block:nth-of-type(4) .faq-item:nth-of-type(6) .faq-photo img {
		object-position: 0 -30vw;
	}
}

/* ============================================
12-2. 99の質問 / 2カラム化（左ナビ固定）
============================================ */

/* FAQカテゴリセレクター */
.faq99-menu-select {
	display: none;
}

@media (max-width: 1024px) {
	.faq99-menu-select {
		display: block;
		width: 100%;
		margin-bottom: 16px;
		padding: 10px 16px;
		border: 1px solid var(--c-green);
		border-radius: 8px;
		background: #fff;
		color: var(--c-text);
		font-size: 1.5rem;
		line-height: 1.5;
	}

	.faq99-layout #faq_tob {
		display: none;
	}
}
@media (max-width: 510px) {
	.faq99-menu-select{
		font-size: 1.25rem;
		padding: 8px 16px;
	}
}
.faq99-layout {
	max-width: 1200px;
	margin: 0 auto;
	padding: 60px 32px 0;
	display: grid;
	grid-template-columns: 260px 1fr;
	gap: 40px;
	align-items: start;
}

/* 左ナビ：sub-wrapper の max-width / padding を打ち消す */
.faq99-layout .faq99-menu {
	position: sticky;
	top: 140px;
	margin: 0;
	padding: 0;
	max-width: none;
	width: 100%;
}

.faq99-layout #faq_tob {
	grid-template-columns: 1fr;
	gap: 0;
	padding: 24px 20px;
}

.faq99-layout #faq_tob li a {
	font-size: 1.4rem;
	padding: 12px 12px 12px 24px;
}

/* 右コンテンツ：sub-wrapper を打ち消す */
.faq99-layout .faq99-wrap {
	max-width: none;
	width: 100%;
	margin: 0;
	padding: 0;
}

/* FAQ内の挿入画像 */
.faq-photo {
	margin: 16px 0 8px;
	border-radius: 16px;
	overflow: hidden;
}

.faq-photo img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
	aspect-ratio: 16 / 7;
}

/* レスポンシブ */
@media (max-width: 1024px) {
	.faq99-layout .faq99-menu {
		top: 120px;
	}
}

@media (max-width: 768px) {
	.faq99-layout {
		grid-template-columns: 1fr;
		gap: 24px;
		padding: 40px 20px 0;
	}
	.faq99-layout .faq99-menu {
		position: static;
	}

	.faq99-layout #faq_tob {
		padding: 20px;
	}

	.faq99-layout #faq_tob li a {
		font-size: 1.5rem;
	}

	.faq-photo img {
		aspect-ratio: 16 / 9;
		border-radius: 12px;
	}
}

/* ============================================
グローバルナビ（ドロップダウン対応）
============================================ */
.global-nav {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 24px;
	align-items: center;
	justify-content: flex-end;
}

.global-nav > li {
	position: relative;
	padding: 24px 0;
}

.global-nav > li > a {
	color: var(--c-text, #333);
	text-decoration: none;
	font-size: 1.5rem;
	font-weight: 500;
	padding: 8px 4px;
	display: inline-block;
	transition: color 0.2s;
}

.global-nav > li > a:hover {
	color: var(--c-green, #73cd58);
}

/* 親項目に子があるとき、▼マークを付ける */
.global-nav > li.menu-item-has-children > a::after {
	content: "▼";
	font-size: 0.8em;
	margin-left: 6px;
	color: var(--c-green, #73cd58);
	pointer-events: none;
	cursor: default;
}

/* サブメニュー（ドロップダウン） */
.global-nav .sub-menu {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	list-style: none;
	margin: 0;
	padding: 16px 0;
	background-color: #fff;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
	border-radius: 8px;
	min-width: 200px;
	opacity: 0;
	visibility: hidden;
	transition:
		opacity 0.2s,
		visibility 0.2s;
	z-index: 100;
}

/* ホバー時にサブメニューを表示 */
.global-nav > li:hover > .sub-menu {
	opacity: 1;
	visibility: visible;
}

.global-nav .sub-menu li {
	margin: 0;
}

.global-nav .sub-menu li a {
	display: block;
	padding: 10px 24px;
	color: var(--c-text, #333);
	text-decoration: none;
	font-size: 1.4rem;
	white-space: nowrap;
	transition:
		background-color 0.2s,
		color 0.2s;
}

.global-nav .sub-menu li a:hover {
	background-color: #f5f5f5;
	color: var(--c-green, #73cd58);
}

@media (max-width: 1700px) {
	.global-nav {
		gap: 10px;
	}

	.global-nav > li > a {
		font-size: clamp(1rem, 0.219rem + 0.76vw, 1.4rem);
	}
}

@media (max-width: 1024px) {
	.global-nav {
		display: none;
	}
}

/* ============================================
医院のこと（about）
============================================ */
.about-section {
	position: relative;
	overflow: hidden;
	background: #fff7eb;
	z-index: 2;
}

.about-herb.about-herb--bl {
	width: clamp(12rem, 4.12rem + 10.24vw, 20rem);
	bottom: auto;
	top: -75px;
	left: -60px;
}

.about-policy {
	padding-bottom: 100px;
}

.about-policy img.backimg {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}

.about-inner {
	max-width: var(--container);
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 100px 20px;
	gap: 8%;
}

.about-inner--center {
	flex-direction: column;
	text-align: center;
	padding-bottom: 0;
	gap: 24px;
}

/* ラベル */

/* タイトル */

/* 本文 */
.about-text p {
	font-size: 1.8rem;
	line-height: 2;
	color: var(--c-text);
	margin: 0 0 24px;
}
/* 医院理念セクション */
.about-philosophy-text {
	flex: 0 0 calc(100% - 490px - 8%);
	max-width: 100%;
	width: 100%;
}

.about-philosophy-image {
	position: relative;
	flex: 0 0 490px;
	max-width: 490px;
}

.about-policy-image img,
.about-future-image img {
	width: 100%;
	height: auto;
	display: block;
}

.about-philosophy-image img:not(.about-herb) {
	width: 490px;
	height: 635px;
	object-fit: cover;
	border-radius: 8px;
	display: block;
}

/* 診療方針セクション */
.about-policy {
	background: linear-gradient(135deg, #f3f9ec 0%, #e8f3dc 100%);
}

.about-policy-content {
	display: flex;
	gap: 0;
	align-items: flex-start;
	width: 100%;
	position: relative;
}

.about-policy-image {
	flex: 1;
	position: relative;
}

.about-policy-image img:not(.about-herb) {
	width: 100%;
	border-radius: 8px;
	display: block;
}

.about-policy-text {
	flex: 1;
	background: var(--c-white);
	padding: 70px 75px;
	border-radius: 8px;
	margin-left: -80px;
	margin-block: 140px -60px;
	z-index: 2;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
	text-align: left;
	position: relative;
	z-index: 2;
}

.about-policy-text > :last-child {
	margin-bottom: 0;
}

/* これからのセクション */
.about-future {
	background: var(--c-white);
	position: relative;
	z-index: 2;
}

.about-future .backimg {
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: -1;
}

/* FUTURE と「これからの」の間を詰める */
.about-future .about-label {
	margin-bottom: 8px;
}

/* 「これからの」とベージュボックスの間を詰める */
.about-future .about-heading {
	margin: 0 0 24px;
}

.about-future-box {
	background: #fff7eb;
	padding: 70px;
	border-radius: 8px;
	margin-bottom: 80px;
	max-width: var(--container);
	width: 100%;
}

.about-future-box p {
	font-size: 1.8rem;
	line-height: 2;
	color: var(--c-text);
	margin: 0;
	text-align: center;
}

.about-future-content {
	display: flex;
	gap: 60px;
	align-items: center;
	width: 100%;
	text-align: left;
	position: relative;
	z-index: 2;
}

.about-future-text {
	position: relative;
	width: 100%;
	max-width: 60%;
	min-width: 750px;
	background: #fff;
	border-radius: 30px;
	padding: 60px 75px 50px;
	font-size: 1.6rem;
}

.about-future-title {
	font-family: var(--ff-heading);
	font-size: 3.6rem;
	font-weight: 400;
	line-height: 1.5;
	color: var(--c-olive);
	margin: 0 0 24px;
	letter-spacing: 0.0375em;
}

.about-future-content p {
	font-size: 1.8rem;
}

.about-future-image {
	width: 690px;
	height: 640px;
	z-index: -1;
	top: -30px;
	right: -40px;
	position: absolute;
}

.about-future-image img:not(.about-herb) {
	width: 100%;
	border-radius: 8px;
	display: block;
}

.about-future-link {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: var(--c-green);
	text-decoration: none;
	font-size: 1.8rem;
	margin-top: 16px;
	transition: opacity 0.2s;
}

.about-future-link:hover {
	opacity: 0.7;
}

.about-future-link span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: var(--c-green);
	color: var(--c-white);
	font-size: 1.2rem;
}

/* ハーブイラスト */
.about-herb {
	position: absolute;
	width: 120px;
	height: auto;
	pointer-events: none;
}

.about-herb--tr {
	width: 190px;
	top: -70px;
	right: -70px;
}

.about-herb--tl {
	top: -30px;
	left: -30px;
}

.about-herb--bl {
	bottom: -30px;
	left: -30px;
}

.about-herb--future {
	display: block;
	top: -70px;
	right: 0;
	left: auto;
	width: 200px;
	z-index: 3;
}

/* レスポンシブ */
@media (max-width: 1024px) {
	.about-inner {
		padding: 70px 20px;
		display: block;
	}

	.about-philosophy-image {
		width: 100%;
		max-width: 100%;
		margin: 0 auto;
	}

	.about-philosophy-image img:not(.about-herb) {
		height: 445px;
		margin-inline: auto;
	}

	.about-herb--tr {
		right: -100px;
	}

	.about-policy-text {
		padding: 35px;
	}

	.about-future-box {
		padding: 35px;
	}

	.about-future-text {
		width: 100%;
		font-size: 1.4rem;
	}

	.about-future-content {
		display: block;
	}

	.about-future-image {
		position: initial;
		width: 100%;
		height: auto;
		overflow: hidden;
	}

	.about-future-image img {
		object-position: -85px;
		height: 310px;
		transform: scale(1.3);
		object-fit: cover;
	}
}
@media (max-width: 768px) {
	.about-section {
		padding: 60px 16px;
	}

	.about-text p {
		font-size: 1.4rem;
	}

	.about-inner,
	.about-policy-content,
	.about-future-content {
		flex-direction: column;
		gap: 32px;
	}

	.about-inner {
		padding: 0;
	}

	.about-herb.about-herb--bl {
		width: 120px;
		top: -47px;
		left: -37px;
	}

	.about-policy-text {
		margin-left: 0;
		margin-block: 0px;
		padding: 20px;
	}

	.about-future-box {
		padding: 20px;
		margin: 0px 0 40px;
	}

	.about-future-title {
		font-size: 2rem;
	}

	.about-future-text {
		padding: 0;
		min-width: initial;
		max-width: 100%;
		margin-bottom: 30px;
	}

	.about-future-image img {
		object-position: -45px;
	}

	.about-future-link {
		font-size: 1.4rem;
	}

	.about-future-link span {
		width: 18px;
		height: 18px;
	}

	.about-herb {
		width: 80px;
	}

	.about-herb--tr {
		top: -40px;
		width: 130px;
		right: -40px;
	}

	.about-herb--future {
		width: 140px;
	}

	.about-future-content p {
		font-size: 1.4rem;
	}
}

/* ============================================
大事にしていること（important / value）
============================================ */
.value-section {
	background: var(--c-bg-cream);
	padding-block: 100px;
	overflow: hidden;
}

.value-inner {
	margin: 0 auto;
}

/* 見出し部 */
.value-head {
	position: relative;
	text-align: center;
	margin: 0 auto;
	margin-bottom: 80px;
	max-width: 1000px;
}

.value-head__title {
	display: inline-block;
	font-family: var(--ff-heading);
	font-size: 4rem;
	font-weight: 400;
	color: var(--c-olive);
	letter-spacing: 0.0375em;
	margin-bottom: 30px;
	padding: 24px 32px;
	background: #fff;
	border-radius: 16px;
}

.value-head__lead {
	font-size: 2rem;
	line-height: 1.9;
	color: var(--c-text);
	margin: 0;
}

.value-herb {
	position: absolute;
	top: -10px;
	width: 200px;
	height: auto;
	pointer-events: none;
}

.value-herb--l {
	left: 0;
}

.value-herb--r {
	right: 0;
}

/* リスト */
.value-list {
	display: flex;
	flex-direction: column;
	gap: 40px 20px;
	position: relative;
	z-index: 2;
	padding: 0 20px;
}

.value-list .backimg {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}

/* ページタイトルのベージュオーバーレイを解除 */

/* 各アイテム */
.value-item {
	display: flex;
	align-items: center;
	gap: 0;
	background: var(--c-white);
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
	max-width: var(--policy-container-width);
	margin: 0 auto;
}

.value-item__image {
	flex: 0 0 45%;
	align-self: stretch;
}

.value-item__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.value-item__body {
	flex: 1;
	padding-inline: 75px;
	padding-block: 60px;
}

.value-item__num {
	margin: 0 0 12px;
}

.value-item__num span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: var(--c-green);
	color: var(--c-white);
	font-family: var(--ff-heading);
	font-size: 2.4rem;
	letter-spacing: 0.05em;
}

.value-item__title {
	font-family: var(--ff-heading);
	font-size: 3.8rem;
	font-weight: 400;
	line-height: 1.26;
	color: var(--c-olive);
	margin: 0 0 16px;
	letter-spacing: 0.0375em;
}

.value-item__lead {
	font-size: 2.4rem;
	color: var(--c-text);
	font-weight: 500;
	margin-bottom: 23px;
}

.value-item__text {
	font-size: 1.6rem;
	line-height: 2;
	color: var(--c-text);
	margin: 0;
}

.value-item__heading {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 1em;
}

.value-item__heading .value-item__num,
.value-item__heading .value-item__title {
	margin: 0;
}

/* レスポンシブ */
@media (max-width: 1024px) {
	.value-list {
		padding: 0 20px;
	}

	.value-head__title {
		font-size: 3.2rem;
		width: 80%;
		padding: 15px 20px;
	}

	.value-herb--l {
		left: -4%;
	}

	.value-herb--r {
		right: -4%;
	}
}

@media (max-width: 768px) {
	.value-section {
		padding: 60px 16px;
	}

	.value-head__title {
		font-size: 2rem;
		width: 100%;
		margin-bottom: 20px;
	}

	.value-item__lead {
		font-size: 1.6rem;
		margin-bottom: 20px;
	}

	.value-herb {
		width: 70px;
	}

	.value-herb--l {
		left: -2%;
	}

	.value-herb--r {
		right: -2%;
	}

	.value-list {
		row-gap: 30px;
	}

	.value-item,
	.value-item--right {
		flex-direction: column;
	}

	.value-item__image {
		flex: 0 0 auto;
		width: 100%;
		aspect-ratio: 16 / 10;
		order: -1;
		overflow: hidden;
	}

	.value-item__body {
		padding: 32px 24px;
	}

	.value-item__num span {
		width: 36px;
		height: 36px;
		font-size: 1.4rem;
	}

	.value-item__title {
		font-size: 2.4rem;
	}

	.value-head {
		margin-bottom: 30px;
	}

	.value-head__lead {
		font-size: 1.4rem;
	}

	.value-list {
		padding-inline: 0;
	}

	.value-item__text {
		font-size: 1.4rem;
	}
}

/* ============================================
院長プロフィール（director）
============================================ */
.director-section {
	padding: 80px 0;
	background: var(--c-bg-cream);
	position: relative;
	z-index: 2;
	overflow: hidden;
}

.director-voice-section .backimg {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}

.director-voice-section {
	background: var(--c-white);
}

.director-inner {
	width: calc(100% - 40px);
	max-width: var(--profile-container-width);
	margin: 0 auto;
}

/* ============ プロフィールカード ============ */
.director-profile-card {
	display: flex;
	gap: 32px clamp(0rem, -3.94rem + 5.12vw, 4rem);
	background: var(--c-white);
	border-radius: 12px;
	margin-bottom: 40px;
}

.director-profile-card__photo {
	flex: 0 0 36%;
	border-radius: 8px;
	overflow: hidden;
}

.director-profile-card__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 63%;
	display: block;
}

.director-profile-card__list {
	flex: 1;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 32px 32px 32px 0;
	font-size: 1.6rem;
}

.director-profile-card__row {
	display: flex;
	align-items: center;
	gap: 16px;
}

.director-profile-card__row dt {
	flex: 0 0 200px;
	background: var(--c-green);
	color: var(--c-white);
	font-weight: 500;
	text-align: center;
	padding-inline: 8px;
	border-radius: 4px;
	letter-spacing: 0.05em;
}

.director-profile-card__row dd {
	margin: 0;
	color: #4c3f1e;
	line-height: 1.6;
}

/* エピソードカード */
.director-episode {
	background: var(--c-white);
	border-radius: 12px;
	padding: 32px 40px;
	margin-bottom: 24px;
}

.director-episode__title {
	font-size: 2.4rem;
	font-weight: 500;
	color: var(--c-text);
	margin-bottom: 10px;
}

.director-episode p {
	font-size: 1.6rem;
	line-height: 1.8;
	margin: 0;
}

/* ============ スタッフからの声 ============ */
.director-voice-head {
	position: relative;
	text-align: center;
	margin-bottom: 60px;
}

.director-voice-head__en {
	font-family: var(--ff-heading);
	font-size: 1.4rem;
	letter-spacing: 0.2em;
	color: var(--c-green);
	margin: 0 0 8px;
}

.director-voice-head__title {
	font-family: var(--ff-heading);
	font-size: 4.8rem;
	font-weight: 400;
	color: var(--c-olive);
	margin: 0;
	letter-spacing: 0.0375em;
}

.director-voice-herb {
	position: absolute;
	top: -20px;
	left: 5%;
	width: 180px;
	height: auto;
	pointer-events: none;
}

.director-voice-herb--2 {
	top: auto;
	left: auto;
	bottom: -750px;
	right: 0;
}

.director-voice-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	max-width: 680px;
	gap: 47px;
	margin: 0 auto;
}

.director-voice-item {
	display: flex;
	align-items: center;
	gap: 16px 50px;
}

.director-voice-item--right {
	flex-direction: row-reverse;
}

.director-voice-item__photo {
	width: 130px;
	height: 130px;
	border-radius: 50%;
	overflow: hidden;
}

.director-voice-item__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.director-voice-item__bubble {
	flex: 1;
	background: #eaf5de;
	border-radius: 12px;
	padding: 20px 28px;
	position: relative;
	font-size: 1.5rem;
	line-height: 1.8;
}

.profile .director-voice-item__bubble > h3 {
	font-family: var(--ff-heading);
	font-size: 2.4rem;
	font-weight:normal;
}

.director-voice-item--left .director-voice-item__bubble::before {
	content: "";
	position: absolute;
	left: -10px;
	top: 24px;
	border-style: solid;
	border-width: 8px 12px 8px 0;
	border-color: transparent #eaf5de transparent transparent;
}

.director-voice-item {
	display: flex;
	align-items: center;
	gap: 16px;
}

.director-voice-item--left {
	flex-direction: row;
}

/* 右配置のときは画像も右側に */
.director-voice-item--right .director-voice-item__photo {
	/* なにもしない、row-reverseで右に来る */
}

/* 吹き出しの三角の向き */
.director-voice-item--left .director-voice-item__bubble {
	position: relative;
}

.director-voice-item--left .director-voice-item__bubble::before {
	content: "";
	position: absolute;
	left: -10px;
	top: 24px;
	border-style: solid;
	border-width: 8px 12px 8px 0;
	border-color: transparent #eaf5de transparent transparent;
}

.director-voice-item--right .director-voice-item__bubble {
	position: relative;
}

.director-voice-item--right .director-voice-item__bubble::before {
	content: "";
	position: absolute;
	right: -10px;
	left: auto;
	top: 24px;
	border-style: solid;
	border-width: 8px 0 8px 12px;
	border-color: transparent transparent transparent #eaf5de;
}



/* ============ ヒストリー ============ */
.director-history-section.director-section {
	overflow: unset;
}

.director-history {
	display: flex;
	gap: 60px;
	align-items: flex-start;
}

.director-history__image {
	flex: 0 0 40%;
	position: sticky;
	top: 155px;
}

.director-history__image img {
	width: 100%;
	border-radius: 8px;
	display: block;
}

.director-history__note {
	font-size: 1.1rem;
	color: var(--c-text-sub);
	margin-top: 8px;
	text-align: center;
}

.director-history__body {
	flex: 1;
}

.director-history__en {
	font-family: var(--ff-heading);
	font-size: 1.4rem;
	letter-spacing: 0.2em;
	color: var(--c-green);
	margin: 0 0 8px;
}

.director-history__title {
	font-family: var(--ff-heading);
	font-size: 4.8rem;
	font-weight: 400;
	color: var(--c-olive);
	margin: 0 0 40px;
	letter-spacing: 0.0375em;
}

.director-history__block {
	margin-bottom: 45px;
	color:#4c3f1e;
}

.director-history__block h3 {
	font-size: 2.4rem;
	font-weight: 700;
	color: var(--c-text);
	margin: 0 0 16px;
}

.director-history__block p {
	font-size: 1.6rem;
	line-height: 2;
	color: #191919;
	margin: 0;
}

/* ヒストリー下部 吹き出し */
.director-history-footer {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-top: 60px;
	max-width: 785px;
	margin-left: auto;
	margin-right: auto;
}

.director-history-footer__bubble {
	background: var(--c-white);
	border-radius: 12px;
	padding: 20px 28px;
}

.director-history-footer__photo {
	width: 130px;
	height: 130px;
	flex-shrink: 0;
}

.director-history-footer__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50%; /* 丸型の場合。四角のままなら削除 */
	display: block;
}

.director-history-footer__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.director-history-footer__bubble p {
	font-size: 1.6rem;
	line-height: 1.8;
	color: var(--c-text);
	margin: 0;
}

/* ============ レスポンシブ ============ */
@media (max-width: 1024px) {
	.director-section {
		padding: 80px 16px;
	}

	.director-profile-card__list {
		padding: 24px;
	}

	.director-profile-card {
		margin-bottom: 24px;
	}

	.director-voice-herb {
		left: 0%;
	}

	.profile .director-voice-item__bubble > h3{
		font-size:2rem;
	}

	.director-history__image {
		top: 135px;
	}

	.director-history-footer {
		margin-top: 40px;
	}
	.director-voice-head__title {
		font-size: 3.6rem;
	}
	.director-history__title {
		font-size: 3.6rem;
	}
}
@media (max-width: 768px) {
	.director-inner {
		width: 100%;
	}

	.director-profile-card {
		flex-direction: column;
		padding: 20px;
	}

	.director-profile-card__list {
		padding: 0;
		row-gap: 20px;
	}

	.director-profile-card__photo {
		flex: 0 0 auto;
		width: 100%;
	}

	.director-profile-card__photo {
		object-position: center;
	}

	.director-profile-card__row {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
	}

	.director-profile-card__row dt {
		flex: 0 0 auto;
		width: 100%;
		font-size: 1.6rem;
	}

	.director-profile-card__row dd {
		font-size: 1.4rem;
	}

	.director-episode {
		padding: 24px 20px;
		font-size: 1.4rem;
	}

	.director-episode__title {
		font-size: 1.7rem;
	}

	.director-voice-head__title {
		font-size: 2.6rem;
	}

	.director-voice-list {
		gap: 30px;
	}

	.director-voice-item {
		column-gap: 30px;
	}

	.director-voice-item__photo {
		width: 80px;
		height: 80px;
	}

	.director-history__block {
		margin-bottom: 30px;
		font-size: 1.4rem;
		line-height: 2;
	}

	.director-history__block h3 {
		font-size: 2rem;
	}

	.director-voice-herb {
		width: 100px;
		left: -5%;
	}

	.director-voice-herb--2 {
		left: initial;
		right: -5%;
		z-index: 99;
		transform: translateY(120px);
	}
	.director-history {
		flex-direction: column;
		gap: 32px;
	}

	.director-history__image {
		position: static;
		flex: 0 0 auto;
		width: 100%;
	}

	.director-history__title {
		font-size: 2.4rem;
	}

	.director-history-footer {
		margin-top: 0;
	}

	.director-history-footer__bubble p {
		font-size: 1.3rem;
	}
}

.director-voice-list > li {
	flex-direction: row;
}

.director-voice-list > li:nth-child(even) .director-voice-item__bubble::before {
	left: auto;
	right: -10px;
	border-width: 8px 0 8px 12px;
	border-color: transparent transparent transparent #eaf5de;
}

.director-voice-list > li:nth-child(odd) .director-voice-item__bubble::before {
	left: -10px;
	right: auto;
	border-width: 8px 12px 8px 0;
	border-color: transparent #eaf5de transparent transparent;
}

/* 偶数番目を右配置に強制 */
.director-voice-list > li:nth-child(even) {
	flex-direction: row;
}

.director-voice-list > li:nth-child(even) .director-voice-item__bubble::before {
	left: auto;
	right: -10px;
	border-width: 8px 0 8px 12px;
	border-color: transparent transparent transparent #eaf5de;
}

.director-voice-list > li:nth-child(odd) .director-voice-item__bubble::before {
	left: -10px;
	right: auto;
	border-width: 8px 12px 8px 0;
	border-color: transparent #eaf5de transparent transparent;
}

/* 偶数番目を右配置に強制（強化版） */
.director-voice-list > li {
	flex-direction: row !important;
}

/* ============================================
数字で見る（numbers）
============================================ */
.numbers-section {
	padding: 80px 16px;
	background: var(--c-bg-cream);
}

.numbers-section + .numbers-section {
	padding-block: 90px;
	background: #fff;
}

.numbers-section + .numbers-section + .numbers-section {
	background: var(--c-bg-cream);
}

.numbers-inner {
	max-width: var(--numbers-container-width);
	margin: 0 auto;
}

.numbers-head {
	text-align: center;
	margin-bottom: 48px;
}

.numbers-head__en {
	font-family: var(--ff-heading);
	font-size: 1.4rem;
	letter-spacing: 0.2em;
	color: var(--c-green);
	margin: 0 0 8px;
}

.numbers-head__title {
	font-family: var(--ff-heading);
	font-size: 3.6rem;
	font-weight: 400;
	color: var(--c-olive);
	margin: 0;
	letter-spacing: 0.0375em;
}

.numbers-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}

.numbers-grid--center {
	justify-items: center;
}

.numbers-grid--center .numbers-card:last-child {
	grid-column: 1 / 3;
	max-width: calc(50% - 12px);
}

.numbers-card {
	background: var(--c-white);
	border-radius: 10px;
	padding: 32px 25px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	border: 1px solid #73cd58;
}

.numbers-card--space-between {
	justify-content: space-between;
}

.numbers-card__visual {
	width: 100%;
	margin-bottom: 20px;
}

.numbers-card__visual img {
	max-width: 100%;
	height: auto;
	margin: 0 auto;
	display: block;
}

.numbers-card__visual--clinic {
	height: 280px;
}

.numbers-card__note {
	font-size: 1.6rem;
	line-height: 1.8;
	letter-spacing: 0.07em;
	color: var(--c-text);
	margin: 0;
}

.numbers-card__link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 16px;
	font-size: 1.8rem;
	color: var(--c-green);
	text-decoration: none;
	transition: opacity 0.2s;
}

.numbers-card__link:hover {
	opacity: 0.7;
}

.numbers-card__link span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: var(--c-green);
	color: var(--c-white);
	font-size: 1.1rem;
}

/* セクション下のCTAボタン */
.numbers-cta {
	text-align: center;
	margin-top: 48px;
}

.numbers-btn {
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	min-width: 430px;
	padding: 22px 24px;
	background: var(--c-olive);
	color: var(--c-white);
	border-radius: 8px;
	font-size: 2.1rem;
	font-weight: 500;
	text-decoration: none;
	transition: opacity 0.2s;
}

.numbers-btn:hover {
	opacity: 0.85;
}

.numbers-btn span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	border: 1px solid var(--c-white);
	background: var(--c-olive);
	color: var(--c-white);
	font-size: 1.3rem;
}

/* レスポンシブ */
@media (max-width: 768px) {
	.numbers-section,
	.numbers-section + .numbers-section {
		padding: 60px 16px;
	}

	.numbers-head__title {
		font-size: 2.6rem;
	}

	.numbers-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.numbers-grid--center .numbers-card:last-child {
		grid-column: auto;
		max-width: 100%;
	}

	.numbers-card {
		padding: 24px 20px;
	}

	.numbers-card__note {
		font-size: 1.4rem;
	}

	.numbers-card__link {
		font-size: 1.4rem;
	}

	.numbers-card__link span {
		width: 18px;
		height: 18px;
	}

	.numbers-btn {
		width: 100%;
		font-size: 1.6rem;
		min-width: 300px;
		max-width: 320px;
		padding: 15px 20px;
	}

	.numbers-card__visual--clinic {
		height: auto;
	}
}

/* ============================================
見学・面談のご案内（visit）
============================================ */
.visit-section {
	background: var(--c-bg-cream);
	position: relative;
	z-index: 2;
}

.visit-section .backimg {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}

.visit-webtalk {
	background: var(--c-white);
}

.visit-inner {
	padding: 80px 16px;
	max-width: 1270px;
	margin: 0 auto;
}

#visit-webtalk .visit-inner {
	max-width: 1350px;
}

.visit-inner .c-btn--lg {
	font-size: 2.1rem;
	gap: 45px;
	padding: 24px 30px 24px 70px;
}

/* メイン画像＋吹き出し */
.visit-main {
	display: flex;
	gap: 0;
	align-items: center;
	position: relative;
	margin-bottom: 48px;
}

.visit-main__image {
	max-width: 60%;
	flex: 0 0 60%;
	position: relative;
}

.visit-main__image img:not(.visit-herb) {
	width: 100%;
	border-radius: 8px;
	display: block;
}

.visit-herb {
	position: absolute;
	top: -65px;
	left: -70px;
	width: 180px;
	height: auto;
	z-index: 2;
}

.visit-main__bubble {
	flex: 1;
	background: var(--c-white);
	border-radius: 12px;
	padding: 60px;
	margin-left: -150px;
	z-index: 2;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
	align-self: center;
}

.visit-main__bubble--green {
	background: var(--c-white);
}

/* Webカジュアル面談だけ：ボックスを下にずらす */
.visit-main--right {
	align-items: flex-start !important;
}

.visit-main--right .visit-main__bubble--green {
	font-size: 1.8rem;
	margin-top: 100px;
	align-self: flex-start;
}

.visit-main__bubble p {
	font-size: 1.8rem;
	line-height: 1.9;
	color: var(--c-text);
	margin: 0 0 14px;
}

.visit-main__bubble p:last-child {
	margin-bottom: 0;
}

.visit-note {
	font-size: 1.2rem !important;
	color: var(--c-text-sub) !important;
	margin-top: 12px !important;
}

.visit-check-list {
	margin-block: 20px;
}

.visit-check-list li {
	font-size: 1.8rem;
	line-height: 1.9;
	color: var(--c-green);
}

/* スタッフ吹き出し */
.visit-staff-talks {
	display: flex;
	gap: 32px;
	justify-content: center;
	margin-bottom: 80px;
	flex-wrap: wrap;
}

.visit-staff-item {
	display: flex;
	align-items: center;
	gap: 14px;
}

.visit-staff-item__photo {
	flex: 0 0 120px;
	width: 120px;
	height: 120px;
	border-radius: 50%;
	overflow: hidden;
}

.visit-staff-item__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.visit-staff-item__bubble {
	position: relative;
	background: #f1faee;
	border-radius: 12px;
	padding: 14px 20px;
	min-height: 80px;
	max-width: 375px;
	border: 1px solid #73cd58;
}

/* 外側：緑のボーダー三角 */
.visit-staff-item__bubble::before {
	content: "";
	position: absolute;
	left: -10px;
	top: 50%;
	transform: translateY(-50%);
	border-style: solid;
	border-width: 7px 10px 7px 0;
	border-color: transparent #73cd58 transparent transparent;
}

/* 内側：背景色の三角でボーダー風に */
.visit-staff-item__bubble::after {
	content: "";
	position: absolute;
	left: -7px;
	top: 50%;
	transform: translateY(-50%);
	border-style: solid;
	border-width: 7px 9px 7px 0;
	border-color: transparent #f1faee transparent transparent;
}

.visit-staff-item__bubble p {
	font-size: 1.6rem;
	line-height: 1.6;
	color: var(--c-text);
	margin: 0;
}

/* 情報ボックス */
.visit-info {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 16px;
	margin-bottom: 48px;
}

.visit-info__box {
	background: var(--c-white);
	border: 1px solid #73cd58;
	border-radius: 8px;
	padding: 24px 28px;
}

.visit-info__title {
	font-size: 2.4rem;
	font-weight: 500;
	color: var(--c-olive);
	margin: 0 0 12px;
	font-family: var(--ff-heading);
}

.visit-info__box p {
	font-size: 1.6rem;
	line-height: 1.9;
	color: var(--c-text);
	margin: 0;
}

.visit-info__time {
	color: var(--c-green);
	font-weight: 500;
}

/* ボタン */
.visit-cta {
	text-align: center;
}

/* レスポンシブ */
@media (max-width: 1024px) {
	.visit-main__bubble {
		padding: 40px;
	}
}

@media (max-width: 768px) {
	.visit-inner {
		padding: 40px 0px;
	}

	.visit-inner .c-btn--lg {
		padding: 18px 18px 18px 58px;
		font-size:15px;
	}

	.visit-section {
		padding: 60px 16px;
	}

	.visit-main {
		flex-direction: column;
	}

	.visit-main__image {
		flex: 0 0 100%;
		width: 100%;
		max-width: 100%;
	}

	.visit-main__bubble {
		margin-left: 0;
		margin-top: -30px;
		padding: 20px;
	}

	.visit-main__bubble p {
		font-size: 1.4rem;
	}

	/* SPでは下ずらしを解除 */
	.visit-main--right .visit-main__bubble--green {
		margin-top: -30px !important;
	}

	.visit-staff-item__bubble p {
		font-size: 1.3rem;
	}

	.visit-staff-talks {
		margin-bottom: 40px;
	}

	.visit-check-list li {
		font-size: 1.4rem;
	}

	.visit-herb {
		width: 80px;
		top: -15px;
		left: -10px;
	}

	.visit-info {
		grid-template-columns: 1fr;
	}

	.visit-info__box p {
		font-size: 1.3rem;
	}
}

/* ============================================
マッチング率診断（matching）
============================================ */
.ta_center {
	text-align: center;
}

.matching-section {
	padding: 80px 20px;
	background: var(--c-bg-cream);
}

.matching-inner {
	max-width: 880px;
	margin: 0 auto;
}

.matching-form {
	display: block;
}

/* ====== ヘッダー部 ====== */
.matching-head {
	text-align: center;
	margin-bottom: 56px;
	font-size: 1.8rem;
}

.matching-head__en {
	font-family: var(--ff-heading);
	font-size: 1.4rem;
	letter-spacing: 0.2em;
	color: var(--c-green);
	margin: 0 0 8px;
}

.matching-head__title {
	font-family: var(--ff-heading);
	font-size: 3.6rem;
	font-weight: 400;
	color: var(--c-olive);
	margin: 0 0 20px;
	letter-spacing: 0.0375em;
	line-height: 1.4;
}

.matching-head__lead {
	font-size: 1.8rem;
	line-height: 1.9;
	color: var(--c-text);
	margin: 0;
}

/* ====== 質問ブロック ====== */
.q-block {
	background: var(--c-white);
	border-radius: 12px;
	padding: 32px 36px;
	margin-bottom: 20px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.q-block__title {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	font-size: 2rem;
	font-weight: 600;
	color: var(--c-text);
	margin: 0 0 24px;
	line-height: 1.6;
	letter-spacing: 0.02em;
	padding-bottom: 20px;
	border-bottom: 1px dashed #ddd;
}

.q-block__num {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	height: 28px;
	padding: 0 10px;
	background: var(--c-green);
	color: var(--c-white);
	font-family: var(--ff-heading);
	font-size: 1.4rem;
	letter-spacing: 0.08em;
	border-radius: 4px;
	margin-top: 2px;
}

/* 選択肢 */
.q_wrap {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
}

.q_wrap > div {
	margin: 0;
}

.q_wrap label {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 14px 18px;
	background: var(--c-bg-cream);
	border: 1px solid transparent;
	border-radius: 8px;
	font-size: 1.8rem;
	color: var(--c-text);
	cursor: pointer;
	transition: all 0.2s ease;
	line-height: 1.5;
}

.q_wrap label:hover {
	background: #f3f9ec;
	border-color: var(--c-green);
}

/* ラジオボタンのカスタム */
.q_wrap input[type="radio"] {
	appearance: none;
	-webkit-appearance: none;
	flex-shrink: 0;
	width: 18px;
	height: 18px;
	border: 2px solid #c8c0a8;
	border-radius: 50%;
	margin: 0;
	cursor: pointer;
	position: relative;
	transition: border-color 0.2s;
}

.q_wrap input[type="radio"]:checked {
	border-color: var(--c-green);
}

.q_wrap input[type="radio"]:checked::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 10px;
	height: 10px;
	background: var(--c-green);
	border-radius: 50%;
}

.q_wrap label:has(input[type="radio"]:checked) {
	background: #f3f9ec;
	border-color: var(--c-green);
	font-weight: 500;
}

/* エラーメッセージ */
.error_txt {
	display: none;
	margin-top: 12px;
	font-size: 1.3rem;
	color: #d9534f;
	font-weight: 500;
}

.q-block.error .error_txt {
	display: block;
}

/* ====== 結果を見るボタン ====== */
.matching-btn {
	display: block;
	width: 100%;
	max-width: 320px;
	margin: 48px auto 0;
	padding: 18px 32px;
	background: var(--c-olive);
	color: var(--c-white);
	border: none;
	border-radius: 8px;
	font-family: var(--ff-jp);
	font-size: 2.1rem;
	font-weight: 500;
	letter-spacing: 0.08em;
	cursor: pointer;
	transition: opacity 0.2s ease;
}

.matching-btn:hover {
	opacity: 0.85;
}

/* ====== 結果表示エリア ====== */
.resource {
	display: none;
	margin-top: 56px;
	padding: 48px 40px;
	background: var(--c-white);
	border-radius: 16px;
	text-align: center;
}

.result-lead {
	font-family: var(--ff-heading);
	font-size: 2.1rem;
	color: var(--c-olive);
	margin: 0 0 20px;
	letter-spacing: 0.0375em;
}

#goukei {
	font-family: var(--ff-heading);
	font-size: 2.4rem;
	color: var(--c-olive);
	margin: 0 0 32px;
	letter-spacing: 0.05em;
	display: block;
}

#goukei span {
	font-size: 6.4rem;
	color: var(--c-green);
	margin: 0 4px;
}

/* マッチ度別メッセージ（デフォルトは非表示、JSで該当のものだけ表示） */
.mach_txt {
	display: none;
	text-align: left;
	padding: 32px 28px;
	border-radius: 12px;
	background: var(--c-bg-cream);
	border: 1px solid #e8dfc8;
}

.mach_txt__rate {
	font-family: var(--ff-heading);
	font-size: 2rem;
	color: var(--c-olive);
	margin: 0 0 16px;
	letter-spacing: 0.05em;
	text-align: center;
}

.mach_txt__rate strong {
	font-size: 3.6rem;
	color: var(--c-green);
	margin: 0 4px;
}

.mach_txt p {
	font-size: 1.8rem;
	line-height: 1.9;
	color: var(--c-text);
	margin: 0 0 24px;
}

.mach_txt__link {
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-width: 280px;
	margin: 0 auto;
	padding: 20px 20px 20px 40px;
	background: var(--c-green);
	color: var(--c-white);
	border-radius: 8px;
	font-size: 2.1rem;
	font-weight: 500;
	text-decoration: none;
	transition: opacity 0.2s ease;
}

.mach_txt__link:hover {
	opacity: 0.85;
}

.mach_txt__link span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: var(--c-white);
	color: var(--c-green);
	font-size: 1.2rem;
}

/* リンクボタン部分だけ中央寄せ */
.mach_txt.is-active,
.mach_txt[style*="block"] {
	display: block;
}

/* ====== レスポンシブ ====== */
@media (max-width: 768px) {
	.matching-head__lead {
		font-size: 1.5rem;
	}

	.matching-section {
		padding: 60px 16px;
	}

	.matching-head__title {
		font-size: 2.6rem;
	}

	.matching-head {
		margin-bottom: 40px;
	}

	.q-block {
		padding: 24px 20px;
	}

	.q-block__title {
		font-size: 1.5rem;
		padding-bottom: 16px;
		margin-bottom: 18px;
	}

	.q-block__num {
		font-size: 1.3rem;
		min-width: 40px;
	}

	.q_wrap {
		grid-template-columns: 1fr;
		gap: 8px;
	}

	.q_wrap label {
		padding: 12px 14px;
		font-size: 1.35rem;
	}

	.matching-btn {
		font-size: 1.8rem;
		padding: 16px 24px;
	}

	.resource {
		padding: 48px 20px;
	}

	.result-lead {
		font-size: 1.8rem;
	}

	#goukei {
		font-size: 2rem;
	}

	#goukei span {
		font-size: 4.8rem;
	}

	.mach_txt {
		padding: 32px 18px;
	}

	.mach_txt p {
		font-size: 1.4rem;
	}

	.mach_txt__rate {
		font-size: 1.6rem;
	}

	.mach_txt__rate strong {
		font-size: 3.6rem;
	}

	.mach_txt__link {
		min-width: 240px;
		font-size: 1.6rem;
		padding: 20px 20px 20px 40px;
	}
}
@media (max-width: 510px) {
	.mach_txt__link {
		min-width: 200px;
		padding: 20px 16px 20px 24px;
	}
}
/* ============================================
トップページ（top）
============================================ */
.top-section {
	padding-inline: 16px;
}

.top-inner {
	max-width: var(--container-width);
}

/* 共通：リンクリスト */
.top-link-list {
	background: var(--c-white);
	border-radius: 16px;
	padding: 16px 32px;
	list-style: none;
	margin: 0;
}

.top-link-list li {
	border-bottom: 1px solid #eee;
}

.top-link-list li:last-child {
	border-bottom: none;
}

.top-link-list li a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	padding: 24px 8px;
	text-decoration: none;
	transition: opacity 0.2s;
}

.top-link-list li a:hover {
	opacity: 0.7;
}

.top-link-list__title {
	font-size: 2.2rem;
	font-weight: 500;
	color: var(--c-olive);
	margin-bottom: 2px;
	letter-spacing: 0.05em;
}

.top-link-list__sub {
	font-size: 1.6rem;
	color: #b2a68b;
	margin: 0;
	line-height: 1.6;
}

.top-link-list__arrow {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 25px;
	height: 25px;
	border-radius: 50%;
	background: var(--c-green);
	color: var(--c-white);
	font-size: 1.4rem;
	position: relative;
}

.top-link-list__arrow::before {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 11px;
	height: 1px;
	background: #fff;
	transform: translate(-50%, -50%);
}

.top-link-list__arrow::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 8px;
	height: 8px;
	border-top: 1.5px solid #fff;
	border-right: 1.5px solid #fff;
	transform: translate(calc(-50% + 1px), -50%) rotate(45deg);
}

@media (max-width: 768px) {
	.top-link-list__title {
		font-size: 1.7rem;
	}

	.top-link-list__sub {
		font-size: 1.3rem;
	}
}

/* ============ 1. ヒーロー ============ */
.top-hero {
	position: relative;
	background: linear-gradient(135deg, #f3fbed 0%, #ffffff 60%);
	overflow: hidden;
	z-index: 2;
}

.top-hero .top-back-img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}

.top-hero .top-back-img img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.top-hero__inner {
	position: relative;
	padding: 120px clamp(6rem, 5.474rem + 1.09vw, 6.5rem);
	max-width: 1600px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	gap: 0 9px;
	min-height: 760px;
}

.top-hero__text {
	flex: 1;
	z-index: 10;
}

.top-hero__catch {
	font-family: var(--ff-heading);
	font-size: 6.2rem;
	font-weight: 400;
	color: var(--c-olive);
	line-height: 1.5;
	margin: 0 0 32px;
	letter-spacing: 0.0375em;
}

.top-hero__catch-mark {
	background: #fff;
	padding: 10px 25px;
	display: inline-block;
	width: 250px;
	max-width: 250px;
	position: relative;
	top: 11px;
	margin-top: -20px;
	margin-right: 10px;
}

.top-hero__catch-mark img {
	display: block;
	width: 100%;
}

.top-hero__lead {
	font-size: 2.2rem;
	line-height: 2;
	color: var(--c-text);
	position: relative;
}

.top-hero__lead .ashirai-img1 {
	position: absolute;
	bottom: -20px;
	right: 50px;
	width: 140px;
	height: auto;
}

.top-hero__lead .ashirai-img2 {
	position: absolute;
	bottom: -154px;
	right: -183px;
	width: 150px;
	height: auto;
}

.top-hero__images {
	flex: 0 0 55%;
	display: flex;
	gap: 16px;
	align-items: flex-end;
	z-index: 2;
}

.top-hero__img-1 {
	flex: 0 0 40%;
	border-radius: 12px;
	aspect-ratio: 360 / 600;
	object-fit: cover;
	width: 41%;
}

.top-hero__img-2 {
	flex: 1;
	border-radius: 12px;
	aspect-ratio: 500 / 530;
	object-fit: cover;
	width: 57%;
}

.top-hero__herb {
	position: absolute;
	left: 30%;
	bottom: -40px;
	width: 200px;
	height: auto;
	z-index: 1;
	pointer-events: none;
	opacity: 0.9;
}
@media (max-width: 1630px) and (min-width: 1500px) {
	.top-hero__catch {
		font-size: 5.2rem;
	}
}
@media (max-height: 900px) {
	.top-hero .top-back-img{
		height:100vh;
	}
	.top-hero__inner{
		padding:32px clamp(8rem, calc(0.857rem + 14.286vh), 12rem);
		min-height: 600px;
	}
	.top-hero__lead .ashirai-img2 {
		bottom: -98px;
	}
}
/* ============ 2. メッセージ ============ */
.top-message {
	position: relative;
	z-index: 2;
	padding-block: 140px;
	background: var(--c-white);
}

.top-message__inner {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 60px;
}

.top-message__image {
	width: 840px;
	position: absolute;
	left: 0;
}

.top-message__image img {
	width: 100%;
	border-radius: 12px;
	display: block;
}

.top-message__text {
	position: relative;
	width: 700px;
}

.top-message__body {
	font-size: 1.8rem;
	line-height: 2;
	color: var(--c-text);
	margin-bottom: 65px;
}

.top-message__btn {
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	min-width: 320px;
	padding: 18px 24px;
	background: var(--c-green);
	color: var(--c-white);
	border-radius: 8px;
	font-size: 1.5rem;
	font-weight: 500;
	text-decoration: none;
	transition: opacity 0.2s;
}

.top-message__btn:hover {
	opacity: 0.85;
}

.top-message__btn span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: var(--c-white);
	color: var(--c-green);
	font-size: 1.3rem;
}

.top-message__herb {
	position: absolute;
	right: -130px;
	bottom: -70px;
	width: 280px;
	height: auto;
	pointer-events: none;
}

/* ============ 3. 職種導線 ============ */
.top-job-lead {
	position: relative;
	padding: 110px 32px 0;
	background: #dcefcc;
}

.top-job-lead__inner {
	max-width: 1050px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem clamp(3.2rem, 0.948rem + 2.19vw, 4.8rem);
}

.top-job-lead__card {
	background: #73cd58;
	border-radius: 16px;
	overflow: hidden;
	display: block;
	text-decoration: none;
	color: var(--c-white);
	transition: opacity 0.2s;
}

.top-job-lead__card--dr {
	background: #5fb0a0;
}

.top-job-lead__card:hover {
	opacity: 0.9;
}

.top-job-lead__img {
	position: relative;
	aspect-ratio: 16 / 10;
	/* overflow: hidden; ← 削除（アイコンを下にはみ出させるため） */
}

/* 画像自体は角丸の上側だけ効かせて、はみ出しを防ぐ */
.top-job-lead__img img:first-child {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 16px 16px 0 0; /* 上だけ角丸 */
}

.top-job-lead__body {
	padding: 17px 50px 28px;
}

.top-job-lead__title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	font-family: var(--ff-heading);
	font-size: 2.4rem;
	font-weight: 400;
	color: var(--c-white);
	margin: 0 0 10px;
	letter-spacing: 0.05em;
}

.top-job-lead__title span {
	flex-shrink: 0;
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 25px;
	height: 25px;
	border-radius: 50%;
	background: transparent;
	border: 1.5px solid #fff;
	font-size: 0;
	margin-right: 10px;
}

/* 矢印の線（横棒） */
.top-job-lead__title span::before {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 11px; /* 10px → 16px に拡大 */
	height: 1.5px;
	background: #fff;
	transform: translate(-50%, -50%);
}

/* 矢印の先端（山形） */
.top-job-lead__title span::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 8px; /* 5px → 7px に拡大 */
	height: 8px;
	border-top: 1.5px solid #fff;
	border-right: 1.5px solid #fff;
	transform: translate(calc(-50% + 1px), -50%) rotate(45deg);
	/* 横棒が伸びた分、先端も右に+4pxへ */
}

.top-job-lead__card--dr .top-job-lead__title span {
	border-color: #fff;
}

.top-job-lead__card--dr .top-job-lead__title span {
	color: #5fb0a0;
}

.top-job-lead__text {
	font-size: 1.7rem;
	line-height: 2;
	color: var(--c-white);
	margin: 0;
}

/* 院内写真帯 */
.top-photo-strip {
	--job-lead-padding: 16px;
	width: calc(100% + var(--job-lead-padding) * 2);
	margin-left: calc(var(--job-lead-padding) * -1);
	margin-top: 110px;
	background: var(--c-white);
	overflow: hidden;
	position: relative;
	--top-photo-item-width: 420px;
}

.top-photo-strip__track {
	display: flex;
	width: max-content;
	flex-wrap: nowrap;
	align-items: stretch;
	gap: 4px;
	animation: topPhotoStripLoop 28s linear infinite;
	animation-play-state: running;
	will-change: transform;
}

.top-photo-strip__track img {
	flex: 0 0 auto;
	width: var(--top-photo-item-width);
	height: 320px;
	object-fit: cover;
	display: block;
}

@keyframes topPhotoStripLoop {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(calc(-50% - 2px));
	}
}

@media (prefers-reduced-motion: reduce) {
	.top-photo-strip__track {
		animation-duration: 56s;
	}
}

/* ============ 4. 当院のこと ============ */
.top-about {
	position: relative;
	z-index: 2;
	padding: 120px 32px 90px 32px;
	background: var(--c-bg-cream);
}

.top-about__inner {
	max-width: 1200px;
	margin: 0 auto;
}

.top-about__head {
	text-align: center;
	margin-bottom: 60px;
}

.top-about__content {
	display: flex;
	gap: 0;
	align-items: stretch;
}

.top-about__image {
	flex: 0 0 43.2%;
	position: relative;
	z-index: 2;
}

.top-about__image img:first-child {
	width: 100%;
	height: 100%;
	border-radius: 16px 0 0 16px;
	object-fit: cover;
	display: block;
}

.top-about__herb {
	position: absolute;
	top: -95px;
	left: -80px;
	width: 200px;
	height: auto !important;
	pointer-events: none;
	z-index: 3;
}

.top-about .top-link-list {
	flex: 1;
	margin-left: -40px;
	padding: 50px 40px 50px 80px;
}

/* ============ 5. 院長紹介 ============ */
.top-doctor {
	position: relative;
	z-index: 2;
	padding: 100px 32px;
	background: var(--c-white);
}

.top-doctor__inner {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	gap: 60px clamp(3.2rem, -0.166rem + 4.378vw, 6.4rem);
}

.top-doctor__text {
	flex: 1;
}

.top-doctor__sub {
	font-family: var(--ff-jp);
	font-size: 3.2rem;
	font-weight: bold;
	color: var(--c-olive);
	margin: 0 0 20px;
	letter-spacing: 0.05em;
}

.top-doctor__body {
	font-size: 1.8rem;
	line-height: 2;
	color: var(--c-text);
	margin: 0 0 50px;
}

.top-link-list--card {
	background: #fff7eb;
}

.top-doctor__image {
	flex: 0 0 42%;
	position: relative;
}

.top-doctor__image img:first-child {
	width: 100%;
	border-radius: 12px;
	display: block;
}

.top-doctor__herb {
	position: absolute;
	top: -75px;
	right: -60px;
	width: clamp(15rem, 10.792rem + 5.47vw, 19rem);
	height: auto !important;
	pointer-events: none;
}

.top-doctor__name {
	background: var(--c-white);
	display: inline-block;
	padding: 18px 34px;
	position: relative;
	z-index: 2;
	font-size: 2rem;
	font-weight: 700;
	color: var(--c-text);
	position: absolute;
	bottom: 0;
	left: 0;
}

.top-doctor__name span {
	display: block;
	font-size: 1.6rem;
	font-weight: 400;
	color: var(--c-text-sub);
	margin-bottom: 4px;
}

.top-doctor .top-link-list {
	padding: 20px 40px;
}
/* ============ 6. スタッフインタビュー ============ */
.top-interview {
	background-color: #fff;
	position: relative;
	height: 480px;
	overflow: hidden;
}

.top-interview__bg {
	position: absolute;
	inset: 0;
	display: flex;
	z-index: 0;
}

.top-interview__bg img {
	height: 100%;
	object-fit: cover;
}

.top-interview__bg-l {
	width: 25%;
}
.top-interview__bg-c {
	width: 50%;
}
.top-interview__bg-r {
	width: 25%;
}

.top-interview {
	position: relative;
	height: 480px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.top-interview__title {
	margin-bottom: 30px;
}

.top-interview__lead {
	font-size: 1.8rem;
	line-height: 2;
	color: #494949;
	margin: 0 24px 32px 24px;
}

.top-interview__inner {
	position: relative;
	z-index: 1;
	text-align: center;
}

.top-interview .c-btn {
	font-size: 1.8rem;
	gap: 61px;
}

/* ============ 7. 仕事紹介 ============ */
.top-job {
	position: relative;
	background: linear-gradient(135deg, #7fcf5e 0%, #6bb94a 100%);
	overflow: hidden;
	z-index: 2;
}

.top-job-backimg {
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: -1;
	top: 0;
	left: 0;
}

.top-job__inner {
	padding: 100px 32px 130px 32px;
	position: relative;
	max-width: 1100px;
	margin: 0 auto;
}

.top-job__herb {
	position: absolute;
	top: 70px;
	left: -90px;
	width: 110px;
	height: auto;
	pointer-events: none;
	opacity: 0.9;
}

.top-job__head {
	text-align: center;
	margin-bottom: 48px;
	color: var(--c-white);
}

.top-job__title.c-title-01 .c-title-01__en,
.top-job__title.c-title-01 .c-title-01__title {
	color: #fff;
}

.top-job__lead {
	font-size: 1.8rem;
	margin: 0;
	color: var(--c-white);
}

.top-job__cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.top-job__card {
	flex: 0 0 80%;
	scroll-snap-align: start;
}

.top-job__card {
	background: var(--c-white);
	border-radius: 16px;
	overflow: hidden;
	text-decoration: none;
	transition: opacity 0.2s;
	display: block;
}

.top-job__card:hover {
	opacity: 0.9;
}

.top-job__card-img {
	aspect-ratio: 4 / 3;
	overflow: hidden;
}

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

.top-job__card-body {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	padding: 20px 40px;
}

.top-job__card-title {
	font-family: var(--ff-heading);
	font-size: 2.4rem;
	font-weight: 400;
	color: var(--c-olive);
	letter-spacing: 0.05em;
}

.top-job__card-arrow {
	flex-shrink: 0;
	position: relative;
	display: inline-flex;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: var(--c-green);
	font-size: 0;
}

.top-job__card-arrow::before {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 11px;
	height: 1.5px;
	background: #fff;
	transform: translate(-50%, -50%);
}

.top-job__card-arrow::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 8px;
	height: 8px;
	border-top: 1.5px solid #fff;
	border-right: 1.5px solid #fff;
	transform: translate(calc(-50% + 1px), -50%) rotate(45deg);
}

/* ============ 8. はたらく環境 ============ */
.top-env {
	position: relative;
	z-index: 2;
	padding: 120px 32px 100px 32px;
	overflow: hidden;
	background: var(--c-bg-cream);
}

.top-env__inner {
	max-width: 1200px;
	margin: 0 auto;
}

.top-env__head {
	margin-bottom: 48px;
}

.top-env__lead {
	font-size: 1.8rem;
	color: var(--c-text);
	margin: 0;
}

.top-env__content {
	display: flex;
	gap: 0;
	align-items: stretch;
	position: relative;
}

.top-env__image {
	flex: 0 0 43.5%;
	position: relative;
	z-index: 2;
}

.top-env__image img {
	width: 100%;
	height: 100%;
	border-radius: 16px 0 0 16px;
	object-fit: cover;
	display: block;
}

.top-env .top-link-list {
	flex: 1;
	margin-left: -40px;
	padding: 24px 40px 24px 80px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	font-size: 2.2rem;
}

.top-env__inner {
	position: relative;
}

.top-env__herb {
	position: absolute;
	top: 70px;
	right: -80px;
	width: 200px;
	height: auto;
	pointer-events: none;
	z-index: 2;
}

/* ============ 9. よくある質問 ============ */
.top-faq {
	position: relative;
	padding-block: 80px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.top-faq__inner {
	max-width: 800px;
	margin: 0 auto;
	background: rgba(255, 255, 255, 0.92);
	border-radius: 16px;
	padding: 96px;
	text-align: center;
}

.top-faq__lead {
	font-size: 1.8rem;
	line-height: 1.9;
	color: #494949;
	margin-bottom: 45px;
}

.top-faq .c-btn {
	font-size: 1.8rem;
	gap: 43px;
	padding-block: 20px;
}

.top-faq .c-btn__arrow {
	width: 25px;
	height: 25px;
}

/* ============ 10. 応募の前に ============ */
.top-before {
	position: relative;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-color: rgba(255, 247, 235, 0.7);
	background-blend-mode: lighten;
	z-index: 2;
}

.top-before-backimg {
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: -1;
	top: 0;
	left: 0;
}

.top-before__inner {
	max-width: 1100px;
	padding: 120px 32px 105px 32px;
	margin: 0 auto;
}

.top-before__head {
	position: relative;
	text-align: center;
	margin-bottom: 48px;
}

.top-before__tag {
	position: absolute;
	top: 40%;
	right: 8%;
	display: inline-block;
	background: #c8ae6e;
	color: var(--c-white);
	padding: 12px 28px;
	border-radius: 999px 999px 999px 4px;
	font-size: 1.4rem;
	font-weight: 500;
}

.top-before__cards {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
}

.top-before__card {
	background: var(--c-white);
	border-radius: 16px;
	text-decoration: none;
	transition: opacity 0.2s;
	display: block;
	position: relative;
}

.top-before__card:hover {
	opacity: 0.9;
}

.top-before__card .mattemasu {
	position: absolute;
	top: -40px;
	right: -60px;
	width: 306px;
	height: auto;
	z-index: 3;
}

.top-before__card-img {
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
	overflow: hidden;
	aspect-ratio: 620 / 340;
}

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

.top-before__card-body {
	padding: 24px 28px 28px;
}

.top-before__card-title {
	font-family: var(--ff-heading);
	font-size: 1.9rem;
	font-weight: 400;
	color: var(--c-olive);
	margin: 0 0 12px;
	letter-spacing: 0.05em;
}

.top-before__card-title {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 2.4rem;
}

.top-before__card-title span {
	flex-shrink: 0;
	position: relative;
	display: inline-flex;
	width: 25px;
	height: 25px;
	border-radius: 50%;
	background: var(--c-green);
	font-size: 0;
}

.top-before__card-title span::before {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 11px;
	height: 1.5px;
	background: #fff;
	transform: translate(-50%, -50%);
}

.top-before__card-title span::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 8px;
	height: 8px;
	border-top: 1.5px solid #fff;
	border-right: 1.5px solid #fff;
	transform: translate(calc(-50% + 1px), -50%) rotate(45deg);
}

.top-before__card-text {
	font-size: 1.6rem;
	line-height: 2;
	color: var(--c-text);
	margin: 0;
}

/* ============ レスポンシブ ============ */
@media (min-width: 769px) {
	.top-message .c-btn {
		column-gap: 85px;
		padding-block: 26px;
	}

	.top-message .c-btn__arrow {
		width: 25px;
		height: 25px;
	}
}

@media (max-width: 1800px) {
	.top-message .top-message__image {
		z-index: -2;
		max-width: 40%;
	}
}

@media (max-width: 1600px) {
	.top-message .top-message__herb {
		right: 0;
		z-index: -1;
		opacity: 0.4;
	}
}

@media (max-width: 1450px) {
	.top-before__card .mattemasu {
		right: 0;
		max-width: 45%;
	}
}

@media (max-width: 1350px) {
	.top-hero__lead .ashirai-img1 {
		z-index: -1;
		opacity: 0.4;
	}

	.top-doctor__herb {
		right: -15px;
	}

	.top-env__herb {
		right: -15px;
		top: 0;
		max-width: 150px;
	}
}

@media (max-width: 1300px) {
	.top-job__herb {
		left: -16px;
	}
}

@media (max-width: 1200px) {
	.top-message .top-message__image {
		position: unset;
	}

	.top-job-lead {
		padding-top: 80px;
	}

	.top-job-lead .top-photo-strip {
		margin-top: 80px;
	}

	.top-job-lead__body {
		padding-inline: 30px;
	}
}

@media (max-width: 1024px) {
	.top-hero__inner {
		gap: 60px;
		padding: 80px 0 140px;
		flex-direction: column;
		align-items: center;
	}
}

@media (max-width: 960px) {
	.top-message {
		margin-block: 0;
	}

	.top-message .top-message__inner {
		flex-direction: column;
		gap: 32px;
	}

	.top-message .top-message__image {
		width: 100%;
		max-width: 450px;
	}

	.top-interview__bg-c{
		width:60%;
	}

	.top-interview__bg-l,
	.top-interview__bg-r{
		width:20%;
	}
}

@media (max-width: 768px) {
	.top-hero {
		padding: 40px 16px 0px;
	}

	.top-hero__inner {
		flex-direction: column;
		gap: 32px;
		padding-block: 0;
		min-height: 630px;
	}

	.top-hero__text {
		flex: unset;
	}

	.top-hero__lead {
		font-size: 1.8rem;
	}

	.top-hero__catch {
		font-size: 4.5rem;
		margin-bottom: 20px;
	}

	.top-hero__catch-mark {
		margin-top: -20px;
		width: 180px;
		max-width: 180px;
	}

	.top-hero__images {
		flex: 0 0 auto;
		width: 100%;
	}

	.top-hero__img-1,
	.top-hero__img-2 {
		max-width: initial;
	}

	.top-hero__herb {
		width: 120px;
		left: auto;
		right: 0;
		bottom: 0;
		z-index:2;
	}
	.top-hero__lead .ashirai-img1{
		right: 20px;
		width: 100px;
	}

	.top-hero__lead .ashirai-img2{
		display:none;
	}
	
	.top-message {
		padding-block: 60px;
	}

	.top-message__inner {
		flex-direction: column;
		width: 100%;
		gap: 32px;
	}

	.top-message__text {
		font-size: 1.3rem;
		width: 100%;
	}

	.top-message__image {
		width: 100%;
		position: static;
	}

	.top-message__herb {
		display: none;
	}

	.top-job-lead {
		padding: 60px 16px 0;
	}

	.top-job-lead__inner {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.top-job-lead__text {
		font-size: 1.3rem;
	}

	.top-job-lead__body {
		padding-inline: 15px;
	}

	.top-job-lead__title {
		font-size: 2rem;
	}

	.top-photo-strip {
		margin-top: 40px;
		--top-photo-item-width: 46vw;
	}

	.top-photo-strip__track img {
		flex-basis: auto;
		width: var(--top-photo-item-width);
		height: unset;
		aspect-ratio: 179 / 144;
	}

	.top-about,
	.top-doctor,
	.top-env {
		padding-block: 60px;
	}

	.top-about__content,
	.top-env__content {
		flex-direction: column;
		gap: 24px;
	}

	.top-about .top-link-list,
	.top-env .top-link-list {
		margin-left: 0;
		padding: 8px 16px;
	}

	.top-about__herb,
	.top-env__herb {
		width: 100px;
	}

	.top-about__head {
		margin-bottom: 40px;
	}

	.top-about__image {
		flex: unset;
	}

	.top-about__image img:first-child {
		border-radius: 16px;
		height: auto;
		aspect-ratio: 5 / 3;
	}

	.top-doctor__herb {
		width: 100px !important;
		right: -10px;
		z-index: -1;
		opacity: 0.4;
	}

	.top-doctor__body {
		font-size: 1.4rem;
		margin-bottom: 30px;
	}

	.top-doctor__inner {
		flex-direction: column;
		gap: 32px;
	}

	.top-doctor__sub {
		font-size: 1.9rem;
	}

	.top-doctor__name span {
		font-size: 1.1rem;
	}

	.top-doctor .top-link-list {
		padding: 0 16px;
	}

	.top-interview {
		padding: 60px 16px;
		height: auto;
	}

	.top-interview__bg img {
		width: 50%;
	}

	.top-interview__bg-l,
	.top-interview__bg-r {
		display: none;
	}

	.top-interview__bg img {
		width: 100%;
	}

	.top-interview .c-btn {
		font-size: 1.6rem;
		gap: 20px;
	}

	.top-env {
		padding-block: 60px;
	}

	.top-env__herb {
		right: 0;
		z-index: -1;
		opacity: 0.4;
		max-width: 200px;
	}

	.top-env__image img {
		border-radius: 16px;
		height: auto;
		aspect-ratio: 5 / 3;
	}

	.top-env__lead {
		font-size: 1.4rem;
	}

	.top-job {
		padding-block: 60px;
	}

	.top-job__cards {
		display: flex;
		overflow-x: auto;
		gap: 8px;
		padding-left: 2rem;
		padding-bottom: 1rem;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
	}

	.top-job__card {
		flex: 0 0 80%;
		scroll-snap-align: start;
	}

	.top-job__herb {
		width: 80px;
		left: 0;
		opacity: 0.4;
		z-index: -1;
	}

	.top-job__lead {
		font-size: 1.4rem;
	}

	.top-job__inner {
		padding: 0;
	}

	.top-job__card-img {
		aspect-ratio: 5 / 3;
	}

	.top-job__card-title {
		font-size: 1.9rem;
	}

	.top-job__card-body {
		padding-inline: 20px;
	}

	.top-faq {
		padding-block: 60px;
	}

	.top-faq__inner {
		padding: 40px 20px;
	}

	.top-faq__lead {
		font-size: 1.4rem;
		margin-bottom: 30px;
	}

	.top-faq .c-btn {
		font-size: 1.6rem;
		gap: 20px;
	}

	.top-before {
		padding-block: 60px;
	}

	.top-before__inner {
		padding: 0;
	}

	.top-before__cards {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.top-before__card .mattemasu {
		width: 180px;
		right: -10px;
		top: -20px;
	}

	.top-before__tag {
		position: static;
		display: inline-block;
		margin-top: 16px;
	}

	.top-before__card-text {
		font-size: 1.4rem;
	}
}

@media (max-width: 510px) {
	/*牛川追加*/
	.top-hero {
		padding: 64px 16px 0px;
	}
	.top-hero__catch {
		font-size: 4rem;
	}
	.top-hero__catch-mark {
		width: 168px;
	}
	.top-hero__lead {
		font-size: 1.6rem;
	}
}

/* 親項目（子を持つもの）のクリックを無効化 */
.global-nav > li.menu-item-has-children > a {
	pointer-events: none;
	cursor: default;
}

/* サブメニューのリンクは有効のまま */
.global-nav > li.menu-item-has-children .sub-menu a {
	pointer-events: auto;
	cursor: pointer;
}

/* ===== パンくずリスト ===== */
.breadcrumb {
	background-color: #fff;
	border-radius: 10px;
	margin: 0;
	padding: 50px 0;
	font-size: 1.2rem;
	color: #191919;
	max-width: 100%;
}

.breadcrumb-inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	line-height: 1.6;
	max-width: 1300px;
	margin-inline: auto;
	background: #fff7eb;
	border-radius: 10px;
	padding: 20px;
}

.breadcrumb a {
	text-decoration: none;
	transition: opacity 0.2s;
	color:#4c3f1e;
}

.breadcrumb a:hover {
	opacity: 0.7;
}

.breadcrumb .bc-sep {
	color: inherit;
	font-weight: 500;
	margin: 0 8px;
	opacity: 0.5;
}

.breadcrumb span:not(.bc-sep) {
	color: var(--c-text);
}

@media (max-width: 768px) {
	.breadcrumb {
		padding: 20px;
		font-size: 1.2rem;
	}

	.breadcrumb-inner {
		padding: 15px 20px;
	}
}

/* ===== 募集要項一覧 ===== */
.recruit-archive {
	background: var(--c-white);
}

.recruit-archive__head {
	text-align: center;
	margin-bottom: 40px;
	padding: 0 20px;
}

.recruit-archive__en {
	font-family: var(--ff-heading);
	color: var(--c-green);
	font-size: 1.4rem;
	letter-spacing: 0.15em;
	margin: 0 0 8px;
}

.recruit-archive__title {
	font-family: var(--ff-heading);
	font-size: 3.2rem;
	color: var(--c-olive);
	margin: 0;
	letter-spacing: 0.0375em;
}

.recruit-archive__toc-wrap {
	margin: 0 auto;
}

.recruit-archive__body {
	background: var(--c-bg-cream);
	padding: 80px max(20px, calc((100% - 1000px) / 2));
}

.recruit-cat {
	margin-bottom: 48px;
	scroll-margin-top: 80px;
}

.recruit-cat:last-child {
	margin-bottom: 0;
}

.recruit-cat__en {
	font-family: var(--ff-heading);
	color: var(--c-green);
	font-size: 1.3rem;
	letter-spacing: 0.15em;
	margin: 0 0 4px;
}

.recruit-cat__title {
	font-family: var(--ff-heading);
	font-size: 3.6rem;
	font-weight:normal;
	color: var(--c-olive);
	margin: 0 0 24px;
	letter-spacing: 0.0375em;
}

/* カードは3列固定（参考サイト準拠）、足りない時は左寄せ */
.recruit-cat__list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.recruit-cat__card {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 22px 24px;
	background: #fff;
	border-radius: 10px;
	text-decoration: none;
	color: var(--c-text);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
	transition:
		transform 0.2s,
		box-shadow 0.2s;
}

.recruit-cat__card:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

.recruit-cat__label {
	font-size: 2.1rem;
	font-weight: 600;
	color: var(--c-olive);
}

.recruit-cat__arrow {
	position: relative;
	flex-shrink: 0;
	width: 32px;
	height: 32px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--c-green);
	color: #fff;
	border-radius: 50%;
	font-size: 0;
}

.recruit-cat__arrow::before {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 11px;
	height: 1.5px;
	background: #fff;
	transform: translate(-50%, -50%);
}

.recruit-cat__arrow::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 8px;
	height: 8px;
	border-top: 1.5px solid #fff;
	border-right: 1.5px solid #fff;
	transform: translate(calc(-50% + 1px), -50%) rotate(45deg);
}

.recruit-cat__none {
	font-size: 1.3rem;
	color: var(--c-text);
	margin: 0;
	padding: 16px 20px;
	background: #fff;
	border-radius: 8px;
}

@media (max-width: 1024px) and (min-width: 769px) {
	.recruit-cat__list {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.recruit-archive__title {
		font-size: 2.4rem;
	}

	.recruit-archive__body {
		padding: 48px 20px;
	}

	.recruit-cat__wrapper {
		max-width: 100%;
		overflow-x: auto;
	}

	.recruit-cat__title{
		font-size:2.6rem;
	}

	.recruit-cat__list {
		display: flex;
	}

	.recruit-cat__item {
		flex-shrink: 0;
		width: 230px;
	}

	.recruit-cat__card{
		padding: 18px 20px;
	}
	.recruit-cat__label {
		font-size: 1.5rem;
	}

	.recruit-cat__arrow{
		width: 20px;
		height: 20px;
	}

	.recruit-single__entry {
		margin: 30px 0 30px;
	}
}

/* ===== 共通：セクション目次 ===== */
.section-toc {
	margin: 0 auto;
	padding-block: 40px;
	max-width: 100%;
	background-color: #fff;
}

.section-toc ul {
	list-style: none;
	padding-inline: 20px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	gap: 24px 40px;
	max-width: var(--container);
}

.section-toc ul > li {
	display: flex;
}

.section-toc a {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
	color: var(--c-text);
	font-size: 1.8rem;
	font-weight: 500;
	transition: opacity 0.2s;
}

.section-toc a:hover {
	opacity: 0.7;
}

/* 下矢印バージョンの丸ボタン（緑円 + 白下向き矢印） */
.section-toc__num {
	flex-shrink: 0;
	position: relative;
	display: inline-flex;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: var(--c-green);
	font-size: 0;
}

.section-toc__num::before {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 1.5px;
	height: 8px;
	background: #fff;
	transform: translate(-50%, -50%);
}

.section-toc__num::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 45%;
	width: 6px;
	height: 6px;
	border-bottom: 1.5px solid #fff;
	border-right: 1.5px solid #fff;
	transform: translate(-50%, calc(-50% - -2.5px)) rotate(45deg);
}

@media (max-width: 768px) {
	.section-toc {
		padding: 24px 16px;
	}

	.section-toc ul {
		gap: 16px;
		padding: 0;
	}

	.section-toc a {
		gap: 8px;
		font-size: 1.6rem;
	}

	.section-toc__num {
		width: 19px;
		height: 19px;
	}
}

@media (max-width: 510px) {
	.section-toc a {
		font-size: 1.4rem;
	}
}
/* ============================================
おすすめページリンク（around-link）
※ 各下層ページ共通で使用するルール
============================================ */
.around-link-section {
	position: relative;
	width: 100%;
	min-height: 460px;
	padding: 60px 20px;
	background-image: url("./images/common/around-link-bg.png");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
}

.around-link-head {
	margin-bottom: 60px;
	text-align: center;
}

.around-link-title {
	margin-bottom: 0;
	text-align: center;
}

/* ボタン群ラッパー */
.around-link-wrap {
	width: 100%;
	max-width: 880px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
}

.around-link-wrap.row {
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	max-width: 1340px;
}

/* 個別ボタン */
.around-link-wrap .main-btn {
	width: 100%;
	max-width: 420px;
}

/* 2枚並び：合計幅約860px */
.around-link-wrap.row-2 {
	max-width: 880px;
}
.around-link-wrap.row-2 .main-btn {
	flex: 0 0 420px;
	max-width: 420px;
}

/* 3枚並び：合計幅約1300px */
.around-link-wrap.row-3 {
	max-width: var(--container-wide);
}
.around-link-wrap.row-3 .main-btn {
	flex: 0 0 420px;
	max-width: 420px;
}

/* カード本体 */
.around-link-wrap .btn a {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 4px;
	padding: 24px 90px 24px 32px;
	background: #fff;
	border: 2px solid #efebe1;
	border-radius: 12px;
	text-decoration: none;
	font-size: 2.4rem;
	font-weight: 400;
	color: var(--ff-heading);
	letter-spacing: 0.03em;
	line-height: 1.5;
	min-height: 96px;
	box-sizing: border-box;
	transition:
		transform 0.2s,
		box-shadow 0.2s,
		opacity 0.2s;
}

.around-link-wrap .btn a:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
	opacity: 1;
}

/* カテゴリラベル（data-cat 属性で出す） */
.around-link-wrap .btn a::before {
	content: attr(data-cat);
	display: block;
	font-family: var(--ff-heading);
	font-size: 1.6rem;
	font-weight: 400;
	letter-spacing: 0.08em;
	color: #c0b293;
	margin-bottom: 4px;
}

/* 矢印アイコン */
.around-link-wrap .btn a .fa-angle-right {
	position: absolute;
	top: 50%;
	right: 24px;
	transform: translateY(-50%);
	width: 30px;
	height: 30px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #73cd58;
	color: #fff;
	border-radius: 50%;
	font-size: 1.6rem;
	transition: transform 0.2s;
}

.around-link-wrap .btn a .fa-angle-right::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 11px;
	height: 2.5px;
	background: #fff;
	transform: translate(-50%, -50%);
}

.around-link-wrap .btn a .fa-angle-right::before {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 8px;
	height: 8px;
	border-top: 1.5px solid #fff;
	border-right: 1.5px solid #fff;
	transform: translate(calc(-50% + 1px), -50%) rotate(45deg);
}

.around-link-wrap .btn a:hover .fa-angle-right {
	transform: translateY(-50%) translateX(2px);
}

/* レスポンシブ */
@media (max-width: 768px) {
	.around-link-section {
		min-height: unset;
		padding: 40px 16px;
	}

	.around-link-head {
		margin-bottom: 30px;
	}

	.around-link-wrap .main-btn,
	.around-link-wrap.row-2 .main-btn,
	.around-link-wrap.row-3 .main-btn {
		flex: 1 1 100%;
		max-width: 100%;
	}
	.around-link-wrap {
		row-gap: 10px;
	}
	.around-link-wrap .btn a {
		padding: 20px 70px 20px 24px;
		font-size: 1.5rem;
		min-height: 80px;
	}

	.around-link-wrap .btn a::before {
		font-size: 1.2rem;
		margin-bottom: 0;
	}

	.around-link-wrap .btn a .fa-angle-right {
		right: 16px;
		width: 34px;
		height: 34px;
		font-size: 1.4rem;
	}
}

/* ===========================================
募集要項 詳細ページ（single-recruit）
=========================================== */

/* ===========================================
募集要項 詳細ページ（single-recruit）
=========================================== */

/* 本文コンテナの幅を広げる */
.recruit-single__inner {
	max-width: 1100px;
	margin: 0 auto;
	padding: 60px 24px 80px;
}

/* タイトル */
.recruit-single__title {
	font-size: 2.8rem;
	text-align: center;
	margin: 0 0 40px;
}

/* テーブル全体 */
.recruit-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 1.6rem;
	line-height: 1.9;
}

.recruit-table th,
.recruit-table td {
	padding: 20px 24px;
	vertical-align: top;
	text-align: left;
	border-bottom: 1px solid #e0d8c8;
	font-size: 1.6rem;
}

.recruit-table th {
	width: 240px;
	font-weight: 700;
}

/* テーブル本文：入力された改行・空行・<br>変換後の改行を反映 */
.recruit-single .recruit-table__text {
	display: block;
	white-space: pre-line;
}

/* エントリーフォーム見出し */
.recruit-single__form-title {
	font-size: 2.4rem;
	text-align: center;
	margin: 80px 0 32px;
}

.recruit-single .c-btn--lg {
	font-size: 2.1rem;
	gap: 45px;
	padding: 30px 30px 30px 70px;
}

.recruit-single__toc {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 32px 0 48px;
}

.recruit-single__toc a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 20px;
	border: 1px solid var(--c-green);
	border-radius: 999px;
	color: var(--c-green);
	text-decoration: none;
	font-weight: 600;
}

.recruit-single__section {
	margin-bottom: 64px;
}

.recruit-single__section-title {
	font-family: var(--ff-heading);
	font-size: 3rem;
	font-weight: 400;
	color: var(--c-olive);
	margin: 0 0 24px;
	padding-bottom: 18px;
	border-bottom: 1px solid var(--c-green);
}

/* エントリーボタン */
.recruit-single__entry {
	margin: 80px 0 ;
	text-align: center;
}

/* レスポンシブ */
@media (max-width: 768px) {
	.recruit-single__inner {
		padding: 40px 20px 0 20px;
	}

	.recruit-single__title {
		font-size: 2.2rem;
	}

	.recruit-table th,
	.recruit-table td {
		display: block;
		width: 100%;
		padding: 12px 16px;
	}

	.recruit-table th {
		border-bottom: none;
		background: var(--c-bg-cream);
	}

	.recruit-single .recruit-table__text {
		display: block;
		white-space: pre-line;
	}

	.recruit-single .c-btn--lg {
		font-size: 1.5rem;
		gap: 30px;
		padding: 20px 20px 20px 50px;
	}
}

/* この求人のポイント：項目ごとの余白 */
.recruit-points-cell {
	display: flex;
	flex-direction: column;
	gap: 28px;
}

.recruit-points-cell li {
	margin: 0;
}

.recruit-points-cell__title {
	display: flex;
	align-items: baseline;
	gap: 0.25em;
	margin-bottom: 8px;
}

.recruit-points-cell__icon {
	display: inline-block;
	flex-shrink: 0;
}

.recruit-points-cell__body {
	margin: 0;
}

.recruit-points-cell__body .recruit-table__text {
	display: block;
}

@media (max-width: 768px) {
	.recruit-points-cell {
		gap: 22px;
	}

	.recruit-points-cell__title {
		margin-bottom: 6px;
	}
}

/* ===========================================
医院概要・アクセス
=========================================== */
.access-page {
	background: var(--c-bg-cream);
	color: var(--c-text);
	font-family: var(--ff-jp);
}

.access-section {
	padding: 80px 20px 100px;
}

.access-inner {
	max-width: 900px;
	margin: 0 auto;
}

/* ========== 概要テーブル ========== */
.access-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 1.8rem;
	line-height: 1.8;
}

.access-table tr {
	border-bottom: 1px solid #d8ecc4;
}

.access-table tr:first-child {
	border-top: 1px solid #d8ecc4;
}

.access-table th {
	background: var(--c-green);
	color: var(--c-white);
	font-weight: 600;
	padding: 20px 24px;
	width: 200px;
	vertical-align: middle;
	text-align: center;
	white-space: nowrap;
	letter-spacing: 0.05em;
}

.access-table td {
	background: var(--c-white);
	padding: 20px 28px;
	vertical-align: middle;
	color: var(--c-text);
}

.access-table td a {
	color: var(--c-green);
	text-decoration: underline;
	word-break: break-all;
}

.access-table td a:hover {
	opacity: 0.75;
}

/* 診療時間の曜日 */
.access-hours {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.access-hours li {
	display: flex;
	flex-wrap: wrap;
	gap: 0 12px;
	align-items: baseline;
}

.access-hours__day {
	font-weight: 600;
	color: var(--c-olive);
	flex-shrink: 0;
}

.access-hours__note {
	display: block;
	font-size: 1.3rem;
	color: var(--c-text-sub);
	margin-top: 4px;
}

/* ========== マップ ========== */
.access-map {
	margin-top: 70px;
}

.access-map__head {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 16px;
}

.access-map__head-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--c-green);
	flex-shrink: 0;
}

.access-map__head-label {
	font-size: 2.4rem;
	font-weight: 600;
	color: var(--c-olive);
}

.access-map__frame {
	width: 100%;
	aspect-ratio: 16 / 7;
	border-radius: 12px;
	overflow: hidden;
}

.access-map__frame iframe {
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
}

/* ========== アクセス方法 ========== */
.access-ways {
	margin-top: 48px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.access-way {
	background: var(--c-white);
	border-radius: 12px;
	padding: 24px 20px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.access-way__label {
	font-family: var(--ff-heading);
	font-size: 2rem;
	font-weight: 400;
	color: var(--c-green);
	letter-spacing: 0.12em;
}

.access-way__text {
	font-size: 1.6rem;
	line-height: 1.8;
	color: var(--c-text);
	margin: 0;
}

/* ========== レスポンシブ ========== */
@media (max-width: 768px) {
	.access-section {
		padding: 60px 16px;
	}

	.access-head__title {
		font-size: 2.6rem;
	}

	.access-table,
	.access-table tbody,
	.access-table tr,
	.access-table th,
	.access-table td {
		display: block;
		width: 100%;
	}

	.access-table {
		font-size: 1.4rem;
	}

	.access-table tr {
		border-bottom: none;
		margin-bottom: 2px;
	}

	.access-table tr:first-child {
		border-top: none;
	}

	.access-table th {
		text-align: left;
		padding: 12px 16px;
		white-space: normal;
		font-size: 1.6rem;
	}

	.access-table td {
		padding: 16px;
		border-bottom: 2px solid var(--c-bg-cream);
	}

	.access-map__frame {
		aspect-ratio: 4 / 3;
	}

	.access-ways {
		grid-template-columns: 1fr;
		margin-top: 28px;
	}

	.access-map__head-label {
		font-size: 1.8rem;
	}

	.access-way__label {
		font-size: 1.6rem;
	}

	.access-way__text {
		font-size: 1.4rem;
	}
}

/* ========== 歯科医師のあなたへ ========== */
.dentist-inner {
	max-width: 1133px;
	box-sizing: content-box;
	margin: 0 auto;
	padding: 0 20px;
}

.dentist .dentist-career .dentist-inner {
	max-width: 1000px;
}

.dentist-section {
	padding: 100px 20px;
	position: relative;
}

/* ============ 1. GREETING ============ */
.dentist-greeting {
	position: relative;
	padding: 100px 20px;
	background: var(--c-bg-cream);
	z-index: 2;
}

.dentist-greeting__image {
	flex: 0 0 41%;
}

.dentist-greeting__image img {
	width: 100%;
	height: auto;
	border-radius: 12px;
	display: block;
}

.dentist-greeting__deco--r {
	position: absolute;
	z-index: 0;
	right: -7%;
	bottom: 220px;
	width: 400px;
}

.dentist-greeting__list li {
	color: #42b81f;
	position: relative;
	padding-left: 16px;
	font-size: 1.5rem;
	line-height: 1.9;
}

.dentist-greeting__list li::before {
	content: "・";
	position: absolute;
	left: 0;
}

.dentist-greeting__inner {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	gap: clamp(2.4rem, -0.078rem + 3.28vw, 4.8rem);
	align-items: flex-start;
	justify-content: center;
}

.dentist-greeting__text {
	flex: 1;
	max-width: 700px;
}

.dentist-greeting__body {
	font-size: 1.6rem;
	line-height: 2;
	color: var(--c-text);
}

.dentist-greeting__body p {
	margin: 0 0 24px;
}

.dentist-greeting__list {
	list-style: none;
	padding: 0;
	margin: 24px 0;
}

.dentist-greeting__sign {
	font-size: 1.4rem;
	line-height: 1.8;
	color: var(--c-text);
	margin-top: 32px;
}

.dentist-greeting__note {
	font-size: 1.2rem;
	color: var(--c-text-sub);
	text-align: center;
	margin-top: 8px;
}

/* ============ 2. WORKS ============ */
.dentist-works__main {
	background: #fff7eb;
	display: flex;
	overflow: hidden;
	position: relative;
	border-radius: 16px;
	gap: 32px 20px;
}

.dentist-works__body {
	flex: 1;
	padding: 65px 48px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: left;
}

.dentist-works__img {
	flex: 0 0 33%;
	border-radius: 0;
	overflow: hidden;
}

.dentist-works__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	border-radius: 16px 0 0 16px;
}

.dentist-works__group {
	width: 100%;
	margin-bottom: 24px;
}

.dentist-works__group:last-child {
	margin-bottom: 0;
}

.dentist-works__group-title {
	font-size: 2.4rem;
	font-weight: 600;
	color: var(--c-green);
	margin: 0 0 12px;
}

.dentist-works__group-text {
	font-size: 1.6rem;
	line-height: 1.68;
	color: var(--c-text);
	margin: 0;
}

.dentist-works__herb {
	position: absolute;
	right: -40px;
	bottom: -80px;
	width: 140px;
	height: auto;
	pointer-events: none;
}

/* ============ CAREER ============ */
.dentist-career {
	background: #eaf5de;
	padding: 100px 0;
	margin-top: -1px;
	position: relative;
	z-index: 2;
}

.dentist-career__list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 16px 30px;
}

.dentist-career__item {
	background: var(--c-white);
	border-radius: 12px;
	padding: 28px 32px;
}

.dentist-career__step {
	font-family: var(--ff-heading);
	font-size: 2.4rem;
	color: var(--c-green);
	margin: 0 0 8px;
	letter-spacing: 0.05em;
}

.dentist-career__text {
	font-size: 1.6rem;
	line-height: 2;
	color: var(--c-text);
	margin: 0;
}

/* ============ 3. PROFILE ============ */
.dentist-profile {
	background: var(--c-white);
	padding: 100px 20px;
}

.dentist-profile__inner {
	max-width: 1215px;
	margin: 0 auto;
	display: flex;
	gap: 56px 50px;
	align-items: flex-start;
}

.dentist-profile__image {
	flex: 0 0 37%;
	text-align: center;
}

.dentist-profile__image img {
	width: 100%;
	border-radius: 12px;
	display: block;
}

.dentist-profile__note {
	font-size: 1.2rem;
	color: var(--c-text-sub);
	margin-top: 12px;
	font-weight: 600;
}

.dentist-profile__body {
	flex: 1;
}

.dentist-profile__name {
	font-family: var(--ff-heading);
	font-size: 3.2rem;
	font-weight: 400;
	color: var(--c-olive);
	margin: 0 0 8px;
	letter-spacing: 0.05em;
}

.dentist-profile__name-en {
	font-family: var(--ff-heading);
	font-size: 1.6rem;
	color: var(--c-green);
	margin-bottom: 43px;
	letter-spacing: 0.08em;
}

.dentist-profile__block {
	margin-bottom: 24px;
}

.dentist-profile__label {
	display: inline-block;
	background: var(--c-green);
	color: var(--c-white);
	font-size: 1.6rem;
	line-height: 1.2;
	padding: 4px 12px;
	border-radius: 6px;
	margin-bottom: 0.5em;
	letter-spacing: 0.05em;
}

.dentist-profile__text {
	font-size: 1.6rem;
	line-height: 2;
	color: var(--c-text);
	margin: 0;
	padding-left: 4px;
}

.dentist-profile__btn-wrap {
	text-align: center;
	margin-top: 56px;
}

.dentist-profile__btn-wrap .c-btn {
	padding:15px 20px;
	box-shadow: 0 4px 4px #00000040;
	background-color: #0ea880;
}

/* ============ 4. CLINIC (医院の特徴) ============ */
.dentist-clinic {
	padding: 100px 20px;
	background: var(--c-bg-cream);
}

.dentist-clinic__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
	max-width: 100%;
	margin: 0 auto;
}

.dentist-clinic__card {
	background: var(--c-white);
	border: 1px solid rgba(189, 201, 203, 0.3);
	border-radius: 12px;
	padding: 36px 32px;
	text-align: center;
}

.dentist-clinic__icon {
	width: 70px;
	height: 70px;
	margin: 0 auto 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--c-green);
}

.dentist-clinic__icon img {
	width: 100%;
	height: auto;
}

.dentist-clinic__card-title {
	font-family: var(--ff-heading);
	font-weight: 400;
	font-size: 2.4rem;
	color: var(--c-green);
	line-height: 1.5;
	margin: 0 0 16px;
}

.dentist-clinic__card-text {
	font-size: 1.6rem;
	line-height: 2;
	color: var(--c-text);
	margin: 0;
	text-align: left;
}

/* ============ 5. EDUCATION ============ */

.dentist-edu {
	background: var(--c-white);
	padding: 100px 20px;
	position: relative;
	overflow: hidden;
}

.dentist-edu__deco {
	position: absolute;
	border-radius: 50%;
	background: #dcefcc;
	z-index: 0;
}

.dentist-edu__inner {
	position: relative;
	z-index: 1;
	max-width: 1124px;
	margin: 0 auto;
}

.dentist-edu__cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px clamp(3.2rem, 1.48rem + 1.68vw, 4rem);
	margin-bottom: 85px;
}

.dentist-edu__card {
	background: #f1faee;
	border-radius: 12px;
	padding: 32px 40px;
	text-align: center;
}

.dentist-edu__card-title {
	color: #73cd58;
	font-weight: 500;
	font-family: "UoqMunThenKhung";
	font-size: 2.4rem;
	margin-bottom: 22px;
}

.dentist-edu__card-icon {
	width: 86px;
	height: 86px;
	margin: 0 auto 16px;
	color: var(--c-green);
	display: flex;
	align-items: center;
	justify-content: center;
}

.dentist-edu__card-icon img {
	width: 100%;
	height: auto;
	max-width: 100%;
	max-height: 100%;
}

.dentist-edu__card-text {
	font-size: 1.6rem;
	line-height: 2;
	color: var(--c-text);
	margin: 0;
	text-align: left;
}

.dentist-edu__deco--r {
	width: 724px;
	height: 724px;
	right: -19%;
	top: 530px;
	background-color: #f1faee;
}

.dentist-edu__deco--l {
	width: 522px;
	height: 522px;
	left: -100px;
	top: 980px;
	background: #f6f3ec;
}

/* ============ 6. JOB FLOW ============ */
.dentist-flow {
	max-width: 1000px;
	margin-inline: auto;
}

.dentist-flow__head {
	margin-bottom: 24px;
}

.dentist-flow__en {
	font-family: var(--ff-heading);
	font-size: 1.4rem;
	color: var(--c-green);
	margin-bottom: 16px;
	letter-spacing: 0.1em;
}

.dentist-flow__title {
	font-family: var(--ff-heading);
	font-size: 2.8rem;
	color: var(--c-olive);
	padding-bottom: 30px;
	margin-bottom: 37px;
	border-bottom: 1px solid var(--c-green);
	font-weight: 400;
	letter-spacing: 0.0375em;
}

.dentist-flow__lead {
	font-size: 1.6rem;
	line-height: 1.68;
	color: var(--c-text);
	margin: 0 0 24px;
}

/* ============ 7. FAQ ============ */
.dentist-faq {
	padding: 100px 0;
	background: var(--c-bg-cream);
}

.dentist-faq__list {
	list-style: none;
	padding: 0;
	margin: 0 auto 48px;
	max-width: 760px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.dentist-faq__item {
	background: transparent;
}

.dentist-faq__q {
	display: flex;
	align-items: center;
	gap: 16px;
	width: 100%;
	padding: 1.5em 24px;
	background: var(--c-white);
	border: none;
	border-radius: 8px;
	font-family: var(--ff-jp);
	font-size: 1.6rem;
	font-weight: 600;
	color: var(--c-text);
	text-align: left;
	cursor: pointer;
	transition: opacity 0.2s;
	line-height: 1.5;
	box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
}

.dentist-faq__q:hover {
	opacity: 0.85;
}

.dentist-faq__q-mark {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: var(--c-green);
	color: var(--c-white);
	font-size: 1.3rem;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 700;
}

.dentist-faq__q-text {
	flex: 1;
	font-size: 1.8rem;
}

.dentist-faq__q-arrow {
	flex-shrink: 0;
	width: 16px;
	height: 16px;
	display: inline-block;
	position: relative;
	transition: transform 0.3s;
}

.dentist-faq__q-arrow::before {
	content: "";
	position: absolute;
	top: 4px;
	left: 2px;
	width: 10px;
	height: 10px;
	border-right: 2px solid var(--c-olive);
	border-bottom: 2px solid var(--c-olive);
	transform: rotate(45deg);
}

.dentist-faq__item.is-open .dentist-faq__q-arrow {
	transform: rotate(180deg);
}

.dentist-faq__a {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.35s ease;
}

.dentist-faq__a-inner {
	padding: 1.5em 0;
	font-size: 1.6rem;
	line-height: 1.68;
	color: var(--c-text);
}

.dentist-faq__a-inner p {
	margin: 0;
	line-height:2;
}

.dentist-faq__btn-wrap {
	text-align: center;
}

@media (max-width: 1960px) {
	.dentist-edu__deco--l {
		right: 78vw;
		left: initial;
	}
}

@media (max-width: 1720px) {
	.dentist-edu__deco--r {
		left: 1330px;
	}
}

@media (max-width: 1266px) {
	.dentist-greeting__deco--r {
		left: 77vw;
		width: 400px;
	}
}

@media (max-width: 1024px) {
	.dentist-edu__deco--l,
	.dentist-edu__deco--r {
		display: none;
	}
}

@media (max-width: 768px) {
	.dentist-greeting {
		padding-block: 60px;
	}

	.dentist-greeting__text {
		max-width: auto;
	}

	.dentist-greeting__image {
		margin-top: 30px;
	}

	.dentist-head__en {
		margin-left: 0;
	}

	.dentist-profile__label {
		font-size: 1.3rem;
	}

	.dentist-profile__text{
		font-size:1.4rem;
	}

	.dentist-profile__image {
		margin-bottom: 30px;
	}

	.dentist-profile__name {
		font-size: 2.2rem;
		margin-bottom: 0;
	}

	.dentist-clinic__icon {
		width: 56px;
		height: 56px;
	}

	.dentist-clinic__card-text,
	.dentist-career__text,
	.dentist-edu__card-text {
		font-size: 1.5rem;
	}

	.dentist-works__group-title {
		font-size: 1.7rem;
	}

	.dentist-works__group-text,
	.dentist-flow__lead {
		font-size: 1.5rem;
	}

	.dentist-works__img {
		border-radius: 16px 16px 0 0 ;
		overflow: hidden;
	}

	.dentist-works__body{
		padding:32px;
	}
	.dentist-career__step {
		font-size: 1.8rem;
	}

	.dentist-career__list {
		column-gap: 20px;
	}

	.dentist-edu__card-icon {
		width: 50px;
		height: 50px;
	}

	.dentist-edu__card-title {
		font-size: 1.7rem;
	}

	.dentist-edu__cards {
		margin-bottom: 40px;
	}

	.dentist-edu__card {
		padding-inline: 20px;
	}

	.dentist-faq {
		padding-block: 60px;
	}

	.dentist-clinic,
	.dentist-section {
		padding: 100px 0px;
	}

	.dentist-greeting__inner,
	.dentist-profile__inner,
	.dentist-works__main,
	.dentist-fa {
		display: block;
	}

	.dentist-clinic__grid {
		grid-template-columns: repeat(1, 1fr);
	}

	.dentist-edu__cards {
		grid-template-columns: repeat(1, 1fr);
	}
	
	.dentist-faq__q{
		   padding: 1.5em;
	}
	.dentist-faq__q-text{
		font-size:15px;
	}
}

/* ========== 歯科衛生士 ========== */
.dh-about,
.da-about {
	padding: 100px 20px;
}

/* ========== 共通 ========== */
.dh-inner {
	max-width: 1000px;
	margin: 0 auto;
	padding: 0;
	box-sizing: content-box;
}
.dh-inner--wide {
	max-width: 1100px;
}

.dh-section {
	padding: 100px 20px;
	position: relative;
}
.dh-section--cream {
	background: var(--c-bg-cream);
}
.dh-section--white {
	background: var(--c-white);
}
.dh-section--green {
	background: #eaf5de;
}

.dh-head {
	text-align: center;
	margin-bottom: 56px;
}
.dh-head--left {
	text-align: left;
	margin-bottom: 32px;
}
.dh-head__en {
	font-family: var(--ff-heading);
	font-size: 1.4rem;
	letter-spacing: 0.2em;
	color: var(--c-green);
	margin: 0 0 12px;
}
.dh-head__title {
	font-family: var(--ff-heading);
	font-size: 4.8rem;
	font-weight: 400;
	color: var(--c-olive);
	margin: 0;
	letter-spacing: 0.0375em;
	line-height: 1.4;
}
.dh-head--left .dh-head__title {
	position: relative;
	padding-bottom: 20px;
}
.dh-head--left .dh-head__title::after {
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	background: var(--c-green);
	margin-top: 20px;
}

@media (max-width: 768px) {
	.dh-section,
	.dh-about,
	.dh-flow,
	.dh-works,
	.dh-features,
	.dh-stepup,
	.dh-training,
	.dh-star,
	.dh-faq {
		padding: 60px 16px;
	}

	.dh-head__title {
		font-size: 2.6rem;
	}
}

/* ========== ABOUT JOBS ========== */
.dh-about {
	background: var(--c-bg-cream);
}
.dh-about__inner {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 48px clamp(3.2rem, 0.948rem + 2.19vw, 4.8rem)
}
.dh-about__body {
	flex: 1;
	max-width: 611px;
}
.dh-about__photo {
	flex-shrink: 0;
	width: 493px;
	height: auto;
	aspect-ratio: 1 / 1;
	max-width: 50%;
	border-radius: 50%;
	overflow: hidden;
}
.dh-about__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.dh-about__lead {
	font-size: 2.4rem;
	line-height: 1.5;
	font-weight: 600;
	color: var(--c-olive);
	margin-bottom: 20px;
}
.dh-about__text {
	font-size: 1.6rem;
	line-height: 2;
	color: var(--c-text);
	margin: 0;
}
@media (max-width: 834px) {
	.dh-about__inner {
		flex-direction: column-reverse;
		gap: 16px 32px;
	}
}
@media (max-width: 768px) {
	.dh-about {
		padding-block: 60px;
	}
	.dh-about__lead {
		font-size: 1.7rem;
	}
	.dh-about__text {
		font-size: 1.5rem;
	}
}

/* ========== JOB FLOW ========== */
.dh-flow {
	padding: 100px 20px;
	background: var(--c-white);
	position: relative;
	overflow: hidden;
}
.dh-flow::before {
	content: "";
	position: absolute;
	width: 50vw;
	max-width: 701px;
	height: auto;
	aspect-ratio: 701 / 644;
	background: url(./images/common/circle_01.svg) no-repeat center / contain;
	top: 0;
	right: 0;
	transform: translate(29%, -10%);
	pointer-events: none;
}
.dh-flow::after {
	content: "";
	position: absolute;
	width: 40vw;
	max-width: 589px;
	height: auto;
	aspect-ratio: 589 / 660;
	bottom: 16%;
	left: 0;
	transform: translate(-36%, 0);
	background: url(./images/common/circle_02.svg) no-repeat center / contain;
	pointer-events: none;
}
.dh-flow__inner {
	max-width: 1000px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}
.dh-flow__lead {
	color: var(--c-text-sub);
	font-size: 1.6rem;
	letter-spacing: 0.07em;
	margin-bottom: 32px;
}
.dh-flow__list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.dh-flow__item {
	background: #f6f3ec;
	border-radius: 12px;
	padding: 25px 35px;
}
.dh-flow__item-head {
	display: flex;
	align-items: baseline;
	gap: 20px;
	margin-bottom: 8px;
}
.dh-flow__time {
	font-family: var(--ff-heading);
	font-size: 2.4rem;
	color: var(--c-green);
	font-weight: 400;
	letter-spacing: 0.05em;
	flex-shrink: 0;
	min-width: 58px;
}
.dh-flow__step {
	font-size: 2.4rem;
	color: var(--c-olive);
	line-height: 1.4;
}
.dh-flow__desc {
	font-size: 1.6rem;
	line-height: 1.9;
	color: var(--c-text);
	margin: 0;
}
.dh-flow__note {
	margin-top: 25px;
	font-size: 1.6rem;
	line-height: 1.8;
	color: var(--c-text-sub);
}
.dh-flow__note p {
	margin: 0 0 4px;
}

@media (max-width: 768px) {
	.dh-flow__desc {
		padding-left: 0;
		margin-top: 8px;
		font-size: 1.4rem;
	}

	.dh-flow__lead {
		font-size: 1.4rem;
	}
}

/* ========== WORKS ========== */
.dh-works {
	padding: 100px 20px;
	background: var(--c-bg-cream);
	position: relative;
	z-index: 2;
}
.dh-works__col2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
	margin-bottom: 0;
}
.dh-works__col2 .dh-works__category {
	background: transparent;
}
.dh-works__panel {
	background: var(--c-white);
	border-radius: 30px;
	padding: 56px 65px;
	max-width: 1000px;
	margin: 0 auto;
}
.dh-works__category {
	margin-bottom: 56px;
	position: relative;
	z-index: 2;
}
.dh-works__category:last-of-type,
.dh-works__col2 .dh-works__category{
	margin-bottom: 0;
}

.dh-works__category-inner {
	display: flex;
	gap: 16px 40px;
	align-items: flex-start;
}
.dh-works__category-inner--reverse {
	flex-direction: row-reverse;
}
.dh-works__category-body {
	flex: 1;
	width:100%;
}

.dh-works__category-img {
	flex-shrink: 0;
	border-radius: 12px;
	overflow: hidden;
	max-width: 50%;
}
.dh-works__category-img img {
	width: 100%;
	display: block;
	object-fit: cover;
}

.dh-works__category-title {
	font-size: 2.4rem;
	font-weight: 600;
	color: var(--c-green);
	margin-bottom: 0.5em;
	line-height: 1.5;
}
.dh-works__list {
	list-style: none;
	padding: 0;
	margin: 0 0 20px;
}
.dh-works__category .c-bubble-01{
	margin-top:16px;
}
.dh-works__list li {
	position: relative;
	padding-left: 16px;
	font-size: 1.6rem;
	line-height: 2;
	color: var(--c-text);
}
.dh-works__list li::before {
	content: "・";
	position: absolute;
	left: 0;
	color: var(--c-green);
}

.dh-works__herb {
	position: absolute;
	right: 10%;
	bottom: 25%;
	z-index: 1;
}

.dh-works__leaf-deco {
	position: absolute;
	top: 0;
	left: 48%;
	width: 140px;
	height: auto;
	pointer-events: none;
	z-index: -1;
	transform: translateY(-25%);
}

/* 吹き出し（写真にかぶる絶対配置＋緑枠＋淡緑背景） */

@media (max-width: 768px) {
	.dh-works__col2 {
		grid-template-columns: 1fr;
	}
	.dh-works__panel {
		padding: 40px 20px;
	}
	.dh-works__category-title {
		font-size: 1.9rem;
	}
	.dh-works__category-img {
		max-width: 100%;
	}
	.dh-works__category-inner,
	.dh-works__category-inner--reverse {
		flex-direction: column;
	}
	.dh-works__category:nth-of-type(n) .dh-works__category-img {
		width: 100%;
	}
	.dh-works__category:nth-of-type(n) .dh-works__category-img img {
		height: auto;
	}
	.dh-works__list li {
		font-size: 1.35rem;
	}
	.dh-works__panel {
		padding: 32px 24px;
	}
	.dh-works__leaf-deco {
		left: unset;
		right: 5%;
		transform: translateY(0);
		max-width: 25%;
	}
}

/* ========== FEATURES ========== */
.dh-features {
	padding: 100px 20px;
	background: var(--c-white);
	position: relative;
	overflow: visible;
	z-index: 2;
}

.dh-features .dh-inner {
	max-width: 1040px;
}

.dh-features__deco {
	position: absolute;
	pointer-events: none;
	opacity: 0.5;
}
.dh-features__deco--tl {
	top: 10px;
	left: 10px;
	width: 120px;
}
.dh-features__deco--br {
	bottom: 10px;
	right: 10px;
	width: 100px;
}
.dh-features__leaf {
	position: absolute;
	width: 180px;
	height: auto;
	pointer-events: none;
	z-index: -1;
}
.dh-features__leaf--01 {
	top: 60px;
	left: 200px;
}
.dh-features__leaf--02 {
	bottom: -60px;
	right: 300px;
	z-index: -1;
}

.dh-features__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	max-width: 1040px;
	gap: 40px;
	box-sizing: content-box;
	margin: 4.8rem auto 0 auto;
}

@media (max-width: 1709px) {
	.dh-works__herb {
		right: 0;
	}
}

@media (max-width: 1024px) {
	.dh-features__leaf--01,
	.dh-features__leaf--02 {
		z-index: -1;
		opacity: 0.4;
	}
}

@media (max-width: 768px) {
	.dh-features {
		overflow: hidden;
	}
	.dh-features__leaf--01 {
		top: 120px;
		left: initial;
		right: 4%;
		width: 120px;
	}
	.dh-features__leaf--02 {
		bottom: -10px;
		left: -7%;
		right: initial;
		width: 120px;
	}
	.dh-features__grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	.dh-works__herb {
		bottom:21%;
		width:150px;
		z-index:3
	}
}

/* ========== STEP UP ========== */
.dh-stepup {
	padding: 100px 20px;
	background: #eaf5de;
	position: relative;
	z-index: 2;
}

.dh-stepup__inner {
	max-width: 100%;
	margin: 0 auto;
	position: relative;
}

.dh-stepup__photo {
	position: absolute;
	top: -40px;
	right: -40px;
	width: 180px;
	height: 180px;
	border-radius: 50%;
	overflow: hidden;
}
.dh-stepup__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.dh-stepup__lead {
	font-size: 1.6rem;
	line-height: 2;
	color: var(--c-text);
	margin-bottom: 30px;
	max-width: 100%;
}
.dh-stepup__bubble {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-top: 16px;
}
.dh-stepup__bubble-icon {
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	overflow: hidden;
}
.dh-stepup__bubble-icon img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.dh-stepup__bubble-text {
	background: #eaf5de;
	border-radius: 8px;
	padding: 12px 16px;
	font-size: 1.3rem;
	line-height: 1.8;
	color: var(--c-text);
	position: relative;
}
.dh-stepup__bubble-text::before {
	content: "";
	position: absolute;
	left: -8px;
	top: 14px;
	border: 8px solid transparent;
	border-right-color: #eaf5de;
	border-left: 0;
}
.dh-stepup__tail {
	margin-top: 32px;
	font-size: 1.35rem;
	line-height: 1.9;
	color: var(--c-text);
	background: var(--c-white);
	border-radius: 12px;
	padding: 20px 28px;
}

@media (min-width: 1600px) {
	.dh-stepup__photo {
		width: 320px;
		height: 324px;
		top: 0;
		right: 0;
		transform: translate(90%, -25%);
	}

	.dh-stepup__lead {
		max-width: 85%;
	}
}

@media (min-width: 769px) and (max-width: 1599px) {
	.dh-stepup__lead {
		width: calc(100% - 180px);
	}
}

@media (max-width: 1024px) {
	.dh-stepup__photo {
		right: -60px;
		position: static;
		margin: 0 auto 24px;
	}
}

@media (max-width: 768px) {
	.dh-stepup__lead {
		font-size: 1.4rem;
	}
}

/* ========== TRAINING ========== */
.dh-training {
	padding: 100px 20px;
	background: var(--c-bg-cream);
}

.dh-training .dh-inner {
	max-width: 1336px;
}

.dh-training__sub-inner {
	max-width: 1124px;
	margin-inline: auto;
}

.dh-training .dh-head--left {
	text-align: center;
}
.dh-training .dh-head--left .dh-head__title::after {
	display: none;
}

.dh-training__policy {
	display: flex;
	gap: 0;
	align-items: flex-start;
	margin-bottom: 72px;
	position: relative;
}
.dh-training__policy-img {
	flex-shrink: 0;
	width: 720px;
	aspect-ratio: 720 / 587;
	max-width: 55%;
	border-radius: 12px;
	overflow: hidden;
}
.dh-training__policy-img img {
	width: 100%;
	display: block;
	object-fit: cover;
}
.dh-training__policy-body {
	flex: 1;
	background: var(--c-white);
	border-radius: 30px;
	padding: 61px 71px 91px;
	margin-left: -120px;
	margin-top: 96px;
	position: relative;
	z-index: 2;
}
.dh-training__policy-title {
	font-family: "UoqMunThenKhung", var(--ff-heading);
	font-weight: 400;
	font-size: 4rem;
	line-height: 1.4;
	color: var(--c-olive);
	margin-bottom: 1em;
	display: flex;
	align-items: center;
	gap: 10px;
}
.dh-training__policy-title::before {
	content: "";
	display: inline-block;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: var(--c-green);
	flex-shrink: 0;
}
.dh-training__policy-text {
	font-size: 1.6rem;
	line-height: 1.8;
	color: var(--c-text);
	margin: 0;
}

.dh-training__subtitle {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-bottom: 24px;
}
.dh-training__subtitle-label {
	font-family: "UoqMunThenKhung", var(--ff-heading);
	font-weight: 400;
	font-size: 4rem;
	color: var(--c-olive);
	display: flex;
	align-items: center;
	gap: 10px;
}
.dh-training__subtitle-label::before {
	content: "";
	display: inline-block;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: var(--c-green);
	flex-shrink: 0;
}
.dh-training__subtitle-en {
	font-family: var(--ff-heading);
	font-size: 2.2rem;
	letter-spacing: 0;
	color: var(--c-green);
}

.dh-training__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
	margin-bottom: 7.2rem;
}
.dh-training__card {
	background: var(--c-white);
	border-radius: 12px;
	padding: 45px 35px;
	text-align: center;
}
.dh-training__card-icon {
	width: 70px;
	height: 70px;
	margin: 0 auto 16px;
	display: block;
}
.dh-training__card-title {
	font-family: "UoqMunThenKhung", var(--ff-heading);
	font-weight: 400;
	font-size: 2.4rem;
	color: var(--c-green);
	margin-bottom: 0.5em;
}
.dh-training__card-text {
	font-size: 1.6rem;
	line-height: 2;
	color: var(--c-text);
	margin: 0;
	text-align: left;
}

.dh-training__seminar-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}
.dh-training__seminar-card {
	background: var(--c-white);
	border-radius: 12px;
	padding: 28px 40px;
	text-align: center;
}
.dh-training__seminar-icon {
	width: 85px;
	height: 85px;
	margin: 0 auto 14px;
	display: block;
	object-fit: contain;
}
.dh-training__seminar-title {
	font-family: "UoqMunThenKhung", var(--ff-heading);
	font-weight: 400;
	font-size: 2.4rem;
	color: var(--c-green);
	margin-bottom: 0.5em;
}
.dh-training__seminar-text {
	font-size: 1.6rem;
	line-height: 2;
	color: var(--c-text);
	margin: 0;
	text-align: left;
}

@media (max-width: 768px) {
	.dh-training__subtitle {
		display: block;
	}

	.dh-training__policy {
		flex-direction: column;
	}

	.dh-training__policy-img {
		width: 100%;
		max-width: 100%;
	}

	.dh-training__policy-body {
		margin-left: 0;
		margin-top: 30px;
		border-radius: 15px;
		padding: 24px;
	}

	.dh-training__grid {
		grid-template-columns: 1fr;
	}

	.dh-training__seminar-grid {
		grid-template-columns: 1fr;
	}

	.dh-training__subtitle-label {
		font-size: 2rem;
	}

	.dh-training__policy-title,
	.dh-training__subtitle-label {
		font-size: 2rem;
	}
	
	.dh-training__policy-text,
	.da-training__policy-text{
		font-size:1.5rem;
	}

	.dh-training__card,
	.dh-training__seminar-card{
		padding: 20px;
	}

	.dh-training__card-title {
		font-size: 2rem;
	}

	.dh-training__card-text,
	.dh-training__seminar-text{
		font-size: 1.4rem;
	}

	.dh-training__subtitle-en {
		font-size: 1.8rem;
	}
	.dh-training__seminar-icon,
	.dh-training__card-icon{
		width: 55px;
		height: 55px;
	}
}


/* ========== STAR ========== */
.dh-star {
	padding: 100px 20px;
	background: var(--c-white);
}

.dh-star .dh-inner {
	max-width: 1260px;
}

.dh-star__layout {
	display: flex;
	gap: 56px 40px;
	align-items: center;
	margin-bottom: 64px;
}
.dh-star__pyramid-wrap {
	flex-shrink: 0;
	width: 500px;
	max-width: 50%;
}
.dh-star__pyramid-img {
	width: 100%;
	height: auto;
	display: block;
}
.dh-star__body {
	flex: 1;
}
.dh-star__body-title {
	font-size: 2.4rem;
	line-height: 1.5;
	font-weight: 600;
	color: var(--c-olive);
	margin: 0 0 20px;
}
.dh-star__body-text {
	font-size: 1.6rem;
	line-height: 2;
	color: var(--c-text);
	margin: 0;
}
.dh-star__steps-title {
	font-family: "UoqMunThenKhung", var(--ff-heading);
	font-weight: 400;
	font-size: 2.4rem;
	line-height: 1.33;
	color: var(--c-olive);
	text-align: center;
	margin: 0 0 24px;
}
.dh-star__steps {
	display: flex;
	flex-direction: column;
	gap: 20px;
	max-width: 1000px;
	margin: 0 auto;
}
.dh-star__step {
	background: #eaf5de;
	border-radius: 12px;
	padding: 30px 25px;
	display: flex;
	align-items: center;
	gap: 24px;
}
.dh-star__step-num {
	font-family: var(--ff-heading);
	font-size: 2.4rem;
	color: var(--c-green);
	font-weight: 400;
	letter-spacing: 0.05em;
	flex-shrink: 0;
	min-width: 80px;
}
.dh-star__step-text {
	font-family: "UoqMunThenKhung", var(--ff-heading);
	font-weight: 400;
	font-size: 2.4rem;
	color: var(--c-text);
	margin: 0;
}

@media (max-width: 768px) {
	.dh-star__layout {
		flex-direction: column;
		align-items: center;
	}

	.dh-star__pyramid-wrap {
		width: 260px;
	}

	.dh-star__steps-title {
		font-size: 2rem;
	}

	.dh-star__body-text {
		font-size: 1.4rem;
	}

	.dh-star__step {
		padding: 20px;
		gap: 15px;
		flex-direction: column;
	}

	.dh-star__step-num,
	.dh-star__step-text {
		font-size: 1.6rem;
	}

	.dh-star__body-title,
	.dh-star__steps-title {
		font-size: 2rem;
	}

	.dh-star__pyramid-wrap {
		max-width: 100%;
	}
}

/* ========== FAQ ========== */
.dh-faq {
	padding: 100px 20px;
	background: var(--c-bg-cream);
}

.dh-faq__list {
	list-style: none;
	padding: 0;
	margin: 0 auto 48px;
	max-width: 760px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.dh-faq__q {
	display: flex;
	align-items: center;
	gap: 16px;
	width: 100%;
	padding: 1.5em 24px;
	background: var(--c-white);
	border: none;
	border-radius: 8px;
	font-family: var(--ff-jp);
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--c-text);
	text-align: left;
	cursor: pointer;
	transition: opacity 0.2s;
	line-height: 1.5;
	box-shadow: 0 0 4px #0000001f;
}

.dh-faq__q:hover {
	opacity: 0.85;
}

.dh-faq__q-mark {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: var(--c-green);
	color: var(--c-white);
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 700;
	font-size: 1.3rem;
	letter-spacing: 0;
}

.dh-faq__q-text {
	flex: 1;
	font-size: 1.8rem;
}

.dh-faq__q-arrow {
	flex-shrink: 0;
	width: 16px;
	height: 16px;
	display: inline-block;
	position: relative;
	transition: transform 0.3s;
}

.dh-faq__q-arrow::before {
	content: "";
	position: absolute;
	top: 4px;
	left: 2px;
	width: 10px;
	height: 10px;
	background: transparent;
	border-right: 2px solid var(--c-olive);
	border-bottom: 2px solid var(--c-olive);
	transform: rotate(45deg);
}

.dh-faq__q-arrow::after {
	content: none;
}

.dh-faq__item.is-open .dh-faq__q-arrow {
	transform: rotate(180deg);
}

.dh-faq__a {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.35s ease;
}

.dh-faq__a-inner {
	padding-block: 23px 8px;
	font-size: 1.4rem;
	line-height: 2;
	color: var(--c-text);
}

.dh-faq__a-inner p {
	margin: 0;
	font-size: 16px;
	line-height:2;
}

.dh-faq__btn-wrap {
	text-align: center;
}

.dh-faq__btn-wrap .c-btn {
	font-size: 1.6rem;
	padding-block: 28px;
}

@media (max-width: 768px) {
	.dh-faq__q-text {
		font-size: 1.6rem;
	}

	.dh-faq__q {
		padding: 1.5em;
	}
	.dh-faq__a-inner p {
		font-size: 1.5rem;
	}
	.dh-faq__btn {
		width: 100%;
		max-width: 360px;
		justify-content: center;
	}

	.dh-faq__btn-wrap {
		text-align: center;
	}
}

/* reason */
.reason-inner {
	max-width: 1024px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}

.reason-page {
	background: var(--c-bg-cream);
	color: var(--c-text);
	font-family: var(--ff-jp);
	overflow: hidden;
}

/* ========== セクション共通 ========== */
.reason-section {
	padding: 100px 20px;
	position: relative;
	overflow: hidden;
}

.reason-section--cream {
	background: var(--c-bg-cream);
}
.reason-section--white {
	background: var(--c-white);
}

/* ========== 見出し共通（中央揃え） ========== */
.reason-head {
	text-align: center;
	margin-bottom: 80px;
}

.reason-head__text {
	font-size: 1.6rem;
	line-height: 1.9;
	color: var(--c-text);
	margin: 0;
}

/* ========== カードグリッド ========== */
.reason-cards {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px 20px;
	position: relative;
	z-index: 2;
}

.reason-card {
	position: relative;
}

.reason-card--wide {
	grid-column: 1 / -1;
	max-width: 500px;
	margin: 10px auto;
	width: 100%;
}

.reason-card__link {
	display: block;
	text-align: center;
	margin-inline: auto;
	margin-top: 10px;
	font-size: 1.6rem;
	color: var(--c-green);
	text-decoration: underline;
}

.reason-card__text-link,
.numbers-card__text-link {
	color: var(--c-green);
	text-decoration: underline;
	text-underline-offset: 3px;
}

/* ========== 写真（セクション装飾として絶対配置） ========== */
.reason-photo {
	position: absolute;
	width: 180px;
	z-index: 3;
}

.reason-photo.reason-work {
	bottom: -120px;
	right: calc(50% - 560px);
}

.reason-photo img {
	max-width: 326px;
	width: 200%;
	height: 200%;
	object-fit: cover;
	display: block;
}

/* 各セクションごとの写真配置（完成イメージに合わせる） */
.reason-photo--life {
	top: 260px;
	right: calc(50% - 580px);
	max-width: 350px;
}

.reason-photo--private {
	top: 200px;
	left: calc(50% - 740px);
}

.reason-photo--teamwork {
	bottom: 260px;
	left: calc(50% - 750px);
}

@media (max-width: 900px) {
	.reason-photo {
		display: none;
	}
}

/* ========== 植物装飾 ========== */
.reason-deco {
	position: absolute;
	pointer-events: none;
	opacity: 0.55;
	z-index: 1;
}

.reason-deco--tl {
	top: 80px;
	left: 40px;
	width: 110px;
}
.reason-deco--tr {
	top: 60px;
	right: 40px;
	width: 110px;
}
.reason-deco--bl {
	bottom: 60px;
	left: 40px;
	width: 100px;
}
.reason-deco--br {
	bottom: 60px;
	right: 40px;
	width: 100px;
}

/* ========== 院長吹き出し（TEAMWORK） ========== */
.reason-director {
	display: flex;
	align-items: center;
	gap: 16px;
	margin: 60px auto 0;
	max-width: 780px;
	position: relative;
	z-index: 2;
}

.reason-director__icon {
	flex-shrink: 0;
	width: 120px;
}

.reason-director__icon img {
	width: 100%;
	height: auto;
	display: block;
}

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

.reason-director__bubble {
	background: var(--c-white);
	border-radius: 8px;
	padding: 30px;
	font-size: 1.6rem;
	line-height: 1.8;
	color: var(--c-text);
	position: relative;
}

.reason-director__bubble::before {
	content: "";
	position: absolute;
	left: -8px;
	top: 18px;
	border: 8px solid transparent;
	border-right-color: var(--c-white);
	border-left: 0;
}

@media (max-width: 768px) {
	.reason-director__bubble {
		font-size: 1.3rem;
	}
}

/* ========== ページ下部CTA ========== */
.reason-cta {
	background: var(--c-green);
	padding: 80px 20px;
	text-align: center;
}

.reason-cta__title {
	font-family: var(--ff-heading);
	font-size: 2.8rem;
	font-weight: 400;
	color: var(--c-white);
	margin: 0 0 16px;
	letter-spacing: 0.05em;
}

.reason-cta__text {
	font-size: 1.4rem;
	line-height: 1.9;
	color: rgba(255, 255, 255, 0.9);
	margin: 0 0 40px;
}

.reason-cta__btn-wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 16px;
}

.reason-cta__btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 16px 40px;
	border-radius: 40px;
	font-size: 1.4rem;
	font-family: var(--ff-jp);
	font-weight: 600;
	text-decoration: none;
	transition: all 0.2s;
}

.reason-cta__btn--white {
	background: var(--c-white);
	color: var(--c-green);
}

.reason-cta__btn--white:hover {
	background: var(--c-bg-cream);
}

.reason-cta__btn--outline {
	background: transparent;
	color: var(--c-white);
	border: 2px solid var(--c-white);
}

.reason-cta__btn--outline:hover {
	background: rgba(255, 255, 255, 0.1);
}

.reason-cta__btn span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	border: 2px solid currentColor;
	font-size: 1.2rem;
	flex-shrink: 0;
}

@media (max-width: 768px) {
	.reason-section {
		padding: 60px 16px;
	}

	.reason-head {
		margin-bottom: 40px;
	}

	.reason-cards {
		grid-template-columns: 1fr;
	}

	.reason-card--wide {
		max-width: 100%;
	}

	.reason-cta__title {
		font-size: 2.2rem;
	}

	.reason-cta__btn-wrap {
		flex-direction: column;
		align-items: center;
	}

	.reason-cta__btn {
		width: 100%;
		max-width: 340px;
		justify-content: center;
	}
}

/* 葉っぱ装飾 共通 */
.reason-leaf {
	position: absolute;
	width: 180px;
	height: auto;
	pointer-events: none;
	z-index: 5;
}

/* 4箇所の配置（数値はあとで調整しやすいよう個別指定） */
.reason-leaf--lt {
	top: -200px;
	left: -300px;
}
.reason-leaf--rt {
	top: 0px;
	right: -420px;
}
.reason-leaf--lb {
	bottom: -200px;
	left: -500px;
}
.reason-leaf--rb {
	bottom: 200px;
	right: -300px;
}

/* ========== 冒頭スタッフ吹き出し ========== */
.reason-intro {
	padding: 80px 20px 20px;
}

.reason-lead-voice {
	display: flex;
	align-items: center;
	gap: 20px;
	max-width: 680px;
	margin: 0 auto;
	position: relative;
	z-index: 4;
}

.reason-lead-voice__icon {
	flex-shrink: 0;
	width: 140px;
	height: 140px;
	border-radius: 50%;
	overflow: hidden;
}

.reason-lead-voice__icon img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.reason-lead-voice__bubble {
	background: var(--c-white);
	border-radius: 12px;
	padding: 22px 28px;
	font-size: 2rem;
	line-height: 1.7;
	color: var(--c-text);
	position: relative;
}

.reason-lead-voice__bubble::before {
	content: "";
	position: absolute;
	left: -10px;
	top: 50%;
	transform: translateY(-50%);
	border: 10px solid transparent;
	border-right-color: var(--c-white);
	border-left: 0;
}

@media (max-width: 768px) {
	.reason-intro {
		padding: 48px 16px 0;
	}

	.reason-lead-voice {
		gap: 12px;
		align-items: center;
	}

	.reason-lead-voice__icon {
		width: 88px;
		height: 88px;
	}

	.reason-lead-voice__bubble {
		padding: 16px 18px;
		font-size: 1.55rem;
		line-height: 1.7;
	}
}

#reason-design {
	position: relative;
}
#reason-design .reason-leaf--lt {
	top: -110px;
	left: calc(50% - 690px);
}
@media (max-width: 768px) {
	#reason-design .reason-leaf--lt {
		display: none;
	}
}

/* benefit */

.benefit-page {
	background: var(--c-bg-cream);
	color: var(--c-text);
	font-family: var(--ff-jp);
}

/* ========== セクション共通 ========== */
.benefit-section {
	padding: 80px 20px;
}

.benefit-section--white {
	background: var(--c-white);
}
.benefit-section--cream {
	background: var(--c-bg-cream);
}

.benefit-inner {
	max-width: 860px;
	margin: 0 auto;
}

@media (max-width: 768px) {
	.benefit-section {
		padding: 56px 16px;
	}
}

/* ========== リード文 ========== */
.benefit-lead {
	font-size: 1.8rem;
	line-height: 1.9;
	color: var(--c-text);
	margin: 0 0 64px;
}

@media (max-width: 768px) {
	.benefit-lead {
		font-size: 1.5rem;
	}
}

/* ========== カテゴリブロック ========== */
.benefit-blocks {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.benefit-block {
	background: var(--c-white);
	border-radius: 16px;
	overflow: hidden;
}

.benefit-section--white .benefit-block {
	background: var(--c-bg-cream);
}

/* カテゴリ見出し */
.benefit-block__head {
	background: var(--c-green);
	padding: 16px 28px;
	display: flex;
	align-items: center;
	gap: 12px;
}

.benefit-block__head-icon {
	width: 32px;
	height: 32px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.benefit-block__head-icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	filter: brightness(0) invert(1);
}

.benefit-block__head-title {
	font-family: var(--ff-heading);
	font-size: 3.2rem;
	font-weight: 400;
	color: var(--c-white);
	letter-spacing: 0.12em;
	margin: 0;
}

/* カテゴリ本体 */
.benefit-block__body {
	padding: 28px 28px 32px;
	display: flex;
	flex-direction: column;
	gap: 28px;
}

@media (max-width: 768px) {
	.benefit-block__head-title {
		font-size: 2.6rem;
	}

	.benefit-block__body {
		padding: 20px 16px 24px;
	}
}

@media (max-width: 510px) {
	.benefit-block__head-title {
		font-size: 2rem;
	}
}


/* サブカテゴリ */
.benefit-sub__title {
	font-size: 1.8rem;
	font-weight: 600;
	color: var(--c-olive);
	margin: 0 0 12px;
	padding-left: 12px;
	border-left: 3px solid var(--c-green);
	line-height: 1.4;
}

.benefit-sub__list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.benefit-sub__list li {
	font-size: 1.6rem;
	line-height: 2;
	color: var(--c-text);
	padding-left: 18px;
	position: relative;
}

.benefit-sub__list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.7em;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--c-green);
	opacity: 0.7;
}

@media (max-width: 768px) {
	.benefit-sub__title {
		font-size: 1.5rem;
	}
}

/* ========== CTA ========== */
/* ========== CTA ========== */
.benefit-cta {
	margin-top: 64px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	text-align: center;
}

.benefit-cta__text {
	font-size: 1.8rem;
	line-height: 1.8;
	color: var(--c-text);
	margin: 0;
}

.benefit-cta__text strong {
	color: var(--c-olive);
	font-weight: 700;
}

.benefit-cta .c-btn--lg {
	font-size: 2.1rem;
	gap: 45px;
	padding: 24px 24px 24px 70px;
}

@media (max-width: 768px) {
	.benefit-cta {
		flex-direction: column;
		align-items: center;
		padding: 24px 20px;
	}

	.benefit-cta__text {
		font-size: 1.5rem;
	}

	.benefit-cta .c-btn--lg {
		font-size: 1.5rem;
		gap: 30px;
		padding: 20px 20px 20px 50px;
	}
}

/* gallery */
.gallery-page {
	background: var(--c-bg-cream);
	color: var(--c-text);
	font-family: var(--ff-jp);
}

/* ========== セクション共通 ========== */
.gallery-section {
	padding: 100px 32px;
}

.gallery-section--cream {
	background: var(--c-bg-cream);
}

.gallery-inner {
	max-width: 1200px;
	margin: 0 auto;
}

/* ========== セクション見出し（中央揃え） ========== */
.gallery-head {
	margin-bottom: 40px;
	text-align: center;
}

.gallery-head__text {
	font-size: 1.6rem;
	line-height: 2;
	color: var(--c-text);
	margin: 0 auto;
	max-width: 820px;
}

/* ========== 写真グリッド（3列・中央揃え） ========== */
.gallery-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 16px;
}

.gallery-grid > .gallery-img {
	flex: 0 0 calc((100% - 16px * 2) / 3);
	max-width: calc((100% - 16px * 2) / 3);
}

.gallery-img {
	border-radius: 12px;
	overflow: hidden;
	background: #d8ead0;
}

.gallery-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.gallery-img--sq {
	aspect-ratio: 1 / 1;
}
.gallery-img--land {
	aspect-ratio: 4 / 3;
}
.gallery-img--tall {
	aspect-ratio: 3 / 4;
}
.gallery-img--wide {
	aspect-ratio: 16 / 9;
}

/* ========== 補足テキスト（中央揃え） ========== */
.gallery-note {
	margin-top: 28px;
	text-align: center;
	font-size: 1.4rem;
	line-height: 1.9;
	color: var(--c-text);
}

/* ========== ボタン ========== */
.gallery-btn-wrap {
	margin-top: 0;
	text-align: center;
}

/* ========== レスポンシブ ========== */
@media (max-width: 768px) {
	/* …他の指定はそのまま… */
	
	.gallery-section {
		padding: 80px 20px;
	}

	.gallery-grid {
		gap: 10px;
	}

	.gallery-grid > .gallery-img {
		flex: 0 0 calc((100% - 10px) / 2);
		max-width: calc((100% - 10px) / 2);
	}

	.gallery-head__text {
		font-size: 1.4rem;
	}

	.gallery-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}

	.gallery-note {
		font-size: 1.3rem;
		margin-top: 20px;
	}
}

/* sitsumon（よくある質問） */
.sitsumon-layout {
	grid-template-columns: 320px 1fr;
}
.sitsumon-layout .faq99-menu {
	top: 170px;
}
.sitsumon-layout #faq_tob {
	padding: 20px 16px;
}
.sitsumon-layout #faq_tob {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0 12px;
	padding: 20px 16px;
}
.sitsumon-layout #faq_tob li a {
	font-size: 1.4rem;
	line-height: 1.5;
	padding: 10px 0 10px 24px;
}
.sitsumon-layout .faq99-block h2 {
	scroll-margin-top: 120px;
}
@media (max-width: 1024px) {
	.sitsumon-layout {
		grid-template-columns: 240px 1fr;
	}
}
@media (max-width: 768px) {
	.sitsumon-layout {
		grid-template-columns: 1fr;
	}
	.sitsumon-layout .faq99-menu {
		position: static;
	}
	.sitsumon-layout #faq_tob li a {
		font-size: 1.5rem;
	}
}

/* entry-page */
.entry-page {
	background: var(--c-bg-cream, #fff7eb);
	padding: 80px 20px 100px;
	font-family: "Noto Sans JP", sans-serif;
	color: var(--c-text, #77580a);
}
.entry-page__inner {
	max-width: 960px;
	margin: 0 auto;
}
.entry-submit i.fa-angle-right {
	display: none !important;
}
.entry-page__lead {
	text-align: center;
	font-size: 1.8rem;
	line-height: 2;
	margin-bottom: 60px;
	color: var(--c-text, #77580a);
}
.entry-block__title {
	font-family: "UoqMunThenKhung", "Noto Serif JP", serif;
	font-size: 3.6rem;
	font-weight: 400;
	color: var(--c-olive, #6d592e);
	text-align: center;
	margin: 0 0 16px;
	padding-bottom: 20px;
	letter-spacing: 0.0375em;
	position: relative;
}
.entry-block__title::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	width: 60px;
	height: 2px;
	background: var(--c-green, #73cd58);
}
.entry-block__desc {
	text-align: center;
	font-size: 1.8rem;
	line-height: 1.9;
	margin: 24px 0 32px;
	color: var(--c-text, #77580a);
}
.entry-page .wpcf7-form label {
	font-size: 1.8rem;
}
.entry-submit {
	text-align: center;
	margin-top: 40px;
	position: relative;
}

.entry-submit input[type="submit"] {
	display: inline-block;
	min-width: 320px;
	padding: 16px 30px 16px 30px;
	background: var(--c-olive, #6d592e);
	color: #fff;
	font-size: 2.1rem;
	font-weight: 500;
	letter-spacing: 0.08em;
	font-family: inherit;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	transition: opacity 0.2s;
}

.entry-submit input[type="submit"]:hover {
	opacity: 0.85;
}

.entry-block {
	background: #fff;
	border-radius: 12px;
	padding: 48px 40px;
	margin-bottom: 32px;
}

.entry-tel {
	text-align: center;
	margin-top: 24px;
	padding: 32px 20px;
	background: var(--c-bg-cream, #fff7eb);
	border-radius: 8px;
}

.entry-tel__num {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	font-family: "Libre Baskerville", serif;
	font-size: 4rem;
	font-weight: 700;
	color: var(--c-olive, #6d592e);
	text-decoration: none;
	line-height: 1.2;
	transition: opacity 0.2s;
}

.entry-tel__num:hover {
	opacity: 0.8;
}
.entry-tel__num i {
	font-size: 2.8rem;
	color: var(--c-green, #73cd58);
}
.entry-tel__note {
	margin-top: 12px;
	font-size: 1.8rem;
	color: var(--c-text-sub, #84715b);
}

.entry-block__row {
	margin-bottom: 24px;
}

.entry-block__sub-row + .entry-block__sub-row {
	margin-top: 20px;
}

.entry-block__label {
	display: block;
	font-size: 1.4rem;
	font-weight: 600;
	color: var(--c-olive, #6d592e);
	line-height: 1.6;
	margin-bottom: 10px;
}

.entry-block__label--required::after {
	content: "（必須）";
	color: red;
	font-size: 70%;
	display: inline-block;
	margin-left: 10px;
}

.entry-block__sub-label {
	display: block;
	font-size: 1.4rem;
	font-weight: 500;
	line-height: 1.6;
	margin-bottom: 10px;
	color: var(--c-olive, #6d592e);
}

.entry-block__grid {
	display: grid;
	grid-template-columns: 3fr 2fr;
	gap: 10px;
}

.entry-page .wpcf7-form input[type="text"],
.entry-page .wpcf7-form input[type="tel"],
.entry-page .wpcf7-form input[type="email"],
.entry-page .wpcf7-form input[type="date"],
.entry-page .wpcf7-form select,
.entry-page .wpcf7-form textarea {
	width: 100%;
	box-sizing: border-box;
	padding: 14px 16px;
	border: 1px solid #ddd;
	border-radius: 6px;
	font-size: 1.8rem;
	font-family: inherit;
	background: #fafafa;
	color: var(--c-text, #77580a);
	transition:
		border-color 0.2s,
		background 0.2s;
	min-height: 64px;
}
.entry-page .wpcf7-form input[type="text"]:focus,
.entry-page .wpcf7-form input[type="tel"]:focus,
.entry-page .wpcf7-form input[type="email"]:focus,
.entry-page .wpcf7-form input[type="date"]:focus,
.entry-page .wpcf7-form select:focus,
.entry-page .wpcf7-form textarea:focus {
	outline: none;
	border-color: var(--c-green, #73cd58);
	background: #fff;
}
.entry-page .wpcf7-form textarea {
	min-height: 160px;
	resize: vertical;
}

.entry-page .wpcf7 {
	max-width: 720px;
	margin: 0 auto;
}

/* バリデーション・レスポンス */
.entry-page .wpcf7-not-valid-tip {
	color: #d9534f;
	font-size: 1.3rem;
	margin-top: 4px;
	display: block;
}
.entry-page .wpcf7-response-output {
	margin-top: 20px;
	padding: 14px 18px;
	border-radius: 6px;
	font-size: 1.4rem;
	text-align: center;
}

@media (max-width: 768px) {
	.entry-block__grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.entry-page__lead {
		font-size: 1.5rem;
	}
	.entry-block__title {
		font-size: 2.4rem;
	}
	.entry-block__desc {
		font-size: 1.4rem;
	}
	.entry-tel__note {
		font-size: 1.4rem;
	}
	.entry-page .wpcf7-form label {
		font-size: 1.4rem;
	}
	.entry-page .wpcf7-form input[type="text"],
	.entry-page .wpcf7-form input[type="tel"],
	.entry-page .wpcf7-form input[type="email"],
	.entry-page .wpcf7-form input[type="date"],
	.entry-page .wpcf7-form select,
	.entry-page .wpcf7-form textarea {
		font-size: 1.6rem;
	}

	.entry-submit input[type="submit"] {
		min-width: 260px;
		padding: 16px 30px;
		font-size: 1.5rem;
	}

	.entry-page {
		padding:48px 20px;
	}
	.entry-block {
		padding: 32px 24px;
	}
	.entry-tel {
		padding: 24px 16px;
	}
	.entry-tel__num {
		font-size: 2.8rem;
		gap: 10px;
	}
	.entry-tel__num i {
		font-size: 2.2rem;
	}
}

@media (max-width: 500px) {
	.entry-block__grid {
		grid-template-columns: 100%;
	}
	.entry-tel__num {
		font-size: 2.4rem;
		gap: 10px;
	}
	.entry-page .wpcf7-form input[type="date"]{
		width:auto;
	}
	.entry-submit input[type="submit"]{
		min-width: 100%;
	}
}

#post-3 .entry-content .page-layout,
#post-121 .entry-content .page-layout {
	max-width: 1300px;
	margin: 0 auto;
	padding: 20px;
}
#post-121 .entry-content .page-layout {
	padding: 90px 20px;
}
#post-3 .entry-content,
#post-121 .entry-content {
	background-color: var(--c-bg-cream);
}

@media (max-width: 768px) {
	.hygienist-about__callout,
	.hygienist-work__bubble,
	.hygienist-interview__bubble,
	.hygienist-flow__bubble,
	.hygienist-visitor__bubble {
		display: block;
	}
	.hygienist-work__bubble-icon {
		margin: 0 auto 20px auto;
	}
	.hygienist-work__bubble-icon::before {
		left: calc(50% - 10px);
		top: -5px;
		transform: translateY(-50%) rotate(90deg);
		border: 10px solid transparent;
		border-right-color: var(--c-bg-cream);
		border-left: 0;
	}
}

/* SP共通：吹き出しの縦長化・写真位置調整 */
@media (max-width: 768px) {
	.c-bubble-01,
	.reason-director,
	.director-voice-item,
	.director-history-footer,
	.dh-stepup__bubble {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 16px;
	}

	.c-bubble-01__bubble-text,
	.reason-director__bubble,
	.director-voice-item__bubble,
	.director-history-footer__bubble,
	.dh-stepup__bubble-text {
		width: 100%;
		max-width: 100%;
		box-sizing: border-box;
		font-size: 1.4rem;
		line-height: 1.8;
		text-align: left;
	}

	.c-bubble-01__bubble-icon,
	.reason-director__icon,
	.director-voice-item__photo,
	.director-history-footer__photo,
	.dh-stepup__bubble-icon {
		flex-shrink: 0;
		margin-left: auto;
		margin-right: auto;
	}
}
@media (max-width: 768px) {
	.c-bubble-01 {
		flex-direction: column;
		align-items: stretch;
	}

	.c-bubble-01__bubble-icon {
		margin-left: auto;
		margin-right: auto;
	}
}
/* Tb/SP：装飾画像のはみ出し・飛び出し対策 */
@media (max-width: 1024px) {
	.reason-leaf,
	.value-herb,
	.about-herb,
	.director-voice-herb,
	.dh-works__leaf-deco,
	.dh-features__leaf,
	.dentist-edu__deco,
	.dentist-greeting__deco--r {
		display: none;
	}
	@media (max-width: 768px) {
		.reason-photo--teamwork img {
			object-fit: cover;
			object-position: center top;
		}
	}
	@media (max-width: 768px) {
		.p-interview-list__grid {
			grid-template-columns: repeat(2, 1fr);
			gap: 24px 12px;
		}

		.p-interview-card__caption {
			font-size: 1.2rem;
			line-height: 1.5;
			margin-bottom: 6px;
		}

		.p-interview-card__catch {
			font-size: 1.5rem;
			line-height: 1.45;
			margin-bottom: 10px;
		}

		.p-interview-card__tag {
			font-size: 1.1rem;
			padding: 0 10px;
		}

		.p-interview-card__name {
			font-size: 1.2rem;
		}

		.p-interview-card__meta {
			gap: 6px;
			flex-wrap: wrap;
		}
	}
}

/* new-graduate */

.new-graduate-inner {
	max-width: 1100px;
	margin: 0 auto;
}

.new-graduate-btn {
	padding: 24px 15px;
	width: 100%;
	max-width: 456px;
	box-sizing: border-box;
	justify-content: space-between;
}

.new-graduate-btn::before {
	content: "";
	display: block;
	width: 25px;
	height: 25px;
}

@media (max-width: 768px) {
	.new-graduate-btn {
		font-size: 1.6rem;
		padding:16px 18px 18px 54px;
		width: auto;
	}

	.new-graduate-btn::before {
		display: none;
	}
}

/* ===== セクション共通 ===== */
.new-graduate-section {
	padding: 100px 20px;
	position: relative;
}
.new-graduate-section--cream {
	background: var(--c-bg-cream);
}
.new-graduate-section--white {
	background: var(--c-white);
}
.new-graduate-section--green {
	background: #eaf5de;
}

/* ===== ページ内ナビ ===== */
.new-graduate-pagenav {
	background: var(--c-white);
	padding: 32px 20px;
}
.new-graduate-pagenav__inner {
	max-width: 1000px;
	margin: 0 auto;
}
.new-graduate-pagenav__list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 20px 36px;
	justify-content: center;
}
.new-graduate-pagenav__item a {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	color: var(--c-text);
	font-size: 1.5rem;
	font-weight: 600;
	transition: opacity 0.2s;
}
.new-graduate-pagenav__item a:hover {
	opacity: 0.7;
}
.new-graduate-pagenav__num {
	width: 26px;
	height: 26px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--c-green);
	border-radius: 50%;
	position: relative;
}
.new-graduate-pagenav__num::before {
	content: "";
	width: 7px;
	height: 7px;
	border-right: 2px solid #fff;
	border-bottom: 2px solid #fff;
	transform: rotate(45deg) translate(-1px, -1px);
}

/* ===== 1. ABOUT ===== */
.new-graduate-about {
	padding: 80px 20px 100px;
	overflow: hidden;
	position: relative;
	z-index: 2;
}
.new-graduate-about::before,
.new-graduate-about::after {
	content: "";
	position: absolute;
	display: block;
	pointer-events: none;
	z-index: -1;
}
.new-graduate-about::before {
	width: 50vw;
	max-width: 701px;
	aspect-ratio: 701 / 644;
	background: url(./images/common/circle_01.svg) no-repeat center / contain;
	top: 12%;
	right: 0;
	transform: translate(29%, -10%);

}
.new-graduate-about::after {
	width: 40vw;
	max-width: 589px;
	aspect-ratio: 589 / 660;
	bottom: 12%;
	left: 0;
	transform: translate(-22%, 0);
	background: url(./images/common/circle_02.svg) no-repeat center / contain;
}

.new-graduate-about__inner {
	max-width: 1375px;
	margin: 0 auto;
}

.new-graduate-about__grid {
	display: grid;
	grid-template-columns: 46% 1fr;
	column-gap: clamp(3.2rem, 0.948rem + 2.19vw, 4.8rem);
}

/* Callout & heading span full width */
.new-graduate-about__bubble {
	width: max-content;
	margin-inline: auto;
	margin-bottom: 90px;
}

.new-graduate-about__title {
	margin-bottom: 80px;
}

/* Images column */
.new-graduate-about__images {
	grid-column: 1;
	width: 100%;
	position: relative;
}

.new-graduate-about__img-main {
	width: 91%;
	border-radius: 12px;
	display: block;
}

.new-graduate-about__img-sub {
	width: 66%;
	border-radius: 12px;
	display: block;
	margin-inline: auto 0;
	margin-top: -100px;
}

/* Body column */
.new-graduate-about__body {
	grid-column: 2;
	width: 100%;
	padding-top: 0;
}

.new-graduate-about__block + .new-graduate-about__block {
	margin-top: 50px;
}

/* Label — default style (used outside #new-graduate-about) */
.new-graduate-about__label {
	display: block;
	background: transparent;
	color: var(--c-green);
	font-size: 2.2rem;
	font-weight: 700;
	padding: 0;
	margin-bottom: 8px;
	border-radius: 0;
	letter-spacing: 0.05em;
}

/* Point variant — green pill badge */
.new-graduate-about__tag {
	display: block;
	max-width: 100%;
	width: max-content;
	box-sizing: border-box;
	background: var(--c-green);
	color: #fff;
	font-size: 1.92rem;
	font-weight: 400;
	padding: 3px 14px;
	border-radius: 5px;
	margin-bottom: 0.5em;
}

.new-graduate-about__catch{
	font-family: var(--ff-heading);
	font-size: 3.6rem;
	line-height:1.5;
	color: var(--c-olive);
	margin-bottom: 25px;
}

.new-graduate-about__text {
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 2;
	color: var(--c-text);
	margin: 0;
}

@media (max-width: 768px) {
	.new-graduate-about__grid {
		grid-template-columns: 1fr;
		row-gap: 24px;
	}

	.new-graduate-about__images,
	.new-graduate-about__body {
		grid-column: 1;
	}

	.new-graduate-about__img-sub {
		width: 60%;
		margin-top: -10vw;
	}

	.new-graduate-about__bubble {
		margin-bottom: 30px;
	}

	.new-graduate-about__title {
		margin-bottom: 40px;
	}

	.new-graduate-about__catch{
		font-size: 2.6rem;
	}

	.new-graduate-about__label {
		font-size:1.8rem;
		margin-left: 0;
	}
	.new-graduate-about__tag{
		font-size:1.6rem;
	}
	
	.new-graduate-about__text{
		font-size:1.5rem;
	}
}

/* ===== 2. WORK ===== */
.new-graduate-work {
	padding: 100px 20px;
	background: var(--c-bg-cream);
	position: relative;
	z-index: 2;
}

.new-graduate-work__herb {
	position: absolute;
	top: 0;
	right: 12.5%;
	z-index: -1;
	width: 230px;
	transform: translateY(-56%);
}

.new-graduate-work__inner {
	max-width: 1375px;
	margin: 0 auto;
}

.new-graduate-work__title {
	margin-bottom: 50px;
}

/* タブ */
.new-graduate-work__tabs {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap:8px 24px;
	margin-bottom: 48px;
}

.new-graduate-work__tab {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 12px;
	width: 100%;
	max-width: 360px;
	height: 200px;
	padding: 24px;
	background: var(--c-white);
	border-radius: 8px;
	text-decoration: none;
	border: 1px solid #BDC9CB;
}

.new-graduate-work__tab-num {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	background: var(--c-green);
	color: var(--c-white);
	border-radius: 50%;
	font-size: 2rem;
	font-family: var(--ff-heading);
}

.new-graduate-work__tab-en {
	font-family: var(--ff-jp);
	font-size: 2rem;
	font-weight: 700;
	color: var(--c-green);
}

.new-graduate-work__tab-ja {
	font-size: 1.6rem;
	color: var(--c-text-sub);
}

/* カード */
.new-graduate-work__cards {
	display: flex;
	flex-direction: column;
	gap: 48px;
	margin: 0 auto;
}

.new-graduate-work__card {
	display: flex;
	gap: 40px;
	align-items: stretch;
	background: var(--c-white);
	border-radius: 16px;
	overflow: hidden;
}

.new-graduate-work__card:nth-child(even) {
	flex-direction: row-reverse;
}

.new-graduate-work__card-img {
	flex: 0 0 42%;
	min-height: 280px;
	overflow: hidden;
}

.new-graduate-work__card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.new-graduate-work__card-body {
	flex: 1;
	padding: 70px 45px;
}

.new-graduate-work__card-title {
	font-family: var(--ff-heading);
	font-size: 3.8rem;
	font-weight: 400;
	color: var(--c-olive);
	line-height: 1.26;
	margin: 0 0 1em;
}

.new-graduate-work__card-text {
	font-size: 1.6rem;
	line-height: 2;
	font-weight: 500;
	color: var(--c-text);
	margin: 0 0 20px;
}

.new-graduate-work__bubble {
	margin-top: 16px;
}

.new-graduate-work__bubble-text {
	flex: 1;
	position: relative;
	background: var(--c-bg-cream);
	border-radius: 8px;
	padding: 10px 14px;
	font-size: 1.3rem;
	line-height: 1.7;
	color: var(--c-text);
}

.new-graduate-work__bubble-text::before {
	content: "";
	position: absolute;
	left: -8px;
	top: 12px;
	border: 8px solid transparent;
	border-right-color: var(--c-bg-cream);
	border-left: 0;
}

.new-graduate-work__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 8px 0 0;
	padding: 0;
	list-style: none;
}

.new-graduate-work__tags li,
.new-graduate-school-tag {
	display: inline-block;
	padding: 10px 24px;
	background: #f1faee;
	border: 1.5px solid #b5dda0;
	border-radius: 999px;
	font-size: 1.4rem;
	line-height: 1.4;
	color: var(--c-text);
	white-space: nowrap;
	margin: 0;
}

@media (max-width: 820px) {
	.new-graduate-work__herb {
		max-width: 150px;
		transform: translateY(-40%);
		right: 5%;
	}

	.new-graduate-work__title {
		margin-bottom: 40px;
	}

	.new-graduate-work__tab {
		height: auto;
		min-height: 160px;
	}

	.new-graduate-work__cards{
		gap: 24px;
	}
	.new-graduate-work__card,
	.new-graduate-work__card:nth-child(even) {
		flex-direction: column;
		gap: 16px;
	}

	.new-graduate-work__card-img {
		flex: 0 0 auto;
		width: 100%;
		min-height: 220px;
	}

	.new-graduate-work__card-text{
		font-size:1.5rem;
	}
	.new-graduate-work__card-body,
	.new-graduate-work__card:nth-child(even) .new-graduate-work__card-body {
		padding: 24px 20px;
	}

	.new-graduate-work__card-title {
		font-size: 2.6rem;
	}
}

/* ===== 3. INTERVIEW ===== */
.new-graduate-interview {
	padding: 0;
	background: #eaf5de;
	position: relative;
	overflow: hidden;
}

.new-graduate-interview__layout {
	display: grid;
	grid-template-columns: 1fr 2fr 1fr;
	align-items: stretch;
	min-height: 280px;
}

.new-graduate-interview__side-img {
	height: 100%;
	overflow: hidden;
}

.new-graduate-interview__side-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 40%;
	display: block;
}

.new-graduate-interview__center {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	max-width: 100%;
	padding: 64px 80px;
}

.new-graduate-interview__bubble {
	width: 100%;
	text-align: left;
	margin-top:1em;
}

.new-graduate-interview__bubble .c-bubble-01__bubble-text {
	background-color: #fff;
}

.new-graduate-interview__btn {
	margin-top: 48px;
	font-size: 1.8rem;
	padding-block: 18px;
}

@media (max-width: 1024px) {
	.new-graduate-interview__layout {
		grid-template-columns: 1fr;
		min-height: auto;
	}

	.new-graduate-interview__side-img {
		height: 200px;
		border-radius:16px;
	}

	.new-graduate-interview__center {
		padding: 40px 20px;
	}

	.new-graduate-interview__btn {
		margin-top: 40px;
		font-size: 1.6rem;
	}
}

@media (max-width: 768px) {
	.new-graduate-interview__center {
		padding: 40px 0;
	}
}

/* ===== 4. TRAINING ===== */
.new-graduate-training__inner {
	max-width: 1160px;
	margin: 0 auto;
}

.new-graduate-training {
	padding: 100px 20px;
	background: var(--c-white);
}

.new-graduate-training__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	margin-bottom: 60px;
}

.new-graduate-training__card {
	background: var(--c-bg-cream);
	border-radius: 12px;
	padding: 32px 24px;
	text-align: center;
}

.new-graduate-training__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	margin-inline: auto;
	margin-bottom: 33px;
	color: var(--c-green);
}

.new-graduate-training__icon img {
	width: 100%;
	height: auto;
}

.new-graduate-training__card-text {
	font-family: var(--ff-heading);
	font-size: 2.4rem;
	font-weight: 400;
	line-height: 1.4;
	color: var(--c-olive);
	margin: 0;
}

.new-graduate-training__btn-wrap {
	text-align: center;
}

@media (max-width: 768px) {
	.new-graduate-training__grid {
		grid-template-columns: 1fr;
	}

	.new-graduate-training__card-text {
		font-size: 1.8rem;
	}
}

/* ===== 5. EDU / FLOW ===== */
.new-graduate-edu {
	padding: 100px 20px;
	background: var(--c-bg-cream);
	position: relative;
	overflow: hidden;
}

.new-graduate-edu__inner {
	position: relative;
	z-index: 1;
	max-width: 1000px;
	margin: 0 auto;
}

.new-graduate-flow__item {
	background-color: #fff;
}

.new-graduate-flow__bubble {
	max-width: 767px;
	margin-inline: auto;
}

.new-graduate-flow__btn-wrap {
	text-align: center;
	margin-top: 70px;
}

@media (max-width: 768px) {
	.new-graduate-flow__btn-wrap {
		margin-top: 40px;
	}
}

/* ===== 6. PROFILE ===== */
.new-graduate-profile {
	padding: 100px 20px;
	background: var(--c-white);
}
.new-graduate-profile__inner {
	max-width: 1195px;
	margin: 0 auto;
	display: flex;
	gap: 40px;
	align-items: flex-start;
}
.new-graduate-profile__image {
	flex: 0 0 38%;
	text-align: center;
}
.new-graduate-profile__image img {
	width: 100%;
	border-radius: 12px;
	display: block;
}
.new-graduate-profile__callout {
	display: inline-block;
	background: #eaf5de;
	border-radius: 8px;
	padding: 10px 20px;
	font-size: 1.35rem;
	color: var(--c-text);
	margin-bottom: 16px;
	position: relative;
}
.new-graduate-profile__callout::after {
	content: "";
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	border: 10px solid transparent;
	border-top-color: #eaf5de;
	border-bottom: 0;
}
.new-graduate-profile__btn-wrap {
	text-align: center;
	margin-top: 40px;
}
.new-graduate-profile__name {
	font-size: 4.8rem;
	line-height: 1.5;
	font-family: var(--ff-heading);
	font-weight: 400;
	color: var(--c-olive);
	margin-bottom: 5px;
}

.new-graduate-profile__name-en {
	font-family: var(--ff-heading);
	font-size: 2.2rem;
	color: var(--c-green);
	margin-bottom: 43px;
	letter-spacing: 0.08em;
}

@media (max-width: 1024px) {
	.new-graduate-profile__name {
		font-size: 3rem;
	}
}

@media (max-width: 768px) {
	.new-graduate-profile__name {
		font-size: 2.2rem;
		margin-bottom: 0;
	}

	.new-graduate-profile__name-en {
		font-size: 1.6rem;
	}

	.new-graduate-profile__inner {
		flex-direction: column;
		gap: 32px;
	}
	.new-graduate-profile__image {
		flex: 0 0 auto;
		width: 100%;
	}
}

/* ===== 7. VISITOR ===== */
.new-graduate-visitor {
	padding: 80px 20px;
	background: #eaf5de;
	position: relative;
	overflow: hidden;
}

.new-graduate-visitor__inner {
	max-width: 1300px;
	margin: 0 auto;
}

.new-graduate-visitor__layout {
	position: relative;
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	max-width: 1100px;
	margin: 0 auto;
	z-index: 1;
}

.new-graduate-visitor__panel {
	display: grid;
	position: relative;
}

.new-graduate-visitor__img {
	position: relative;
	z-index: 1;
	grid-column: 1;
	grid-row: 1;
	border-radius: 16px;
	overflow: hidden;
}

.new-graduate-visitor__img img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 8px;
}

.new-graduate-visitor__card {
	position: relative;
	z-index: 2;
	grid-column: 2;
	grid-row: 1;
	margin-left: -80px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	background: #fff;
	border-radius: 8px;
	padding: 40px 48px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
	margin-block: 30px
}

.new-graduate-visitor__card * {
	text-align: center;
}

.new-graduate-visitor__lead {
	font-size: 2rem;
	line-height: 1.8;
	color: var(--c-text);
	font-weight: 500;
	margin: 0 0 24px;
}

.new-graduate-visitor__bubble {
	margin: 0 auto 32px;
	max-width: 450px;
}

/* 草装飾 */
.new-graduate-visitor__grass {
	position: absolute;
	z-index: 3;
	pointer-events: none;
	user-select: none;
	display: block;
	object-fit: contain;
	object-position: bottom;
}

.new-graduate-visitor__grass--left {
	left: 0;
	top: 0;
	width: 240px;
	transform: translate(-26%, -40%);
}

.new-graduate-visitor__grass--right {
	right: 0;
	bottom: 14%;
	width: 200px;
	transform: translateX(59%);
}

@media (max-width: 768px) {
	.new-graduate-visitor__layout {
		grid-template-columns: 1fr;
	}

	.new-graduate-visitor__img,
	.new-graduate-visitor__card {
		grid-column: 1;
	}

	.new-graduate-visitor__img {
		display:none;
	}

	.new-graduate-visitor__card {
		margin: 0;
		padding:32px;
	}

	.new-graduate-visitor__grass--left,
	.new-graduate-visitor__grass--right {
		width: 120px;
		height: auto;
	}

	.new-graduate-visitor__lead {
		font-size: 1.6rem;
	}

	.new-graduate-visitor__bubble {
		max-width: 100%;
	}
}

/* ===== 8. FAQ ===== */
.new-graduate-faq {
	padding: 100px 20px;
	background: var(--c-bg-cream);
}
.new-graduate-faq__title {
	margin-bottom: 75px;
}
.new-graduate-faq__list {
	list-style: none;
	padding: 0;
	margin: 0 auto 70px;
	display: flex;
	flex-direction: column;
	gap: 16px;
	max-width: 760px;
}
.new-graduate-faq__item {
	background: transparent;
}
.new-graduate-faq__q {
	display: flex;
	align-items: center;
	gap: 16px;
	width: 100%;
	padding: 18px 24px;
	background: var(--c-white);
	border: none;
	border-radius: 8px;
	font-family: var(--ff-jp);
	font-size: 1.8rem;
	font-weight: 600;
	color: var(--c-text);
	text-align: left;
	cursor: pointer;
	transition: opacity 0.2s;
	line-height: 1.5;
}
.new-graduate-faq__q:hover {
	opacity: 0.85;
}
.new-graduate-faq__q-mark {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: var(--c-green);
	color: var(--c-white);
	font-family: var(--ff-heading);
	font-size: 1.6rem;
}
.new-graduate-faq__q-text {
	flex: 1;
}
.new-graduate-faq__q-arrow {
	flex-shrink: 0;
	width: 16px;
	height: 16px;
	display: inline-block;
	position: relative;
	transition: transform 0.3s;
}
.new-graduate-faq__q-arrow::before {
	content: "";
	position: absolute;
	top: 4px;
	left: 2px;
	width: 10px;
	height: 10px;
	border-right: 2px solid var(--c-olive);
	border-bottom: 2px solid var(--c-olive);
	transform: rotate(45deg);
}
.new-graduate-faq__item.is-open .new-graduate-faq__q-arrow {
	transform: rotate(180deg);
}
.new-graduate-faq__a {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.35s ease;
}
.new-graduate-faq__a-inner {
	padding: 25px 0 8px;
	font-size: 1.6rem;
	line-height: 1.75;
	color: var(--c-text);
}
.new-graduate-faq__a-inner p {
	margin: 0;
	font-size: 1.6rem;
}
.new-graduate-faq__btn-wrap {
	text-align: center;
}

/* ===== 9. RECRUIT ===== */
.new-graduate-recruit {
	padding: 100px 20px;
	background: var(--c-white);
	text-align: center;
}
.new-graduate-recruit__lead {
	font-size: 1.6rem;
	line-height: 1.9;
	color: var(--c-text);
	margin: 0 auto 40px;
	max-width: 640px;
}

@media (max-width: 768px) {
	.new-graduate-faq__title {
		margin-bottom: 40px;
	}

	.new-graduate-faq__a-inner {
		font-size: 1.4rem;
	}

	.new-graduate-faq__list {
		margin-bottom: 40px;
	}

	.new-graduate-faq__q{
		font-size:15px;
	}
	.new-graduate-faq__a-inner p{
		font-size:14px;	
	}
}

/* ===== レスポンシブ ===== */


@media (max-width: 768px) {
	/* セクション padding */
	.new-graduate-section {
		padding: 60px 16px;
	}

	#new-graduate-about .new-graduate-about__body {
		grid-column: 1 !important;
	}


	/* VISITOR */


	/* ナビ */
	.new-graduate-pagenav__list {
		gap: 12px 20px;
	}
	.new-graduate-pagenav__item a {
		font-size: 1.3rem;
	}
}

/* ===========================================
プライバシーポリシー
=========================================== */
.privacy-policy .entry-content{
	padding:100px 32px;
}
.privacy-policy .entry-content p{
	line-height:2;
}
@media (max-width: 768px) {
	.privacy-policy .entry-content{
		padding:40px 0px;
	}
}

/* ===========================================
カテゴリ親ページ
=========================================== */
.page-parent .page-layout{
	background-color: var(--c-bg-cream);
	padding: 100px 32px;
}