@charset "UTF-8";

/* ------
  - *基本設定
  - *パンくずリスト
  - *ページ内リンク
  - *ページャー
  - *書式設定
  - *メインビジュアル
  - *タイトル
  - *おすすめ
  - *お悩みリスト
  - *院長の想い
  - *当院の特徴
  - *カウンセラー紹介
  - *追加費用
  - *当院が選ばれる理由
  - *料金表（タブ）
  - *施術の流れ
  - *注意点・副作用・リスク
  - *よくある質問
  - *WEB予約ボタン
------ */
/* ==================================================================================================================================

  *基本設定

================================================================================================================================== */
main section {
    margin-bottom: 110px;
}

/* リッチ下層のコンテンツ幅 */
.mv_contents .inner,
main section .inner,
.breadcrumb .inner,
.page_links .inner {
    max-width: 1100px;
}

/* ==============================================
  *SP 基本設定
============================================== */
@media screen and (max-width: 640px) {
    .inner {
        width: 100%;
        margin: auto;
        padding: 0 20px;
    }
}

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

  *パンくずリスト

================================================================================================================================== */
.breadcrumb {
    margin: 30px auto !important;
}

.breadcrumb_list {
    counter-reset: unset;
    display: flex;
    flex-wrap: wrap;
    gap: 5px 0;
}

.breadcrumb_list li {
    position: relative;
    margin: 0;
    padding: 0;
    line-height: 1.5;
}

.breadcrumb_list li::after {
    content: "\f054";
    position: relative;
    top: -1px;
    padding: 0 10px;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 70%;
}

/* 親ターム、子タームが複数ある場合、最後以外にカンマを表示 */
.breadcrumb_list li.parent:has(~ .parent)::after,
.breadcrumb_list li.child:has(~ .child)::after,
.breadcrumb_list li.grandchild:has(~ .grandchild)::after {
    content: ",";
    position: relative;
    top: 0;
    padding: 0 5px;
    font-family: inherit;
    font-weight: normal;
    font-size: 100%;
}

/* 最後の要素の矢印を消す */
.breadcrumb_list li:last-of-type::after {
    display: none;
}

/* ==============================================
  *SP パンくずリスト
============================================== */
@media screen and (max-width: 640px) {
    .breadcrumb {
        font-size: 13px;
    }
}

/* ==============================================
  *SP パンくずリスト
============================================== */
@media screen and (max-width: 640px) {
    .breadcrumb {
        font-size: 13px;
    }
}

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

  *ページ内リンク

================================================================================================================================== */
.page_links {
    margin: 100px 0 50px;
}

.page_links ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px;
}

.page_links li {
    position: relative;
    z-index: 1;
}

.page_links li a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 12px 15px;
    background: var(--bg-color);
    color: var(--text-color);
    font-family: var(--jp-font);
    font-weight: 400;
    line-height: 1.45;
    font-size: 95%;
    text-align: center;
    transition: color 0.2s, background 0.2s;
    border-radius: 5px;
    min-height: 60px;
}

.page_links li a:hover {
    background: #ffeeee;
}

/* 2列 */
.twoLinks li {
    width: calc(50% - 5px);
}

/* 3列 */
.threeLinks li {
    width: calc(33.3333333333% - 6.6666666667px);
}

/* ==============================================
  *SP ページ内リンク
============================================== */
@media screen and (max-width: 640px) {
    .page_links li {
        width: 100%;
    }
}

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

  *ページャー

================================================================================================================================== */
.pager {
    display: flex;
    flex-flow: wrap;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 30px auto 0;
    font-size: 15px;
}

.pager>* {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 34px;
    background: #d7d7d7;
    border-radius: 30px;
    color: #ffffff;
    line-height: 1;
}

.pager .current {
    background: var(--main-color);
    color: #ffffff;
}

.pager a:hover {
    background: #929292;
    color: #ffffff;
}

.pager .next,
.pager .prev {
    padding: 0 0 3px 1px;
    font-size: 150%;
}

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

  *書式設定

================================================================================================================================== */
.mtem {
    margin-top: 2em;
}

.mbem {
    margin-bottom: 1em;
}

/* 段落余白 */
main .inner>*:not(h1, h2, h3, h4, h5) {
    margin-bottom: 3em;
}

main .inner>*:not(h1, h2, h3, h4, h5):last-child {
    margin-bottom: 0;
}

/* ----- text ----- */
.text {
    position: relative;
}

.text>*:not(h1, h2, h3, h4, h5, h6) {
    margin-bottom: 2em;
}

.text>*:not(h1, h2, h3, h4, h5, h6):last-child {
    margin-bottom: 0;
}

.yellowline {
    font-weight: bold;
    text-decoration: underline;
    text-decoration-color: rgb(255, 245, 157);
    text-decoration-skip-ink: none;
    text-decoration-thickness: 0.6em;
    text-underline-offset: -0.2em;
}

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

  *メインビジュアル

================================================================================================================================== */
/* ----- #mainvisual ----- */
#mainvisual {
    position: relative;
    z-index: 1;
    height: 800px;
    padding: 0 40px;
    overflow: hidden;
}

/* ---------- MVの画像 ---------- */
.mv_img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.mv_img::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    background: linear-gradient(to right, rgba(31, 35, 35, 0.3), rgba(95, 112, 112, 0.4), transparent);
    width: 100%;
    height: 100%;
	border-radius: 30px;
    z-index: 0;
}

.mv_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
}

/* ----- コンテンツ ----- */
.mv_contents {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
}

.mv_contents .inner {
    position: relative;
    z-index: 1;
    height: 100%;
}

.mv_contents .catch {
    position: absolute;
    top: 45%;
    right: 0;
    z-index: 2;
    color: #ffffff;
    font-family: var(--jp-font);
    font-weight: 400;
    font-size: 150%;
    text-align: center;
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.4));
    transform: translateY(-50%);
    line-height: 1.7;
}

.mv_contents .catch em {
    display: block;
    font-style: normal;
    font-size: 230%;
    line-height: 1.5;
    letter-spacing: 7px;
    margin-bottom: 10px;
}

.mv_contents .catch.layout02 {
    top: 20%;
    font-size: 130%;
    text-align: right;
}

.mv_contents .catch.layout02 em {
    font-size: 160%;
}


/* ----- テキストバナーエリア ----- */
.bnr_list {
    position: absolute;
    top: 280px;
    right: 0;
    padding: 4px;
    background: rgba(255, 255, 255, 0.3);
    width: fit-content;
    border-radius: 20px;
}

.bnr_list_inner {
    padding: 20px 30px;
    overflow: hidden;
    border-radius: 16px;
    background: url(../images/shape05.svg), url(../images/shape04.svg);
    background-color: rgba(255, 255, 255);
    background-repeat: no-repeat;
    background-position: 200px -90px, -100px 100px;
    background-size: 320px, 320px;
}

.bnr_list_inner p {
    margin: 0 auto 15px;
    padding: 5px 30px;
    background: linear-gradient(90deg, #2cc5c5 0%, #fbc9ce 65%, var(--sub-color) 100%);
    color: #ffffff;
    text-align: center;
    font-family: var(--jp-font);
    font-weight: 400;
    line-height: 1.5;
    border-radius: 5px;
    font-size: 20px;
}

.bnr_list_inner ul {
    
}

.bnr_list_inner ul li {
    line-height: 1.2;
}

.mv_contents .bnr_wrap {
    position: absolute;
    right: 0;
    bottom: 50px;
}

.bnr_wrap {
    display: flex;
    flex-flow: wrap;
    gap: 10px;
}

.bnr_wrap .bnr {
    position: relative;
    display: block;
    width: 170px;
    height: 170px;
    padding: 4px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    text-align: center;
    transition: 0.3s;
    overflow: hidden;
}

.bnr_wrap .bnr p {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 10px;
    background: rgba(255, 255, 255);
    border-radius: 50%;
    font-family: var(--jp-font);
    font-size: 16px;
    line-height: 1.4;
    font-weight: 400;
}

.bnr_wrap .bnr p::before,
.bnr_wrap .bnr p::after {
    position: absolute;
    content: '';
    z-index: 0;
}

.bnr_wrap .bnr p::before {
    background: url(../images/shape05.svg) no-repeat center / contain;
    width: calc(217px * 1.1);
    height: calc(150px * 1.1);
    top: -70px;
    right: -70px;
    opacity: 0.8;
}

.bnr_wrap .bnr p::after {
    background: url(../images/shape04.svg) no-repeat center / contain;
    width: 241px;
    height: 150px;
    bottom: -45px;
    left: -70px;
    transform: rotate(-7deg);
    opacity: 0.5;
}

.mv_contents .bnr_facility {
    position: absolute;
    bottom: 60px;
    left: 0;
    padding: 4px;
    background: rgba(255, 255, 255, 0.3);
    width: fit-content;
    border-radius: 20px;
}

.mv_contents .bnr_facility::after {
    position: absolute;
    content: '';
    background: url(../images/mv_support-service.png) no-repeat center / contain;
    width: 190px;
    height: 140px;
    bottom: 1px;
    right: 20px;
    z-index: 0;
}

.facility_inner {
    background: rgba(255, 255, 255);
    padding: 20px 170px 20px 20px;
    overflow: hidden;
    border-radius: 16px;
}

.bnr_facility .facility_text {
    font-family: var(--jp-font);
}

.bnr_facility .facility_text .title {
    margin: 0 auto 15px;
    padding: 5px 30px;
    background: linear-gradient(90deg, #2cc5c5 0%, #fbc9ce 65%, var(--sub-color) 100%);
    color: #ffffff;
    text-align: center;
    font-family: var(--jp-font);
    font-weight: 400;
    line-height: 1.5;
    border-radius: 5px;
    font-size: 20px;
}

.bnr_btn {
    position: relative;
}

.bnr_btn>* {
    color: var(--text-color);
    padding: 0 0 0 30px;
    transition: background 0.2s, color 0.2s;
}

.bnr_btn>*::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 95px;
    display: block;
    width: 12px;
    height: 12px;
    background: var(--text-color);
    mask: url(../images/btn_arrow.png) center center / cover no-repeat;
    transform: translateY(-50%);
    transition: right 0.2s, background 0.2s;
}

.bnr_btn>*:hover::after {
    right: 90px;
    background: var(--sub-color);
}

/* ----- MVのSP用は非表示に ----- */
.mv_under {
    display: none;
}

/* ==============================================
  *SP メインビジュアル
============================================== */
@media screen and (max-width: 640px) {
    #mainvisual {
        position: relative;
        width: 100%;
        height: 700px;
        padding: 0;
    }

    .mv_img img {
        border-radius: 0;
    }
	
	.mv_img::before {
		border-radius: 0;
	}

    .mv_contents {
        padding: 0 10px;
    }

    .mv_contents .catch {
        top: 20%;
        font-size: 100%;
        text-align: center;
		left: 0;
    }

    .mv_contents .catch.layout02 {
        top: 14%;
        font-size: 80%;
        text-align: center;
    }

    .mv_contents .catch em {
        font-size: 190%;
    }

    .mv_contents .inner {
        margin: 0 auto;
        padding: 0;
    }

    .bnr_list {
        position: static;
        padding: 0;
        margin-bottom: 20px;
    }

    .bnr_list_inner {
        background: rgb(251 247 248);
    }

    /* テキストバナーエリア */
    .mv_contents .bnr_wrap {
        bottom: 30px;
    }

    .bnr_wrap {
        justify-content: center;
        gap: 5px;
    }

    .bnr_wrap .bnr {
        width: 150px;
        height: 150px;
    }

    .bnr_wrap .bnr p {
        font-size: 15px;
    }

    /* 設備紹介バナー */
    .bnr_facility {
        position: relative;
    }

    .bnr_facility::after {
        position: absolute;
        content: '';
        background: url(../images/mv_support-service.png) no-repeat center / contain;
        width: 190px;
        height: 140px;
        bottom: 1px;
        right: 0;
        left: 0;
        margin: auto;
        z-index: 0;
    }

    .bnr_facility .facility_inner {
        justify-content: center;
        width: 100%;
        margin: 0 auto 30px;
        padding: 20px 20px 150px 20px;
        text-align: center;
        background: rgb(251 247 248);
        box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.1);
    }

    .bnr_facility .facility_text {
        width: 100%;
        padding: 0;
    }

    .bnr_facility .facility_text .title {
        font-size: 17px;
        padding: 8px 20px;
    }

    .bnr_btn>* {
        padding: 0 20px;
    }

    .bnr_btn>*::after {
        right: 10px;
    }

    .bnr_btn>*:hover::after {
        right: 7px;
    }

    /* ----- MVから非表示にするコンテンツを指定 ----- */
    .mv_contents .bnr_facility {
        display: none;
    }

    .mv_contents .bnr_list {
        display: none;
    }

    /* ----- MV内のコンテンツをMV下に表示 ----- */
    .mv_under {
        display: block;
    }

    .mv_under .bnr_wrap {
        display: none;
    }
}

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

  *タイトル

================================================================================================================================== */
h2.coming_title {
    margin-bottom: 25px;
    padding: 10px 15px 7px;
    background: var(--main-color);
    color: #ffffff;
    font-size: 140%;
}

h2,
h3,
h4,
h5,
h6 {
    position: relative;
    z-index: 1;
    line-height: 1.75;
}

h2.special_title {
    margin: 0 0 50px;
    font-family: var(--jp-font);
    font-weight: 400;
    font-size: 190%;
    text-align: center;
}

h2.special_title::before {
    content: attr(eng);
    display: block;
    margin: 0 auto 5px;
    color: var(--main-color);
    font-family: var(--en-font);
    font-weight: 400;
    font-size: 70%;
}

h2.special_title::after {
    content: "";
    display: block;
    width: 40px;
    height: 2px;
    margin: 15px auto 0;
    background: var(--line-color);
}

.tit01 {
    margin-bottom: 30px;
    padding: 15px 25px 15px 30px;
    background: linear-gradient(90deg, var(--main-color) 0%, #b2e8e8 35%, #fbc9ce 65%, var(--sub-color) 100%);
    color: #ffffff;
    font-size: 150%;
    border-radius: 7px;
    font-family: var(--jp-font);
    line-height: 1.5;
}

.tit02 {
    margin: 0 0 15px;
    padding: 10px;
    background: #ffffff;
    font-family: var(--jp-font);
    font-weight: 400;
    font-size: 120%;
    text-align: center;
    border-radius: 5px;
}

/* ==============================================
  *SP
============================================== */
@media screen and (max-width: 640px) {
    h2.special_title {
        font-size: 130%;
    }

    .tit01 {
        font-size: 120%;
        line-height: 1.5;
    }

    .tit02 {
        font-size: 110%;
        line-height: 1.4;
    }
}

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

  *おすすめ

================================================================================================================================== */
.recommend_list {
    display: flex;
    flex-flow: wrap;
    gap: 20px;
}

.recommend_item {
    position: relative;
    z-index: 1;
    width: calc(50% - 10px);
}

.recommend_item .popular {
    position: absolute;
    top: -10px;
    left: -10px;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background: var(--sub-color);
    border: 50%;
    border-radius: 50%;
    color: #ffffff;
    font-family: var(--jp-font);
    font-weight: 400;
    font-size: 14px;
    line-height: 1.25;
    text-align: center;
}

.recommend_item .title {
    padding: 15px 30px;
    background: var(--main-color);
    color: #ffffff;
    font-family: var(--jp-font);
    font-weight: 400;
    font-size: 140%;
    text-align: center;
    border-radius: 7px 7px 0 0;
}

.recommend_item .popular_title {
    padding: 15px 60px;
}

.recommend_item .title .white {
    position: relative;
    top: -2px;
    display: inline-block;
    margin-right: 15px;
    padding: 2px 15px;
    background: #ffffff;
    border-radius: 300px;
    color: var(--main-color);
    font-size: 14px;
}

.recommend_item .title .small {
    font-size: 75%;
}

.recommend_text {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
    border: 1px solid var(--line-color);
    border-style: none solid solid solid;
    font-size: 150%;
    border-radius: 0 0 7px 7px;
}

.recommend_text .price .num {
    display: inline-block;
    margin-right: 15px;
    font-size: 80%;
}

/* ==============================================
  *SP おすすめ
============================================== */
@media screen and (max-width: 640px) {
    .recommend_list {
        flex-flow: column;
    }

    .recommend_item {
        width: 100%;
    }

    .recommend_item .popular_title {
        padding: 15px 50px;
    }

    .recommend_text {
        padding: 20px;
    }
}

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

  *お悩みリスト

================================================================================================================================== */
.worries_list {
    display: flex;
    flex-flow: wrap;
    justify-content: center;
    gap: 20px 45px;
    padding: 40px 20px;
    background: var(--bg-color);
    border-radius: 7px;
}

.worries_list li {
    position: relative;
    z-index: 1;
    padding: 0 0 0 40px;
    font-size: 130%;
}

.worries_list li::before {
    content: "\f14a";
    position: absolute;
    top: 0;
    left: 0;
    font-family: "Font Awesome 5 Free";
    font-style: normal;
    font-weight: 900;
    color: var(--main-color);
    font-size: 100%;
}

/* ==============================================
  *SP お悩みリスト
============================================== */
@media screen and (max-width: 640px) {
    .worries_list {
        justify-content: flex-start;
        padding: 25px 30px;
    }

    .worries_list li {
        padding: 0 0 0 35px;
    }
}

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

  *MV下メッセージ

================================================================================================================================== */
.under_message {
    font-family: var(--jp-font);
    text-align: center;
    max-width: 1100px;
    padding: 90px 5%;
    margin: 0 auto;
    border-radius: 7px;
    background: #fbf7f8;
    outline: 1px dashed #f8d5d9;
    outline-offset: -5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.under_message>* {
    margin-bottom: 50px;
    line-height: 1.7;
}

.under_message>*:last-child {
    margin-bottom: 0;
}

.under_message strong {
    font-size: clamp(1rem, 2vw, 130%);
    font-weight: 400;
	color: inherit;
}

/* ==============================================
  *SP MV下メッセージ
============================================== */
@media screen and (max-width: 640px) {
    .under_message {
        text-align: left;
        padding: 7%;
        font-size: 90%;
    }
}

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

  *院長の想い

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

  *当院の特徴

================================================================================================================================== */
.feature_list {
    display: flex;
    flex-flow: wrap;
    gap: 30px;
}

.feature_item {
    flex: 1;
    background: #fff2f4;
    border-radius: 7px;
    overflow: hidden;
    counter-increment: number 1;
}

.feature_inner>*:not(:last-child) {
    margin-bottom: 1em;
}

.feature_img {
    position: relative;
    margin-bottom: 30px;
}

.feature_img::before,
.feature_img::after {
    content: "";
    position: absolute;
    display: block;
}

.feature_img::before {
    position: absolute;
    left: 20px;
    bottom: 10px;
    content: '0' counter(number);
    font-family: var(--en-font);
    font-size: 70px;
    line-height: 70px;
    color: #ffffff;
    z-index: 1;
}

.feature_img::after {
    display: block;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    right: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.1));
    z-index: 0;
}

.feature_inner {
    padding: 0 20px 40px;
}

.feature_title {
    margin-top: 20px !important;
    padding: 7px 15px 5px;
    color: var(--sub-color);
    background: #ffffff;
    font-family: var(--jp-font);
    font-weight: 400;
    font-size: 110%;
    border-radius: 5px;
    text-align: center;
    min-height: 80px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

/* ==============================================
  *SP 当院の特徴
============================================== */
@media screen and (max-width: 640px) {
    .feature_list {
        flex-flow: column;
        gap: 40px;
    }
}

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

  *当院の特徴02

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

.feature02_list{
  display: flex;
  flex-flow: wrap;
  gap: 10px 30px;
}

.feature02_item{
  display: flex;
  height: auto;
  width: 100%;
  padding: 40px;
  gap: 30px;
  border-radius: 20px;
}

.feature02_item:nth-child(odd){
  background: #e8fbfb;
}

.feature02_item:nth-child(even){
  background: #fff2f4;
}

.feature02_img{
    position: relative;
    width: 420px;
    flex-shrink: 0;
}

.feature02_img img {
    object-fit: cover;
    height: 420px;
    border-radius: 15px;
}

.feature02_img .feature_num {
    position: absolute;
    left: 20px;
    bottom: 10px;
    content: '0' counter(number);
    font-family: var(--en-font);
    font-size: 70px;
    line-height: 70px;
    color: #ffffff;
    z-index: 1;
}

.feature02_inner{
  position: relative;
  z-index: 2;
  display: flex;
  flex-flow: column;
  width: calc(100% + 50px);
  height: 100%;
  min-height: 400px;
}

.feature02_inner > *:not(:last-child){
  margin-bottom: 30px;
}

.feature02_title{
  display: flex;
  flex-flow: column;
  margin-bottom: 20px!important;
}

.feature02_title h3{
    font-size: 150%;
    line-height: 1.75;
    background: #ffffff;
    border-radius: 7px;
    padding: 15px 30px;
    font-family: var(--jp-font);
    font-size: 120%;
}

.feature02_item:nth-child(odd) .feature02_title h3{
    color: var(--main-color);
}

.feature02_item:nth-child(even) .feature02_title h3{
    color: var(--sub-color);
}

.feature02_num{
  margin: 0 0 5px!important;
  font-size: 120%;
}

.feature02_num span{
  color: var(--main-color);
  font-size: 130%;
}

.feature02_item .btn01 {
  margin-top: auto;
  text-align: center;
}

.feature02_item .btn01 > *{
  padding: 10px 40px 10px 30px;
  font-size: 95%;
}

/* 左右 */
.feature02_item:nth-child(even){
  flex-flow: row-reverse;
}

/* ==============================================
  *SP 当院の特徴02
============================================== */
@media screen and (max-width: 640px) {
  .feature02{
    padding-bottom: 0;
  }
  
  .feature02_list{
    gap: 40px;
  }

  .feature02_item{
    flex-flow: column;
    width: 100%;
    margin: 0;
    border-radius: 7px;
    padding: 20px;
  }

  .feature02_img{
    width: 100%;
    margin: 0;
  }

  .feature02_img img {
    height: 240px;
    border-radius: 10px;
  }

  .feature02_inner{
    width: 100%;
    min-height: auto;
    margin: 0;
  }

  .feature02_title{
    margin-bottom: 15px!important;
    min-height: auto;
  }

  .feature02_title h3 {
    font-size: 110%;
    padding: 15px;
  }

  /* 左右 */
  .feature02_item:nth-child(even){
    flex-flow: column;
  }
  .feature02_item:nth-child(even) .feature02_inner{
    margin: 0 auto;
  }
}

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

  *カウンセラー紹介

================================================================================================================================== */
.doctor_box:not(:last-child) {
  margin: 0;
  padding: 0 0 60px;
}

.doctor_box:not(:first-child) h2 {
  margin-top: 20px;
}

.doctor_flex {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.doctor_text {
  width: 100%;
}

.doctor_text > *:not(:first-child) {
  margin-top: 30px !important;
}

.doctor_name {
  color: var(--text-color);
  font-family: var(--jp-font);
  font-weight: 400;
  line-height: 1.75;
  text-align: center;
}

.doctor_name .position {
  font-size: 120%;
}

.doctor_name .name {
  font-size: 150%;
}

.doctor_img {
  flex-shrink: 0;
  width: 420px;
}

.doctor_img img {
    border-radius: 15px;
    margin-bottom: 20px;
}

.doctor_career {
  margin-top: 30px;
}

.career_box {
  padding: 30px;
  background: var(--bg-color);
  border-radius: 20px;
}

.career_box:not(:last-of-type) {
  margin-bottom: 10px;
}

.career_box h3 {
    color: var(--main-color);
    background: #ffffff;
    border-radius: 7px;
    padding: 15px 30px;
    font-family: var(--jp-font);
    font-size: 120%;
    margin-bottom: 20px;
}

.career_box h3::before, .career_box h3::after {
  display: none;
}

/* 日付あり */
.career_box dl {
  display: flex;
  gap: 10px;
  border-bottom: 1px dashed var(--line-color);
}

.career_box dl > * {
  padding: 10px 20px;
}

.career_box dt {
  width: 25%;
}

/* 日付なし */
.career_box li {
  padding: 10px 20px;
  border-bottom: 1px dashed var(--line-color);
}

/* フリーエリア */
.doctor_freearea {
  margin-top: 30px;
}

/* ==============================================
  *SP カウンセラー紹介
============================================== */
@media screen and (max-width: 640px) {
    .doctor_flex {
    flex-flow: column;
    gap: 30px;
    }

    .doctor_img {
    order: -1;
    width: 100%;
    margin: 0 auto;
    }

    .doctor_name .position {
    font-size: 100%;
    }

    .doctor_name .name {
    font-size: 120%;
    }

    .career_box {
    padding: 20px 25px;
    border-radius: 7px;
    }

    .career_box h3 {
    margin: 0;
    }

    /* 日付あり */
    .career_box dl {
    flex-flow: column;
    gap: 0;
    }

    .career_box dl > * {
    padding: 10px;
    }

    .career_box dt {
    width: 100%;
    padding: 10px 10px 5px;
    }

    .career_box dd {
    width: 100%;
    padding: 5px 10px 10px;
    }

    /* 日付なし */
    .career_box li {
    padding: 10px;
    }
}

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

  *追加費用

================================================================================================================================== */
.cost {
    display: flex;
    flex-flow: wrap;
    gap: 20px;
}

.cost li {
    display: flex;
    flex-flow: column;
    justify-content: center;
    width: calc(25% - 15px);
    height: auto;
    padding: 30px 20px;
    border: 1px solid var(--line-color);
    text-align: center;
    border-radius: 7px;
}

.cost li i {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 100px;
    margin: 0 auto;
    background: linear-gradient(to bottom right, var(--main-color) 0, var(--main-color) 65%, #cfcfcf 65%, #cfcfcf 100%);
    border-radius: 50%;
    color: #ffffff;
    font-size: 40px;
}

.cost li .title {
    margin: 15px 0 0;
    font-family: var(--jp-font);
    font-weight: 400;
    font-size: 130%;
    text-align: center;
}

.cost li .price {
    margin-top: 5px;
    font-family: var(--en-font);
    font-weight: 400;
    font-size: 220%;
    line-height: 1.85;
}

.cost li .price span {
    display: inline-block;
    margin-right: 10px;
    color: var(--main-color);
    font-size: 70%;
}

.cost li .cautionary {
    color: #5b5b5b;
    font-size: 90%;
}

table.comparison tr:first-of-type>* {
    background: var(--main-color);
    color: #ffffff;
}

/* ==============================================
  *SP 追加費用
============================================== */
@media screen and (max-width: 640px) {
    .cost {
        gap: 10px;
    }

    .cost li {
        justify-content: flex-start;
        width: calc(50% - 5px);
    }
}

@media screen and (max-width: 400px) {
    .cost {
        gap: 15px;
    }

    .cost li {
        width: 100%;
    }
}

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

  *当院が選ばれる理由

================================================================================================================================== */
.reason_list {
    counter-reset: number 0;
}

.reason_item {
    display: flex;
    border-radius: 7px;
    overflow: hidden;
}

.reason_item:not(:last-child) {
    margin: 0 0 20px;
}

.reason_title {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 20px 10px;
    background: var(--main-color);
    color: #ffffff;
    font-family: var(--jp-font);
    font-weight: 400;
    font-size: 120%;
    text-align: center;
}

.reason_title::before {
    /* content: "Reason" counter(number); */
    content: "0" counter(number);
    counter-increment: number;
    position: absolute;
    bottom: 10px;
    left: 15px;
    z-index: -1;
    color: #ffffff;
    font-family: var(--en-font);
    font-weight: 400;
    font-size: 40px;
    line-height: 1;
    opacity: 0.3;
}

.reason_text {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    width: 65%;
    padding: 10px 15px;
    background: var(--bg-color);
}

/* ==============================================
  *SP 当院が選ばれる理由
============================================== */
@media screen and (max-width: 640px) {
    .reason_item {
        flex-flow: wrap;
    }

    .reason_title {
        padding: 20px;
    }

    .reason_text {
        width: 100%;
        padding: 20px;
    }
}

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

  *このようなお悩みありませんか？

================================================================================================================================== */
.special_layout .layout_box {
    display: flex;
    align-items: center;
    gap: 30px;
    background: #e8fbfb;
    margin-bottom: 10px;
    padding: 30px;
    border-radius: 10px;
}

.special_layout .layout_box:last-child {
    margin-bottom: 0;
}

.special_layout .layout_box:nth-child(even) {
    background: #fff2f4;
}

.special_layout .layout_img {
    width: 200px;
}

.special_layout .layout_img02 {
    width: 600px;
}

.special_layout .layout_img02 img {
    width: 100%;
    height: 100%;
    min-height: 700px;
    object-fit: cover;
}

.special_layout .layout_text {
    width: 100%;
}

.special_layout .layout_text>* {
    font-size: 15px;
}

.special_layout .layout_title {
    color: var(--main-color);
    background: #ffffff;
    border-radius: 7px;
    padding: 15px 30px;
    font-family: var(--jp-font);
    font-size: 120%;
}

.special_layout .layout_box:nth-child(even) .layout_title {
    color: var(--sub-color);
}

.special_layout .layout_sub_title {
    display: block;
    width: fit-content;
    padding: 0 15px 4px;
    color: #5c7879;
    font-family: var(--jp-font);
    font-weight: 400;
    font-size: 110%;
    border-bottom: 1px solid #cfcfcf;
}

.special_layout .list04,
.special_layout .list04_border,
.special_layout .list04_bg {
    gap: 0;
}


.special_layout .layout_box:nth-child(even) .list04 li:before {
    color: var(--sub-color);
}

/* ==============================================
  *SP
============================================== */
@media screen and (max-width: 640px) {
    .special_layout .layout_box {
        flex-flow: column;
        padding: 3%;
    }

    .special_layout .layout_title {
        font-size: 110%;
        padding: 5px 15px
    }

    .special_layout .layout_img02 {
        width: 100%;
    }

    .special_layout .layout_img02 img {
        min-height: inherit;
        max-height: 250px;
        object-fit: cover;
    }
}

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

  *料金表（タブ）

================================================================================================================================== */
.price_table tr:first-child th {
    background: var(--main-color);
    color: #ffffff;
}

.price_table tr:not(:first-child) th {
    background: #f1f1f1;
}

.price_table td {
    background: #ffffff;
}

.price_tab .tab_list li {
    min-height: auto;
    padding: 10px 20px;
}

.price_tab .price_img {
    margin: 0 auto 15px;
    text-align: center;
}

.price_tab .panel .cautionary {
    margin-top: 15px;
    font-size: 90%;
}

/* ==============================================
  *SP 料金表（タブ）
============================================== */
@media screen and (max-width: 640px) {
    .price_tab .tab_list {
        flex-flow: column;
        margin: 0 auto 10px;
    }

    .price_tab .tab_list li {
        width: 100%;
        padding: 5px 15px;
    }
}

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

  *施術の流れ

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

  *注意点・副作用・リスク

================================================================================================================================== */
.risk_list {
    display: flex;
    flex-flow: column;
    gap: 30px;
    padding: 30px 40px;
    background: var(--bg-color);
    border-radius: 7px;
}

.risk_list li {
    position: relative;
    z-index: 1;
    padding: 0 0 0 35px;
    font-size: 115%;
}

.risk_list li::before {
    content: "\f071";
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50%;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--main-color);
    letter-spacing: 0.1em;
}

/* ==============================================
  *SP
============================================== */
@media screen and (max-width: 640px) {
    .risk_list {
        padding: 30px 25px;
    }
}

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

  *よくある質問

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

  *WEB予約ボタン

================================================================================================================================== */
.webyoyaku {
    text-align: center;
}

.webyoyaku p {
    margin-bottom: 10px;
    font-size: 110%;
}

.webyoyaku_btn {
    animation: btnSize 0.5s ease-in-out infinite alternate;
}

.webyoyaku_btn a {
    position: relative;
    z-index: 1;
    display: inline-block;
    min-width: 500px;
    padding: 15px 20px;
    background: linear-gradient(to right, var(--main-color), var(--sub-color));
    border-radius: 300px;
    color: #ffffff;
    font-family: var(--jp-font);
    font-weight: 400;
    font-size: 120%;
    text-align: center;
    transition: filter 0.2s, opacity 0.2s;
}

.webyoyaku_btn a:hover {
    filter: brightness(1.2);
}

.webyoyaku_btn a::after {
    content: "";
    position: absolute;
    top: 48%;
    right: 35px;
    z-index: 2;
    display: block;
    width: 32px;
    height: 7px;
    background: #ffffff;
    -webkit-mask: url(../images/btn_arrow.png) no-repeat center/cover;
    mask: url(../images/btn_arrow.png) no-repeat center/cover;
    transform: translateY(-50%);
    transition: right 0.2s;
}

.webyoyaku_btn a:hover::after {
    right: 30px;
}

@keyframes btnSize {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.025);
    }
}

/* ==============================================
  *SP WEB予約ボタン
============================================== */
@media screen and (max-width: 640px) {
    .webyoyaku_btn a {
        min-width: auto;
        padding: 15px 50px;
        font-size: 110%;
    }

    .webyoyaku_btn a::after {
        right: 20px;
        width: 23px;
        height: 5px;
    }

    .webyoyaku_btn a:hover:after {
        right: 15px;
    }
}