@charset "UTF-8";

body {
    background-color: #FFFDFB;
    color: #333;
    font-size: 16px;
    line-height: 1.75;
    letter-spacing: 0.03em;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-optical-sizing: auto;
    font-style: normal;
}

:root {
    --fs-h1: 16px;
    --fs-h2: 20px;
    --fs-body: 15px;
    --fs-note: 13px;
}

@media (min-width: 768px) {
    body {
        line-height: 1.65;
        letter-spacing: 0.02em;
    }

    :root {
        --fs-h1: 24px;
        --fs-h2: 28px;
        --fs-body: 16px;
    }
}

h1 {
    font-size: var(--fs-h1);
    text-align: center;
    color: #867664;
}

h2 {
    font-size: var(--fs-h2);
    text-align: center;
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.title-en {
    text-align: center;
    color: rgba(191, 165, 123, 0.6);
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 28px;
}

p {
    font-size: var(--fs-body);
}

.small {
    font-size: var(--fs-small);
}

/* トップビュー設定ここから=========================================================================== */
.fv {
    height: 120vw;
    background-image: url("../images/hifu-mobileTop.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.top-price {
    height: 50vw;
    background-image: url("../images/top-price.webp");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

/* トップCTAここから================================================================================== */
.cta-top {
    text-align: center;
    padding: 30px 0 50px;
}

.cta-lead {
    color: #2E3F54;
    font-weight: 600;
}

.cta-info {
    display: flex;
    justify-content: center;
    gap: 10px;
    color: #2E3F54;
    font-weight: 600;
}

.cta-list {
    background-color: #CBD7E5;
    border-radius: 10px;
    display: inline-block;
    padding: 2px 10px;
}

.cta-btn {
    color: #2E3F54;
    font-weight: 700;
    font-size: 20px;
    display: inline-block;
    background: linear-gradient(#D4A5A5, #E8C4C4, #D4A5A5);
    border-radius: 50px;
    padding: 10px 20px;
    margin: 10px auto;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.18);
    position: relative;
    display: inline-block;
    padding: 16px 28px;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    overflow: hidden;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background-color 0.25s ease;
}

.cta-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 120%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.5),
            transparent);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.cta-btn:hover::after {
    animation: shine 0.6s ease;
}

@keyframes shine {
    from {
        left: -120%;
    }

    to {
        left: 120%;
    }
}

.cta-tel {
    color: #BFA57B;
    font-weight: 800;
    font-size: 20px;
    line-height: 1.3;
}

.tel-label {
    color: #2E3F54;
    font-weight: 600;
}

.tel-number {
    font-size: 30px;
}

/* トップCTAここまで================================================================================== */
/* こんな方におすすめここから=========================================================================== */
.recommend {
    padding: 30px 0 20;
    background: linear-gradient(#EFDAD2, #FBF6F3);
    position: relative;
    padding-top: 40px;
}

.recommend::before {
    content: "";
    position: absolute;
    top: -30px;
    left: 50%;
    width: 1px;
    height: 60px;
    background-color: #cbbfae;
}

.recommend-img {
    width: 100%;
    height: auto;
    margin: 20px auto;
}

.recommend-listWrap {
    background-image: url(../images/recomendlist-back.webp);
    background-repeat: no-repeat;
    background-position: top left;
    background-size: cover;
    max-width: 420px;
    border: solid #D4A5A5;
    border-radius: 20px;
    margin: 0 20px;
    padding-bottom: 20px;
}

.recommend-list {
    padding-top: 80px;
}

.recommend-list li {
    position: relative;
    line-height: 2.5;
    /* ::before の基準 */
    font-size: 16px;
    padding-left: 55px;
}


.recommend-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    /* チェックマークの幅 */
    height: 50px;
    /* チェックマークの高さ */
    background-image: url(../images/check.png);
    /* 画像のパスを調整 */
    background-size: contain;
    background-repeat: no-repeat;
}

li>strong {
    font-size: 17px;
    text-decoration: underline;
    text-decoration-color: #BFA57B;
    text-decoration-thickness: 2px;
    text-underline-offset: 2px;
}

/* こんな方におすすめここまで============================================================================ */
/* 医療ハイフとはここから================================================================================ */
.about {
    padding: 30px 0;
    background: linear-gradient(#FBF6F3, #FFFDFB);
}

/* 医療ハイフとはここまで================================================================================ */
.mechanism-areasWrap {
    background: linear-gradient(#CBD7E5, #FFFDFB);
}

.line {
    background-image: url(../images/line.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 50px;
}

.about-imgWrap {
    text-align: center;
    padding: 20px 0;
}

.about-subtitleWrap {
    margin-top: 20px;
}

.about-subtitle {
    text-align: center;
    font-size: 17px;
    color: #2E3F54;
}

.about-img {
    width: 200px;
}

.about>p {
    margin: 10px 20px;
    max-width: 600px;
}

.about-big {
    font-size: 18px;
    background: linear-gradient(transparent 60%, #FFE4E8 60%);
}

/* 医療ハイフの仕組みここからmachanism============================================================================ */
.mechanism {
    padding: 30px 0;
}

.mechanism-subtitle {
    text-align: center;
}

.mechanism-img {
    width: 90%;
    display: inline-block;
    padding: 10px 0;
}

.machanism-imgWrap {
    max-width: 100%;
    text-align: center;
}

.mechanism>p {
    margin: 0 20px;
}

.mechanism-bold {
    font-weight: 800;
    color: #2E3F54;
    background-color: rgba(255, 240, 224, 0.7);
    padding: 0 2px;
    border-radius: 2px;
    font-weight: 800;
}

.smas {
    display: block;
    background-color: #2E3F54;
    color: #fff;
    padding: 10px 20px;
    margin: 20px 20px;
    position: relative;
    max-width: 400px;
    border-radius: 5px;
}

.smas::before {
    content: "";
    position: absolute;
    top: -26px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    /* 大きく */
    height: 28px;
    /* 吹き出し感 */
    background: #2E3F54;
    /* グラデの下色 */
    clip-path: polygon(50% 0, 0 100%, 100% 100%);
    border-radius: 4px;
    /* ←ここが角丸ポイント */
}

.smas>h3 {
    color: #CBD7E5;
    text-align: center;
}

/* 医療ハイフの仕組みここまで============================================================================ */
/* 施術可能部位ここから==================================================================================== */
.area-img {
    width: 60%;
    height: auto;
}

.areas-flex {
    display: flex;
    padding: 20px;
}

.areas-name {
    padding-top: 20px;
}

.areas>p {
    margin: 10px 20px;
}

/* ハイフの効果ここから======================================================================================== */
.benefits {
    padding: 30px 0 70px;
    background-image: url(../images/back.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.benefits>p {
    margin: 10px 20px;
}

.benefits-img {
    width: 100%;
    height: auto;
    padding: 10px 0;
}

.benefits-article {
    text-align: center;
}

.benefits-boxTitle {
    position: absolute;
    left: 0;
    right: 0;
    background-color: #D4A5A5;
    display: inline-block;
    /* この場合は block でもOK */
    text-align: center;
    padding: 5px 10px;
    width: 200px;
    font-size: 20px;
    margin: 0 auto;
    border-radius: 50px;
    z-index: 2;
}

.benefits-box {
    position: relative;
    top: 20px;
    border: solid 3px #BFA57B;
    border-radius: 10px;
    background-color: #FFFDFB;
    padding: 20px;
    padding-top: 40px;
    width: 300px;
    margin: 0 auto;
    font-size: 20px;
}

/* ハイフの効果ここまで======================================================================================= */
/* 選ばれる理由ここから======================================================================================= */
.reason {
    background: linear-gradient(#EFDAD2, #FFFDFB);
    position: relative;
    padding-top: 40px;
}

.reason::before {
    content: "";
    position: absolute;
    top: -30px;
    left: 50%;
    width: 1px;
    height: 60px;
    background-color: #cbbfae;
    /* 画像みたいな淡いゴールド系 */
}

.reason-head>h3 {
    font-size: 20px;
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 600;
}

.reason-plus {
    padding: 30px 0;
    background-image: url(../images/back.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: 1;
}

.plus-flex>p {
    margin: 0 20px;
}

.point-articleWrap {
    margin: 0 auto;
    padding: 20px;
}

.point-article {
    padding: 20px 0;
}

.reason-head {
    display: flex;
    align-items: flex-end;
    /* 数字の下にタイトルが揃う */
    gap: 12px;
}

.point-wrap {
    display: flex;
    flex-direction: column;
    /* point → 01 を縦 */
    line-height: 1;
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.point {
    font-size: 20px;
    color: #ffffff;
    /* 画像風なら白 */
    font-weight: 300;
}

.num {
    font-size: 48px;
    color: #b87876;
    /* あの淡いピンク系 */
    line-height: 1;
}

.reason-head {
    display: inline-flex;
    align-items: flex-end;
    /* 数字とタイトルの下揃え */
    gap: 12px;
    position: relative;
    padding-bottom: 6px;
    /* 線との距離 */
}

/* 下のライン */
.reason-head::after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 90vw;
    /* ← 幅指定ここ調整 */
    height: 1px;
    background: #BFA57B;
}

.point-wrap {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.point-article>p {
    margin: 10px auto;
}

.reason-plus>p {
    margin: 10px 20px;
}

.plus-title {
    font-size: 20px;
    text-align: center;
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-style: normal;
    line-height: 1.3;
}

.plus-big {
    font-size: 32px;
    background: linear-gradient(150deg, #CBD7E5, #2E3F54);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
}

.reason-plusImg {
    width: 100%;
    height: auto;
    padding: 10px 0;
}

.reasonplus-textBig {
    font-size: 18px;
    color: #2E3F54;
    font-weight: 700;
    display: inline;
    border-bottom: 3px solid rgba(191, 165, 123, 0.7);
    /* 下線代わり */
}

/* 選ばれる理由ここまで======================================================================================= */
/* CTAここから=============================================================================================== */
.cta {
    text-align: center;
    padding: 30px;
    padding-bottom: 50px;
    background-color: #DDE4ED;
}

.cta-img {
    width: 100%;
    max-width: 600px;
}
.cta-web {
  background: linear-gradient(#3C6070, #578CA3, #3C6070);
  color: #fff;
  padding: 12px 24px;
  font-size: 20px;
  display: inline-block;
  border-radius: 999px;
  margin: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.18);
  position: relative;
  overflow: hidden;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

/* ふわっと浮く */
.cta-web:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* 光の筋 */
.cta-web::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 120%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255,255,255,0.6) 50%,
    transparent 70%
  );
}

/* hover時に流す */
.cta-web:hover::after {
  animation: shine 0.6s ease;
}

@keyframes shine {
  from { left: -120%; }
  to   { left: 120%; }
}


/* CTAセクションここまで===================================================================================== */
/* 施術の流れここから======================================================================================== */
.flow {
    padding: 30px 0;
    background: linear-gradient(#FFFDFB, #F4EDE3);
    position: relative;
    padding-top: 40px;
}

.flow::before {
    content: "";
    position: absolute;
    top: -30px;
    left: 50%;
    width: 1px;
    height: 60px;
    background-color: #cbbfae;
}

.step-card {
    margin: 30px 20px;
    background: linear-gradient(#FFEBEB, #FCECE7);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: relative;
}

/* 数字＋タイトル */
.step-head {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 320px;
    margin: 0 auto;
    gap: 12px;
    margin-bottom: 14px;
}

/* 丸いバッジ */
.step-num {
    width: 38px;
    height: 38px;
    background: #b8a372;
    /* くすみゴールド系 */
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-family: "Playfair Display", serif;
    font-weight: 500;
}

/* タイトル */
.step-title {
    font-size: 16px;
    font-weight: 600;
    color: #444;
}

/* メイン画像 */
.step-img img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 14px;
}

/* 本文 */
.step-body {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    background: #fff;
    padding: 14px;
    border-radius: 8px;
}

.step-card::after {
    content: "";
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    /* 大きく */
    height: 30px;
    /* 吹き出し感 */
    background: #FCECE7;
    /* グラデの下色 */
    clip-path: polygon(50% 100%, 0 0, 100% 0);
    /* 三角形 */
    border-radius: 4px;
    /* ←ここが角丸ポイント */
}

.no-tail::after {
    display: none;
}

/* 施術のながれここまで======================================================================================= */
/* 理事長吹き出しここから===================================================================================== */
.balloon-content {
    background-color: #2E3F54;
    color: #fff;
    display: block;
    padding: 20px;
    margin: 20px;
    position: relative;
    border-radius: 10px;
}

.balloon-content::after {
    content: "";
    position: absolute;
    bottom: -12px;
    /* 三角が出る位置 */
    left: 30px;
    /* 横位置、調整用 */
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 12px solid #2E3F54;
}

.balloon-title {
    color: #CBD7E5;
    text-align: center;
    margin-bottom: 10px;
}

.rizichou-img {
    width: 180px;
    padding-left: 20px;
}

.doctor-info {
    display: flex;
    align-items: flex-end;
    gap: 10px;
}

/* 施術料金ここからprice===================================================================================== */
.price {
    padding: 30px 0;
    background-image: url(../images/back.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    padding-top: 40px;
}

.price::before {
    content: "";
    position: absolute;
    top: -30px;
    left: 50%;
    width: 1px;
    height: 60px;
    background-color: #cbbfae;
}

.price-img {
    width: 150px;
    height: auto;
}

.price-flex {
    display: flex;
}

.price-item {
    border: solid 3px #BFA57B;
    border-radius: 10px;
    background-color: #FFFDFB;
    padding: 20px;
    padding-top: 40px;
    margin: 20px;
    font-size: 20px;
    font-weight: 700;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.price-head {
    text-align: center;
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.price-area {
    font-size: 15px;
    padding-top: 20px;
    padding-left: 5px;
}

.price-head>h3 {
    background: linear-gradient(45deg, #BFA57B, #9E8254);
    /* 背景グラデーション */
    color: #fff;
    /* 文字色は白など見やすい色に */
    display: inline-block;
    /* 文字幅に合わせて背景を調整 */
    padding: 5px 15px;
    /* 文字周りの余白 */
    border-radius: 6px;
    /* 角丸にする場合 */
    text-align: center;
}

.price-value {
    color: #D97B7B;
    font-size: 46px;
    font-weight: 900;
}

.yen {
    font-size: 28px;
}

.tax {
    font-size: 20px;
}

/* 施術料金ここまで========================================================================================== */
.faq {
    background: linear-gradient(#CBD7E5, #FFFDFB);
    padding: 30px 0;
    position: relative;
    padding-top: 40px;
}

.faq::before {
    content: "";
    position: absolute;
    top: -30px;
    left: 50%;
    width: 1px;
    height: 60px;
    background-color: #cbbfae;
}

.faq_box {
    max-width: 700px;
    margin: 0 auto;
    padding: 10px;
    margin-bottom: 50px;
}

.faq_item {
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 16px;
    overflow: hidden;
    background-color: #f8f8f8;
}

/* 質問 */
.faq_question {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 20px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.faq_question .qa {
    font-weight: bold;
    color: #BFA57B;
    margin-right: 10px;
}

.faq_question .text {
    flex: 1;
    font-size: 16px;
}

.faq_question .icon {
    width: 14px;
    height: 14px;
    position: relative;
}

.faq_question .icon::before,
.faq_question .icon::after {
    content: "";
    position: absolute;
    background: #b99b7d;
}

.faq_question .icon::before {
    width: 100%;
    height: 2px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.faq_question .icon::after {
    width: 2px;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* 回答 */
.faq_answer {
    display: none;
    padding: 10px 20px 20px;
    border-top: 2px solid #eee;
}

.faq_answer .qa {
    font-weight: bold;
    color: #b99b7d;
    margin-right: 8px;
}

.faq_answer p {
    display: inline;
    font-size: 15px;
    line-height: 1.6;
}

.faq_answer {
    display: none;
}

.faq_item.active .faq_answer {
    display: block;
}

.faq_item.active .icon::after {
    display: none;
}

/* 開いたとき */
.faq_item.active .faq_answer {
    display: block;
}

.faq_item.active .icon::after {
    display: none;
}

/* クリニックの紹介ここから================================================================================================ */
.introduction_section {
    padding: 30px 10px;
    background-color: #f4f0e9;
}

.introduction_wrap {
    background-color: #f8f8f8;
    padding: 15px;
    margin: 20px auto;
    max-width: 500px;
}

.introduction_img {
    display: block;
    margin: 0 auto;
    margin-bottom: 20px;
    margin-top: 10px;
    width: 300px;
    height: 200px;
}

.introduction-subtitle {
    font-size: 20px;
    color: #1E2D3D;
}

.introductionSwiper {
    padding: 20px 10px 40px;
}

.swiper-slide {
    height: auto;
    text-align: center;
    margin: 20px 0;
}

.introduction_wrap {
    height: 100%;
    background-color: #f8f8f8;
    padding: 20px;
    border-radius: 16px;
}

.introductionSwiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #D6C7B8;
}

.introductionSwiper .swiper-pagination-bullet-active {
    width: 12px;
    height: 12px;
    background-color: #0D7C86;
}

.introductionSwiper .introduction_wrap {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    transform: scale(0.92);
    opacity: 0.85;
}

/* 中央スライド */
.introductionSwiper .swiper-slide-active .introduction_wrap {
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 14px 36px rgba(87, 106, 133, 0.25);
}

.introductionwiper .swiper-slide-prev .introduction_wrap,
.introductionSwiper .swiper-slide-next .introduction_wrap {
    filter: grayscale(10%);
}

.num {
    font-size: 32px;
    color: #C8A559;
}

/* クリニックの紹介ここまで */
/* アクセスここからaccess================================================================================================== */
.access {
    padding: 30px 0;
}

.accessWrap {
    font-weight: 500;
    width: 100%;
    display: inline-block;
    margin: 20px auto;
    text-align: center;
}

.addressInner {
    max-width: 500px;
    margin: 0 auto;
}

.addressName {
    font-size: 18px;
    text-align: left;
    margin-left: 2rem;
}

address {
    font-size: 14px;
    text-align: left;
    margin-left: 2rem;
}

.accessButton {
    display: inline-block;
    background-color: #867664;
    padding: 7px 30px;
    margin: 20px;
}

.accessButton:hover {
    opacity: 0.7;
}

.accessText {
    margin-top: 10px;
    margin-bottom: 5px;
}

/* アクセスここまでaccess================================================================================================== */

/* 診療時間表ここから================================================================================================ */
table {
    font-size: 13px;
    text-align: center;
    color: #323232;
    margin: 0 auto;
}

.timetableInner {
    max-width: 500px;
    margin: 0 auto;
}

.timetableWrap {
    margin: 30px auto;
    padding: 10px 0 20px 0;
    margin-bottom: 20px;
}

.tableLeft {
    background-color: #baaea0;
    padding: 10px;
    text-align: center;
}

.tableTop {
    background-color: #dcd2c7;
    padding: 10px;
}

td {
    padding: 10px;
    border: solid 1px #b4a593;
}

.schedule_table th,
.schedule_table td {
    border: 1px solid #B8B0A8;
}

.timetableWrap>p {
    text-align: center;
}

.timetableText {
    margin-left: 10px;
    font-size: 14px;
    margin-top: 10px;
    margin-bottom: 10px;
    text-align: center;
}

.timetableInner {
    padding: 0 10px;
}

.timetableInner table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
    background-color: #fff;
}

.timetableInner th,
.timetableInner td {
    border: 1px solid #B8B0A8;
    padding: 10px 8px;
    font-size: 14px;
}

/* 曜日（上段） */
.timetableInner .tableTop {
    background-color: #E8DED2;
    font-weight: 600;
    text-align: center;
}

/* 診療時間（左列） */
.timetableInner .tableLeft {
    background-color: #D6CABB;
    font-weight: 600;
    white-space: nowrap;
}

/* 診療時間表ここまで================================================================================================ */

/* snsアイコン設定ここから====================================================================================== */
.snsIcon {
    background-color: #f4f0e9;
    text-align: center;
    padding-top: 20px;
}

.sns {
    transition: filter 0.3s ease, transform 0.3s ease;
    margin-bottom: 100px;
}

.sns:hover {
    opacity: 0.7;
    color: #867664;
}

/* 固定CTAここから============================================================================================= */
.cta-bottom {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    /* ←横全域 */
    z-index: 9999;
    /* ←上にくる */
    display: flex;
    justify-content: center;
    gap: 3px;
    margin: 0 auto;
    flex-wrap: wrap;
    background-color: #f4f0e9;
}

.cta-bottom-btn {
    display: inline-block;
    text-align: center;
    padding: 12px 18px;
    border-radius: 8px;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.18);
    min-width: 180px;
}

/* 左（電話） */
.cta-bottom-btn.tel {
    background: linear-gradient(180deg, #657E92, #7A92A5, #657E92);
    border: #9E8254 2px solid;
}

/* 右（WEB予約） */
.cta-bottom-btn.web {
    background: linear-gradient(180deg, #0D7C86, #369AA3, #0D7C86);
    border: #9E8254 2px solid;

}

/* snsアイコン設定ここまで====================================================================================== */
@media (min-width: 768px) {
    h1 {
        padding-top: 12px;
        padding-right: 80px;
    }

    .fv {
        height: 90vw;
        background-image: url("../images/hifu-tbTop.webp");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        position: relative;
    }

    .top-price {
        height: 30vw;
        margin: 0 auto;
    }

    .title-en {
        font-size: 42px;
    }

    .cta-lead {
        font-size: 20px;
    }

    .cta-list {
        font-size: 24px;
        padding: 6px 10px;
        border-radius: 10px;
    }

    .cta-btn {
        font-size: 28px;
        padding: 13px 28px;
    }

    .tel-label {
        font-size: 24px;
    }

    .tel-number {
        font-size: 38px;
    }

    .recommend-listWrap {
        margin: 0 auto;
        max-width: 600px;
        margin-top: 30px;
        position: absolute;
        right: 50px;
        z-index: 10;
    }

    .about {
        padding: 50px 0;
    }

    .about-img {
        width: 300px;
    }

    .about>p {
        margin: 0 auto;
    }

    .recommend-img {
        width: 600px;
        align-items: center;
    }

    .recommend-flex {
        display: flex;
        justify-content: center;
        max-width: 1200px;
        gap: 10px;
        padding-top: 50px;
        position: relative;
    }

    .smas {
        margin: 0 auto;
    }

    .mechanism {
        padding: 50px 0;
    }

    .mechanism>p {
        margin: 20px auto;
        max-width: 600px;
    }

    .mechanism-img {
        width: 600px;
    }

    .benefits>p {
        max-width: 600px;
        margin: 30px auto;
    }

    .benefits-article {
        padding: 50px 0;
    }

    .benefits-img {
        width: 500px;
    }

    .benefits-flex {
        display: flex;
        justify-content: center;
        gap: 30px;
    }

    .benefits-boxTitle {
        position: relative;
        bottom: -50px;
        left: 0;
        right: 0;
        background-color: #D4A5A5;
        /* この場合は block でもOK */
        text-align: center;
        font-size: 20px;
        margin: 0 auto;
        z-index: 2;
    }

    .point-article {
        max-width: 600px;
        margin: 0 auto;
    }

    .areas>p {
        max-width: 600px;
        margin: 0 auto;
    }

    .areas-flex {
        justify-content: center;
    }

    .area-img {
        width: 400px;
    }

    .areas-name {
        font-size: 24px;
        padding-left: 10px;
    }

    .areas-name>p {
        font-size: 24px;
    }
.point-wrap > .num{
    font-size: 40px;
}
    .reason-head::after {
        width: 65vw;
    }

    .reason-plus>p {
        max-width: 600px;
        margin: 0 auto;
        padding-bottom: 50px;
    }

    .plus-title {
        font-size: 32px;
        margin-top: 50px;
    }

    .plus-big {
        font-size: 48px;
    }

    .reason-plusImg {
        width: 650px;
    }

    .plus-flex {
        display: flex;
        gap: 20px;
        padding: 20px;
        align-items: center;
        padding-bottom: 100px;
        max-width: 1000px;
        margin: 0 auto;
    }

    .step-card {
        max-width: 600px;
        margin: 50px auto;
        padding: 30px;
    }

    .step-head {
        width: 470px;
    }

    .step-title {
        font-size: 24px;
    }

    .step-num {
        width: 52px;
        height: 52px;
        font-size: 24px;
    }

    .cta {
        padding: 80px 0;
    }

    .cta-web {
        padding: 10px 25px;
        font-size: 28px;
        margin: 10px;
    }

    .cta-sub {
        font-size: 20px;
    }

    .cta-tel {
        font-size: 32px;
    }

    .cta-tel>p {
        font-size: 20px;
    }

    .flow {
        padding: 50px 0;
    }

    .rizichou {
        max-width: 450px;
        margin: 0 auto;
        padding-top: 20px;
        padding-bottom: 50px;
    }

    .rizichou-img {
        width: 250px;
    }

    .price-item {
        max-width: 600px;
        margin: 50px auto;
    }

    .price-value {
        font-size: 60px;
    }

    .price-flex {
        justify-content: center;
        padding-top: 30px;
    }

    .price-img {
        width: 250px;
    }

    .price-area {
        font-size: 20px;
        padding-top: 40px;
    }

    .access {
        padding: 50px 0;
    }
}


@media (min-width: 1200px) {
    h1 {
        font-size: 28px;
        padding-top: 20px;
    }

    .fv {
        height: 60vw;
        background-image: url("../images/hifu-tbTop.webp");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        position: relative;
    }

    .top-price {
        height: 20vw;
    }

    .tel-label {
        margin-bottom: 10px;
    }

    .cta-btn {
        margin: 20px;
    }
.cta-tel .tel-number{
    font-size: 32px;
}
    .title-en {
        font-size: 52px;
    }

    .recommend::before {
        height: 80px;
    }

    .about {
        padding: 100px 0;
    }

    .about-img {
        width: 400px;
    }

    .about>p {
        margin: 0 auto;
        max-width: 800px;
    }

    .smas {
        margin: 0 auto;
    }

    .mechanism {
        padding: 100px 0;
    }

    .mechanism-img {
        width: 600px;
        padding: 30px 0;
    }

    .mechanism>p {
        max-width: 800px;
    }

    .areas>p {
        max-width: 800px;
        margin: 0 auto;
    }

    .benefits {
        padding-bottom: 50px;
    }

    .benefits>p {
        max-width: 800px;
        margin: 30px auto;
    }

    .benefits-article {
        padding: 50px 0;
    }

    .benefits-img {
        max-width: 500px;
    }

    .point-article {
        max-width: 800px;
    }
.point-wrap > .num{
    font-size: 50px;
}
    .reason-head::after {
        width: 60vw;
    }

    .reason-plus>p {
        max-width: 800px;
        padding-top: 30px;
        padding-bottom: 100px;
    }

    .reason::before {
        height: 80px;
    }

    .flow {
        padding: 100px 0;
    }

    .price {
        padding: 100px;
    }

    .price-item {
        max-width: 600px;
    }

    .price-cardWrap {
        display: flex;
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 20px;
        gap: 30px;
    }

    .footerWrap {
        display: flex;
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 80px;
    }

    .access {
        flex: 1;
    }

    .time {
        flex: 1;
    }

    .cta-bottom-btn {
        padding: 14px 24px;
        border-radius: 8px;
        color: #fff;
        font-weight: 700;
        font-size: 15px;
        text-decoration: none;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.18);
        min-width: 180px;
    }

    .cta-bottom-btn {
        transition: transform .25s ease;
    }

    .cta-bottom-btn:hover {
        transform: translateY(-1px);
        filter: brightness(1.06);
    }
}

/* アニメーションここから */
.animation {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s ease;
}

.animation.show {
    opacity: 1;
    transform: translateY(0);
}

/* トップビュー用 */
.fade-up {
    opacity: 0;
    transform: translateY(80px);
}

.fade-up.show {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease, transform 1.5s ease;
}


.timing02 {
    transition-delay: .2s;
}

.timing03 {
    transition-delay: .4s;
}

.timing04 {
    transition-delay: .6s;
}

.timing05 {
    transition-delay: .8s;
}