/* ========================
基本スタイル
===========================*/
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    width: 100%;
    font-size: 62.5%;
}
body {
    max-width: 100%;
    width: 100%;
    font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "MS PMincho", serif;
    line-height: 1.6;
    margin: 0 auto;
    padding: 0;
}
main {
    padding-bottom: 120px;
}
a {
    text-decoration: none;
    color: #3a302e;
}
ruby {
    font-size: 2rem;
}
rt {
    font-size: 1.2rem;
    color: #666;
}
.pcObj {
    display: block;
}
.spObj, .spObj2 {
    display: none;
}
.center {
    text-align: center !important;
}
.m-auto {
    margin: 0 auto;
}
.catch_txt {
    font-size: 2rem;
}
    main {
        padding-bottom: 60px;
    }
    .pcObj {
        display: none;
    }
    .spObj {
        display: inline-block;
    }
    .spObj2 {
        display: inline-block;
    }

/*list disc*/
.list__disc {
    margin-left: 20px;
}
.list__disc li {
    list-style: disc;
}
p {
    font-size: 1.75rem;
    line-height: 1.8;
}
    p {
        font-size: 1.5rem;
    }

img {
    max-width: 100%;
    vertical-align: bottom;
}

/* ========================
パンくず
===========================*/
.breadcrumb {
    max-width: 1200px;
    margin: 20px auto 0;
	padding: 0 30px;
}
.breadcrumb ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
}
.breadcrumb ul li {
	font-size: 1.5rem;
}
.breadcrumb ul li a {
    color: #000;
    text-decoration: none;
}
.breadcrumb li:not(:last-child)::after {
    display: inline-block;
    margin: 0 1.5rem;
    content: "＞";
}
	.breadcrumb {
    	margin: 0;
    	padding: 0 20px;
	}	
	.breadcrumb li:not(:last-child)::after {
	    margin: 0 1rem;
	}

/* ========================
ヘッダー
===========================*/
.header {
    background: linear-gradient(to right, #e1dbca, #d6cdbc, #cbbead); /* ゴールドグラデーション */
    color: rgb(90, 72, 53);
    text-align: center;
    padding: 160px 20px;
    font-size: 2.5rem;
    font-weight: bold;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
}
.header h1 {
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}
    .header {
        padding: 80px 20px;
    }
    .header h1 {
        margin: 0 auto;
        text-align: center;
        font-size: min(8vw, 4rem);
    }

/* SVGの波をヘッダー下部に配置 */
.header-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px; /* カーブの高さ */
    z-index: 3;
}
.access-patern__btm p {
    font-size: min(4vw, 16px) !important;
}

/* ========================
マージン調整
===========================*/
.mt20 {
    margin-top: 20px !important;
}
.mt40 {
    margin-top: 40px;
}
.mt80 {
    margin-top: 80px !important;
}
.mt120 {
    margin-top: 120px !important;
}
.mb80 {
    margin-bottom: 80px;
}
/* ========================
文字色
===========================*/
.highlight {
    font-weight: bold;
    color: #6a4d1d;
}
/* ========================
notice
===========================*/
.notice_right {
    text-align: right;
    font-size: 1.6rem;
}

/* ========================
目次
===========================*/
.mokuji__imgbox {
	max-width: 1000px;
    border: 1px solid #d6cdbc;    
    margin: 40px auto;
    box-shadow: 0 0 15px rgba(0,0,0,.1);
}
.mokuji__title {
    background: linear-gradient(to right, #e1dbca, #d6cdbc, #cbbead);
    color: #6a4d1d;
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    padding: 10px;
}
.mokuji__imgbox-inner {
    display: flex;
    justify-content: space-between;
	align-items: center;
    padding: 20px 40px;
}
.mokuji__imgbox-pic {
	width: 36%;
}
.mokuji__list {
    width: 60%;
    list-style: none;
}
.mokuji__list li {
    position: relative;    
	margin-bottom: 5px;
    padding-left: 2.5rem;
    font-size: 1.875rem;
    color: #5a4835;
}
.mokuji__list li::before {
    position: absolute;	
    content: "●";
    left: 0;
    top: 0;    
	color: #e8d2b5;
}
	.mokuji__imgbox {
		margin: 30px auto 0;
		box-shadow: 0 0 10px rgba(0,0,0,.1);
	}
	.mokuji__title {
		font-size: 1.875rem;
		padding: 10px;
	}
	.mokuji__imgbox-inner {
		display: block;
		padding: 20px;
	}
	.mokuji__imgbox-pic {
		display: none;
	}
	.mokuji__list {
		width: 100%;
	}
	.mokuji__list li {
		margin-bottom: 5px;
		padding-left: 2rem;
		font-size: 1.6rem;
	}

/*mokuji_end*/
/* ========================
Section
title
===========================*/
.section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "MS PMincho", serif;
    font-size: 4rem;
    font-weight: bold;
    text-align: center;
    color: #705d48;
    margin: 40px 0;
    position: relative;
}
.section-title.mt0 {
    margin-top: 0;
}
.section-title.mb0 {
    margin-bottom: 0;
}
.section-title::before, .section-title::after {
    content: "";
    flex: 1;
    height: 1px;
    background-color: #d6cdbc;
    margin: 0 80px 0 0;
}
.section-title::after {
    margin: 0 0 0 80px;
}
.section-description {
    text-align: center;
    font-size: 16px;
    color: #333;
    margin-bottom: 20px;
}
    .section-title {
        font-size: 2.5rem;
    }
    .section-title::before {
        margin: 0 40px 0 0;
    }
    .section-title::after {
        margin: 0 0 0 40px;
    }

/* ========================
TYPE1
文字＋画像デザイン（プロフィール用）
===========================*/
.type1__container {
    max-width: 1200px;
    background: #fff;
    padding: 30px 20px;
    margin: auto;
}
    .type1__container {
        padding: 0 20px;
    }

/* グリッドレイアウト */
.type1__content {
    display: grid;
    grid-template-columns: 1fr 360px; /* 左側は可変、右側は画像サイズ固定 */
    grid-template-rows: auto;
    gap: 20px;
}
/* テキスト部分（左側） */
.type1__text {
    display: flex;
    flex-direction: column;
    justify-content: start; /* 上部から開始 */
    font-size: 1.75rem;
}
.type1__text-highlights {
    color: #6a4d1d;
}
/* 画像を右側に配置 */
.type1__profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 360px;
}
/* 画像のスタイル */
.type1__profile img {
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
}
/* 名前のスタイル（画像の下に配置） */
.type1__profile-name {
    margin-top: 10px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
}
/* スマホ対応（縦レイアウトにする） */
    .type1__content {
        display: block;
    }
    .type1__content.doctor_first {
        display: flex;
        flex-wrap: wrap;
    }
    .type1__profile {
        width: 100%;
        margin: 0 auto;
        text-align: center;
    }
    .type1__profile img {
        width: 87.5%;
    }
    .type1__text {
        width: 100%;
    }
    .type1__content.doctor_first .type1__text {
        order: 2;
    }

/* .profile {
  width: 200px;
  text-align: center;
  float: right;
  margin-left: 20px;
}

.profile img {
  width: 100%;
  height: auto;
  border-radius: 10px;
} */
/* ========================
TYPE2
画像＋文字デザイン（プロフィール用）
===========================*/
.type2__container {
    max-width: 1100px;
    margin: auto;
    padding: 30px 20px;
    display: flex;
    align-items: center;
    gap: 40px;
}
    .type2__container {
        padding: 0 20px;
    }

.type2__profile-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.type2__profile-image img {
    width: auto;
    height: auto;
    border-radius: 15px;
}
.type2__profile-text {
    margin-top: 10px;
}
.type2__profile-text p {
    font-size: 2rem;
}
.type2__profile-post {
    font-size: 1.4rem;
    margin-right: 10px;
}
[data-ruby] {
    position: relative;
}
[data-ruby]::before {
    content: attr(data-ruby);
    position: absolute;
    top: -1.6em;
    left: 0;
    right: 0;
    margin: auto;
    font-size: 1rem;
}
.type2__greeting {
    flex: 1;
    text-align: left;
    font-size: 1.8em;
    line-height: 1.8;
}
    .type2__container {
        flex-direction: column;
        text-align: center;
    }
    .type2__profile-image img {
        width: 87.5%;
        margin: auto;
    }

/* ========================
Profile用デザイン
２カラム
===========================*/
.profile-info {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2カラムレイアウト */
    gap: 30px; /* カラム間の余白 */
    max-width: 1200px;
    margin: auto;
    padding: 20px 0;
}
.column {
    padding: 20px;
    border-radius: 8px;
}
.profile-info h2 {
    width: 70%;
    font-size: 2.5rem;
    padding: 6px 12px;
    margin-bottom: 15px;
    background: #f9f8f8;
    color: #545454;
}
ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
li {
	font-size: 1.5rem;
}
.profile-year li {
    display: flex;
    justify-content: space-between;
}
.profile-year li span {
    width: 60px;
}
.profile-year li div {
    width: calc(100% - 60px);
}
/* スマホ対応 */
    .profile-info {
        grid-template-columns: 1fr; /* 1カラムに変更 */
    }
    .profile-info .column {
        padding: 0 20px;
    }
    .profile-info .column:nth-of-type(1) {
        margin-bottom: -20px;
    }
    .profile-info h2 {
        width: 100%;
        font-size: min(4vw, 20px);
        text-align: left;
    }
    .profile-info ul li {
        font-size: min(3.5vw, 16px);
        padding: 0;
    }
    .profile-year li span {
        width: 15vw;
    }
    .profile-year li div {
        width: calc(100% - 15vw);
    }

/* ========================
１カラムボックスデザイン

========================*/
.col1-box {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}
.col1-box.mt0 {
    margin-top: 0;
}
.col1-box__container {
    background-color: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}
.col1-box__container h2 {
    font-size: 3rem;
    margin-bottom: 10px;
    color: #524636;
}
.col1-box__container h2 span {
    font-size: 2.2rem;
}
.col1-box__container h3 {
    font-size: 1.8em;
}
.col1-box__container hr {
    width: 80%;
    border: 1px solid #8d6e63;
    margin: 10px auto;
}
.col1-box__container p {
    font-size: 1.75rem;
    line-height: 1.8;
    letter-spacing: 0.12rem;
    margin: 30px 40px;
    text-align: left;
}
.col1-box__container-list {
    width: 600px;
    margin: 0 auto;
    text-align: left;
}
.col1-box__container-list li {
    font-size: 2.2rem;
}
.col1-box__container-subcatch {
    margin: 0 auto;
    font-size: 2.2rem !important;
    text-align: center !important;
}
    .col1-box {
        margin: 10px auto 10px;
    }
    .col1-box__container {
        padding: 20px 10px;
    }
    .col1-box__container h2 {
        font-size: 2.5rem;
    }
    .col1-box__container h2 span {
        font-size: 2rem;
    }
    .col1-box__container p {
        margin: 15px 10px;
        font-size: 1.5rem;
        line-height: 1.5;
    }
    .col1-box__container-list {
        width: 100%;
        margin: 0 auto;
        text-align: left;
    }
    .col1-box__container-list li {
        font-size: 1.8rem;
    }

    .col1-box__container h2 {
        font-size: 2rem;
    }

/* ========================
１カラムボックスデザイン
profile
========================*/
.col1-box__profile {
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}
.col1-box__img {
    width: 50%;
    margin: 0 auto;
}
.col1-box__txt {
    text-align: center;
}
.col1-box__profile {
    font-size: 3rem;
}
.col1-box__btn {
    width: 60%;
    margin: 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.col1-box__btn a {
    display: block;
}
    .col1-box__btn {
        width: 100%;
    }

/* ========================
flow

========================*/
/* 
/* ========================
flow
========================*/
.flow-list {
    list-style: none;
    padding: 0;
    max-width: 400px;
    width: 90%; /* スマホでも適切な幅にする */
    margin: auto;
    position: relative;
}
.flow-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 2.5rem;
    position: relative;
    margin-bottom: 20px;
    line-height: 1.4; /* 読みやすさ向上 */
}
.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(200deg, #a89752, #d4c588, #a89752);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2em;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}
.flow-list li::before {
    content: "";
    position: absolute;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, #a89752, #d4c588, #a89752);
    left: 20px;
    top: 45px;
}
.flow-list li:last-child::before {
    display: none;
}
    .flow-list {
        width: 90%;
        max-width: 350px;
    }
    .flow-list li {
        font-size: 1.8rem;
        gap: 10px;
    }
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 3rem;
    }
    .flow-list li::before {
        left: 17px;
    }

/* ========================
flow2

========================*/
.flow2 {
    width: 95%;
    max-width: 1200px;
    margin: 0 auto 30px;
    background: white;
    padding: 0 20px;
}
.flow2.mt0 {
    margin-top: 0;
}
.flow2.mb0 {
    margin-bottom: 0;
}
.flow2-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    gap: 60px;
}
    .flow2-section {
        gap: 0 4vw;
        margin-bottom: 60px;
    }

.flow2-img-container {
    position: relative;
    width: 50%;
}
.flow2-text {
    width: 50%;
}
.flow2-text h3 {
    margin-bottom: 10px;
    font-size: 2.75rem;
    color: #545454;
}
.flow2-text p {
    margin-bottom: 15px;
    font-size: 1.75rem;
    color: #545454;
}
.flow2-img-container img {
    width: 100%;
    border-radius: 5px;
    position: relative;
    z-index: 2;
}
.flow2-image-background {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #d4cfc7;
    top: 10px;
    left: 20px;
    border-radius: 5px;
    z-index: 1;
}
.flow2-section .text {
    width: 55%;
}
.flow2-splaceholder {
    width: 40%;
    height: 200px;
    background: #ccc;
    border-radius: 5px;
}
.checklist {
    list-style: none;
    padding: 0;
}
.checklist li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 8px;
    cursor: pointer;
	font-size: 1.75rem;
}
.checklist li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 20px;
    height: 20px;
    border: 2px solid #705d48;
    border-radius: 4px;
    background-color: #705d48;
    transition: background-color 0.2s, border-color 0.2s;
}
.checklist li.checked::before {
    background-color: #705d48;
    border-color: #705d48;
}
.checklist li::after,
.checklist li.checked::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 6px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}
    .flow2 {
        width: 100%;
        margin: 0 auto;
        padding: 0 20px;
    }
    .flow2-section {
        flex-wrap: wrap;
        margin-bottom: 50px;
        gap: 0;
    }
    .flow2-section:nth-of-type(even) {
        flex-direction: column-reverse;
    }
    .flow2-text {
        width: 100%;
        margin: 0 auto;
    }
    .flow2-text h3 {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    .flow2-text p {
        font-size: 1.5rem;
    }
    .flow2-img-container {
        width: 100%;
    }
    .reverse {
        margin: 0 0 60px;
        flex-direction: column;
    }
    .flow2-image-background {
        left: 10px;
    }

	.checklist li {
		font-size: 1.5rem;
	}


/* ========================
notice
========================*/
.notice-section {
    text-align: center;
    margin-bottom: 40px;
}
.notice-section h2 {
    font-size: 22px;
    margin-bottom: 15px;
}
.notice-section ul {
    margin: 0 auto;    
    text-align: left;
    list-style: disc;
}
.notice-section ul li {
    font-size: 1.875rem;
	margin-left: 1.875rem;
}
    .notice-section, 
	.notice-section ul {
        width: 100%;
        margin: 0 auto;
    }
    .notice-section ul li {
        font-size: 1.5rem;
        margin-left: 1.75rem;
    }

/* ========================
philosophy

========================*/
.philosophy-section {
    text-align: center;
    margin: 40px auto;
}
.philosophy-box {
    display: inline-block;
    background: linear-gradient(to right, #F2F2F2, white);
    padding: 50px 40px;
    font-size: 3.33rem;
    font-weight: bold;
    color: #524636;
    border-radius: 5px;
    text-align: center;
}
    .philosophy-box {
        font-size: 2.2rem;
        padding: 30px 20px;
    }

/* ========================
goldnum-list
ゴールド丸ナンバーリスト
========================*/
.goldnum-list-list {
    list-style: none;
    padding: 0;
    max-width: 620px;
    margin: 0 auto 45px;
    position: relative;
}
.goldnum-list-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 2.5rem;
    position: relative;
    margin-bottom: 20px;
    text-align: left;
}
.goldnum-list-list li {
    display: flex;
    justify-content: space-between;
    font-size: 2.5rem;
    position: relative;
    margin-bottom: 10px;
    text-align: left;
}
.goldnum-list-list li span.step-number {
    width: 40px;
}
.goldnum-list-list li div {
    width: calc(100% - 55px);
}
    .goldnum-list-list li {
        padding-bottom: 10px !important;
    }
    .goldnum-list-list li span.step-number {
        width: 35px;
    }
    .goldnum-list-list li div {
        width: calc(100% - 45px);
    }

.goldnum-list-list2 {
    list-style: none;
    padding: 0;
    max-width: 620px;
    margin: auto;
    position: relative;
}
.goldnum-list-list2 li {
    display: block;
    /* align-items: center;
  gap: 15px;
  font-size: 2.5rem;
  position: relative;
  margin-bottom: 20px;
  text-align: left; */
}
.step-number2 {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(200deg, #a89752, #d4c588, #a89752);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2em;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}
    .goldnum-list-list {
        padding: 0 20px;
    }
    .goldnum-list-list li {
        font-size: 1.5rem;
        margin-bottom: 0;
        padding: 2px 0;
    }

/* ========================
images__box
========================*/

.images_box-section {
    display: flex;
    align-items: center;
    justify-content: center;
    /* margin-bottom: 40px; */
}
.images_box-placeholder img {
    width: 100%;
    max-width: 800px;
    height: auto;
}
.images_box-title {
    margin-top: 10px;
    font-size: 1.875rem;
    color: #6b4f26;
    text-align: center;
}
.images_info-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    margin-top: 40px;
}
.images_info-card {
    width: calc(50% - 15px); /* 2枚ずつ並べる */
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 10px rgba(0,0,0,.1);
    overflow: hidden;
}
.images_info-card-header {
    background: #f5f0e6;
    padding: 25px 0 0;
    font-size: min(2.5vw,2.4rem);
    font-weight: bold;
    color: #545454;
}
.images_info-card-image {
    background: #f5f0e6;
    padding: 20px;
    flex-grow: 1; /* 画像部分が均一になるようにする */
}
.images_info-card img {
    width: 100%;
    height: min(25vw,300px); /* ここで画像の高さを固定（調整可能） */
    object-fit: cover; /* 画像の比率を維持しつつ切り抜く */
    border-radius: 5px;
    background: #f5f0e6;
}
/*テキスト高さが長い時*/
.images_info-card-text {
    background: white;
    padding: 20px;
    font-size: 1.75rem;
    color: #333;
    text-align: left;
}
/*テキスト高さが短い時*/
.images_info-card-textshort {
    background: white;
    padding: 20px;
    font-size: 1.75rem;
    color: #333;
    text-align: left;
}
    .images_info-cards {
        flex-direction: column;
        margin-top: 20px;
    }
    .images_info-card {
        width: 100%;
    }
    .images_info-card-header {
        font-size: 2rem;
    }
    .images_box-title {
        font-size: 1.75rem;
    }
	.images_info-card img {
		height: min(50vw,300px);
	}

    .images_info-card-header br {
        display: none;
        line-height: 1.5;
    }

/* ========================
symptoms

========================*/
.symptoms {
    width: 80%;
    max-width: 1000px;
    margin: 50px auto;
    background: white;
    padding: 20px;
}
.progression-section {
    overflow-x: auto;
    white-space: nowrap;
    padding: 10px 0;
    margin-bottom: 30px;
    text-align: center;
}
.progression-section img {
    width: 100%;
    max-width: 1200px;
    display: block;
    margin: 0 auto;
}
.symptoms__section-description {
    font-size: 2.4rem;
    text-align: center;
}
    .symptoms {
        width: 100%;
    }
    .progression-section {
        display: flex;
        overflow-x: scroll;
        scroll-snap-type: x mandatory;
        gap: 10px;
        padding: 10px;
        display: none;
    }
    .progression-section img {
        width: auto;
        height: auto;
        scroll-snap-align: center;
    }

/* ========================
2カラム（左文章＋画像　複数列）
layout2col
========================*/
.layout2col {
    max-width: 1100px;
    margin: auto;
}
.layout2col__stage {
    display: flex;
    /* align-items: center; */
    background: #ffffff;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
}
.layout2col__wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.layout2col__title {
    font-size: 20px;
    font-weight: bold;
    padding: 10px 15px;
    background: linear-gradient(to right, #f4f1e9, #ece6dd);
}
.layout2col__text {
    background: #ffffff; /* 説明部分の背景は白 */
    padding: 10px 15px;
    border-radius: 0 0 8px 8px;
}
.layout2col__text p {
    font-size: 1.9rem;
    line-height: 1.8;
}
.layout2col__image {
    /* width: 400px; */
    max-width: 100%;
    height: 100%;
    /* height: auto; */
    border-radius: 5px;
    object-fit: cover;
    margin-left: 20px;
    width: 50%;
    margin-top: 60px;
}
    .layout2col__title {
        font-size: 16px;
        margin: 20px 0;
    }
    .layout2col__text p {
        font-size: 16px;
    }
    .layout2col__stage {
        flex-direction: column;
        text-align: center;
        margin-bottom: 0;
    }
    .layout2col__image {
        margin-left: 0;
        margin-top: 10px;
        width: 100%;
    }
    .layout2col__image.cavity_sp_img {
        width: 280px;
        margin: 10px auto 0;
    }
    .layout2col__image.cavity_sp_img2 {
        width: 180px;
        margin: 10px auto 0;
    }
    .layout2col__text {
        text-align: left;
        padding: 0;
    }
    .layout2col__text p {
        font-size: 1.6rem;
        margin: 0 auto;
    }

/* ========================

sub-header 

========================*/
.sub-header {
    background: linear-gradient(to right, #d3c7b8, #e6e1d4);
    padding: 15px;
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
    width: 80%;
    margin: 40px auto;
    color: #545454;
}
.sub-header br.sp {
    display: none;
}
.sub-header.mb0 {
    margin-bottom: 0;
}
.sub-container {
    width: 80%;
    margin: 60px auto 20px;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
}
.sub-container-reverse {
    width: 80%;
    margin: 60px auto 20px;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
    gap: 20px;
}
.sub-text__wrapper {
    flex: 1;
    font-size: 16px;
    line-height: 1.8;
}
.sub-text__highlight {
    margin: 20px auto 0;
    font-weight: bold;
    color: #6a4d1d;
}
.sub-text__gold {
    color: #977730;
}
.sub-text__wrapper h3 {
    padding: 10px;
    font-size: 1.9rem;
    font-weight: bold;
    border-radius: 5px;
    margin: 20px 0 0 0;
    padding-bottom: 0;
    color: #6a4d1d;
}
.sub-text__wrapper p {
    margin-top: 0;
}
.sub-text__image-box {
    /* background-color: #d9d9d9; */
    /* width: 400px; */
    max-width: 50%;
    height: auto;
    margin-left: 20px;
    border-radius: 5px;
    flex-shrink: 0;
}
.sub-text__image-box img {
    width: 100%;
}
.sub-text__image + .sub-text__image {
    margin-top: 20px;
}
.flex-end {
    align-items: flex-end;
}
    .sub-header {
        width: 100%;
        font-size: min(5.5vw, 2rem);
        margin: 40px auto 0;
    }
    .sub-header br.sp {
        display: inline-block;
    }
    .sub-container {
        flex-direction: column;
        width: 100%;
        margin-top: 20px;
        padding: 10px;
    }
    .sub-text__image-box {
        margin: 0 auto;
        width: auto;
        max-width: 100%;
    }

/*ゴールドボタンデザイン*/
.gold__btn {
    text-align: center;
    margin: 20px 0 30px;
}
.gold__btn-txt {
    display: inline-block;
    background: linear-gradient(to bottom, #d5c299, #9f7f34);
    color: white;
    text-decoration: none;
    padding: 10px 15px 10px 35px;
    border-radius: 35px;
    font-size: 1.875rem;
}
.gold__btn-txt small {
    font-size: 15px;
    margin: 12px;
}

/*//ゴールドボタンデザイン.end*/
/* ========================

layout2col2
画像＋文字
========================*/
.layout2col2 {
    max-width: 1280px;
    width: 100%;
    margin: 20px auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
}
.layout2col2__inner {
    display: flex;
    /* align-items: center; */
    margin-bottom: 20px;
}
.layout2col2__inner-image {
    /* background-color: #d9d9d9; */
    /* width: 400px; */
    max-width: 50%;
    height: auto;
    margin-right: 20px;
    border-radius: 5px;
    flex-shrink: 0;
    object-fit: cover;
}
.layout2col2__inner-image img {
    width: 100%;
}
/* .layout2col2__inner-text {
  flex: 1;
} */
.layout2col2__inner-title {
    padding: 10px;
    font-size: 1.9rem;
    font-weight: bold;
    border-radius: 5px;
    margin-bottom: 10px;
    color: #6a4d1d;
}
.layout2col2__inner-description {
    font-size: 1.9rem;
    line-height: 1.8;
}
    .layout2col2 {
        padding: 0 20px;
    }
    .layout2col2__inner-title {
        padding-right: 0;
        padding-left: 0;
    }
    .gold__btn-txt {
        font-size: 1.6rem;
    }
    .layout2col2__inner {
        flex-direction: column;
    }
    .layout2col2__inner-image {
        margin: 0;
        max-width: 100%;
    }
    .layout2col2__inner-description {
        font-size: 1.4rem;
    }

/* ========================

layout3col2
文字＋画像
========================*/
.layout3col2 {
    width: 80%;
    margin: 20px auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
}
.layout3col2__inner {
    flex: 1;
}
.layout3col2__inner-title {
    font-weight: bold;
    color: #8b6f39;
    font-size: 1.9rem;
    margin-bottom: 10px;
}
.layout3col2__inner-description {
    font-size: 1.9rem;
    line-height: 1.8;
}
.layout3col2__inner-image-box {
    background-color: #d9d9d9;
    /* width: 400px; */
    max-width: 50%;
    height: auto;
    margin-left: 20px;
    border-radius: 5px;
    flex-shrink: 0;
    width: 50%;
}
.layout3col2__inner-image-box img {
    width: 100%;
}
    .layout3col2 {
        flex-direction: column;
        gap: 30px;
        width: 94%;
    }
    .layout3col2__inner-image-box {
        max-width: 100%;
        width: 100%;
        margin: 0;
    }
    .layout3col2__inner-description {
        font-size: 1.4rem;
    }

/* ========================

QandA

========================*/
.qa__box {
    width: 80%;
    margin: 0 auto;
}
.qa {
    max-width: 800px;
    margin: 0 auto;
    display: block;
}
.qa__item {
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;
    border-radius: 5px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
/* Qのデザイン */
.qa__item-question {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 2rem;
    font-weight: bold;
    transition: background 0.3s ease;
    position: relative;
    border: 0.1px solid #d0c4b5;
}
.qa-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: linear-gradient(to right, #d0c4b5, #f8f5f0);
    margin-right: 20px;
    font-size: 4.6rem;
    font-weight: bold;
    color: #fff;
    padding: 15px 20px;
    text-align: center;
    width: 100px;
    height: 100px;
}
.qa-icon2 {
    font-size: 4.6rem;
    font-weight: bold;
    color: #b39b7b;
    background: #f3efec;
    padding: 15px 20px;
    text-align: center;
    width: 100px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    display: none;
}
/* 矢印ボタン */
.qa-arrow {
    width: 16px;
    height: 16px;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 12px solid #b39b7b;
    transition: transform 0.3s;
    position: absolute;
    right: 15px;
}
/* Aのデザイン */
.qa__answer {
    max-height: 0;
    overflow: hidden;
    display: flex !important;
    align-items: center;
    /* background: #f8f5f0; */
    font-size: 2rem;
    line-height: 1.8;
    transition: max-height 0.3s ease-out;
    border-bottom: 0.1px solid #d0c4b5;
    border-left: 0.1px solid #d0c4b5;
    border-right: 0.1px solid #d0c4b5;
}
.qa__answer.active {
    max-height: unset;
}
.qa-text {
    padding: 20px;
    color: #786c6c;
}
.qa__answer.active {
    padding: 20px;
}
.qa__answer .qa-icon {
    font-size: 24px;
    font-weight: bold;
    color: #b39b7b;
    padding: 15px 20px;
    text-align: center;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: linear-gradient(to right, #d0c4b5, #f8f5f0);
}
.qa-arrow.active {
    transform: rotate(180deg);
}
/* アコーディオン開閉時 */
.qa__item.open .qa__answer {
    max-height: 500px;
}
.qa__item.open .qa-arrow {
    transform: rotate(180deg);
}
    .qa {
        width: 94%;
        margin: 0 auto;
        display: block;
    }
    .qa__box {
        width: 98%;
    }
    .qa-icon {
        font-size: 3rem;
        width: 70px;
        height: 70px;
    }
    .qa-icon2 {
        height: 700px;
    }
    .qa-text {
        padding: 0;
        font-size: 1.6rem;
    }
    .qa-arrow {
        bottom: 24px;
    }
    .qa__answer.active {
        padding: 20px 15px;
    }
    .qa__item.open .qa__answer {
        height: 100%;
    }
    .qa__item-question {
        font-size: 1.6rem;
    }
    .qa__item-question span:nth-child(2) {
        padding-right: 40px;
    }

/* ========================

layout1-col1

========================*/
.layout1-col1 {
    width: 80%;
    margin: 20px auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    text-align: left;
}
.layout1-col1__title {
    background: linear-gradient(to right, #e7dfd3, #f9f8f6);
    padding: 10px;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    border-radius: 5px;
    margin: 40px auto;
}
.layout1-col1__title.mt0 {
    margin-top: 0;
}
.layout1-col1__title.mb0 {
    margin-bottom: 0;
}
.layout1-col1__title2 {
    background: linear-gradient(to right, #e7dfd3, #f9f8f6);
    padding: 10px;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    border-radius: 5px;
    margin-top: 15px;
}
.layout1-col1__description1 {
    font-size: 1.9rem;
    line-height: 1.8;
    width: 80%;
    margin: 0 auto 40px;
}
.layout1-col1__description2 {
    font-size: 1.9rem;
    line-height: 1.8;
    width: 60%;
    margin: 40px auto;
}
.layout1-col1__progress-images {
    display: flex;
    justify-content: center;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
}
.layout1-col1__progress-images img {
    max-width: none;
    height: auto;
    display: block;
    width: 80%;
}
.layout1-col1__highlight {
    font-weight: bold;
    color: #6a4d1d;
}
    .layout1-col1 {
        width: 100%;
    }
    .layout1-col1.mt0 {
        margin-top: 0;
    }
    .layout1-col1__description1 {
        width: 100%;
        font-size: 1.4rem;
        margin-bottom: 0;
    }
    .layout1-col1__description2 {
        width: 100%;
        font-size: 1.6rem;
    }
    .layout1-col1__progress-images img {
        width: auto;
        height: 200px;
    }
    .layout1-col1__title2 {
        margin-bottom: 20px;
    }

/* ========================

治療の流れ

========================*/
.treatment-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 50px auto;
    gap: 40px;
}
/* 左側のリスト */
.treatment-list {
    flex: 1;
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step;
    position: relative;
}
.treatment-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 1.8rem;
    margin-bottom: 30px;
    position: relative;
    line-height: 1.6;
}
/* ゴールドの丸アイコン */
.treatment-list li::before {
    counter-increment: step;
    content: counter(step);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(200deg, #a89752, #d4c588, #a89752);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.5rem;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}
/* ゴールドの縦線 */
.treatment-list li::after {
    content: "";
    position: absolute;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, #a89752, #d4c588, #a89752);
    left: 20px; /* 丸アイコンの中央位置 */
    top: 40px; /* 丸の下からスタート */
    z-index: 1;
}
/* 最後のアイテムの線を消す */
.treatment-list li:last-child::after {
    display: none;
}
.treatment-list p {
    font-size: 1.6rem;
    color: #333;
    margin: 5px 0 0;
}
/* 右側の画像 */
.treatment-image {
    flex: 1;
    max-width: 500px;
    text-align: center;
}
.treatment-image img {
    width: 100%;
    height: auto;
}
/* スマホ対応 */
    .treatment-flow {
        flex-direction: column;
        align-items: center;
    }
    .treatment-image {
        max-width: 100%;
    }

/* ========================

layout4_1カラムと２カラム
矯正治療

========================*/
.layout4__col1col2-section {
    max-width: 1000px;
    margin: 0 auto 0;
    padding: 20px;
    text-align: left;
}
.layout4__col1col2-section h3 {
    font-size: 2rem;
}
/* 説明文 */
.layout4__col1col2-description {
    font-size: 1.8rem;
    color: #5a5a5a;
    line-height: 1.8;
    margin-bottom: 30px;
}
/* グラデーション見出し */
.layout4__col1col2-header {
    background: linear-gradient(to right, #f0ebe3, #cfc7ba);
    text-align: center;
    font-size: 2.2rem;
    font-weight: bold;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 30px;
    color: #5a5a5a;
}
/* 2カラムレイアウト */
.layout4__col1col2-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto 40px;
    gap: 40px;
    width: 94%;
}
.layout4__col1col2-container p {
    max-width: 600px;
}
/* 左側のリスト */
.layout4__col1col2-list {
    flex: 1;
    list-style: none;
    padding: 0;
    margin: 20px 0 40px;
}
.layout4__col1col2-list li {
    font-size: 1.8rem;
    color: #5a5a5a;
    line-height: 1.8;
    position: relative;
    padding-left: 18px;
}
/* リストの装飾（●マーク） */
.layout4__col1col2-list li::before {
    content: "•";
    color: #b39b7f;
    font-size: 2.5rem;
    position: absolute;
    left: 0;
    top: 0;
}
/* 右側の画像ボックス */
.layout4__col1col2--image-box {
    flex: 1;
    max-width: 400px;
    height: 200px;
    background: #c4c4c4; /* グレーのプレースホルダー */
    border-radius: 10px;
}
.layout4__col1col2--image-box img {
    width: 100%;
}
/* スマホ対応 */
    .layout4__col1col2-container {
        flex-direction: column;
        text-align: center;
    }
    .layout4__col1col2-section {
        margin: 0 auto;
    }
    .layout4__col1col2-image-box {
        max-width: 100%;
        height: auto;
    }
    .layout4__col1col2-list {
        text-align: left;
        margin: 10px 0 20px;
    }

/* ========================

sub__catch
歯医者さん大好き！
女の子画像

========================*/
.sub__catch-wrapper {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.sub__catch-iimage {
    width: 70%;
    display: block;
    border-radius: 20px;
}
.sub__catch-txt {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    width: 46%;
    background-color: rgba(255, 255, 255, 0.85);
    padding: 60px 30px;
    font-size: 2.8rem;
    color: #aa8e4c;
    font-weight: bold;
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
}
/* レスポンシブ対応 */
    .sub__catch-image {
        width: 80%;
    }
    .sub__catch-txt {
        left: 5%;
        width: 40%;
        font-size: 1.4rem;
    }

    .sub__catch-wrapper {
        flex-direction: column;
        align-items: center;
    }
    .sub__catch-iimage {
        width: 100%;
    }
    .sub__catch-txt {
        position: relative;
        top: auto;
        left: auto;
        width: 80%;
        font-size: 1.2rem;
        clip-path: none;
        border-radius: 10px;
        margin-top: -30px; /* 画像に少し重ねる */
    }

/* ========================

sub__catch
シンプルな１カラム

========================*/
.simple_1col {
    /* max-width: 1100px; */
    max-width: 960px;
    height: auto;
    margin: 0 auto;
}
.simple_1col_ttl {
    font-size: 3.2rem;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 5px;
    padding: 0 15px;
    background: #ece6dd;
    color: #524636;
}
.simple_1col_txt {
    font-size: 1.9rem;
    line-height: 1.8;
}
.simple_1col .layout_2col_1col-blue-box {
    padding: 30px 20px;
    display: block;
}
    .simple_1col {
        width: 90%;
    }
    .simple_1col_ttl {
        font-size: 1.8rem;
        padding: 1px 10px;
    }
    .simple_1col_txt {
        font-size: 1.6rem;
    }

/* 各セクション */
/* section {
  margin: 80px 0;
} */
    section {
        margin: 0 0;
    }

.section__container {
    padding: 50px;
}
/* スムーズスクロール */
html {
    scroll-behavior: smooth;
}

.post-content {
    width: 80%;
    max-width: 1000px;
    margin: 0 auto;
    font-size: 1.8rem;
    line-height: 1.8;
}
.post-header {
    text-align: center;
    margin-bottom: 20px;
}
.post-title {
    font-size: 3rem;
    color: #333;
}
.post-meta {
    font-size: 1.6rem;
    color: #777;
}
.post-body {
    font-size: 1.9rem;
    line-height: 1.8;
}
.post-tags ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 10px;
}
.post-tags li {
    background: #d4cfc7;
    padding: 5px 10px;
    border-radius: 5px;
}
.post-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}
    .post-content {
        width: 90%;
        font-size: 1.6rem;
    }
    .post-title {
        font-size: 2.5rem;
    }

/* ========================
table用デザイン

===========================*/
.schedule-container {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
}
.schedule {
    width: 100%;
    border: 1px solid #5a4225;
    overflow: hidden;
    text-align: center;
}
    .schedule-container {
        padding: 0 20px;
    }

.schedule table {
    width: 100%;
    border-collapse: collapse;
}
.schedule th, .schedule td {
    padding: 10px;
    font-size: 1.75rem;
    border-bottom: 1px solid #5a4225;
}
    .schedule th, .schedule td {
        padding: 10px 5px;
        font-size: min(3.5vw, 16px);
    }

.schedule thead {
    background-color: #5a4225;
    color: white;
}
.schedule th {
    font-weight: bold;
}
.schedule tbody tr:last-child td {
    border-bottom: none;
}
.schedule td[colspan="7"] {
    font-weight: bold;
}
.schedule-note {
    margin-top: 10px;
    font-size: 1.75rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
    .schedule-note {
        margin-top: 15px;
        padding: 0 20px;
        font-size: 1.5rem;
    }

/* ========================
table用デザイン
比較表
===========================*/
.comparison {
    max-width: 80%;
    margin: 0 auto;
}
.comparison h2 {
    text-align: center;
    font-size: 3.2rem;
}
.comparison-container {
    width: 100%;
    overflow-x: auto;
}
.comparison-container table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
    background-color: #fff;
}
.comparison-container thead {
    background: #f5f5f5;
}
.comparison-container th {
    text-align: center;
    padding: 10px;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    font-size: 1.6rem;
    font-weight: 700;
}
.comparison-container td {
    padding: 12px;
    text-align: left;
    background-color: #fff;
    border-bottom: 1px solid #ddd;
    font-size: 1.6rem;
}
.comparison-container tr:nth-child(even) {
    background-color: #fff;
}
.comparison-container table tr td:first-child, .comparison-container table tr th:first-child {
    width: 160px;
    border-left: none;
    font-weight: 700;
}
.comparison-container table tr td:last-child, .comparison-container table tr th:last-child {
    border-right: none;
}

.col2__profile-container {
    display: flex;
    justify-content: center;
    gap: 50px;
    max-width: 1000px;
    margin: auto;
}
.col2__profile {
    width: 45%;
    text-align: center;
}
.col2__profile img {
    width: 100%;
    max-width: 250px;
    height: auto;
    display: block;
    margin: auto;
    border-radius: 10px;
    background-color: #ddd;
}
.col2__profile-title {
    font-size: 20px;
    font-weight: bold;
    margin-top: 15px;
}
.col2__profile-name {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 15px;
}
.col2__profile-subtitle {
    font-size: 18px;
    font-weight: bold;
    margin-top: 20px;
    border-bottom: 1px solid #ccc;
    display: inline-block;
    padding-bottom: 5px;
}
.col2__profile-career, .col2__profile-qualification, .col2__profile-affiliation {
    list-style: none;
    padding: 0;
    margin-top: 10px;
    text-align: left;
    font-size: 16px;
}
.col2__profile-career li, .col2__profile-qualification li, .col2__profile-affiliation li {
    /*
  margin-bottom: 5px;
	*/
    padding: 0;
}
	
	.comparison-container table tr td:first-child, .comparison-container table tr th:first-child {
		width: 90px;
	}
	.comparison-container th {
		padding: 7px;
		font-size: 1.375rem;
	}
	.comparison-container td {
		padding: 7px;
		font-size: 1.375rem;
	}
	
    .col2__profile-career li, 
	.col2__profile-qualification li, 
	.col2__profile-affiliation li {
        font-size: min(2.75vw, 14px);
    }
	

.doctors-profile {
    width: 100%;
    padding: 50px 20px;
    background-color: #fff;
}
    .doctors-profile {
        padding: 0 20px 50px;
    }


/* ========================
prf用デザイン

===========================*/
.prf__container {
    max-width: 800px;
    margin: 0 auto;
}
.prf__container h3 {
    font-size: 24px;
    border-bottom: 1px solid #c2b8a3;
    padding-bottom: 10px;
    margin-bottom: 20px;
}
.prf__description {
    font-size: 16px;
    margin-bottom: 20px;
}
.prf__image-box {
    width: 300px;
    height: 300px;
    background-color: #e0e0e0;
    margin: 0 auto 50px;
    border-radius: 10px;
}
/* ========================
基本スタイル
===========================*/
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    width: 100%;
    font-size: 62.5%;
}
body {
    max-width: 100%;
    width: 100%;
    font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "MS PMincho", serif;
    line-height: 1.6;
    margin: 0 auto;
    padding: 0;
}
main {
    padding-bottom: 120px;
}
a {
    text-decoration: none;
    color: #3a302e;
}
ruby {
    font-size: 2rem;
}
rt {
    font-size: 1.2rem;
    color: #666;
}
.pcObj {
    display: block;
}
.spObj, .spObj2 {
    display: none;
}
.center {
    text-align: center !important;
}
.m-auto {
    margin: 0 auto;
}
.catch_txt {
    font-size: 2rem;
}
    main {
        padding-bottom: 60px;
    }
    .pcObj {
        display: none;
    }
    .spObj {
        display: inline-block;
    }

    .spObj2 {
        display: inline-block;
    }

/*list disc*/
.list__disc {
    margin-left: 20px;
}
.list__disc li {
    list-style: disc;
}
p {
    font-size: 1.75rem;
    line-height: 1.8;
}
    p {
        font-size: 1.5rem;
    }

img {
    max-width: 100%;
    vertical-align: bottom;
}

/* ========================
ヘッダー
===========================*/
.header {
    background: linear-gradient(to right, #e1dbca, #d6cdbc, #cbbead); /* ゴールドグラデーション */
    color: rgb(90, 72, 53);
    text-align: center;
    padding: 160px 20px;
    font-size: 2.5rem;
    font-weight: bold;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
}
.header h1 {
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}
    .header {
        padding: 80px 20px;
		margin-top: 30px;
    }
    .header h1 {
        margin: 0 auto;
        text-align: center;
        font-size: min(8vw, 4rem);
    }

/* SVGの波をヘッダー下部に配置 */
.header-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px; /* カーブの高さ */
    z-index: 3;
}
.access-patern__btm p {
    font-size: min(4vw, 16px) !important;
}

/* ========================
マージン調整
===========================*/
.mt20 {
    margin-top: 20px !important;
}
.mt40 {
    margin-top: 40px;
}
.mt80 {
    margin-top: 80px !important;
}
.mt120 {
    margin-top: 120px !important;
}
.mb80 {
    margin-bottom: 80px;
}
/* ========================
文字色
===========================*/
.highlight {
    font-weight: bold;
    color: #6a4d1d;
}
/* ========================
notice
===========================*/
.notice_right {
    text-align: right;
    font-size: 1.6rem;
}


/* ========================
Section
title
===========================*/
.section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "MS PMincho", serif;
    font-size: 4rem;
    font-weight: bold;
    text-align: center;
    color: #705d48;
    margin: 40px 0;
    position: relative;
}
.section-title.mt0 {
    margin-top: 0;
}
.section-title.mb0 {
    margin-bottom: 0;
}
.section-title::before, .section-title::after {
    content: "";
    flex: 1;
    height: 1px;
    background-color: #d6cdbc;
    margin: 0 80px 0 0;
}
.section-title::after {
    margin: 0 0 0 80px;
}
.section-description {
    text-align: center;
    font-size: 16px;
    color: #333;
    margin-bottom: 20px;
}
    .section-title {
        font-size: 2.5rem;
		margin: 30px 0 20px;
    }
    .section-title::before {
        margin: 0 4vw 0 0;
    }
    .section-title::after {
        margin: 0 0 0 4vw;
    }

/* ========================
TYPE1
文字＋画像デザイン（プロフィール用）
===========================*/
.type1__container {
    max-width: 1200px;
    background: #fff;
    padding: 30px 20px;
    margin: auto;
}
    .type1__container {
        padding: 0 20px;
    }

/* グリッドレイアウト */
.type1__content {
    display: grid;
    grid-template-columns: 1fr 360px; /* 左側は可変、右側は画像サイズ固定 */
    grid-template-rows: auto;
    gap: 20px;
}
/* テキスト部分（左側） */
.type1__text {
    display: flex;
    flex-direction: column;
    justify-content: start; /* 上部から開始 */
    font-size: 1.75rem;
}
.type1__text-highlights {
    color: #6a4d1d;
}
/* 画像を右側に配置 */
.type1__profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 360px;
}
/* 画像のスタイル */
.type1__profile img {
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
}
/* 名前のスタイル（画像の下に配置） */
.type1__profile-name {
    margin-top: 10px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
}
/* スマホ対応（縦レイアウトにする） */
    .type1__content {
        display: block;
    }
    .type1__content.doctor_first {
        display: flex;
        flex-wrap: wrap;
    }
    .type1__profile {
        width: 100%;
        margin: 0 auto;
        text-align: center;
    }
    .type1__profile img {
        width: 87.5%;
    }
    .type1__text {
        width: 100%;
    }
    .type1__content.doctor_first .type1__text {
        order: 2;
    }

/* .profile {
  width: 200px;
  text-align: center;
  float: right;
  margin-left: 20px;
}

.profile img {
  width: 100%;
  height: auto;
  border-radius: 10px;
} */
/* ========================
TYPE2
画像＋文字デザイン（プロフィール用）
===========================*/
.type2__container {
    max-width: 1100px;
    margin: auto;
    padding: 30px 20px;
    display: flex;
    align-items: center;
    gap: 40px;
}
    .type2__container {
        padding: 0 20px;
    }

.type2__profile-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.type2__profile-image img {
    width: auto;
    height: auto;
    border-radius: 15px;
}
.type2__profile-text {
    margin-top: 10px;
}
.type2__profile-text p {
    font-size: 2rem;
}
.type2__profile-post {
    font-size: 1.4rem;
    margin-right: 10px;
}
[data-ruby] {
    position: relative;
}
[data-ruby]::before {
    content: attr(data-ruby);
    position: absolute;
    top: -1.6em;
    left: 0;
    right: 0;
    margin: auto;
    font-size: 1rem;
}
.type2__greeting {
    flex: 1;
    text-align: left;
    font-size: 1.8em;
    line-height: 1.8;
}
    .type2__container {
        flex-direction: column;
        text-align: center;
    }
    .type2__profile-image img {
        width: 87.5%;
        margin: auto;
    }

/* ========================
Profile用デザイン
２カラム
===========================*/
.profile-info {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2カラムレイアウト */
    gap: 30px; /* カラム間の余白 */
    max-width: 1200px;
    margin: auto;
    padding: 20px 0;
}
.column {
    padding: 20px;
    border-radius: 8px;
}
.profile-info h2 {
    width: 70%;
    font-size: 2.5rem;
    padding: 6px 12px;
    margin-bottom: 15px;
    background: #f9f8f8;
    color: #545454;
}
ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.profile-year li {
    display: flex;
    justify-content: space-between;
}
.profile-year li span {
    width: 60px;
}
.profile-year li div {
    width: calc(100% - 60px);
}
/* スマホ対応 */
    .profile-info {
        grid-template-columns: 1fr; /* 1カラムに変更 */
    }
    .profile-info .column {
        padding: 0 20px;
    }
    .profile-info .column:nth-of-type(1) {
        margin-bottom: -20px;
    }
    .profile-info h2 {
        width: 100%;
        font-size: min(4vw, 20px);
        text-align: left;
    }
    .profile-info ul li {
        font-size: min(3.5vw, 16px);
        padding: 0;
    }
    .profile-year li span {
        width: 15vw;
    }
    .profile-year li div {
        width: calc(100% - 15vw);
    }

/* ========================
１カラムボックスデザイン

========================*/
.col1-box {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}
.col1-box.mt0 {
    margin-top: 0;
}
.col1-box__container {
    background-color: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}
.col1-box__container h2 {
    font-size: 3rem;
    margin-bottom: 10px;
    color: #524636;
}
.col1-box__container h2 span {
    font-size: 2.2rem;
}
.col1-box__container h3 {
    font-size: 1.8em;
}
.col1-box__container hr {
    width: 80%;
    border: 1px solid #8d6e63;
    margin: 10px auto;
}
.col1-box__container p {
    font-size: 1.75rem;
    line-height: 1.8;
    letter-spacing: 0.12rem;
    margin: 30px 40px;
    text-align: left;
}
.col1-box__container-list {
    width: 600px;
    margin: 0 auto;
    text-align: left;
}
.col1-box__container-list li {
    font-size: 2.2rem;
}
.col1-box__container-subcatch {
    margin: 0 auto;
    font-size: 2.2rem !important;
    text-align: center !important;
}
    .col1-box {
        margin: 10px auto 10px;
    }
    .col1-box__container {
        padding: 20px 10px;
    }
    .col1-box__container h2 {
        font-size: 2.5rem;
    }
    .col1-box__container h2 span {
        font-size: 2rem;
    }
    .col1-box__container p {
        margin: 15px 10px;
        font-size: 1.5rem;
        line-height: 1.5;
    }
    .col1-box__container-list {
        width: 100%;
        margin: 0 auto;
        text-align: left;
    }
    .col1-box__container-list li {
        font-size: 1.8rem;
    }

    .col1-box__container h2 {
        font-size: 2rem;
    }

/* ========================
１カラムボックスデザイン
profile
========================*/
.col1-box__profile {
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}
.col1-box__img {
    width: 50%;
    margin: 0 auto;
}
.col1-box__txt {
    text-align: center;
}
.col1-box__profile {
    font-size: 3rem;
}
.col1-box__btn {
    width: 60%;
    margin: 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.col1-box__btn a {
    display: block;
}
    .col1-box__btn {
        width: 100%;
    }
/* ========================
flow

========================*/
/* 
/* ========================
flow
========================*/
.flow-list {
    list-style: none;
    padding: 0;
    max-width: 400px;
    width: 90%; /* スマホでも適切な幅にする */
    margin: auto;
    position: relative;
}
.flow-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 2.5rem;
    position: relative;
    margin-bottom: 20px;
    line-height: 1.4; /* 読みやすさ向上 */
}
.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(200deg, #a89752, #d4c588, #a89752);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2em;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}
.flow-list li::before {
    content: "";
    position: absolute;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, #a89752, #d4c588, #a89752);
    left: 20px;
    top: 45px;
}
.flow-list li:last-child::before {
    display: none;
}
    .flow-list {
        width: 90%;
        max-width: 350px;
    }
    .flow-list li {
        font-size: 1.8rem;
        gap: 10px;
    }
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 3rem;
    }
    .flow-list li::before {
        left: 17px;
    }

/* ========================
flow2

========================*/
.flow2 {
    width: 95%;
    max-width: 1200px;
    margin: 0 auto 30px;
    background: white;
    padding: 0 20px;
}
.flow2.mt0 {
    margin-top: 0;
}
.flow2.mb0 {
    margin-bottom: 0;
}
.flow2-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    gap: 60px;
}
    .flow2-section {
        gap: 0 4vw;
        margin-bottom: 60px;
    }

.flow2-img-container {
    position: relative;
    width: 50%;
}
.flow2-text {
    width: 50%;
}
.flow2-text h3 {
    margin-bottom: 10px;
    font-size: 2.75rem;
    color: #545454;
}
.flow2-text p {
    margin-bottom: 15px;
    font-size: 1.75rem;
    color: #545454;
}
.flow2-img-container img {
    width: 100%;
    border-radius: 5px;
    position: relative;
    z-index: 2;
}
.flow2-image-background {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #d4cfc7;
    top: 10px;
    left: 20px;
    border-radius: 5px;
    z-index: 1;
}
.flow2-section .text {
    width: 55%;
}
.flow2-splaceholder {
    width: 40%;
    height: 200px;
    background: #ccc;
    border-radius: 5px;
}

    .flow2 {
        width: 100%;
        margin: 0 auto;
        padding: 0 20px;
    }
    .flow2-section {
        flex-wrap: wrap;
        margin-bottom: 50px;
        gap: 0;
    }
    .flow2-section:nth-of-type(even) {
        flex-direction: column-reverse;
    }
    .flow2-text {
        width: 100%;
        margin: 0 auto;
    }
    .flow2-text h3 {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    .flow2-text p {
        font-size: 1.5rem;
    }
    .flow2-img-container {
        width: 100%;
    }
    .reverse {
        margin: 0 0 60px;
        flex-direction: column;
    }
    .flow2-image-background {
        left: 10px;
    }


/* ========================
philosophy

========================*/
.philosophy-section {
    text-align: center;
    margin: 40px auto;
}
.philosophy-box {
    display: inline-block;
    background: linear-gradient(to right, #F2F2F2, white);
    padding: 50px 40px;
    font-size: 3.33rem;
    font-weight: bold;
    color: #524636;
    border-radius: 5px;
    text-align: center;
}
    .philosophy-box {
        font-size: 2.2rem;
        padding: 30px 20px;
    }

/* ========================
goldnum-list
ゴールド丸ナンバーリスト
========================*/
.goldnum-list-list {
    list-style: none;
    padding: 0;
    max-width: 620px;
    margin: 0 auto 45px;
    position: relative;
}
.goldnum-list-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 2.5rem;
    position: relative;
    margin-bottom: 20px;
    text-align: left;
}
.goldnum-list-list li {
    display: flex;
    justify-content: space-between;
    font-size: 2.5rem;
    position: relative;
    margin-bottom: 10px;
    text-align: left;
}
.goldnum-list-list li span.step-number {
    width: 40px;
}
.goldnum-list-list li div {
    width: calc(100% - 55px);
}
    .goldnum-list-list li {
        padding-bottom: 10px !important;
    }
    .goldnum-list-list li span.step-number {
        width: 35px;
    }
    .goldnum-list-list li div {
        width: calc(100% - 45px);
    }

.goldnum-list-list2 {
    list-style: none;
    padding: 0;
    max-width: 620px;
    margin: auto;
    position: relative;
}
.goldnum-list-list2 li {
    display: block;
    /* align-items: center;
  gap: 15px;
  font-size: 2.5rem;
  position: relative;
  margin-bottom: 20px;
  text-align: left; */
}
.step-number2 {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(200deg, #a89752, #d4c588, #a89752);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2em;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}
    .goldnum-list-list {
        padding: 0 20px;
    }
    .goldnum-list-list li {
        font-size: 1.5rem;
        margin-bottom: 0;
        padding: 2px 0;
    }


/* ========================
symptoms

========================*/
.symptoms {
    width: 80%;
    max-width: 1000px;
    margin: 50px auto;
    background: white;
    padding: 20px;
}
.progression-section {
    overflow-x: auto;
    white-space: nowrap;
    padding: 10px 0;
    margin-bottom: 30px;
    text-align: center;
}
.progression-section img {
    width: 100%;
    max-width: 1200px;
    display: block;
    margin: 0 auto;
}
.symptoms__section-description {
    font-size: 2.4rem;
    text-align: center;
}
    .symptoms {
        width: 100%;
    }
    .progression-section {
        display: flex;
        overflow-x: scroll;
        scroll-snap-type: x mandatory;
        gap: 10px;
        padding: 10px;
        display: none;
    }
    .progression-section img {
        width: auto;
        height: auto;
        scroll-snap-align: center;
    }

/* ========================
2カラム（左文章＋画像　複数列）
layout2col
========================*/
.layout2col {
    max-width: 1100px;
    margin: auto;
}
.layout2col__stage {
    display: flex;
    /* align-items: center; */
    background: #ffffff;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
}
.layout2col__wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.layout2col__title {
    font-size: 20px;
    font-weight: bold;
    padding: 10px 15px;
    background: linear-gradient(to right, #f4f1e9, #ece6dd);
}
.layout2col__text {
    background: #ffffff; /* 説明部分の背景は白 */
    padding: 10px 15px;
    border-radius: 0 0 8px 8px;
}
.layout2col__text p {
    font-size: 1.9rem;
    line-height: 1.8;
}
.layout2col__image {
    /* width: 400px; */
    max-width: 100%;
    height: 100%;
    /* height: auto; */
    border-radius: 5px;
    object-fit: cover;
    margin-left: 20px;
    width: 50%;
    margin-top: 60px;
}
    .layout2col__title {
        font-size: 16px;
        margin: 20px 0;
    }
    .layout2col__text p {
        font-size: 16px;
    }
    .layout2col__stage {
        flex-direction: column;
        text-align: center;
        margin-bottom: 0;
    }
    .layout2col__image {
        margin-left: 0;
        margin-top: 10px;
        width: 100%;
    }
    .layout2col__image.cavity_sp_img {
        width: 280px;
        margin: 10px auto 0;
    }
    .layout2col__image.cavity_sp_img2 {
        width: 180px;
        margin: 10px auto 0;
    }
    .layout2col__text {
        text-align: left;
        padding: 0;
    }
    .layout2col__text p {
        font-size: 1.6rem;
        margin: 0 auto;
    }

/* ========================

sub-header 

========================*/
.sub-header {
    background: linear-gradient(to right, #d3c7b8, #e6e1d4);
    padding: 15px;
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
    width: 80%;
    margin: 40px auto;
    color: #545454;
}
.sub-header br.sp {
    display: none;
}
.sub-header.mb0 {
    margin-bottom: 0;
}
.sub-container {
    width: 80%;
    margin: 60px auto 20px;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
}
.sub-container-reverse {
    width: 80%;
    margin: 60px auto 20px;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
    gap: 20px;
}
.sub-text__wrapper {
    flex: 1;
    font-size: 16px;
    line-height: 1.8;
}
.sub-text__highlight {
    margin: 20px auto 0;
    font-weight: bold;
    color: #6a4d1d;
}
.sub-text__gold {
    color: #977730;
}
.sub-text__wrapper h3 {
    padding: 10px;
    font-size: 1.9rem;
    font-weight: bold;
    border-radius: 5px;
    margin: 20px 0 0 0;
    padding-bottom: 0;
    color: #6a4d1d;
}
.sub-text__wrapper p {
    margin-top: 0;
}
.sub-text__image-box {
    /* background-color: #d9d9d9; */
    /* width: 400px; */
    max-width: 50%;
    height: auto;
    margin-left: 20px;
    border-radius: 5px;
    flex-shrink: 0;
}
.sub-text__image-box img {
    width: 100%;
}
.sub-text__image + .sub-text__image {
    margin-top: 20px;
}
.flex-end {
    align-items: flex-end;
}
    .sub-header {
        width: 100%;
        font-size: min(5.5vw, 2rem);
        margin: 40px auto 0;
    }
    .sub-header br.sp {
        display: inline-block;
    }
    .sub-container {
        flex-direction: column;
        width: 100%;
        margin-top: 20px;
        padding: 10px;
    }
    .sub-text__image-box {
        margin: 0 auto;
        width: auto;
        max-width: 100%;
    }

/*ゴールドボタンデザイン*/
.gold__btn {
    text-align: center;
    margin: 20px 0 30px;
}
.gold__btn-txt {
    display: inline-block;
    background: linear-gradient(to bottom, #d5c299, #9f7f34);
    color: white;
    text-decoration: none;
    padding: 10px 15px 10px 35px;
    border-radius: 35px;
    font-size: 1.875rem;
}
.gold__btn-txt small {
    font-size: 15px;
    margin: 12px;
}

/*//ゴールドボタンデザイン.end*/
/* ========================

layout2col2
画像＋文字
========================*/
.layout2col2 {
    max-width: 1280px;
    width: 100%;
    margin: 20px auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
}
.layout2col2__inner {
    display: flex;
    /* align-items: center; */
    margin-bottom: 20px;
}
.layout2col2__inner-image {
    /* background-color: #d9d9d9; */
    /* width: 400px; */
    max-width: 50%;
    height: auto;
    margin-right: 20px;
    border-radius: 5px;
    flex-shrink: 0;
    object-fit: cover;
}
.layout2col2__inner-image img {
    width: 100%;
}
/* .layout2col2__inner-text {
  flex: 1;
} */
.layout2col2__inner-title {
    padding: 10px;
    font-size: 1.9rem;
    font-weight: bold;
    border-radius: 5px;
    margin-bottom: 10px;
    color: #6a4d1d;
}
.layout2col2__inner-description {
    font-size: 1.9rem;
    line-height: 1.8;
}
    .layout2col2 {
        padding: 0 20px;
    }
    .layout2col2__inner-title {
        padding-right: 0;
        padding-left: 0;
    }
    .gold__btn-txt {
        font-size: 1.6rem;
    }
    .layout2col2__inner {
        flex-direction: column;
    }
    .layout2col2__inner-image {
        margin: 0;
        max-width: 100%;
    }
    .layout2col2__inner-description {
        font-size: 1.4rem;
    }

/* ========================

layout3col2
文字＋画像
========================*/
.layout3col2 {
    width: 80%;
    margin: 20px auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
}
.layout3col2__inner {
    flex: 1;
}
.layout3col2__inner-title {
    font-weight: bold;
    color: #8b6f39;
    font-size: 1.9rem;
    margin-bottom: 10px;
}
.layout3col2__inner-description {
    font-size: 1.9rem;
    line-height: 1.8;
}
.layout3col2__inner-image-box {
    background-color: #d9d9d9;
    /* width: 400px; */
    max-width: 50%;
    height: auto;
    margin-left: 20px;
    border-radius: 5px;
    flex-shrink: 0;
    width: 50%;
}
.layout3col2__inner-image-box img {
    width: 100%;
}
    .layout3col2 {
        flex-direction: column;
        gap: 30px;
        width: 94%;
    }
    .layout3col2__inner-image-box {
        max-width: 100%;
        width: 100%;
        margin: 0;
    }
    .layout3col2__inner-description {
        font-size: 1.4rem;
    }

/* ========================

QandA

========================*/
.qa__box {
    width: 80%;
    margin: 0 auto;
}
.qa {
    max-width: 800px;
    margin: 0 auto;
    display: block;
}
.qa__item {
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;
    border-radius: 5px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
/* Qのデザイン */
.qa__item-question {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 2rem;
    font-weight: bold;
    transition: background 0.3s ease;
    position: relative;
    border: 0.1px solid #d0c4b5;
}
.qa-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: linear-gradient(to right, #d0c4b5, #f8f5f0);
    margin-right: 20px;
    font-size: 4.6rem;
    font-weight: bold;
    color: #fff;
    padding: 15px 20px;
    text-align: center;
    width: 100px;
    height: 100px;
}
.qa-icon2 {
    font-size: 4.6rem;
    font-weight: bold;
    color: #b39b7b;
    background: #f3efec;
    padding: 15px 20px;
    text-align: center;
    width: 100px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    display: none;
}
/* 矢印ボタン */
.qa-arrow {
    width: 16px;
    height: 16px;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 12px solid #b39b7b;
    transition: transform 0.3s;
    position: absolute;
    right: 15px;
}
/* Aのデザイン */
.qa__answer {
    max-height: 0;
    overflow: hidden;
    display: flex !important;
    align-items: center;
    /* background: #f8f5f0; */
    font-size: 2rem;
    line-height: 1.8;
    transition: max-height 0.3s ease-out;
    border-bottom: 0.1px solid #d0c4b5;
    border-left: 0.1px solid #d0c4b5;
    border-right: 0.1px solid #d0c4b5;
}
.qa__answer.active {
    max-height: unset;
}
.qa-text {
    padding: 20px;
    color: #786c6c;
}
.qa__answer.active {
    padding: 20px;
}
.qa__answer .qa-icon {
    font-size: 24px;
    font-weight: bold;
    color: #b39b7b;
    padding: 15px 20px;
    text-align: center;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: linear-gradient(to right, #d0c4b5, #f8f5f0);
}
.qa-arrow.active {
    transform: rotate(180deg);
}
/* アコーディオン開閉時 */
.qa__item.open .qa__answer {
    max-height: 500px;
}
.qa__item.open .qa-arrow {
    transform: rotate(180deg);
}
    .qa {
        width: 94%;
        margin: 0 auto;
        display: block;
    }
    .qa__box {
        width: 98%;
    }
    .qa-icon {
        font-size: 3rem;
        width: 70px;
        height: 70px;
    }
    .qa-icon2 {
        height: 700px;
    }
    .qa-text {
        padding: 0;
        font-size: 1.6rem;
    }
    .qa-arrow {
        bottom: 24px;
    }
    .qa__answer.active {
        padding: 20px 15px;
    }
    .qa__item.open .qa__answer {
        height: 100%;
    }
    .qa__item-question {
        font-size: 1.6rem;
    }
    .qa__item-question span:nth-child(2) {
        padding-right: 40px;
    }

/* ========================

layout1-col1

========================*/
.layout1-col1 {
    width: 80%;
    margin: 20px auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    text-align: left;
}
.layout1-col1__title {
    background: linear-gradient(to right, #e7dfd3, #f9f8f6);
    padding: 10px;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    border-radius: 5px;
    margin: 40px auto;
}
.layout1-col1__title.mt0 {
    margin-top: 0;
}
.layout1-col1__title.mb0 {
    margin-bottom: 0;
}
.layout1-col1__title2 {
    background: linear-gradient(to right, #e7dfd3, #f9f8f6);
    padding: 10px;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    border-radius: 5px;
    margin-top: 15px;
}
.layout1-col1__description1 {
    font-size: 1.9rem;
    line-height: 1.8;
    width: 80%;
    margin: 0 auto 40px;
}
.layout1-col1__description2 {
    font-size: 1.9rem;
    line-height: 1.8;
    width: 60%;
    margin: 40px auto;
}
.layout1-col1__progress-images {
    display: flex;
    justify-content: center;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
}
.layout1-col1__progress-images img {
    max-width: none;
    height: auto;
    display: block;
    width: 80%;
}
.layout1-col1__highlight {
    font-weight: bold;
    color: #6a4d1d;
}
    .layout1-col1 {
        width: 100%;
    }
    .layout1-col1.mt0 {
        margin-top: 0;
    }
    .layout1-col1__description1 {
        width: 100%;
        font-size: 1.4rem;
        margin-bottom: 0;
    }
    .layout1-col1__description2 {
        width: 100%;
        font-size: 1.6rem;
    }
    .layout1-col1__progress-images img {
        width: auto;
        height: 200px;
    }
    .layout1-col1__title2 {
        margin-bottom: 20px;
    }

/* ========================

治療の流れ

========================*/
.treatment-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 50px auto;
    gap: 40px;
}
/* 左側のリスト */
.treatment-list {
    flex: 1;
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step;
    position: relative;
}
.treatment-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 1.8rem;
    margin-bottom: 30px;
    position: relative;
    line-height: 1.6;
}
/* ゴールドの丸アイコン */
.treatment-list li::before {
    counter-increment: step;
    content: counter(step);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(200deg, #a89752, #d4c588, #a89752);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.5rem;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}
/* ゴールドの縦線 */
.treatment-list li::after {
    content: "";
    position: absolute;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, #a89752, #d4c588, #a89752);
    left: 20px; /* 丸アイコンの中央位置 */
    top: 40px; /* 丸の下からスタート */
    z-index: 1;
}
/* 最後のアイテムの線を消す */
.treatment-list li:last-child::after {
    display: none;
}
.treatment-list p {
    font-size: 1.6rem;
    color: #333;
    margin: 5px 0 0;
}
/* 右側の画像 */
.treatment-image {
    flex: 1;
    max-width: 500px;
    text-align: center;
}
.treatment-image img {
    width: 100%;
    height: auto;
}
/* スマホ対応 */
    .treatment-flow {
        flex-direction: column;
        align-items: center;
    }
    .treatment-image {
        max-width: 100%;
    }

/* ========================

layout4_1カラムと２カラム
矯正治療

========================*/
.layout4__col1col2-section {
    max-width: 1000px;
    margin: 0 auto 0;
    padding: 20px;
    text-align: left;
}
.layout4__col1col2-section h3 {
    font-size: 2rem;
}
/* 説明文 */
.layout4__col1col2-description {
    font-size: 1.8rem;
    color: #5a5a5a;
    line-height: 1.8;
    margin-bottom: 30px;
}
/* グラデーション見出し */
.layout4__col1col2-header {
    background: linear-gradient(to right, #f0ebe3, #cfc7ba);
    text-align: center;
    font-size: 2.2rem;
    font-weight: bold;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 30px;
    color: #5a5a5a;
}
/* 2カラムレイアウト */
.layout4__col1col2-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto 40px;
    gap: 40px;
    width: 94%;
}
.layout4__col1col2-container p {
    max-width: 600px;
}
/* 左側のリスト */
.layout4__col1col2-list {
    flex: 1;
    list-style: none;
    padding: 0;
    margin: 20px 0 40px;
}
.layout4__col1col2-list li {
    font-size: 1.8rem;
    color: #5a5a5a;
    line-height: 1.8;
    position: relative;
    padding-left: 18px;
}
/* リストの装飾（●マーク） */
.layout4__col1col2-list li::before {
    content: "•";
    color: #b39b7f;
    font-size: 2.5rem;
    position: absolute;
    left: 0;
    top: 0;
}
/* 右側の画像ボックス */
.layout4__col1col2--image-box {
    flex: 1;
    max-width: 400px;
    height: 200px;
    background: #c4c4c4; /* グレーのプレースホルダー */
    border-radius: 10px;
}
.layout4__col1col2--image-box img {
    width: 100%;
}
/* スマホ対応 */
    .layout4__col1col2-container {
        flex-direction: column;
        text-align: center;
    }
    .layout4__col1col2-section {
        margin: 0 auto;
    }
    .layout4__col1col2-image-box {
        max-width: 100%;
        height: auto;
    }
    .layout4__col1col2-list {
        text-align: left;
        margin: 10px 0 20px;
    }

/*========================

sub__catch
歯医者さん大好き！
女の子画像

========================*/
.sub__catch-wrapper {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.sub__catch-iimage {
    width: 70%;
    display: block;
    border-radius: 20px;
}
.sub__catch-txt {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    width: 46%;
    background-color: rgba(255, 255, 255, 0.85);
    padding: 60px 30px;
    font-size: 2.8rem;
    color: #aa8e4c;
    font-weight: bold;
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
}
/* レスポンシブ対応 */
    .sub__catch-image {
        width: 80%;
    }
    .sub__catch-txt {
        left: 5%;
        width: 40%;
        font-size: 1.4rem;
    }

    .sub__catch-wrapper {
        flex-direction: column;
        align-items: center;
    }
    .sub__catch-iimage {
        width: 100%;
    }
    .sub__catch-txt {
        position: relative;
        top: auto;
        left: auto;
        width: 80%;
        font-size: 1.2rem;
        clip-path: none;
        border-radius: 10px;
        margin-top: -30px; /* 画像に少し重ねる */
    }

/* ========================

sub__catch
シンプルな１カラム

========================*/
.simple_1col {
    /* max-width: 1100px; */
    max-width: 960px;
    height: auto;
    margin: 0 auto;
}
.simple_1col_ttl {
    font-size: 3.2rem;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 5px;
    padding: 0 15px;
    background: #ece6dd;
    color: #524636;
}
.simple_1col_txt {
    font-size: 1.9rem;
    line-height: 1.8;
}
.simple_1col .layout_2col_1col-blue-box {
    padding: 30px 20px;
    display: block;
}
    .simple_1col {
        width: 90%;
    }
    .simple_1col_ttl {
        font-size: 1.8rem;
        padding: 1px 10px;
    }
    .simple_1col_txt {
        font-size: 1.6rem;
    }

/* 各セクション */
/* section {
  margin: 80px 0;
} */
    section {
        margin: 0 0;
    }

.section__container {
    padding: 50px;
}

.post-content {
    width: 80%;
    max-width: 1000px;
    margin: 0 auto;
    font-size: 1.8rem;
    line-height: 1.8;
}
.post-header {
    text-align: center;
    margin-bottom: 20px;
}
.post-title {
    font-size: 3rem;
    color: #333;
}
.post-meta {
    font-size: 1.6rem;
    color: #777;
}
.post-body {
    font-size: 1.9rem;
    line-height: 1.8;
}
.post-tags ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 10px;
}
.post-tags li {
    background: #d4cfc7;
    padding: 5px 10px;
    border-radius: 5px;
}
.post-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}
    .post-content {
        width: 90%;
        font-size: 1.6rem;
    }
    .post-title {
        font-size: 2.5rem;
    }

/* ========================
table用デザイン

===========================*/
.schedule-container {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
}
.schedule {
    width: 100%;
    border: 1px solid #5a4225;
    overflow: hidden;
    text-align: center;
}
    .schedule-container {
        padding: 0 20px;
    }

.schedule table {
    width: 100%;
    border-collapse: collapse;
}
.schedule th, .schedule td {
    padding: 10px;
    font-size: 1.75rem;
    border-bottom: 1px solid #5a4225;
}
    .schedule th, .schedule td {
        padding: 8px 2px;
        font-size: min(4vw, 1.5rem);
    }

.schedule thead {
    background-color: #5a4225;
    color: white;
}
.schedule th {
    font-weight: bold;
}
.schedule tbody tr:last-child td {
    border-bottom: none;
}
.schedule td[colspan="7"] {
    font-weight: bold;
}
.schedule-note {
    margin-top: 10px;
    font-size: 1.75rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
    .schedule-note {
        margin-top: 15px;
        padding: 0 20px;
        font-size: 1.5rem;
    }

/* ========================
table用デザイン
比較表
===========================*/
.comparison {
    max-width: 80%;
    margin: 0 auto;
}
.comparison h2 {
    text-align: center;
    font-size: 3.2rem;
}

.doctors-profile {
    width: 100%;
    padding: 50px 20px;
    background-color: #fff;
}
    .doctors-profile {
        padding: 0 20px 50px;
    }

.col2__profile-container {
    display: flex;
    justify-content: center;
    gap: 50px;
    max-width: 1000px;
    margin: auto;
}
.col2__profile {
    width: 45%;
    text-align: center;
}
.col2__profile img {
    width: 100%;
    max-width: 250px;
    height: auto;
    display: block;
    margin: auto;
    border-radius: 10px;
    background-color: #ddd;
}
.col2__profile-title {
    font-size: 20px;
    font-weight: bold;
    margin-top: 15px;
}
.col2__profile-name {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 15px;
}
.col2__profile-subtitle {
    font-size: 18px;
    font-weight: bold;
    margin-top: 20px;
    border-bottom: 1px solid #ccc;
    display: inline-block;
    padding-bottom: 5px;
}
.col2__profile-career, .col2__profile-qualification, .col2__profile-affiliation {
    list-style: none;
    padding: 0;
    margin-top: 10px;
    text-align: left;
    font-size: 16px;
}
.col2__profile-career li, .col2__profile-qualification li, .col2__profile-affiliation li {
    /*
  margin-bottom: 5px;
	*/
    padding: 0;
}
    .col2__profile-career li, .col2__profile-qualification li, .col2__profile-affiliation li {
        font-size: min(2.75vw, 14px);
    }

/* ========================
prf用デザイン

===========================*/
.prf__container {
    max-width: 800px;
    margin: 0 auto;
}
.prf__container h3 {
    font-size: 24px;
    border-bottom: 1px solid #c2b8a3;
    padding-bottom: 10px;
    margin-bottom: 20px;
}
.prf__description {
    font-size: 16px;
    margin-bottom: 20px;
}
.prf__image-box {
    width: 300px;
    height: 300px;
    background-color: #e0e0e0;
    margin: 0 auto 50px;
    border-radius: 10px;
}
.prf__technician-name {
    margin-top: 15px;
    font-size: 18px;
    font-weight: bold;
}
.prf__technician-name span {
    font-size: 14px;
    color: #666;
}
.access-contents {
    justify-content: center;
}
.access-contents__address {
    margin-top: 0rem;
    width: 100%;
    max-width: 62.125rem;
}
/* ========================
レイアウト(虫歯治療)
layout_2col_1col
===========================*/
.layout_2col_1col {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
}
h2 {
    text-align: center;
    color: #555;
}
.layout_2col_1col-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 0 0 40px;
}
.layout_2col_1col-inner p {
    width: 60%;
}
.layout_2col_1col-inner div {
    width: 40%;
}
.layout_2col_1col-inner div img {
    width: 100%;
}
.layout_2col_1col-box {
    margin: 0 auto 20px;
    padding: 20px 30px;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(5px);
}
.layout_2col_1col-box h3 {
	margin-bottom: 5px;
    font-size: 2.25rem;
    color: #6a4d1d;
	text-align: center;
}
.layout_2col_1col-blue-box {
    background-color: rgba(173, 203, 221, 0.2);
}
.layout_2col_1col-pink-box {
    background-color: rgba(218, 189, 180, 0.2);
}
.layout_2col_1col-yellow-box {
    background-color: rgba(211, 209, 124, 0.2);
}
    .col2__profile-container {
        flex-direction: column;
    }
    .col2__profile {
        width: 100%;
        text-align: center;
    }
    .comparison {
        max-width: 94%;
    }
    .comparison h2 {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    .layout_2col_1col-inner {
        flex-direction: column-reverse;
    }
    .layout_2col_1col-inner p {
        width: 90%;
    }
    .layout_2col_1col-inner div {
        width: 90%;
    }
    .layout_2col_1col-box {
        margin: 0 auto 15px;
        padding: 15px;
    }
	.layout_2col_1col-box h3 {
		font-size: 1.875rem;
	}

/* ========================
レイアウト
layout_2col_btn_box
===========================*/
.btn_box {
    max-width: 800px;
    margin: 0 auto;
}
.layout_2col_btn_box {
    display: flex;
    align-items: center;
}
.layout_2col_btn_ttl {
    width: 50%;
    font-size: 2rem;
    font-weight: bold;
    margin-right: 20px;
    text-align: center;
}
.layout_2col_banner {
    width: 100%;
}
    .layout_2col_btn_box {
        flex-direction: column;
    }
    .layout_2col_banner {
        width: 90%;
        margin: 0 auto;
    }

/* ========================
レイアウト
img
===========================*/
.col1_img_large {
    margin: 0 auto;
    width: 80%;
}
.col1_img_middle {
    margin: 0 auto;
    width: 60%;
}
.col1_img_small {
    margin: 0 auto;
    width: 40%;
}
.symptoms__section-description b {
    color: #ac9778;
    font-weight: 700;
}
    .col1_img_large {
        width: 90%;
    }
    .col1_img_middle {
        width: 90%;
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .col1_img_small {
        width: 90%;
    }
    .symptoms__section-description {
        font-size: min(4.25vw, 1.6rem);
    }

.col1_table {
    margin: 0 auto;
}
.col1_table tr td {
    font-size: 2rem;
    padding: 0 20px;
}
/* ========================
レイアウト
map
===========================*/
.map-container {
    position: relative;
    width: 100%;
    max-width: 1000px; /* 最大幅を制限 */
    margin: 0 auto; /* 左右中央配置 */
    padding-bottom: 56.25%; /* 16:9のアスペクト比 */
    height: 0;
    overflow: hidden;
}
.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
/* レスポンシブ調整 */
    .map-container {
        max-width: 90%; /* 画面幅が狭いときは90%に調整 */
    }

    .map-container {
        max-width: 95%; /* スマホではさらに余白を調整 */
    }
    .map-container {
        margin: 20px auto;
    }
    .access .col1_table tr td {
        font-size: 1.6rem;
    }

.googlemap iframe {
	width: 100%;
	height: 480px;
}

	.googlemap iframe {
		height: 240px;
	}	

/* ========================
レイアウト
診療時間
===========================*/
.table-container {
    width: 100%;
    overflow-x: auto; /* 横スクロールを可能に */
}
.schedule-table {
    width: 60%;
    margin: 0 auto;
    border-collapse: collapse;
    min-width: 600px; /* 最小幅を確保（小さすぎる崩れを防ぐ） */
}
.schedule-table th, .schedule-table td {
    border: 1px solid black;
    padding: 10px;
    text-align: center;
    white-space: nowrap; /* 文字が折り返されるのを防ぐ */
}
.schedule-table th {
    background-color: #f8f8f8;
}
.table-container__notes {
    margin-top: 10px;
    font-size: 14px;
    text-align: left;
    width: 60%;
    margin-left: auto;
    margin-right: auto;
}
/* スマホ対応 */
    .schedule-table {
        width: 100%;
        min-width: 100%; /* フル幅にしてスクロールしやすく */
    }
    .table-container__notes {
        width: 90%; /* 余白を少し持たせる */
    }

.access {
    margin: 0;
}
/* ========================
footer調整
===========================*/

    .access-contents__address {
        margin-top: 3rem;
    }
    .access-contents__contact--tel .u-disp-flex p {
        font-size: min(8vw, 40px);
        margin: 20px 0;
    }
    .bannar-btm p {
        font-size: 1.6rem;
    }
    .bannar-btm p::after {
        width: 1.75rem;
        height: 1.75rem;
    }
    .access-contents__address--map {
        margin: 20px auto;
    }
    .access-patern__wrap {
        gap: 30px;
        flex-direction: column;
    }

.case-contents {
    width: 93%;
    margin: 6% auto 0;
}

.case-card {
    background-color: #fff;
    padding: 0 0 3.3125rem;
    box-shadow: 0px 0px 6px rgba(225, 226, 227, 0.5);
    width: 86vw;
    max-width: 100%;
}
.case-card + .case-card {
    margin-top: 3.3125rem;
}
/*
@media screen and (min-width: 768px) {
  .case-card {
    width: 100%;
    padding: 3.375rem 4.375rem;
  }
}

@media screen and (min-width: 768px) {
  .case-card:nth-child(n+2) {
    margin-top: 3.75rem;
  }
}
*/
.case .slick-dots {
    display: none;
}
.case-card__top {
    background: -moz-linear-gradient(left, rgba(200, 188, 156, 0.5), rgba(147, 120, 86, 0.5));
    background: -webkit-linear-gradient(left, rgba(200, 188, 156, 0.5), rgba(147, 120, 86, 0.5));
    background: linear-gradient(to right, rgba(200, 188, 156, 0.5), rgba(147, 120, 86, 0.5));
    padding: 0.375rem 0 0.25rem;
    width: 100%;
}

.case-card__top h3 {
    text-align: center;
    font-family: "hiragino-mincho-pron", sans-serif;
    font-weight: 300;
    color: #fff;
    font-size: 4.8vw;
}

.case-card__main {
    padding: 1.125rem 0rem 2rem;
}

.case-card__main--image:nth-child(n+2) {
    margin-top: 5%;
    position: relative;
}

.case-card__main--image:nth-child(n+2)::before {
    content: "";
    display: block;
    width: 1.0625rem;
    height: 0.96875rem;
    background-image: url("../img/tri3.png");
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: -0.875rem;
    left: 50%;
    transform: translateX(-50%);
}

.case-card__main--image p {
    text-align: center;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.05em;
}

.case-card__main--image img {
    width: 75%;
    height: 100%;
    margin: 1% auto 0;
}

.case-card__btm {
    padding: 0 0.78125rem;
}

.case-card__btm table {
    width: inherit;
    width: 100%;
}
.case-card__btm tr {
    display: flex;
    flex-direction: column;
    width: 100%;
    text-align: center;
}

.case-card__btm th {
    background-color: #c8ba9a;
    font-weight: 500;
    color: #fff;
    font-size: 4.53vw;
    padding: 0.375rem 0 0.3125rem;
}

.case-card__btm tr:nth-child(n+2) th {
    border-top: 1px solid #fff;
}
.case-card__btm td {
    font-weight: 500;
    font-size: 3.46vw;
    padding: 0.375rem 0 0.3125rem;
}

.case-card__btm tr:last-child td {
    text-align: left;
}

.slick-dots {
    display: none;
    justify-content: center;
    gap: 1.125rem;
    margin-top: 4%;
    margin-bottom: 4%;
}
.slick-dots li {
    width: 0.46875rem;
    height: 0.46875rem;
    border-radius: 50%;
    background-color: #2a5192;
}

.slick-dots li.slick-active {
    background-color: #c8a68b;
}
.slick-dots button {
    opacity: 0;
}
.imp-table table {
    width: 50%;
    margin: auto;
}
.imp-table {
    margin: 10px auto 30px;
    max-width: 900px;
}
.imp-table table {
    width: 100%;
}
.imp-table table, .imp-table td, .imp-table th {
    border: 1px solid #595959;
    border-collapse: collapse;
    font-size: 16px;
    text-align: left;
}
.imp-table td, .imp-table th {
    padding: 15px 20px;
    /* width: 30px;
  height: 25px; */
    box-sizing: border-box;
	
}
.imp-table th {
    background: #f0e6cc;
}
.imp-table .even {
    background: #fbf8f0;
}
.imp-table .odd {
    background: #fefcf9;
}
.imp-table {
    margin: 40px auto;
}
.kyuumae {
    width: 20%;
    text-align: center;
}
.camdio {
    padding: 15px !important;
}

    .imp-table table {
        width: 94%;
        margin: auto;
    }
    .imp-table td:first-child {
        width: 20%;
    }
    .imp-table td, .imp-table th {
        padding: 10px 15px;
    }
    .camdio {
        text-align: right;
    }
    .imp-table table.implant_price_2, .imp-table table.implant_price_2 th, .imp-table table.implant_price_2 td {
        font-size: 3.25vw;
        text-align: center;
    }

.imp-staff {
    margin: 40px auto 0;
    width: 39%;
}
.doctor_img_radius {
    text-align: center;
}
.doctor_img_radius img {
    max-width: 392px;
    border-radius: 50px;
    border: 1px solid #d8cfb8;
}
.mb15 {
    margin-bottom: 15px !important;
}
.mb30 {
    margin-bottom: 30px !important;
}
.mb60 {
    margin-bottom: 60px !important;
}
.sp-header {
    display: none;
    z-index: 9998;
}
    .sp-header {
        display: flex;
    }
    .header-logo {
        max-width: 31rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .header-logo img {
        vertical-align: middle;
    }
	/*
    .section-title::before {
        display: none;
    }
    .section-title::after {
        display: none;
    }
	*/

.prf__technician-name {
    margin-top: 15px;
    font-size: 18px;
    font-weight: bold;
}
.prf__technician-name span {
    font-size: 14px;
    color: #666;
}
.access-contents {
    justify-content: center;
}
.access-contents__address {
    margin-top: 0rem;
    width: 100%;
    max-width: 62.125rem;
}
/* ========================
レイアウト(虫歯治療)
layout_2col_1col
===========================*/
.layout_2col_1col {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
}
h2 {
    text-align: center;
    color: #555;
}
.layout_2col_1col-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 0 0 40px;
}
.layout_2col_1col-inner p {
    width: 60%;
}
.layout_2col_1col-inner div {
    width: 40%;
}
.layout_2col_1col-inner div img {
    width: 100%;
}

    .col2__profile-container {
        flex-direction: column;
    }
    .col2__profile {
        width: 100%;
        text-align: center;
    }
    .comparison {
        max-width: 94%;
    }
    .comparison h2 {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .layout_2col_1col-inner {
        flex-direction: column-reverse;
    }
    .layout_2col_1col-inner p {
        width: 90%;
    }
    .layout_2col_1col-inner div {
        width: 90%;
    }

/* ========================
レイアウト
layout_2col_btn_box
===========================*/
.btn_box {
    max-width: 800px;
    margin: 0 auto;
}
.layout_2col_btn_box {
    display: flex;
    align-items: center;
}
.layout_2col_btn_ttl {
    width: 50%;
    font-size: 2rem;
    font-weight: bold;
    margin-right: 20px;
    text-align: center;
}
.layout_2col_banner {
    width: 100%;
}
    .layout_2col_btn_box {
        flex-direction: column;
    }
    .layout_2col_banner {
        width: 90%;
        margin: 0 auto;
    }

/* ========================
レイアウト
img
===========================*/
.col1_img_large {
    margin: 0 auto;
    width: 80%;
}
.col1_img_middle {
    margin: 0 auto;
    width: 60%;
}
.col1_img_small {
    margin: 0 auto;
    width: 40%;
}
.symptoms__section-description b {
    color: #ac9778;
    font-weight: 700;
}
    .col1_img_large {
        width: 90%;
    }
    .col1_img_middle {
        width: 90%;
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .col1_img_small {
        width: 90%;
    }
    .symptoms__section-description {
        font-size: min(4.25vw, 1.6rem);
    }

.col1_table {
    margin: 0 auto;
}
.col1_table tr td {
    font-size: 2rem;
    padding: 0 20px;
}
/* ========================
レイアウト
map
===========================*/
.map-container {
    position: relative;
    width: 100%;
    max-width: 1000px; /* 最大幅を制限 */
    margin: 0 auto; /* 左右中央配置 */
    padding-bottom: 56.25%; /* 16:9のアスペクト比 */
    height: 0;
    overflow: hidden;
}
.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
/* レスポンシブ調整 */
    .map-container {
        max-width: 90%; /* 画面幅が狭いときは90%に調整 */
    }

    .map-container {
        max-width: 95%; /* スマホではさらに余白を調整 */
    }
    .map-container {
        margin: 20px auto;
    }
    .access .col1_table tr td {
        font-size: 1.6rem;
    }

/* ========================
レイアウト
診療時間
===========================*/
.table-container {
    width: 100%;
    overflow-x: auto; /* 横スクロールを可能に */
}
.schedule-table {
    width: 60%;
    margin: 0 auto;
    border-collapse: collapse;
    min-width: 600px; /* 最小幅を確保（小さすぎる崩れを防ぐ） */
}
.schedule-table th, .schedule-table td {
    border: 1px solid black;
    padding: 10px;
    text-align: center;
    white-space: nowrap; /* 文字が折り返されるのを防ぐ */
}
.schedule-table th {
    background-color: #f8f8f8;
}
.table-container__notes {
    margin-top: 10px;
    font-size: 14px;
    text-align: left;
    width: 60%;
    margin-left: auto;
    margin-right: auto;
}
/* スマホ対応 */
    .schedule-table {
        width: 100%;
        min-width: 100%; /* フル幅にしてスクロールしやすく */
    }
    .table-container__notes {
        width: 90%; /* 余白を少し持たせる */
    }

.access {
    margin: 0;
}
/* ========================
footer調整
===========================*/

    .access-contents__address {
        margin-top: 3rem;
    }
    .access-contents__contact--tel .u-disp-flex p {
        font-size: min(8vw, 40px);
        margin: 20px 0;
    }
    .bannar-btm p {
        font-size: 1.6rem;
    }
    .bannar-btm p::after {
        width: 1.75rem;
        height: 1.75rem;
    }
    .access-contents__address--map {
        margin: 20px auto;
    }
    .access-patern__wrap {
        gap: 30px;
        flex-direction: column;
    }

.case-contents {
    width: 93%;
    margin: 6% auto 0;
}

.case-card {
    background-color: #fff;
    padding: 0 0 3.3125rem;
    box-shadow: 0px 0px 6px rgba(225, 226, 227, 0.5);
    width: 86vw;
    max-width: 100%;
}
.case-card + .case-card {
    margin-top: 3.3125rem;
}
/*
@media screen and (min-width: 768px) {
  .case-card {
    width: 100%;
    padding: 3.375rem 4.375rem;
  }
}

@media screen and (min-width: 768px) {
  .case-card:nth-child(n+2) {
    margin-top: 3.75rem;
  }
}
*/
.case .slick-dots {
    display: none;
}
.case-card__top {
    background: -moz-linear-gradient(left, rgba(200, 188, 156, 0.5), rgba(147, 120, 86, 0.5));
    background: -webkit-linear-gradient(left, rgba(200, 188, 156, 0.5), rgba(147, 120, 86, 0.5));
    background: linear-gradient(to right, rgba(200, 188, 156, 0.5), rgba(147, 120, 86, 0.5));
    padding: 0.375rem 0 0.25rem;
    width: 100%;
}

.case-card__top h3 {
    text-align: center;
    font-family: "hiragino-mincho-pron", sans-serif;
    font-weight: 300;
    color: #fff;
    font-size: 4.8vw;
}

.case-card__main {
    padding: 1.125rem 0rem 2rem;
}

.case-card__main--image:nth-child(n+2) {
    margin-top: 5%;
	padding-top: 40px;
    position: relative;
}
.case-card__col3 .case-card__main--image:nth-child(n+2) {
	padding-top: 28px;
}

.case-card__main--image:nth-child(n+2)::before {
    content: "";
    display: block;
    width: 60px;
    height: 30px;
    background-image: url("../img/tri3.png");
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}
.case-card__col3 .case-card__main--image:nth-child(n+2)::before {
	width: 40px;
}

.case-card__main--image p {
    text-align: center;
    font-weight: 500;
    font-size: 2.4rem;
    letter-spacing: 0.05em;
}
.case-card__col3 .case-card__main--image p {
	font-size: 1.6rem;
}

.case-card__main--image img {
    width: 90%;
    height: 100%;
    margin: 1% auto 0;
}
.case-card__col3 .case-card__main--image img {
	width: 90%;
	aspect-ratio: 5/2;
}	

.case-card__btm {
    padding: 0 0.78125rem;
}

.case-card__btm table {
    width: inherit;
    width: 100%;
}
.case-card__btm tr {
    display: flex;
    flex-direction: column;
    width: 100%;
    text-align: center;
}

.case-card__btm th {
    background-color: #c8ba9a;
    font-weight: 500;
    color: #fff;
    font-size: 4.53vw;
    padding: 0.375rem 0 0.3125rem;
}

.case-card__btm tr:nth-child(n+2) th {
    border-top: 1px solid #fff;
}
.case-card__btm td {
    font-weight: 500;
    font-size: 3.46vw;
    padding: 0.375rem 0 0.3125rem;
}

.case-card__btm tr:last-child td {
    text-align: left;
}

.case-contents .slick-dots {}
.slick-dots {
    display: none;
    justify-content: center;
    gap: 1.125rem;
    margin-top: 4%;
    margin-bottom: 4%;
}
.slick-dots li {
    width: 0.46875rem;
    height: 0.46875rem;
    border-radius: 50%;
    background-color: #2a5192;
}

.slick-dots li.slick-active {
    background-color: #c8a68b;
}
.slick-dots button {
    opacity: 0;
}

.imp-staff {
    margin: 40px auto 0;
    width: 39%;
}
.doctor_img_radius {
    text-align: center;
}
.doctor_img_radius img {
    max-width: 392px;
    border-radius: 50px;
    border: 1px solid #d8cfb8;
}
.mb15 {
    margin-bottom: 15px !important;
}
.mb30 {
    margin-bottom: 30px !important;
}
.mb60 {
    margin-bottom: 60px !important;
}

    .layout2col__text > br, 
	.layout1-col1__description1 br, 
	.layout2col2__inner-description br, 
	.layout3col2__inner-description br, 
	.sp_left_brnone br {
        display: none !important;
    }
    .sp_left_br br {
        display: inline-block !important;
    }
    .sp_left, .sp_left_br, .sp_left_brnone {
        text-align: left !important;
    }
    .sp_center {
        text-align: center !important;
    }
    .sp_mb0 {
        margin-bottom: 0 !important;
    }
