/* ===== _hero.css ===== */
/* ヒーロー ---------- */
.hero {
	width: 100%;
	height: 100%;
	height: 100vh;
	height: 100svh;
	display: flex;
	align-items: center;
	box-sizing: border-box;
	padding: 5% 0 9%;
	background-color: var(--color-white);
}
.hero-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 16px;
	box-sizing: border-box;
}
.hero-heading {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 15px;
}
.hero-sub {
	font-family: var(--ff-sub);
	font-size: var(--fs-l);
	font-weight: var(--fw-bold);
	letter-spacing: var(--ls-tight);
	line-height: var(--lh-m);
	color: var(--color-font);
}
.hero-title {
	font-size: var(--fs-hero);
	font-weight: var(--fw-regular);
	letter-spacing: var(--ls-tight);
	line-height: var(--lh-m);
	color: var(--color-font);
}
.hero-image {
	flex: 1;
	min-height: 0;
	width: 100%;
	margin: 0;
	display: flex;
	justify-content: center;
}
.hero-image img {
	width: 100%;
	height: 100%;
	max-height: 45vh;
	min-height: 200px;
	-o-object-fit: contain;
	object-fit: contain;
	display: block;
}
@media (max-width: 1440px) {
	.hero-image img {
		max-height: 40vh;
	}
}
.hero-catch {
	font-family: var(--ff-sub);
	font-size: var(--fs-l);
	font-weight: var(--fw-bold);
	letter-spacing: var(--ls-tight);
	line-height: var(--lh-l);
	color: var(--color-font);
}
@media (max-width: 1024px) {
	.hero {
		padding: 4% 0;
	}
	.hero-inner {
		gap: 12px;
	}
	.hero-title {
		font-size: var(--fs-xl);
	}
}
@media (max-width: 599px) {
	.hero {
		padding: 4% 0;
	}
	.hero-inner {
		gap: 12px;
	}
	.hero-sub {
		font-size: var(--fs-m);
	}
	.hero-title {
		font-size: 28px;
	}
	.hero-catch {
		font-size: var(--fs-ml);
	}
	.hero-image img {
		min-height: 100px;
	}
}

/* ===== _nav-grid.css ===== */
/* ナビグリッド ---------- */

.nav-grid-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
}
@media (max-width: 599px) {
	.nav-grid-list {
		grid-template-columns: 1fr;
	}
}

.nav-grid-list li {
	display: flex;
}

.nav-grid-list a {
	flex: 1;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 13px 35px 13px 5px;
	background-color: var(--color-white);
	border: 1px solid var(--color-main);
	text-decoration: none;
	box-sizing: border-box;
	overflow: hidden;
	transition: background 0.25s ease;
}
.nav-grid-list a:hover {
	background: linear-gradient(135deg, #F1F9FF 0%, #D9E8F5 100%);
}
@media (max-width: 599px) {
	.nav-grid-list a {
		padding: 10px 35px 10px 5px;
	}
}
.nav-grid-list a::after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 30px;
	background-color: var(--color-main);
}
.nav-grid-list a::before {
	content: "";
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translateY(-50%);
	z-index: 1;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 6px 5px 0;
	border-color: var(--color-white) transparent transparent;
}

/* ===== _concerns.css ===== */
/* お悩みセクション ---------- */
.concerns-lead {
	text-align: center;
	margin-bottom: 20px;
}

.concerns-list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}
@media (max-width: 1024px) {
	.concerns-list {
		grid-template-columns: repeat(2, 1fr);
	}
}

.concerns-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	background-color: var(--color-white);
}

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

.concerns-item p {
	font-size: var(--fs-ml);
	font-weight: var(--fw-bold);
	letter-spacing: var(--ls-tight);
	line-height: var(--lh-l);
	color: var(--color-sub);
	text-align: center;
	padding: 0 5px 10px;
}
@media (max-width: 599px) {
	.concerns-item p {
		font-size: var(--fs-s);
	}
}

.concerns-area {
	text-align: center;
	color: var(--color-sub);
	font-weight: var(--fw-bold);
}
@media (max-width: 599px) {
	.concerns-area {
	}
}

/* ===== _about.css ===== */
/* インプラントはどんな治療法？ ---------- */

/* イントロ */
.about-intro {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.about-intro-img {
	width: 80%;
	margin: 0 auto;
}
@media (max-width: 599px) {
	.about-intro-img {
		width: 90%;
	}
}

.about-intro-img img {
	width: 100%;
	height: auto;
	display: block;
}

.about-block-ttl {
	margin-bottom: 20px;
}
@media (max-width: 599px) {
	.text-sp-small {
		font-size: var(--fs-lm);
		margin-bottom: 25px;
	}
}
/* Q&A共通 */
.about-qa-list {
	display: flex;
	flex-direction: column;
	gap: 40px;
}
@media (max-width: 1024px) {
	.about-qa-list {
		gap: 30px;
	}
}

.about-qa-item {
	display: flex;
	flex-direction: column;
}
.qa-item-bottom {
	display: grid;
	gap: 30px;
	margin-top: 40px;
}
@media (max-width: 599px) {
	.qa-item-bottom {
		gap: 20px;
		margin-top: 25px;
	}
}
/* キーポイント */
.about-key h3 {
	color: var(--color-sub);
}
.about-key .ttl-border-l {
	border-left-color: var(--color-sub);
}
@media (max-width: 599px) {
	.about-key .qa-img-col .ttl-border-l {
		font-size: var(--fs-m);
	}
}
.about-key .qa-img-col + .qa-img-col {
	border-top-color: var(--color-sub);
}
.about-key .sep-dot > .qa-img-col::before {
	border-top-color: var(--color-sub);
}

.about-logos {
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.about-logos figure {
	margin: 0;
}
.about-logos img {
	width: 100%;
	height: auto;
	display: block;
}

/* サブセクション */
.about-sub {
	margin-top: 20px;
}
.about-sub + .about-sub {
	margin-top: 12px;
}

.about-sub-ttl {
	font-weight: var(--fw-bold);
	color: var(--color-main);
	margin-bottom: 10px;
}

.about-sub p + p {
	margin-top: 10px;
}

/* ガイド 2カラム */
.about-guide-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	margin-top: 20px;
}
@media (max-width: 1024px) {
	.about-guide-list {
		grid-template-columns: 1fr;
	}
}

.about-guide-item {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.about-guide-img {
	margin: 0;
}
.about-guide-img img {
	width: 100%;
	height: auto;
	display: block;
}

.about-guide-ttl {
	font-weight: var(--fw-bold);
	color: var(--color-main);
	line-height: var(--lh-l);
}

/* コンピューターガイドサージェリーブロック */
.cp-guide-sj {
	border-top: 1px solid var(--color-main);
	padding-top: 20px;
}
@media (max-width: 599px) {
	.cp-guide-sj {
		padding-top: 15px;
	}
}

/* 最終Q&A */
.about-final {
	margin-top: 60px;
}

/* 比較表グループ */
.compare-block {
	display: flex;
	flex-direction: column;
}

/* おすすめリスト */
.compare-recommend {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
}
.compare-recommend-ttl {
	border-bottom: 1px solid var(--color-main);
	padding-bottom: 4px;
	margin-bottom: 6px;
}
.compare-recommend ul {
	list-style: disc;
	padding-left: 1.3em;
	font-size: var(--fs-s);
	line-height: var(--lh-l);
}
@media (max-width: 599px) {
	.compare-recommend {
		grid-template-columns: 1fr;
		gap: 15px;
	}
}

/* 当院の考え方 */
.compare-clinic-note {
	background-color: var(--color-bg-cyan);
	border-radius: 4px;
	padding: 20px 24px;
	font-size: var(--fs-s);
	line-height: var(--lh-l);
}
.compare-clinic-note-ttl {
	font-size: var(--fs-ml);
	font-weight: var(--fw-bold);
	color: var(--color-navy);
}
@media (max-width: 599px) {
	.compare-clinic-note {
		padding: 16px;
	}
}

.table-scroll {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.compare-table {
	table-layout: fixed;
	width: 100%;
	border-collapse: collapse;
	font-size: var(--fs-s);
	line-height: var(--lh-m);
}

.compare-table th,
.compare-table td {
	width: 33.33%;
	padding: 12px 14px;
	border: 1px solid var(--color-main);
	vertical-align: middle;
	text-align: center;
}
.compare-table th{
	padding: 14px 14px;
}
/* ヘッダー行 */
.compare-table thead tr {
	color: var(--color-white);
	background-color: var(--color-main);
}
.compare-table thead th {
	border-color: var(--color-white);
}

/* 列1（比較項目）: thead=gray / tbody=white */
.compare-table th:first-child {
	font-weight: var(--fw-bold);
}
.compare-table td:first-child {
	background-color: var(--color-white);
	font-weight: var(--fw-bold);
	background-color: var(--color-bg-cyan);
}
/* イメージ行 */
.compare-img-row th,
.compare-img-row td {
	padding: 16px 5px;
}

@media (max-width: 599px) {
	/* テーブルをブロック→グリッドに切り替え */
	.compare-table,
	.compare-table thead,
	.compare-table tbody {
		display: block;
		width: 100%;
	}
	.compare-table tr {
		display: grid;
		grid-template-columns: 1fr 1fr 1fr;
		border: 1px solid var(--color-main);
		border-bottom: none;
	}
	.compare-table tr:last-child {
		border-bottom: 1px solid var(--color-main);
	}
	.compare-table th,
	.compare-table td {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 100%;
		box-sizing: border-box;
		padding: 8px 5px;
		font-size: var(--fs-ss);
		border: none;
		text-align: center;
	}
	/* 縦の中央仕切り */
	.compare-table th:nth-child(3),
	.compare-table td:nth-child(3) {
		border-left: 1px solid #c0cce0;
		border-right: 1px solid #c0cce0;
	}

	/* theadの空セル（比較項目列）を非表示 */
	.compare-table thead th:first-child {
		display: none;
	}

	/* tbody の比較項目セルを全幅1行に */
	.compare-table tbody td:first-child {
		grid-column: 1 / 4;
		font-weight: var(--fw-bold);
		text-align: center;
		border-bottom: 1px dashed var(--color-main);
	}

	/* イメージ行 */
	.compare-img-row th {
		padding: 10px 6px;
	}
}

/* ===== _features.css ===== */
@media (max-width: 599px) {
	.features-section-header {
		text-align: center;
	}
}
/* リスト ---------- */
.num-box-list {
	display: flex;
	flex-direction: column;
	gap: 20px;
	counter-reset: num-box;
}

.num-box-list-wrap {
	counter-increment: num-box;
	background: var(--color-white);
}

.box-inner {
	display: flex;
	flex-direction: column;
}
.box-num {
	text-align: center;
	margin-bottom: 10px;
}
.num-box-list .box-num.font-set-l {
	margin-bottom: 10px;
}
@media (max-width: 599px) {
	.num-box-list .box-num.font-set-l {
		margin-bottom: 10px;
	}
}
.box-num::before {
	content: counter(num-box);
	display: block;
}
#features .box-num::before,
#features .num-box-ttl {
	color: var(--color-sub);
}
.num-box-list-wrap .box-body {
	margin-top: 20px;
}
@media (max-width: 599px) {
	.num-box-list-wrap .box-body {
		margin-top: 10px;
	}
}
.num-box-list .bg-green {
	background-color: var(--color-bg-green);
}
.bl-text-list {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 10px;
}
@media (max-width: 1024px) {
	.bl-text-list {
		grid-template-columns: 5rem 1fr;
	}
}
.list-body,
.col-wrap {
	display: grid;
	gap: 20px;
}
@media (max-width: 599px) {
	.list-body,
	.col-wrap {
		gap: 10px;
	}
}
.box-border-left {
	border-left: 1.5px solid var(--color-font);
	padding-left: 10px;
}

.col-3 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px 25px;
}
@media (max-width: 1024px) {
	.col-3 {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
}
@media (max-width: 599px) {
	.col-3 {
		grid-template-columns: 1fr;
	}
}

.features .col-item {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
@media (max-width: 599px) {
	.features .col-item {
		gap: 14px;
	}
}
.features .col-item figure {
	margin: 0;
}
.features .col-item img {
	width: 100%;
	height: auto;
	display: block;
}

.features .item-body {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
@media (max-width: 599px) {
	.features .item-body {
		gap: 5px;
	}
}
.features .item-body .font-set-ml{
	color: var(--color-sub);
}

.col-3 > .col-item:nth-child(3n + 1):last-child {
	grid-column: 1 / -1;
	display: grid;
	grid-template-columns: 3fr 6fr;
	gap: 20px;
	align-items: center;
}
@media (max-width: 1024px) {
	.col-3 > .col-item:nth-child(2n + 1):last-child {
		grid-template-columns: 1fr;
		grid-column: 1;
		display: flex;
		flex-direction: column;
	}
}

.fb-head {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
	text-align: left;
}
.fb-head figure {
	margin: 0;
	padding: 0;
	flex-shrink: 0;
}
.fb-head figure img {
	width: 2rem;
	height: auto;
	display: block;
}
@media (max-width: 599px) {
	.fb-head {
		gap: 10px;
	}
	.fb-head figure img {
		width: 1.6rem;
	}
}
.link-card-list {
	display: grid;
	gap: 20px;
}

@media (max-width: 599px) {
	.link-card-list {
		grid-template-columns: 1fr;
		gap: 30px;
	}
}
.link-card-list .link-card .icon-btn-toggle {
	margin-top: 20px;
	text-align: right;
}
@media (max-width: 599px) {
	.link-card-list .link-card .icon-btn-toggle {
		margin-top: 15px;
	}
}
.features-bottom .pad-m {
	padding-top: 40px;
}
@media (max-width: 599px) {
	.features-bottom .pad-m {
		padding-bottom: 30px;
	}
}
.col-table {
	gap: 20px;
}
.features .bottom-bg-comment img{
	width: 100%;
	height: auto;
	-o-object-fit: contain;
	object-fit: contain;
	display: block;
}
.features-content .num-box-list .num-box-list-wrap{
	padding-bottom: 40px;
}

/* ===== _computer-guide.css ===== */
/* セクションヘッダー */
.cg-section-header {
	position: relative;
}

.cg-section-header .head-text {
	position: relative;
	z-index: 1;
}
.cg-section-header .head-text .head-text-wrap{
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

@media (max-width: 599px) {
	.cg-section-header {
		padding-top: 15px;
	}
	.cg-section-header .head-text .font-set-xl {
		font-size:var(--fs-ls);
		line-height: var(--lh-m);
	}
}
.cg-section-header .head-img {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 25rem;
	z-index: 0;
}
.cg-section-header .head-img figure {
	margin: 0;
}
.cg-section-header .head-img img {
	width: 100%;
	height: auto;
	display: block;
}
@media (max-width: 1024px) {
	.cg-section-header .head-img{
		width: 60%;
	}
}

/* チェックリスト */
.check-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-top: 20px;
	padding-bottom: 40px;
}
@media (max-width: 1024px) {
	.check-list {
		padding-bottom: 50px;
	}
}
.check-list li {
	display: flex;
	align-items: center;
	gap: 10px;
}
.check-list li img {
	width: 2rem;
	height: 2rem;
	flex-shrink: 0;
}

.cg-section-header .ttl-box,
.a4-section-header .ttl-box {
	display: inline-block;
	line-height: 1.6;
}
.cg-section-header h2.ttl-box,
.a4-section-header h2.ttl-box {
	padding-top: 0;
	padding-bottom: 0;
}

/* title-column：ttl-box を縦積みに */
.cg-section-header .title-column {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0px;
}
.cg-section-header .ttl-box + .ttl-box,
.a4-section-header .ttl-box + .ttl-box {
	margin-top: -2.5px;
}
.cg-section-nav .col-3,
.a4-section-nav .col-3 {
	gap:10px;
}
.cg-section-nav .col-3 .col-item,
.a4-section-nav .col-3 .col-item {
	background-color: var(--color-white);
	border-radius: 5px;
	padding: 15px 5px;
	box-sizing: border-box;
	text-align: center;
	color: var(--color-main);
	display: flex;
	flex-direction: column;
	align-items: center;
}
@media (max-width: 599px) {
	.col-item{
		gap: 5px;
	}
}
.cg-section-nav .col-3 .col-item a,
.a4-section-nav .col-3 .col-item a {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	color: inherit;
}
.toggle-bottom::after {
	content: "";
	display: block;
	width: 8px;
	height: 8px;
	border-right: 2px solid var(--color-main);
	border-bottom: 2px solid var(--color-main);
	transform: rotate(45deg);
	margin: 8px auto 4px;
}
.cg-section-body .block-num,
.cg-section-body .block-title {
	text-align: center;
}
.cg-section-body .block-num {
	display: block;
}

/* precision-list（三角なし・40px gap） ---------- */
#computer .num-box-list{
	gap: 40px;
}
#cg-precision .num-box-list .step-imgs-vert{
	gap: 15px;
}
@media (max-width: 1024px) {
	.num-box-list .box-num {
		margin-bottom: 5px;
	}
	#computer .num-box-list{
		gap: 20px;
	}
	#cg-flow .num-box-list .step-imgs-vert.img-small{
		max-width: 70%;
		margin: 0 auto;
	}
}

.cg-section-body .num-box-list-wrap:last-child {
	margin-bottom: 0;
}

/* STEPリスト ---------- */
.bottom-bg-comment .col-75-25 {
	gap: 20px;
}
@media (max-width: 1024px) {
	.bottom-bg-comment .col-75-25 {
		gap: 10px;
	}
}
.cg-flow-list .col-72-28 {
	gap: 20px;
}
@media (max-width: 1024px) {
	.cg-flow-list .col-72-28 {
		gap: 10px;
	}
}
#computer .num-box-list-wrap,
#allon4 .num-box-list-wrap {
	border: 1px solid var(--color-main);
	border-radius: 5px;
}
.cg-section-body .num-box-list-wrap {
	position: relative;
}

.cg-section-body .box-num::before {
	content: "STEP " counter(num-box);
}

/* STEPサブテキスト */
.step-sub {
	display: inline-block;
	background: var(--color-main);
	color: var(--color-white);
	padding: 2px 10px;
	line-height: var(--lh-m);
	border-radius: 5px;
}
@media (max-width: 599px) {
	.step-sub {
		font-size: var(--fs-m);
	}
}

/* box-head 横並び（タイトル＋サブテキスト） */
.cg-section-body .box-head {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}
@media (max-width: 599px) {
	.cg-section-body .box-head {
		gap: 5px;
	}
}
.cg-section-body .box-body {
	margin-top: 10px;
}
@media (max-width: 599px) {
	.cg-section-body .box-body {
		margin-top: 5px;
	}
}
.text-b-img figure {
	margin: 15px 0 0;
	width: 50%;
}
@media (max-width: 1024px) {
	.text-b-img figure {
		width: 100%;
		margin: 10px 0 0;
	}
}
.text-b-img img {
	width: 100%;
	height: auto;
	-o-object-fit: contain;
	object-fit: contain;
}
/* STEP2 縦積み画像 */
.step-imgs-vert {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.step-imgs-vert figure {
	margin: 0;
}
.step-imgs-vert img {
	width: 100%;
	height: auto;
	display: block;
}
#cg-x-guide .width-slim{
	margin-top: 20px;
}

/* guide2-4 左右2列×縦3枚グリッド */
.guide2-4-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	align-items: start;
}
@media (max-width: 599px) {
	.guide2-4-grid {
		grid-template-columns: 1fr;
	}
}

/* ===== _all-on-4.css ===== */
/* All-on-4 ヘッダー ---------- */
#allon4 {
	position: relative;
}
.a4-section-header{
	width: 90%;
	margin: 0 auto;
	max-width: 920px;
}
@media (max-width: 599px) {
	.a4-section-header .head-text p.font-set-xl{
		font-size: var(--fs-ml);
	}
}
#allon4 .a4-section-header {
	position: relative;
	z-index: 1;
}
#allon4 .back-logo {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 0;
	width: 30em;
	mix-blend-mode: multiply;
}
@media (max-width: 599px) {
	#allon4 .back-logo {
		width: 18em;
	}
}
#allon4 .back-logo figure img {
	width: 100%;
	height: auto;
	display: block;
}
/* 見出し色 */
#allon4 h1,
#allon4 h2,
#allon4 h3,
#allon4 h4,
#allon4 h5,
#allon4 h6,
#allon4 .box-num,
.a4-section-body .font-set-ls{
	color: var(--color-sub);
}
#allon4 .head-text .ttl-box{
	color: var(--color-main);
}
/* Section 3 box-head を縦積みに */
#allon4 .num-box-list-wrap .box-head {
	display: block;
}
/* Case グループ内見出し */
.a4-case-group .wrap h4 {
	font-size: var(--fs-l);
	font-weight: var(--fw-bold);
	letter-spacing: var(--ls-tight);
	line-height: var(--lh-m);
}
@media (max-width: 599px) {
	.a4-case-group .wrap h4 {
		font-size: var(--fs-lss);
	}
}

/* strong アンダーライン */
#allon4 strong {
	border-bottom: 1px solid var(--color-font);
}

/* ポイントカードリスト（縦積み） */
.a4-point-list {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

/* col-3-7 / col-case 内の figure 画像サイズ補正 */
#allon4 .col-3-7 > figure,
#allon4 .col-case > figure {
	width: 100%;
	overflow: hidden;
}
#allon4 .col-3-7 > figure img,
#allon4 .col-case > figure img {
	width: 100%;
	height: auto;
	display: block;
}
figcaption + img,
img + figcaption{
	margin-top: 5px;
}
/* 7:3 レイアウト */
.col-8-2 {
	grid-template-columns: 8fr 2fr !important;
}
@media (max-width: 1024px) {
	.col-8-2 { grid-template-columns: 1fr !important; }
}

/* 6:4 Caseレイアウト */
.col-case {
	display: grid;
	grid-template-columns: 6fr 4fr;
	gap: 20px;
	align-items: start;
}
@media (max-width: 1024px) {
	.col-case {
		grid-template-columns: 1fr;
		gap: 10px;
	}
}

/* ポイントカード（画像左・テキスト右 1行ずつ） */
#allon4 .col-3-7 {
	align-items: center;
}

/* ポイントエリア（テキスト＋バッジ 2カラム） */
.all-for-point {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 5px;
	align-items: center;
}
@media (max-width: 1024px) {
	.all-for-point {
		grid-template-columns: 1fr;
		gap:15px;
	}
}

/* バッジリスト */
.btn-text-list {
	display: flex;
	width: auto;
	flex-wrap: wrap;
	gap: 10px;
}
.btn-text-list li {
	background: var(--color-white);
	padding: 2px 10px;
	box-sizing: border-box;
	border-radius: 100px;
	font-weight: var(--fw-bold);
}
@media (max-width: 1024px) {
	.all-for-point li{
		font-size: 11px;
		padding: 5px 10px;
	}
}
.a4-section-nav .col-item{
	gap: 5px;
}
.a4-section-nav .col-3 .col-item {
	background-color: var(--color-sub);
	color: var(--color-white);
}
.a4-section-nav .col-3 .col-item * {
	color: var(--color-white);
}
.a4-section-nav .toggle-bottom::after {
	border-color: var(--color-white);
}

/* Case 背景グラデーション */
.a4-case-grad {
	background: linear-gradient(to bottom, #D9E8F5, #FCFDFE);
	border-radius: 5px;
	box-sizing: border-box;
}

/* Caseタイトル ---------- */
.a4-case-ttl {
	display: block;
	background-color: var(--color-sub);
	text-align: center;
	padding: 10px 80px;
	width: -moz-fit-content;
	width: fit-content;
	margin: 0 auto;
}
#allon4 .a4-case-ttl {
	color: var(--color-white);
}

/* Case グループ（三角区切り） ---------- */
.a4-case-group {
	position: relative;
}
/* all-on-4セクション内のcases-arrowはサブカラー */
#allon4 .cases-arrow {
	border-top-color: var(--color-sub);
}

/* col-imgs 高さ基準 flex（高さ揃え・幅auto） */
.col-imgs.col-flex-h {
	display: flex;
	gap: 34px;
	align-items: flex-start;
}
.col-imgs.col-flex-h figure img {
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
	-o-object-position: center top;
	object-position: center top;
	display: block;
}

/* Case 2/3 等分横並び gap 30px */
.a4-case:not(.a4-case-grad) .col-imgs {
	gap: 30px;
}

/* Case 2/3 タイトルボックス */
.a4-case-ttl-box {
	background-color: var(--color-sub);
	padding: 24px;
	display: flex;
	align-items: flex-start;
	align-self: stretch;
}
.a4-case-ttl-box span {
	color: var(--color-white);
	font-weight: var(--fw-bold);
	line-height: 1.3;
}

/* 術前・術後グループ wrapper */
.step-group {
	margin-top: 10px;
	max-width: 70%;
}
/* テリゴイド：術前→術後 縦並び（PC） ---------- */
.terigoto-group {
	display: flex;
	flex-direction: column;
	width: 100%;
	max-width: 100%;
	gap: 0;
}
.terigoto-group .a4-case-group {
	display: block;
}
.terigoto-wrap {
	display: flex;
	flex-direction: row;
	align-items: flex-end;
	gap: 10px;
	min-width: 0;
}
.terigoto-imgs {
	display: flex;
	gap: 10px;
	align-items: flex-end;
	min-width: 0;
}
.terigoto-group figure {
	margin: 0;
	min-width: 0;
}
.terigoto-group figure img {
	width: auto;
	max-width: 347px;
	max-height: 192px;
	display: block;
	-o-object-fit: contain;
	object-fit: contain;
}
/* 下向き三角（PCも縦並びなので下向き） */
#allon4 .terigoto-group .cases-arrow {
	width: 0;
	height: 0;
	border-top: 15px solid var(--color-sub);
	border-bottom: 0;
	border-left: 20px solid transparent;
	border-right: 20px solid transparent;
	margin-left: 120px;
}
@media (max-width: 1024px) {
	.terigoto-group .terigoto-wrap {
		flex-direction: column;
	}
	.terigoto-group figure img {
		height: auto;
		width: 100% !important;
		max-height: 100%;
		max-width: 100%;
	}
	#allon4 .terigoto-group .cases-arrow {
		border-top: 15px solid var(--color-sub);
		border-bottom: 0;
		border-left: 20px solid transparent;
		border-right: 20px solid transparent;
		align-self: auto;
		margin: 10px auto;
	}
}
#allon4 .num-box-list-wrap .a4-case-group .col-2{
	align-items: center;
}
#allon4 .num-box-list-wrap .a4-case-group .col-2 figure img {
	width: 100%;
	-o-object-fit: contain;
	object-fit: contain;
	display: block;
}

/* 術前・術後などのステップラベル */
.step-label {
	font-size: var(--fs-s);
	font-weight: var(--fw-medium);
	color: var(--color-sub);
	margin-bottom: 8px;
}

/* 術前画像 半幅 */
.col-imgs.img-half {
	max-width: 50%;
}
@media (max-width: 599px) {
	.col-imgs.img-half {
		max-width: 100%;
	}
	#allon4 .num-box-list-wrap .a4-case-group .col-imgs {
		width: 100%;
	}
	#allon4 .num-box-list-wrap .a4-case-group .col-imgs figure img {
		max-height: none;
		width: 100%;
	}
}

/* num-box-ttl 日本語サブタイトル */
.num-box-ttl-sub {
	display: block;
}

/* Case 画像間の右矢印 ---------- */
.a4-case .col-imgs figure {
	position: relative;
}
.a4-case .col-imgs figure:not(:last-child)::after {
	content: "";
	position: absolute;
	top: 40%;
	right: -35px;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-top: 20px solid transparent;
	border-bottom: 20px solid transparent;
	border-left: 20px solid var(--color-sub);
	z-index: 2;
}
@media (max-width: 599px) {
	.a4-case .col-imgs figure:not(:last-child)::after {
		top: 25%;
	}
}
/* All-on-4 料金カード */
.price-card {
	width: 80%;
	max-width: 650px;
	margin-left: auto;
	margin-right: auto;
	border: 1px solid var(--color-main);
	display: flex;
	flex-direction: column;
	gap: 20px;
	text-align: center;
}
@media (max-width: 1024px) {
	.price-card{
		width: 100%;
		max-width: 100%;
	}
}
#allon4 .price-card h3 {
	color: var(--color-main);
}
.price-card p {
	color: var(--color-font);
}
.price-card p.font-set-ls {
	color: var(--color-main);
}
.box-body .col-imgs-free{
	display: flex;
	text-align: left;
	gap:10px;
}
@media (max-width: 599px) {
	.box-body .col-imgs-free{
		display: grid;
		grid-template-columns: 1fr;
	}
}
.box-body .col-imgs-free figure{
	max-width: 300px;
}
@media (max-width: 599px) {
	.box-body .col-imgs-free figure{
		max-width: 100%;
	}
}
.box-body .col-imgs-free figure img{
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
}
.col-imgs-free figcaption{
	margin: 0;
}
@media (max-width: 599px) {
	#allon4 .num-box-list-wrap .a4-case-group .col-imgs{
		display: grid;
		grid-template-columns: 1fr;
		gap:5px;
	}
}
.box-body .col-imgs-free img{
	width: 100%;
	height: auto;
	max-height: 135px;
	-o-object-fit: contain;
	object-fit: contain;
}
.a4-case-group .col-imgs-free{
	width: 100%;
}
@media (max-width: 599px) {
	.box-body .col-imgs-free img{
		height: auto!important;
		max-height: 100%;
	}
	.a4-case-group .col-imgs-free{
		display: grid;
		width: 100%;
	}
}
.a4-case-group .sp-grid,
.a4-case-group .col-2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	align-items: start;
}
.a4-case-group .sp-grid{
	gap: 20px 10px;
}
.a4-case-pad-s .a4-case-group h3{
	margin-top: 5px;
}
.a4-section-body .block-new{
	display: inline-block;
	padding: 3px 13px;
	background-color: var(--color-sub);
	font-size: var(--fs-ml);
	color: var(--color-white);
	font-weight: var(--fw-bold);
}
.a4-section-body .block-head{
	text-align: center;
}
#allon4 p.ttl-box{
	color: var(--color-sub);
}
@media (max-width: 1024px) {
	.a4-section-body .pet-img{
		max-width: 50%;
		margin: 0 auto;
	}
}

/* ===== _overdenture.css ===== */
/* オーバーデンチャー ヘッダー */
.overdenture-header{
	max-width: 920px;
	margin: 0 auto;
	position: relative;
}
.overdenture-header .head-text{
	margin-top: 40px;
}
.cg-section-header .head-img {
	bottom: 20px;
}
.overdenture-header .head-img figure {
	height: 300px;
}
.overdenture-header .head-img img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
	display: block;
}
@media (max-width: 1024px) {
	.overdenture-header{
		max-width: 100%;
		padding-bottom: 0;
	}
	.overdenture-header .head-text{
		margin-top: 20px;
	}
	.overdenture-header .head-img{
		width: 50%;
	}
	.overdenture-header .head-img figure {
		height: auto;
	}
	.overdenture-header .head-text .check-list{
		margin-top: 15px;
		padding-bottom: 160px;
	}
	.cg-section-header .head-img {
		bottom: 0;
	}
}
@media (max-width: 599px) {
	.overdenture-header .head-img{
		width: 60%;
	}
}
/* ポイント 3カラム */
.od-points-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
@media (max-width: 1024px) {
	.od-points-list {
		grid-template-columns: 1fr;
	}
}

/* 料金カード（overdenture内） */
#over .price-card{
	gap: 0px;
}
#over .price-card h3,
#over .price-card h4 {
	color: var(--color-main);
}
@media (max-width: 599px) {
	#over .price-card h4{
		margin-top: 10px;
	}
}
#over .price-card p {
	color: var(--color-font);
}
#over .price-card p.font-set-ls {
	color: var(--color-main);
}

/* タイトルボーダーボックス */
.ttl-box-border {
	display: block;
	width: -moz-fit-content;
	width: fit-content;
	border: 2px solid var(--color-main);
	padding: 6px 20px;
	margin-bottom: 6px;
	color: var(--color-main);
	font-weight: var(--fw-bold);
	line-height: 1.4;
}
.od-body-box{
	border: 1px solid var(--color-main);
}

.cases-header .fb-head{
	justify-content: flex-start;
}

/* ===== _cases.css ===== */
/* 症例紹介 ---------- */
.cases-header {
	text-align: left;
}
.cases-list {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

/* 各症例ブロック */
.cases-list .num-box-list-wrap{
	background: var(--color-white);
	border-radius: 5px;
	border: 1px solid var(--color-line);
}

.cases-list .step-imgs-vert{
	gap: 0;
}
.cases-list .step-imgs-vert .cases-arrow{
	margin: 20px auto 0;
}
/* heading comment ブロック */
.cases-list .head-comment {
	padding: 20px 50px;
	text-align: center;
	position: relative;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	flex-direction: column;
	width: -moz-fit-content;
	width: fit-content;
	box-sizing: border-box;
	max-width: 100%;
	margin: 0 auto 20px;
}
@media (max-width: 1024px) {
	.cases-list .head-comment {
		padding: 15px 7% 10px;
	}
}
.head-comment h3 {
	margin-bottom: 10px;
	padding: 20px 5%px;
}
.head-comment p,
.num-box-list-wrap .list-cap h3 {
	text-decoration: underline;
}
/* 「」- CSSコーナーブラケット 2.5em × 2.5em */
.cases-list .head-comment::before,
.cases-list .head-comment::after {
	content: '';
	position: absolute;
	width: 2.5em;
	height: 2.5em;
}
.cases-list .head-comment::before {
	top: 0;
	left: 0;
	border-top: 4px solid var(--color-main);
	border-left: 4px solid var(--color-main);
}
.cases-list .head-comment::after {
	bottom: 0;
	right: 0;
	border-bottom: 4px solid var(--color-main);
	border-right: 4px solid var(--color-main);
}
@media (max-width: 1024px) {
	.cases-list .head-comment::before,
	.cases-list .head-comment::after {
		width: 1.5em;
		height: 1.5em;
		border-width: 3px;
		border-width: 3px;
	}
}

/* 縦並び画像間の下向き三角 */
.cases-arrow {
	width: 0;
	height: 0;
	border-left: 25px solid transparent;
	border-right: 25px solid transparent;
	border-top: 20px solid var(--color-main);
	margin: 20px auto;
}
@media (max-width: 599px) {
	.cases-arrow {
		border-left: 20px solid transparent;
		border-right: 20px solid transparent;
		border-top: 15px solid var(--color-main);
		margin: 15px auto;
	}
}

/* 症例詳細情報 */
.case-info {
	border-radius: 4px;
	margin-top: 20px;
	border: 1px solid var(--color-main);
	padding: 1rem 5%;
}
.case-info-list {
	display: flex;
	flex-direction: column;
	margin: 0;
	padding: 0;
}
.case-info-row {
	display: grid;
	grid-template-columns: 11rem 1fr;
	gap: 0;
	align-items: baseline;
	font-size: var(--fs-s);
	border-bottom: 1px dashed var(--color-main);
	padding: 10px 0;
	box-sizing: border-box;
}
.case-info-row:first-child{
	padding-top: 0;
}
.case-info-row:last-child{
	border-bottom: 0;
	padding-bottom: 0;
}
.case-info-row dt {
	font-weight: var(--fw-bold);
	color: var(--color-navy);
	white-space: nowrap;
}
.case-info-row dd {
	margin: 0;
	line-height: var(--lh-l);
}
@media (max-width: 1024px) {
	.case-info-row {
		grid-template-columns: 1fr;
		gap: 0;
	}
	.case-info-row + .case-info-row {
		margin-top: 6px;
	}
}

/* ===== _prevention.css ===== */
/* インプラント周囲炎の予防 ---------- */

.prevention h2,
.prevention h3,
.prevention h4 {
	color: var(--color-sub);
}
.prevention .ttl-box {
	border-color: var(--color-sub);
	line-height: 1.95;
}
@media (max-width: 1024px) {
	.prevention .contents-width {
		text-align: center;
	}
}
.prevention-body{
	margin-top: -1.5rem;
	padding-bottom: 40px;
}
@media (max-width: 599px) {
.prevention-body{
	padding-bottom: 30px;
}
}
/* リスクタグ */
.risk-tag {
	display: inline-block;
	border: 2px solid var(--color-sub);
	padding: 1px 14px 1px 10px;
	border-top-right-radius: 300px;
	border-bottom-right-radius: 300px;
}

/* リスクリンク */
.risk-links {
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.risk-links li {
	font-size: var(--fs-m);
	font-weight: var(--fw-bold);
	color: var(--color-sub);
	line-height: var(--lh-l);
	cursor: default;
}

/* セメント画像（figcaptionを下に） */
.prevention-cement-imgs figcaption {
	font-size: var(--fs-s);
	font-weight: var(--fw-regular);
	color: var(--color-font);
	padding-top: 5px;
	padding-bottom: 0;
}

/* 診断図ボックス */
.structure-diagrams {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.diagram-label {
	font-size: var(--fs-s) !important;
	font-weight: var(--fw-bold) !important;
	color: var(--color-main) !important;
	text-align: center;
	line-height: var(--lh-m) !important;
	margin-bottom: 6px;
	background: transparent;
	padding: 0;
}

/* ボトム画像グループ */
.prevention-bottom-imgs {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	gap: 15px;
	align-items: center;
}

.prevention-bottom-imgs figure {
	margin: 0;
}

.prevention-bottom-imgs img {
	width: 100%;
	height: auto;
	display: block;
	-o-object-fit: cover;
	object-fit: cover;
}

/* 右向き三角 */
.prevention-arrow-right {
	width: 0;
	height: 0;
	border-top: 20px solid transparent;
	border-bottom: 20px solid transparent;
	border-left: 25px solid var(--color-main);
	flex-shrink: 0;
}

@media (max-width: 599px) {
	.prevention-bottom-imgs {
		grid-template-columns: 1fr;
	}
	.prevention-arrow-right {
		border-left: 20px solid transparent;
		border-right: 20px solid transparent;
		border-top: 15px solid var(--color-main);
		border-bottom: none;
		margin: 0 auto;
	}
}

/* ===== _plan.css ===== */
/* 最適な治療プランのご提案 ---------- */

/* セクションヘッダー */
@media (max-width: 599px) {
	.prevention .ttl-box{
		text-align: center;
	}
}
.plan-header {
	border-bottom-left-radius: 120px;
}
@media (max-width: 599px) {
	.plan-header {
		border-bottom-left-radius: 0;
		border-bottom-right-radius: 120px;
	}
}
.plan-compare-list{
	margin-top: 15px;
}
.plan-main-ttl{
	line-height: var(--lh-s);
	color: var(--color-navy);
	border-bottom: 3px solid var(--color-navy);
	padding-bottom: 10px;
}
/* ブロック共通 */
.plan-block {
	background: var(--color-white);
	border-radius: 5px;
	box-sizing: border-box;
}

/* 保証タグ */
.guarantee-tag {
	display: inline-block;
	font-size: var(--fs-s);
	font-weight: var(--fw-bold);
	color: var(--color-main);
	border: 1.5px solid var(--color-main);
	padding: 1px 10px;
	border-radius: 3px;
	line-height: var(--lh-m);
}
.guarantee-tag--sm {
	font-size: var(--fs-ss);
	padding: 1px 8px;
}
.guarantee-tag--green {
	border: none;
	background: var(--color-bg-green);
	color: var(--color-main);
}

/* ネオデント価格ブロック */
.plan-block .plan-col{
	display: flex;
	align-items: flex-start;
	gap: 10px;
	width: -moz-max-content;
	width: max-content;
}
@media (max-width: 1024px) {
	.plan-block .plan-col{
		width: 100%;
		display: grid;
		grid-template-columns: 1fr;
	}
}
.plan-block .plan-col img{
	width: 294px;
	height: auto;
	-o-object-fit: contain;
	object-fit: contain;
}
@media (max-width: 599px) {
	.plan-block .plan-col img{
		width: 100%;
	}
}
/* 上部構造リスト */
.plan-crown-list {
	display: flex;
	flex-direction: column;
}
.plan-crown-item {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 28px;
}
@media (max-width: 1024px) {
	.plan-crown-item { grid-template-columns: 1fr; gap: 10px; }
}

.crown-item-side {
	display: flex;
	flex-direction: column;
	gap: 6px;
	align-items: flex-start;
}
.crown-name {
	font-size: var(--fs-ml) !important;
	margin-bottom: 0;
}
.crown-price {
	padding-left: 1rem;
}
.box-green{
	padding: 20px;
	box-sizing: border-box;
}
/* 価格DLリスト */
.price-dl {
	display: flex;
	flex-direction: column;
	margin: 0;
	padding: 0;
}
.price-dl > div {
	display: flex;
	align-items: baseline;
}
.price-dl dt {
	flex: 1;
	display: flex;
	align-items: baseline;
	gap: 4px;
	white-space: nowrap;
}
.price-dl dt::after {
	content: '';
	flex: 1;
	height: 1px;
	background: var(--color-font);
	min-width: 20px;
	align-self: center;
}
.price-dl dd {
	white-space: nowrap;
	margin: 0;
	padding-left: 6px;
}
.price-total-row {
	border-top: 1px solid var(--color-font) !important;
	border-bottom: none !important;
	justify-content: flex-end;
	gap: 0.5rem;
}
.price-total-row dt,
.price-total-row dd {
	flex: unset;
}
.price-total-row dt::after {
	display: none;
}


/* ブリッジ価格テーブル */
.plan-price-tables {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px 20px;
	padding: 20px;
	box-sizing: border-box;
	align-items: start;
	max-width: 100%;
}
.plan-price-tables-od{
	gap: 0 20px;
}
@media (max-width: 1120px){
	.plan-price-tables {
		grid-template-columns: 1fr;
		gap: 15px;
	}
	.plan-price-tables-od{
		gap: 0;
	}
	.plan-price-tables-od .price-table-head{
		margin-bottom: 5px;
	}
	.plan-price-tables-od .wrap{
		margin-bottom: 10px;
	}
}
@media (max-width: 599px) {
	.plan-price-tables {
		padding: 13px 5%;
	}
	.plan-price-tables-od{
		gap: 0;
	}
	.plan-price-tables-od .plan-price-table{
		margin-top: 0;
	}
	/* SP：2行レイアウト（名前→改行→線＋価格） */
	.price-dl > div {
		flex-wrap: wrap;
		align-items: center;
		gap: 0;
	}
	.price-dl dt {
		flex: 0 0 100%;
		white-space: normal;
	}
	.price-dl dt::after {
		display: none;
	}
	.price-dl dd {
		flex: 1;
		display: flex;
		align-items: center;
		padding-left: 0%;
		box-sizing: border-box;
		white-space: normal;
		gap: 6px;
	}
	.price-dl dd::before {
		content: '';
		flex: 1;
		min-width: 0;
		height: 2px;
		background-image: radial-gradient(circle, var(--color-font) 1.5px, transparent 1.5px);
		background-size: 6px 2px;
		background-repeat: repeat-x;
	}
	.price-dl dt,.price-dl dd{
		line-height: 1.6!important;
	}
	/* 合計行：PCと同じ横並び右寄せ */
	.price-total-row {
		flex-wrap: nowrap;
		padding-top: 5px;
	}
	.price-total-row dt {
		flex: unset;
		white-space: nowrap;
	}
	.price-total-row dd {
		flex: unset;
		display: block;
		padding-left: 0;
		white-space: nowrap;
	}
	.price-total-row dd::before {
		display: none;
	}
}

/* 右テーブル：枠あり */
.plan-price-table--box {
	border: 1px solid var(--color-font);
	padding: 15px;
	box-sizing: border-box;
}

.plan-od-title {
	grid-column: 1 / -1;
	border-bottom: 1.5px solid var(--color-font);
	padding-bottom: 5px;
	margin-bottom: 10px;
}

/* オーバーデンチャーテーブル */
.plan-od-tables {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
	align-items: start;
}
@media (max-width: 1024px) {
	.plan-od-tables { grid-template-columns: 1fr; }
}

/* 分割払い */
.plan-installment {
	padding: 10px;
	box-sizing: border-box;
}

/* 医療費控除 */
.plan-tax-wrap {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 20px;
	align-items: start;
}
@media (max-width: 1024px) {
	.plan-tax-wrap { grid-template-columns: 1fr; }
}
@media (max-width: 599px) {
	.plan-tax-wrap { grid-template-columns: 1fr; }
}

.plan-tax-wrap .tax-badge {
	width: 157px;
	height: 157px;
	border-radius: 50%;
	background: var(--color-bg-cyan);
	border: 1px solid var(--color-line);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
@media (max-width: 599px) {
	.plan-tax-wrap .tax-badge {
		margin: 0 auto;
	}
}
.plan-tax-wrap .tax-badge p{
	color: var(--color-font);
}

.plan-tax-note {
	border: 1px solid var(--color-line);
	padding: 10px;
	box-sizing: border-box;
}
.plan-block .plan-od{
	padding: 10x;
}

/* ===== _faq.css ===== */
/* よくある質問 ---------- */

.faq {
	background: var(--color-navy);
}

/* セクションタイトル：ttl-boxをwhiteで上書き */
@media (max-width: 1024px) {
	.faq-ttl { font-size: var(--fs-l); }
}
@media (max-width: 599px) {
	.faq-ttl { font-size: var(--fs-lm); }
}

/* リスト */
.faq-list {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

/* カード */
.faq-item {
	background: var(--color-white);
	border-radius: 10px;
	padding: 25px 30px;
	display: flex;
	flex-direction: column;
	gap: 15px;
	box-sizing: border-box;
}
@media (max-width: 599px) {
	.faq-item { padding: 20px; gap: 12px; }
}

/* Q/A 行 */
.faq-q,
.faq-a {
	display: flex;
	align-items: flex-start;
	gap: 15px;
}
@media (max-width: 599px) {
	.faq-q, .faq-a { gap: 10px; }
}
.faq-question{
	margin-top: 0.25em;
}

/* バッジ */
.faq-badge {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	min-width: 32px;
	font-size: var(--fs-ml);
	font-weight: var(--fw-bold);
	border-radius: 4px;
	line-height: 1;
}

.faq-badge--q {
	background: var(--color-main);
	color: var(--color-white);
}

.faq-badge--a {
	background: var(--color-white);
	color: var(--color-main);
	border: 2px solid var(--color-main);
}

/* ===== _price.css ===== */
/* インプラント料金表 ---------- */

.price-section {
	position: relative;
	overflow: hidden;
}
.price-section::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: url('../../images/price/price_bg.webp');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	filter: blur(4px);
	transform: scale(1.05);
}
.price-section > * {
	position: relative;
	z-index: 1;
}

.fee-card-list {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.fee-card-list li {
	background-color: rgba(255,255,255,0.8);
	backdrop-filter: blur(4px);
}
/* カード外枠 */
.fee-card {
	overflow: hidden;
}

/* ヘッダーバー */
.fee-card-header {
	background: var(--color-main);
	text-align: center;
	padding: 10px;
	margin-bottom: 5px;
	box-sizing: border-box;
	border: 1.5px solid var(--color-main);
}

/* カード本体 */
.fee-card-body {
	box-sizing: border-box;
}

/* 価格ボックス（内枠） */
.price-box {
	border: 1.5px solid var(--color-main);
	padding: 15px 20px;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	box-sizing: border-box;
}

/* 価格テキスト行 */
.price-main {
	display: flex;
	align-items: baseline;
	justify-content: center;
	gap: 4px;
	flex-wrap: wrap;
	color: var(--color-main);
	font-weight: var(--fw-bold);
}

@media (max-width: 599px) {
	.price-main {
		display: block;
		text-align: center;
	}
	.price-main .sp-br {
		display: inline;
	}
	.fee-card-note {
		font-size: var(--fs-s);
	}
}

/* カード下の注釈 */
.fee-card-note {
	color: var(--color-font);
	line-height: var(--lh-l);
}

/* ===== _consultation.css ===== */
/* ご相談 ---------- */

.consultation h3,
.consultation p,
.consultation a {
	color: var(--color-white);
}

/* 画像を左カラムの高さいっぱいに */
.consultation .col-62-38 {
	align-items: stretch;
}
@media (max-width: 1024px) {
	.consultation .col-62-38 {
		align-items: start;
	}
}
.consultation .col-imgs {
	height: 100%;
}
.consultation .col-imgs figure {
	height: 100%;
}
.consultation .col-imgs img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	display: block;
}

/* 外部リンク */
.consultation-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: var(--fs-s);
	font-weight: var(--fw-regular);
	color: var(--color-white);
	text-decoration: underline;
	line-height: var(--lh-m);
}
.consultation-link::after {
	content: '';
	display: inline-block;
	width: 16px;
	height: 16px;
	background-image: var(--icon-blank-url);
	background-size: contain;
	background-repeat: no-repeat;
	flex-shrink: 0;
}

/* ===== _contact.css ===== */
#contact .contact-head h3,
#contact .ct-ttl{
	color: var(--color-sub);
}
.trouble-consultation{
	display: flex;
	align-items: center;
	gap: 40px;
}
.trouble-consultation .p-director{
	flex-basis: 300px;
}
.circle-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}

.circle-wrap {
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	background: var(--color-bg-beige);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 5px;
	box-sizing: border-box;
	text-align: center;
	max-width: 215px;
}
.circle-wrap p{
	line-height: var(--lh-m);
}
@media (max-width: 1024px) {
	.trouble-consultation{
		gap: 10px;
	}
	.trouble-consultation .p-director{
		flex-basis: 40%;
	}
	.circle-wrap{
		padding: 12px;
	}
}
@media (max-width: 599px) {
	.trouble-consultation{
		flex-direction: column;
	}
	.contact .p-director{
		max-width: 70%;
		margin: 0 auto;
	}
	.contact .trouble-consultation {
		max-width: 100%;
	}
	.circle-grid {
		gap: 10px;
		width: 100%;
	}
	.circle-wrap {
		max-width: none;
		width: 100%;
		padding: 14px;
	}
	.circle-wrap p {
		font-size: var(--fs-s);
	}
}
.resolve-stack {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0;
}
.resolve-stack .ttl-box {
	margin-top: -3px;
	color: var(--color-sub);
	border-color: var(--color-sub);
	border-width: 1.5px;
}

/* 解決タグ */
.resolve-tag {
	display: inline-block;
	background: var(--color-bg-green);
	padding: 3px 12px;
	border-radius: 3px;
	margin-bottom: 8px;
}

/* 懸念リスト */
@media (max-width: 599px) {
	.contact-staffimg{
		gap: 30px;
	}
}
.contact-concerns {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.contact-concerns li {
	position: relative;
	padding-left: 1.6em;
	line-height: var(--lh-xxl);
}
@media (max-width: 599px) {
	.contact-concerns li {
		line-height: var(--lh-l);
	}
}
.contact-concerns li::before {
	content: '○';
	position: absolute;
	left: 0;
	color: var(--color-main);
	font-weight: var(--fw-bold);
}

/* CTAボックス */
.contact-cta {
	border: 2px solid var(--color-sub);
	padding: 30px 10px;
	text-align: center;
}
/* 医師プロフィール */
.doctor-profile {
	display: grid;
	grid-template-columns: 0.4fr 1fr;
	gap: 20px;
	align-items: start;
}
.doctor-profile:first-child { border-top: none; padding-top: 0; }
@media (max-width: 1024px) {
	.doctor-profile { grid-template-columns: 140px 1fr; gap: 20px; }
}
@media (max-width: 599px) {
	.contact-cta {
		padding: 20px;
	}
	.doctor-profile { grid-template-columns: 1fr; }
}

.doctor-photo {
	margin: 0;
}
.doctor-photo img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
	display: block;
}

/* 資格・経歴グリッド */
.doctor-cred-grid {
	display: flex;
	justify-content: space-between;
	gap: 10px;
}
@media (max-width: 1024px) {
	.doctor-cred-grid {
		display: grid;
		grid-template-columns: 1fr;
	}
}

.doctor-cred-grid li {
	line-height: var(--lh-l);
	font-size: var(--fs-s);
	color: var(--color-font);
}
.doctor-name span{
	margin-left: 1rem;
}
.doctor-info p,
.doctor-info .doctor-name,
.doctor-info .doctor-name span{
	color: var(--color-font);
}
/* 経歴年号 */
.doctor-history li {
	display: grid;
	grid-template-columns: 4.5rem 1fr;
	align-items: flex-start;
}
.cred-year {
	white-space: nowrap;
}
.contact-tag{
	background-color: #005DAC;
	padding: 10px 20px;
}

/* 院長メッセージ */
.director-message {
	background-color: var(--color-bg-cyan);
	border-radius: 4px;
	padding: 28px 32px 24px;
}
.director-message-section {
	font-size: var(--fs-s);
	line-height: var(--lh-l);
}
.director-message-section .ttl-border-l{
	font-size: var(--fs-ml);
	margin-bottom: 6px;
}
.director-message-sig {
	margin-top: 20px;
	font-size: var(--fs-s);
	font-weight: var(--fw-bold);
	color: var(--color-navy);
	text-align: right;
}
@media (max-width: 599px) {
	.director-message {
		padding: 20px 16px 16px;
	}
}

/* ===== _access.css ===== */
/* お問い合わせCTA ---------- */

.contact-cta-ttl {
	border-color: var(--color-white);
}

/* インラインCTA（3か所共通） */
.inline-cta {
	padding: 20px 0;
}
.inline-cta-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 16px;
}
.inline-cta-msg {
	display: block;
}
.inline-cta-btns {
	display: flex;
	gap: 12px;
}
@media (max-width: 599px) {
	.inline-cta {
		padding: 16px 0;
	}
	.inline-cta-btns {
		flex-direction: column;
		width: 100%;
	}
}
.contact-cta-section .cta-ttl{
	color: var(--color-white);
	text-align: center;
}
@media (max-width: 599px) {
	.contact-cta-section{
		padding-top: 30px;
	}
	.contact-cta-section .cta-ttl{
		font-size: var(--fs-m);
	}
}
.cta-btn-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}
@media (max-width: 1024px) {
	.cta-btn-grid { grid-template-columns: 1fr; }
}
@media (max-width: 599px) {
	.cta-btn-grid { grid-template-columns: 1fr; }
}

.cta-btn {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
	background: transparent;
	border: 2px solid var(--color-white);
	border-radius: 8px;
	padding: 20px 40px;
	text-decoration: none;
	box-sizing: border-box;
	transition: opacity 0.2s;
}

.cta-btn-main {
	font-size: var(--fs-l);
	font-weight: var(--fw-bold);
	color: var(--color-white);
	line-height: var(--lh-s);
}
@media (max-width: 1024px) { .cta-btn-main { font-size: var(--fs-lss); } }
@media (max-width: 599px)  { .cta-btn-main { font-size: var(--fs-ml); } }

.cta-btn-sub {
	font-size: var(--fs-s);
	color: var(--color-white);
	line-height: var(--lh-m);
	margin-top: 4px;
}

.cta-btn-icon {
	flex-shrink: 0;
	width: 50px;
	height: 50px;
	display: block;
}
.btn-tel .cta-btn-icon {
	width: 40px;
	height: 40px;
}
.cta-btn-icon img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
}

/* アクセス/診療時間 ---------- */

.access-ttl {
	display: flex;
	align-items: center;
	gap: 5px;
	font-size: var(--fs-xl);
	font-weight: var(--fw-bold);
	color: var(--color-main);
	letter-spacing: var(--ls-tight);
}
@media (max-width: 1024px) { .access-ttl { font-size: var(--fs-l); } }
@media (max-width: 599px)  { .access-ttl { font-size: var(--fs-lm); } }

.access-ttl-icon {
	width: 32px;
	height: 40px;
	flex-shrink: 0;
	color: var(--color-main);
}

/* アクセス マップカラム 6:4 */
.access-col {
	display: grid;
	grid-template-columns: 0.5fr 0.5fr;
	gap: 40px;
}
@media (max-width: 1024px) {
	.access-col {
		gap: 30px;
	}
}
@media (max-width: 599px) {
	.access-col {
		grid-template-columns: 1fr;
	}
}
/* 地図 */
.access-map iframe {
	width: 100%;
	height: 100%;
	min-height: 260px;
	display: block;
}

/* クリニック情報 */
.access-clinic-name {
	font-size: var(--fs-ml);
	font-weight: var(--fw-bold);
	color: var(--color-main);
}

.access-detail li {
	font-size: var(--fs-m);
	line-height: var(--lh-l);
	color: var(--color-font);
}

/* 診療時間テーブル */
.hours-table-wrap {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.hours-table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 6px 8px;
}
.hours-table th,
.hours-table td {
	text-align: center;
	padding: 10px 4px;
	border-bottom: 1px solid var(--color-line);
	font-size: var(--fs-ml);
	color: var(--color-main);
	font-weight: var(--fw-bold);
}
.hours-table th {
	font-weight: var(--fw-bold);
}
.hours-table th:first-child,
.hours-table td:first-child {
	text-align: left;
	padding-left: 0;
}
.hours-time {
	font-weight: var(--fw-bold);
	white-space: nowrap;
}
@media (max-width: 599px) {
	.hours-table { border-spacing: 3px 6px; }
	.hours-table th,
	.hours-table td { font-size: var(--fs-s); padding: 8px 2px; }
}
