@charset "UTF-8";

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

  *基本設定

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

main section:last-child {
    background: var(--bg-color);
    margin-bottom: 0 !important;
}

main section:last-child .inner {
    padding: 100px 0;
}

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

/* ==============================================
  *SP 基本設定
============================================== */
@media screen and (max-width: 640px) {
    main section {
        margin-bottom: 80px;
    }

    main section:last-child .inner {
        padding: 70px 0;
    }

    .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-bottom: 50px;
}

.page_links .inner {
    max-width: 1300px;
}


.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-size: 95%;
    text-align: center;
    transition: color 0.2s, background 0.2s;
    font-family: var(--font-jp);
}

.page_links li a:hover {
    background: var(--bg-green);
}

/* 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: calc(50% - 5px);
    }
}

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

  *ページャー

================================================================================================================================== */
.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: 2em;
}

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: 850px;
    margin: 0 0 0 auto;
    background: var(--main-color);
    overflow: hidden;
}

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

.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%;
    z-index: 0;
}

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

/* ----- コンテンツ ----- */
.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%;
    max-width: 1300px;
}

.mv_contents .catch {
    position: absolute;
    top: 40%;
    left: 40px;
    z-index: 2;
    font-size: 300%;
    transform: translateY(-50%);
    font-family: var(--font-jp);
    font-weight: 500;
    line-height: 1.5;
    color: var(--main-color);
    font-family: "shippori-mincho", sans-serif;
    color: #ffffff;
    /* text-shadow: 0 0 7px #fff, 0 0 7px #fff, 0 0 15px #fff, 0 0 15px #fff; */
}

.mv_contents .catch::before {
    content: attr(eng);
    display: block;
    margin: 0 auto 25px;
    font-size: 70%;
    font-weight: 300;
    letter-spacing: .25em;
    font-family: var(--font-en2);
    color: #ece3a4;
    text-shadow: none;
}

.mv_contents .catch em {
    font-size: 1.2em;
    font-style: normal;
    display: block;
}

/* ----- テキストバナーエリア ----- */
.mv_contents .bnr_wrap {
    position: absolute;
    right: 40px;
    bottom: 60px;
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}

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

.bnr_wrap .bnr_list {
    width: fit-content;
    padding: 20px 2rem 20px 20px;
}

.bnr_wrap .bnr_list li {
    position: relative;
    padding: 0 0 0 30px;
    font-family: "shippori-mincho", sans-serif;
}

.bnr_wrap .bnr_list li span {
    font-size: 130%;
    color: var(--sub-color3);
    padding: 0 5px;
}

.bnr_wrap .bnr_list li:before {
    content: "\f058";
    position: absolute;
    top: 50%;
    left: 7px;
    font-family: "Font Awesome 5 Free";
    font-style: normal;
    font-weight: 300;
    color: var(--main-color);
    transform: translateY(-50%);
}

.bnr_wrap .bnr {
    display: block;
    width: 170px;
    height: 170px;
    padding: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    font-size: 14px;
    text-align: center;
}

.bnr_wrap .bnr p {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    height: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
}

.mv_contents .bnr_facility {
    position: absolute;
    bottom: 60px;
    left: 290px;
}

/* ----- 設備バナーエリア ヒゲ脱毛ページのみ ----- */
.mv_contents .bnr_facility.trouble02 {
    left: 0;
}

.mv_contents .num_visit {
    width: 207px;
    height: 207px;
    position: absolute;
    left: 0;
    bottom: 80px;
    border-radius: 50%;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}

/* ----- 設備バナーエリア ----- */
.mv_contents .bnr_facility {
    margin-top: 40px;
    background: rgba(255, 255, 255, 0.65);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}

.facility_inner {
    display: flex;
    gap: 25px;
    width: fit-content;
    padding: 10px;
    background: rgba(255, 255, 255, 0.6);
}

.bnr_facility .facility_text .title {
    margin: 0 auto 20px;
    padding: 5px 20px;
    background: linear-gradient(to right, #afa97d, #bebca5);
    color: #ffffff;
    text-align: center;
    font-size: 150%;
    font-family: var(--font-jp);
}

.bnr_facility .facility_text .title span {
    margin-right: 13px;
    padding: 3px 30px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 30px;
    font-size: 60%;
}

.bnr_facility .facility_text .price {
    font-family: var(--font-en1);
    font-size: 300%;
    color: var(--main-color);
    text-align: center;
    line-height: 1.85;
}

.bnr_facility .facility_text .price span {
    font-size: 40%;
    margin: 0 10px;
    font-family: var(--font-jp);
    color: var(--text-color);
}

.bnr_facility .facility_text .menu {
    text-align: center;
}

.bnr_facility .facility_text .menu span {
    margin: 0 10px;
    padding: 5px 15px;
    background: #ffffff;
    color: var(--main-color);
    font-size: 85%;
    font-family: var(--font-jp);
}

.bnr_facility .facility_img {
    max-width: 160px;
    height: auto;
    margin-top: -50px;
}

.bnr_facility .price_text {
    padding: 0 20px;
}

.num_bnr {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    position: absolute;
    content: '';
    left: 40px;
    bottom: 60px;
    width: 220px;
    height: 220px;
    background: url(../images/gold_circle.svg) no-repeat center / cover;
}

.num_bnr>* {
    color: #ffffff;
    font-family: var(--font-jp);
    line-height: 1.35;
    text-align: center;
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.5));
    padding-top: 30px;
    font-size: 110%;
}

.num_bnr .num {
    font-family: var(--font-en1);
    font-size: 2em;
}

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

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

    .mv_contents {
        padding: 0 3%;
    }

    .mv_contents .catch {
        top: 55%;
        left: 0;
        font-size: 175%;
    }

    .mv_contents .catch::before {
        margin: 0 auto 7px;
    }

    .mv_contents .catch em {
        font-size: 1em;
    }

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

    /* テキストバナーエリア */
    .mv_contents .bnr_wrap {
        bottom: 20px;
        left: 0;
        right: 0;
        width: 100%;
    }

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

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

    .bnr_wrap .bnr_list {
        padding: 15px 0;
    }

    .bnr_wrap .bnr_list li span {
        font-size: 115%;
    }

    /* 設備紹介バナー */
    .bnr_facility .facility_inner {
        justify-content: center;
        width: 100%;
        margin: 0 auto 30px;
        padding: 0;
    }

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

    .bnr_facility .facility_img {
        width: 30%;
        margin: 0;
    }

    .bnr_facility .price_text {
        padding: 0;
    }

    .bnr_facility .facility_text .menu span {
        margin: 0;
        padding: 5px;
    }

    .num_bnr {
        top: 130px;
        left: 0;
        bottom: auto;
        width: 170px;
        height: 170px;
    }

    .num_bnr>* {
        line-height: 1.5;
        text-align: center;
        padding-top: 18px;
        font-size: 90%;
    }

    /* ----- MVから非表示にするコンテンツを指定 ----- */
    .mv_contents .bnr_facility {
        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;
    font-family: var(--font-jp);
}

h2.special_title {
    margin: 0 0 50px;
    padding-top: 50px;
    font-size: 220%;
    text-align: center;
    background: linear-gradient(to right, #797b72, #95ad94);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: left;
}

h2.special_title::before {
    content: attr(eng);
    display: block;
    background: linear-gradient(to right, #797b72, #95ad94);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: var(--font-en1);
    font-size: 60%;
    line-height: 1.2;
    letter-spacing: 5px;
}

.tit01 {
    position: relative;
    margin-bottom: 20px;
    padding: 15px 20px 15px 50px;
    font-size: 170%;
    line-height: 1.45;
    color: #ffffff;
    background: linear-gradient(to right, #9c9e97, #becbbe);
}

.tit01::before {
    position: absolute;
    content: '';
    top: 50%;
    left: 20px;
    width: 4px;
    height: calc(100% - 40px) !important;
    background: #ffffff !important;
    transform: translateY(-50%);
}

.tit01 span {
    font-size: 60%;
    display: block;
    color: #83b0c9;
}

.tit02 {
    position: relative;
    width: fit-content;
    margin-bottom: 17px;
    padding: 6px 20px 6px 20px;
    font-size: 130%;
    line-height: 1.45;
    border-bottom: 1px solid #9c958b;
    color: var(--title-color);
    font-family: var(--font-jp);
}

.tit02::before {
    position: absolute;
    content: '';
    top: 50%;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 10px solid var(--sub-color3);
    border-right: 0;
    transform: translateY(-50%);
}

.tit03 {
    width: fit-content;
    position: relative;
    margin-bottom: 17px !important;
    padding: 15px 20px 5px 5px;
    font-size: 115%;
    line-height: 1.45;
    color: var(--main-color);
}

/* 数字つきタイトル */
.number_title {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 10px;
    margin-bottom: 10px !important;
    background: none;
    font-family: var(--font-jp);
    counter-increment: number 1;
}

.number_title em {
    display: inline-block;
    color: #ffffff;
    line-height: 30px;
    display: flex;
    flex-flow: column;
    align-items: center;
    font-style: normal;
    font-family: var(--font-en1);
    background: var(--sub-color);
    max-width: 30px;
    width: 100%;
    max-height: 30px;
    height: 100%;
    border-radius: 50%;
}

/* ==============================================
  *SP タイトル
============================================== */
@media screen and (max-width: 640px) {

    h2,
    h3,
    h4,
    h5,
    h6 {
        line-height: 1.45;
    }

    h2.special_title {
        font-size: 160%;
        padding: 20px 0;
        margin: 0 0 25px;
        line-height: 1.4;
    }

    h2.special_title::before {
        line-height: 2.5;
    }

    .tit01 {
        font-size: 140%;
    }

    .tit02 {
        font-size: 120%;
    }

    .number_title {
        line-height: 1.65;
        padding: 5px 0;
    }
}

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

  *おすすめ

================================================================================================================================== */
.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-size: 14px;
    line-height: 1.25;
    text-align: center;
}

.recommend_item .title {
    padding: 15px 30px;
    background: var(--main-color);
    color: #ffffff;
    font-size: 140%;
    text-align: center;
}

.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%;
}

.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 30px;
    background: var(--bg-color);
}

.worries_list li {
    position: relative;
    z-index: 1;
    padding: 0 0 0 30px;
    font-size: 110%;
    font-family: "shippori-mincho", sans-serif;
}

.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: #c0c0c0;
    background: linear-gradient(to right, #c0c0c0, #95ad94);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    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;
        font-size: 110%;
        line-height: 1.5;
    }
}

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

  *院長の想い

================================================================================================================================== */
.under_message_wrap {
    display: flex;
    align-items: center;
    gap: 100px;
}

.under_message_content {
    flex-shrink: 0;
    width: 70%;
    z-index: 1;
}

.under_message_content h3 {
    position: relative;
    margin: 20px 0;
    padding: 0 0 10px 20px;
    font-size: 170%;
    color: var(--title-color);
}

.under_message_content dl {
    display: flex;
    align-items: baseline;
    gap: 30px;
}

.under_message_content dl dt {
    width: 20%;
}

.under_message_content dl dt,
.under_message_content dl dd {
    font-weight: 500;
}

.under_message_profile {
    padding: 30px 0;
    font-size: 140%;
    text-align: center;
    font-family: var(--font-jp);
}

.under_message_profile span {
    font-size: 70%;
    margin-right: 10px;
}

/* ==============================================
  *SP
============================================== */
@media screen and (max-width: 640px) {
    .under_message_wrap {
        flex-wrap: wrap;
        gap: 0;
    }

    .under_message_content {
        width: 100%;
    }

    .under_message_content dl {
        margin-bottom: 10px;
    }

    .under_message_content dl dt,
    .under_message_content dl dd {
        line-height: 1.34;
    }

    .under_message_content dl dt {
        width: 35%;
    }

    .under_message_content dl dd {
        width: 65%;
    }

    .under_message_content h3 {
        font-size: 140%;
    }

    .under_message_img {
        margin: 0 auto;
    }

    .under_message_img img {
        height: 300px;
        object-fit: cover;
    }
}

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

  *当院の特徴

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

.feature_item {
    flex: 1;
}

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

.feature_title {
    margin-top: 20px !important;
    padding: 7px 15px 5px;
    background: var(--sub-color);
    color: #ffffff;
    font-size: 110%;
}

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

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

  *当院が選ばれる理由

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

.reason_item {
    display: flex;
}

.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-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-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;
    }
}

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

  *追加費用

================================================================================================================================== */
.cost li {
    width: calc(20% - 8px);
}

.cost li .title {
    font-size: 110%;
}

/* ==============================================
  *SP 当院が選ばれる理由
============================================== */
@media screen and (max-width: 640px) {
    .cost li {
        width: calc(50% - 5px);
    }
}

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

  *料金表（タブ）

================================================================================================================================== */
.price_table tr:first-child th {
    background: #919191;
    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);
}

.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: 650px;
    padding: 15px 20px;
    background: linear-gradient(90deg, rgb(32 32 32 / 20%), #a3acad),
        url(../images/yoyaku.jpg) no-repeat center / cover;
    color: #ffffff;
    font-size: 200%;
    text-align: center;
    transition: filter 0.2s, opacity 0.2s;
    font-family: var(--font-jp);
}

.webyoyaku_btn a small {
    position: relative;
    display: block;
    margin: 5px 65px;
    padding: 2px 15px;
    background: #ffffff;
    border-radius: 300px;
    color: #749fa3;
    font-size: 14px;
}

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

.webyoyaku_btn a::after {
    content: "";
    position: absolute;
    bottom: 17px;
    right: 17px;
    display: block;
    width: 25px;
    height: 9px;
    background: #ffffff;
    mask: url(../images/btn_arrow.png) no-repeat center / cover;
    -webkit-mask: url(../images/btn_arrow.png) no-repeat center / cover;
    transition: right 0.2s, background 0.2s;
}

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

@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;
        font-size: 120%;
    }

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

    .webyoyaku_btn a small {
        margin: 5px 0;
    }
}

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

  *おすすめ情報（リッチ下層用コラム表示）

================================================================================================================================== */
.column_list {
    margin-bottom: 30px;
}

.column_item {
    width: 100%;
    border-top: 1px solid var(--line-color);
}

.column_item:last-child {
    border-bottom: 1px solid var(--line-color);
}

.column_item a {
    display: flex;
    gap: 20px;
    height: 100%;
    padding: 14px 30px 20px;
    font-family: var(--font-jp);
}

.column_item a:hover {
    background: var(--bg-color);
}

.column_info_inner {
    display: flex;
    flex-flow: column;
    flex-wrap: wrap;
    gap: 6px 20px;
}

.column_item a .column_info {
    display: flex;
    align-items: center;
    gap: 45px;
    width: calc(100% - 120px);
    color: var(--text-color);
    font-size: 90%;
}

/*　カテゴリー */
.column_item a .column_date {
    flex-shrink: 0;
    font-family: var(--font-en1);
    color: #b4b4b4;
    letter-spacing: 3px;
    font-size: 110%;
}

.clinic_column .column_item a .column_info ul {
    display: flex;
    flex-flow: wrap;
    gap: 5px;
}

.column_item a .column_info ul li {
    min-width: 130px;
    padding: 2px 20px;
    color: #ffffff;
    background: var(--sub-color3);
    font-size: 115%;
    border-radius: 5px;
    text-align: center;
}

.column_item a .column_info ul li:not(:last-child) {
	margin-bottom: 5px;
}

/* コラムタイトル */
.column_item a .column_title {
    color: var(--text-color);
    font-size: 140%;
    white-space: nowrap;
    transition: color 0.2s;
    font-family: var(--font-jp);
    overflow: hidden;
}

.column_item a:hover .column_title {
    color: var(--main-color);
}

.column_item a .column_title p {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* コラムがない時 */
.colum_coming {
    margin: 0 auto 30px;
    text-align: center;
}

/* ==============================================
  *SP コラム
============================================== */
@media screen and (max-width: 640px) {
    .column_item a {
        padding: 15px 5px 15px 10px;
    }

    .column_info_inner {
        flex-flow: wrap;
        align-items: center;
    }

	.column_item a .column_info ul {
    display: flex;
        flex-wrap: wrap;
    gap: 5px;
	}
	
    .column_item a .column_info ul li {
        min-width: 100px;
/*         width: 100%; */
		width: auto;
        padding: 2px 5px;
    font-size: 100%;
    }
	
.column_item a .column_info ul li:not(:last-child) {
    margin-bottom: 0;
}
	
.column_item a .column_title p {
        white-space: normal;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
        overflow: hidden;
        font-size: 86%;
	}
	
    .column_item a .column_info {
        flex-wrap: wrap;
        width: 100%;
        gap: 15px;
    }
}

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

  *症例スライダー

================================================================================================================================== */
#caseSlider .special_title {
    max-width: 1100px;
    margin: 0 auto 50px;
}

#caseSlider .inner {
    max-width: 1400px;
}

#caseSlider .splide {
    position: relative;
    z-index: 1;
}

#caseSlider .splide__inner {
    position: relative;
    z-index: 1;
}

#caseSlider .splide__track {
    padding: 0 100px !important;
}

/* ----- スライドの設定 ----- */
#caseSlider .splide__slide {
    position: relative;
    z-index: 1;
    padding: 2rem 6rem 5rem;
    border: 1px solid var(--main-color);
}

#caseSlider .splide__slide::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 20%;
    background: linear-gradient(to right, var(--main-color), var(--sub-color));
    z-index: -1;
}

/* ----- オペレーション ----- */
#caseSlider .splide__operation {
    display: flex;
    justify-content: flex-end;
    gap: 30px;
}

/* ページネーション */
#caseSlider .caseSlider_pagination {
    z-index: 1;
    display: flex;
    gap: 15px;
    bottom: 1.5em;
}

#caseSlider .caseSlider_page {
    width: 10px;
    height: 10px;
    background-color: #e8e8e8;
    border-radius: 50%;
    transition: background 0.2s;
}

#caseSlider .caseSlider_page.is-active {
    background: var(--main-color);
}

/* ----- スライダーのArrowボタン ----- */
#caseSlider .caseSlider_arrows {
    display: flex;
    gap: 3px;
}

#caseSlider .caseSlider_arrow {
    position: absolute;
    top: 50%;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70px;
    height: 70px;
    padding: 3px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    color: #ffffff;
    cursor: pointer;
    transform: translateY(-50%);
}

#caseSlider .caseSlider_arrow i {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 0 0 1px 0;
    background: rgb(148, 158, 160, 0.8);
    border-radius: 50%;
    font-size: 20px;
    transition: background 0.2s;
}

#caseSlider .caseSlider_arrow:hover i {
    background: var(--text-color);
}

#caseSlider .caseSlider_arrow_prev {
    left: 55px;
}

#caseSlider .caseSlider_arrow_prev span::before {
    content: "\f104";
}

#caseSlider .caseSlider_arrow_next {
    right: 55px;
}

#caseSlider .caseSlider_arrow_next span::before {
    content: "\f105";
}

.case_item {
    height: fit-content;
}

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

.case_images_list {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.case_images_item {
    flex: 1;
    width: 100%;
}

.case_images_title {
    width: 100%;
    padding: 10px;
    color: #ffffff;
    font-size: 170%;
    text-align: center;
    font-family: "shippori-mincho", sans-serif;
}

.case_images_item .text {
    margin-top: 20px;
}

.case_detail {
    background: #ffffff;
}

/* ----- 詳細テーブル ----- */
.case_table tr:last-child th,
.case_table tr:last-child td {
    border-bottom: none;
}

.case_table th,
.case_table td {
    padding: 20px 30px;
    border: none;
    border-bottom: 1px solid var(--line-color);
}

.case_table th {
    background: none;
    color: var(--main-color);
    width: 35%;
    background: var(--bg-color);
    font-size: 120%;
}

.case_table td {
    text-align: left;
    background: #ffffff;
}

/* ----- リンクボタン ----- */
.case_button {
    text-align: center;
}

.case_button>* {
    display: block;
    padding: 20px;
    background: var(--sub-color);
    border: 1px solid var(--sub-color);
    color: #ffffff;
    font-size: 130%;
    text-align: center;
}

.case_button>*:hover {
    background: #ffffff;
    color: var(--sub-color);
}

.twentytwenty-container {
    margin: 0 auto;
    text-align: center;
}

.twentytwenty-container {
    width: 65% !important;
}

.twentytwenty-container img,
.twentytwenty-overlay {
    width: 100% !important;
}

.twentytwenty-horizontal .twentytwenty-handle:before,
.twentytwenty-horizontal .twentytwenty-handle:after {
    min-height: 245px !important;
    height: 100% !important;
}

/* ==============================================
  *SP
============================================== */

@media screen and (max-width: 640px) {
    #caseSlider .inner {
        padding: 0;
    }

    #caseSlider .splide__track {
        padding: 0 30px !important;
    }

    #caseSlider .splide__slide::before {
        height: 20%;
    }

    #caseSlider .splide__operation {
        gap: 15px;
        padding: 0 20px;
    }

    #caseSlider .caseSlider_pagination {
        bottom: -40px;
    }

    #caseSlider .special_title {
        padding: 0 20px;
        margin: 0 0 25px;
        line-height: 1.4;
    }

    .case_images_title {
        padding: 0;
        font-size: 120%;
        text-align: left;
        line-height: 1.55;
    }

    .case_detail {
        padding: 0;
    }

    .case_table th,
    .case_table td {
        display: block;
        width: 100%;
        height: auto;
        padding: 10px;
    }

    .case_table th {
        border-bottom: none;
        font-size: 90%;
    }

    #caseSlider .splide__slide {
        padding: 20px;
    }

    .case_detail_accordion {
        padding: 10px 30px 10px 10px;
    }

    .case_detail_accordion::before {
        right: 10px;
        width: 10px;
    }

    .case_detail_accordion::after {
        right: 10px;
        width: 10px;
    }

    .case_images_item .title {
        padding: 10px;
        font-size: 130%;
    }

    #caseSlider .caseSlider_arrow {
        position: static;
        width: 40px;
        height: 40px;
        transform: translate(0, 0);
    }

    #caseSlider .caseSlider_arrow i {
        font-size: 80%;
    }

    #caseSlider .case_images_list {
        flex-flow: column;
        gap: 20px;
    }

    #caseSlider .caseSlider_page {
        width: 8px;
        height: 8px;
    }

    .case_detail {
        margin: 30px auto 0;
    }

    .case_table {
        margin: 0 auto 15px;
    }

    .case_button {
        margin: 0;
    }

    .case_button>* {
        margin: 0;
        padding: 10px 15px;
        font-size: 120%;
    }

    .twentytwenty-container {
        width: 100% !important;
    }
}

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

  *来院マップ

================================================================================================================================== */
.map_wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.map_img {
    width: calc(45% - 25px);
}

.map_text {
    width: calc(55% - 25px);
}

/* ==============================================
  *SP
============================================== */
@media screen and (max-width: 640px) {
    .map_wrap {
        flex-wrap: wrap;
        gap: 30px;
        padding: 0 20px;
    }

    .map_img,
    .map_text {
        width: 100%;
    }
}

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

  *料金表

==================================================================================================================================*/
/* .price_table tr:first-of-type th,
.price_table tr:first-of-type td {
    height: 60px;
} */

.price_table th,
.price_table td {
    line-height: 1.45;
    padding: 12px;
}

.price_table th {
    background: #efffe8;
    color: var(--main-color);
    border-bottom: 2px solid #95a095;
}

.price_table th.menu {
    font-weight: 700;
    background: var(--main-color);
    color: #ffffff;
    width: 35%;
    height: 60px;
}

.price_table td.menu {
    font-weight: 700;
    background: #f0f3f0;
    color: #7c867c;
}

.price_table .font_ss {
    font-size: 90%;
}

.price_table .cell_clr {
    background: #f7f7f7;
    line-height: 1.5;
}

/* ==============================================
  *SP
============================================== */
@media screen and (max-width: 640px) {

    .price_table th,
    .price_table td {
        padding: 5px;
    }
}


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

  *その他

================================================================================================================================== */
.btnflex .btn01>*::after {
    display: none;
}

.btnflex .btn01>* {
    padding: 15px;
    line-height: 1.35;
    display: flex;
    align-items: center;
}


@media screen and (max-width: 640px) {
    .btnflex .btn01 {
        width: calc(50% - 6px);
    }

    .btnflex .btn01>* {
        width: 100%;
        height: 100%;
    }
}

.frame02 h3 {
    color: var(--main-color);
}

.frame02 h3::before {
    background: var(--main-color) !important;
    display: none;
}