@charset "UTF-8";


body {
    background-color: #FFFDFB;
    color: #514439;
    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;
    margin: 0;

}

:root {
    --fs-h1: 18px;
    --fs-h2: 22px;
    --fs-h3: 20px;
    --fs-body: 15px;
    --fs-note: 13px;

}

@media (min-width: 768px) {
    body {
        line-height: 1.65;
        letter-spacing: 0.02em;
    }

    :root {
        --fs-h1: 20px;
        --fs-h2: 24px;
        --fs-h3: 22px;
        --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;
}

h3 {
    font-size: var(--fs-h3);
    text-align: center;
}

p {
    font-size: var(--fs-body);
}

.small {
    font-size: var(--fs-small);
}

.title-en {
    color: rgba(191, 165, 123, 0.6);
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 18px;
    display: block;
    text-align: center;
}

/* FVここから============================================================================= */
.fv {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.fv-image {
    width: 100%;
    height: auto;
    display: block;
}

.fv picture {
    display: block;
}

.fv-cta-wrap {
    position: absolute;
    left: 60px;
    bottom: 20px;
    z-index: 10;
}

.fv-cta {
    width: min(620px, 90vw);
    height: clamp(52px, 6vw, 82px);
    font-family: "Noto Serif JP", serif;



    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    font-size: clamp(16px, 2.8vw, 34px);
    font-weight: 500;

    color: #fff;
    text-decoration: none;

    /* グラデ */
    background: linear-gradient(135deg,
            #c9a1a8,
            #b5838d);

    border-radius: 12px;

    box-shadow: 0 8px 18px rgba(0, 0, 0, .12);

    transition: all .25s ease;

    transform: translateY(0);
}

.fv-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, .18);
    filter: brightness(1.05);
}

.fv-cta:active {
    transform: translateY(1px) scale(0.98);
    box-shadow: 0 5px 10px rgba(0, 0, 0, .15);
}

@keyframes floatBtn {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-2px);
    }

    100% {
        transform: translateY(0);
    }
}

.fv-cta {
    animation: floatBtn 3s ease-in-out infinite;
}

.fv-note {
    margin-top: 16px;
    font-size: 16px;
    color: #666;
}

@media(max-width:768px) {

    .fv-cta-wrap {
        left: 30px;
        right: 30px;
        bottom: 10px;
    }

    .fv-cta {
        width: 100%;
        height: 60px;
        font-size: 20px;
    }

    .fv-note {
        font-size: 12px;
        text-align: center;
        margin-top: 5px;
    }

    .fv-cta {
        width: 100%;
        height: 52px;
        font-size: 16px;
        border-radius: 10px;
        gap: 8px;
    }

    .fv-cta span {
        font-size: 22px;
    }

}

.h1-none {
    display: none;
}

/* FVここまで============================================================================= */

/* こんなお悩みありませんかここから========================================================= */
.worry-section {
    padding: 50px 0;
    background-color: #F8F5F2;
}

.worry-list {
    border: solid #B49F73 1px;
    background-color: #FAF8F8;

    border-radius: 30px;
    margin: 20px 30px;
    padding: 30px 20px;
    box-shadow: 4px 5px 18px rgba(0, 0, 0, 0.15);
    max-width: 500px;

}

.worry-list li {
    border-bottom: solid #B49F73 1px;
    font-size: 16px;
    position: relative;
    padding-left: 40px;
    padding-bottom: 8px;
    padding-top: 8px;
}

.worry-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;

    width: 24px;
    height: 24px;

    background: url("../images/check.png") no-repeat center / contain;
}

.worry-img {
    width: 300px;
    height: auto;
    display: block;
    margin: 0 auto;
    padding-top: 20px;
}

@media (min-width: 768px) {
    .worry-section {
        padding: 80px 0;
    }

    .worry-img {
        width: 100%;
        max-width: 400px;
    }

    .worry-list {
        padding: 30px;
    }

    .worry-list li {
        border-bottom: solid #B49F73 1px;
        font-size: 20px;
    }

    .worry-flex {
        display: flex;
        align-items: center;
        justify-content: center;
        max-width: 900px;
        margin: 30px auto;

    }

}

/* こんなお悩みありませんかここまで======================================================= */
/* ボトックスとはここから================================================================ */
.about-section {
    padding: 50px 0;
}

.about-img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    padding-top: 20px;
    max-width: 900px;
}

.about-icon {
    width: 50px;
    height: auto;
    margin-bottom: 6px;
}

.about-text {
    max-width: 700px;
    margin: 30px;
}

.about-icon-flex {
    display: flex;
    justify-content: center;
    gap: 20px;
    border: solid #a88a4b 3px;
    border-radius: 30px;
    padding: 20px;
    margin: 20px 30px;
    max-width: 900px;

}

.about-icon-flex li {
    text-align: center;
}

@media (min-width: 768px) {
    .about-section {
        padding: 90px 0;
    }

    .about-icon-flex {
        margin: 20px auto;
        gap: 100px;
    }

    .about-text {
        margin: 30px auto;
    }

    .about-bottom {
        text-align: center;
    }

    .about-icon {
        width: 80px;
    }

    .about-icon-flex li p {
        font-size: 18px;
    }
}

/* ボトックスについてここまで============================================================ */
/* ボトックスの仕組みここから============================================================ */
.structure-section {
    padding: 50px 0;
    background-color: #fff;
}

.structure-img {
    width: 100%;
    height: auto;
    display: block;
    max-width: 300px;
    margin: 20px auto;
}

@media (min-width: 768px) {
    .structure-section {
        padding: 90px 0;
    }

    .structure-img {
        max-width: 1000px;
        margin: 50px auto;
        display: block;
    }
}

/* ボトックスの仕組みここまで============================================================ */
/* ポイント3つここから=================================================================== */

.merit-heading {
    text-align: center;
    padding: 60px 30px 40px;
}

.merit-label {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 0.15em;
    color: #B59A67;
    border-bottom: 1px solid #B59A67;
    padding-bottom: 4px;
    margin-bottom: 16px;
}

.merit-heading h2 {
    font-size: 30px;
    font-weight: 500;
    line-height: 1.5;
    color: #444;
    margin-bottom: 14px;
}

.merit-heading p {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
}


@media(min-width:768px) {

    .merit-heading {
        padding: 80px 30px 50px;
    }

    .merit-heading h2 {
        font-size: 40px;
    }

    .merit-heading p {
        font-size: 16px;
    }

    .sp-only {
        display: none;
    }

}

/* スマホ */
@media(max-width:767px) {

    .sp-only {
        display: block;
    }

}

.point-section {
    padding: 50px 0;
    background-color: #F3EAE8;
}

.point-flex {
    padding: 20px 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.point-icon {
    width: 60px;
    height: auto;
    display: block;
    margin: 0 auto;
    margin-bottom: 10px;
}

.point-wrap {
    background-color: rgba(255, 255, 255, 0.7);
    padding: 20px;
    border-radius: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
    .point-section {
        padding: 90px 0;
    }

    .point-flex {
        flex-direction: row;
        max-width: 1100px;
        margin: 0 auto;
    }

    .point-flex>* {
        flex: 1;
    }

    .point-icon {
        width: 80px;
    }
}

/* ボトックスのポイント3つここまで======================================================== */
/* 施術可能部位ここから================================================================== */

.area-section {
    padding: 60px 30px;
    text-align: center;
}

.area-img {
    width: 100%;
    max-width: 600px;
    margin: 30px auto;
    display: block;
}

.area-text {
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.8;
    color: #555;
}

.area-list {
    margin-top: 30px;
    display: grid;
    gap: 14px;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}

.area-item {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 14px 16px;
    text-align: left;
}

.area-item h3 {
    font-size: 16px;
    color: #a88a4b;
    margin-bottom: 4px;
}

.area-item p {
    color: #666;
    text-align: center;
}

@media screen and (min-width: 768px) {

    .area-section {
        padding: 90px 0px;
    }

    .area-list {
        max-width: 900px;

        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .area-item {
        padding: 20px;
    }

    .area-img {
        margin: 30px auto;
    }
}

/* 施術可能部位ここまで================================================================= */
/* 当院が選ばれる理由ここから=========================================================== */
.reason-section {
    padding: 60px 0;
    background-color: #fff;
}

.feature {
    display: flex;
    flex-direction: column;
    gap: 48px;
    padding: 40px 16px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 70px 30px;
    max-width: 900px;
}

.feature-media img {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    border-radius: 16px;
}

.feature-title {
    font-weight: 600;
    margin-bottom: 8px;
    color: #C37A98;
}

.flow-item:last-child {
    padding-bottom: 0;
}

.feature-card {
    max-width: 500px;
    margin: 0 auto;
    padding: 24px 20px;
    margin: 0 30px;
    background: #fff;

    border: 6px solid #f2f2f2;
    border-radius: 20px;

    text-align: center;
}

.botox-badge {
    width: 120px;
    display: block;
    margin: 0 auto 15px;
}

.sub-title {
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.product-image {
    width: 100%;
    max-width: 300px;
    display: block;
    margin: 0 auto 20px;
}

.title {
    color: #2d436c;
    margin-bottom: 10px;
}

.text {
    line-height: 1.8;
    color: #666;
}


@media screen and (min-width:768px) {

    .feature-card {
        padding: 30px;
        margin: 0 auto;
    }

}

@media (min-width: 768px) {
    .reason-section {
        padding: 90px 0;
    }

    .feature {
        max-width: 1100px;
        margin: 0 auto;
    }

    .feature-item {
        flex-direction: row;
        align-items: center;
        gap: 40px;
    }

    /* 2つ目だけ左右反転 */
    .feature-item:nth-child(even) {
        flex-direction: row-reverse;
    }

    .feature-media,
    .feature-text {
        flex: 1;
    }

    .feature-item {
        margin: 100px auto;
    }
}

/* 当院が選ばれる理由ここまで============================================================ */
/* 施術の流れここから==================================================================== */
.flow {
    margin: 0 auto;
    padding: 70px 20px;
    background: #f5f3ef;
    font-family: sans-serif;
    position: relative;
}

.flow-item {
    padding-bottom: 50px;
}

.flow-img {
    width: 100%;
    max-width: 300px;
    border-radius: 30px;
    padding-bottom: 10px;
}

.flow-list {
    position: relative;
    padding-left: 80px;
    max-width: 900px;
    margin: 30px 30px 0 0;

}

/* 縦線 */
.flow-list::before {
    content: "";
    position: absolute;
    left: 30px;
    top: 0;
    width: 2px;
    height: calc(100% + 70px);
    background: #cbbba0;
}

.flow-left {
    position: relative;
    margin-right: 15px;
}

.flow-content h3 {
    margin-bottom: 5px;
    color: #C37A98;
    text-align: left;
    font-weight: bold;
}

.flow-content p {
    color: #666;
    line-height: 1.6;
}


.step {
    font-weight: bold;
    position: absolute;
    left: -50px;
    transform: translateX(-50%);
    top: 0;

    width: 38px;
    height: 38px;
    border-radius: 50%;

    background: #f5f3ef;
    border: 2px solid #cbbba0;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 18px;
    color: #a88a4b;
    z-index: 2;
}

@media (max-width: 480px) {
    .img {
        width: 100px;
        height: 80px;
    }
}

@media (min-width: 768px) {
    .flow {
        padding: 90px 0px;
    }

    .flow-item {
        display: flex;
        gap: 20px;
        align-items: flex-start;
        margin-bottom: 40px;
        position: relative;
    }

    .flow-left {
        width: 400px;
        flex-shrink: 0;
    }

    .flow-img {
        width: 100%;
        max-width: 400px;
        display: block;
        border-radius: 30px;
    }

    .flow-list {
        margin: 80px auto;
    }

    .flow-list::before {
        height: calc(100% + 170px);
    }

    .step {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}


/* 施術の流れここまで=================================================================== */

/* 料金表ここから======================================================================= */
.price-section {
    max-width: 420px;
    margin: 0 auto;
    padding: 60px 30px;
}

.price-wrap {
    padding: 30px 0;
}

.price-card {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid transparent;
}

.price-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.count {
    color: #d88fa0;
    font-weight: 600;
    font-size: 16px;
}

.price {
    font-size: 30px;
    font-weight: bold;
    color: #a88a4b;
    margin: 10px 0;
    letter-spacing: 1px;
}

.desc {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

.icon {
    width: 50px;
}

.badge {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #a88a4b;
    font-size: 12px;
}

.badge {
    position: absolute;
    top: -8px;
    right: -8px;

    display: flex;
    align-items: center;
    gap: 5px;
}

.badge img {
    width: 20px;
}

.price-card.active {
    border: 2px solid #a88a4b;
    box-shadow: 0 6px 16px rgba(168, 138, 75, 0.25);
}

.price-card.active .price {
    font-size: 32px;
}

.price-card:hover {
    transform: translateY(-2px);
    transition: 0.2s;
}

@media screen and (min-width: 768px) {

    .price-section {
        max-width: 700px;
        padding: 90px 0px;
    }

    .price-wrap {
        padding: 60px 0;
    }

    .price-card {
        padding: 26px 24px;
        border-radius: 18px;
    }

    .count {
        font-size: 18px;
    }

    .price {
        font-size: 36px;
        /* 少し強調 */
    }

    .price-card.active .price {
        font-size: 38px;
    }

    .desc {
        font-size: 14px;
    }

    .icon {
        width: 48px;
    }

    .badge {
        font-size: 13px;
    }

    .badge img {
        width: 20px;
    }
}

/* 料金表ここまで=================================================================== */
/* 注意事項　ここから=============================================================== */
.attention-section {
    background: #f3f1ed;
    padding: 40px 30px;
}

.attention-wrap {
    padding: 20px 0;
}

.attentionCard {
    max-width: 620px;
    margin: 0 auto 24px;
    background: #fff;
    border-radius: 24px;
    padding: 24px 20px;

    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.iconCircle img {
    width: 80px;
    height: auto;
}

.attentionText h3 {
    color: #183b63;
    font-size: 20px;
    font-weight: 500;
}

.attentionText p {
    color: #555;
    line-height: 1.9;
}

/* PC（768px以上で上書き） */
@media screen and (min-width: 768px) {

    .attention-section {
        padding: 90px 30px;
    }

    .attention-wrap {
        padding: 30px 0;
    }

    .attentionCard {
        padding: 34px 32px;
        gap: 28px;
        align-items: center;
        border-radius: 32px;
    }

    .iconCircle img {
        width: 100px;
    }
}


/* 注意点ここまで==================================================================================== */
/* 中間CTAここから=================================================================================== */

.ctaSection {
    background: #fff;
    padding: 80px 20px;
    position: relative;
}

.ctaFlex {
    max-width: 700px;
    margin: 0 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.ctaImg img {
    width: 100%;
    display: block;
    border-radius: 30px;
}


/* ボタンの外枠（光の輪のような効果） */
.ctaBtnWrap {
    text-align: center;
    margin-top: 60px;
}

.ctaBtnWrap p {
    color: #b5838d;
    /* 大人ピンクに変更 */
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 25px;
    letter-spacing: 0.05em;
}

/* ボタン本体のデザイン */
.ctaBtn {
    display: inline-block;
    position: relative;
    /* 大人ピンクから少し明るいローズへのグラデーション */
    background: linear-gradient(135deg, #c9939e 0%, #b5838d 100%);
    color: #fff;
    font-size: 22px;
    font-weight: bold;
    padding: 22px 100px;
    border-radius: 999px;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(181, 131, 141, 0.4);
    /* ピンク系の柔らかな影 */
    overflow: hidden;
    /* 光るエフェクト用 */
}

/* 艶感・光の筋エフェクト（高級感を出す隠し味） */
.ctaBtn::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -70%;
    width: 50%;
    height: 200%;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(30deg);
    transition: 0s;
}

.ctaBtn:hover::before {
    left: 120%;
    transition: 0.7s;
}

.ctaBtn:hover {
    transform: translateY(-3px);
    /* 軽く浮き上がる */
    box-shadow: 0 15px 35px rgba(181, 131, 141, 0.5);
    background: linear-gradient(135deg, #d4a5ae 0%, #c9939e 100%);
    /* 少し明るく */
    color: #fff;
    opacity: 1;
    /* 元のopacity:0.8を上書き */
}

/* スマホ用調整 */
@media screen and (max-width: 767px) {

    .ctaBtn {
        width: 100%;
        max-width: 340px;
        font-size: 18px;
        /* スマホでは少し小さくして可読性アップ */
        padding: 18px 20px;
        box-shadow: 0 8px 20px rgba(181, 131, 141, 0.3);
    }

    .ctaBtnWrap p {
        font-size: 18px;
    }
}


@media (min-width: 768px) {
    .ctaSection {
        padding: 100px 20px;
    }

    .ctaFlex {
        flex-direction: row;
        /* PC：横並び */
        gap: 50px;
        margin: 0 auto;
    }
}

/* 中間CTAここまで============================================================================ */
/* FAQここから=============================================================================== */
.faq {
    padding: 60px 0;
    position: relative;
    background-color: #E8DDDC;

}

.faq_box {
    max-width: 900px;
    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: 20px;
    overflow: visible;
    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_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;
}

.faq_question .icon::after {
    width: 2px;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

@media (min-width: 768px) {

    .faq {
        padding: 90px 0;
    }
}

/* FAQここまで================================================================================================ */
/* こんな方に選ばれています ===================== */

.result-section {
    background: #FFF8F6;
    text-align: center;
    padding: 50px 0;
}

.result-body {
    margin: 50px 30px;
}

.result-section ul {
    max-width: 700px;
    margin: 0 auto;

    display: flex;
    flex-direction: column;
    gap: 16px;

    padding: 0;
}

.result-section li {
    list-style: none;

    background: #fff;
    border-radius: 999px;

    padding: 18px 25px;

    display: flex;
    align-items: center;

    box-shadow: 0 4px 12px rgba(0, 0, 0, .06);

    font-size: 18px;
    font-weight: 500;

    text-align: left;
}

/* チェックマーク */

.result-section li::before {
    content: "✓";

    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    margin-right: 15px;

    border-radius: 50%;

    background: #b5838d;
    color: #fff;
    font-weight: bold;
}

@media(max-width:768px) {

    .result-section li {
        font-size: 16px;
        padding: 16px 20px;
    }
}

@media (min-width: 768px) {
    .result-section {
        padding: 90px 0;
        margin: 0 auto;
    }
}

/* こんな方に選ばれていますここまで========================================================================== */
/* 医師紹介ここから=========================================================================================== */
.doctor-section {
    padding: 60px 0;
}

.doctor-body {
    background: #fff;
    border: 1px solid #cbbba0;
    border-radius: 30px;
    padding: 40px 30px;
    max-width: 900px;
    margin: 40px auto;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.doctor-message {
    font-size: 1.1rem;
    color: #a88a4b;
    /* 既存のアクセントカラー */
    font-weight: 700;
    text-align: center;
    line-height: 1.6;
    margin-bottom: 40px;
    font-family: "Noto Serif JP", serif;
}

.dictor-flex {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.dictor-flex figure {
    flex: 1;
    margin: 0;
    text-align: center;
}

.doctor-img {
    width: 100%;
    max-width: 280px;
    border-radius: 20px;
    /* 既存の画像トーンに合わせる */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

figcaption {
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.5;
    color: #666;
    font-family: "Noto Serif JP", serif;
}

.career-wrap {
    flex: 1.5;
}

.career-title {
    font-size: 18px;
    color: #a88a4b;
    border-bottom: 1px solid #d7c59a;
    display: inline-block;
    width: 100%;
    text-align: left;
    margin-bottom: 15px;
    padding-bottom: 5px;
    font-family: "Noto Serif JP", serif;
}

.career-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.career-list li {
    font-size: 14px;
    margin-bottom: 10px;
    position: relative;
    padding-left: 1.2em;
    color: #555;
    line-height: 1.5;
}

/* 箇条書きのドットを既存のチェックアイコン等の色に合わせる */
.career-list li::before {
    content: "■";
    position: absolute;
    left: 0;
    color: #d7c59a;
    font-size: 10px;
    top: 2px;
}

.doctor-comment {
    background: #f5f3ef;
    /* 施術の流れ(flow)と同じ背景色 */
    padding: 25px;
    border-radius: 20px;
    font-size: 15px;
    color: #444;
    line-height: 1.8;
    position: relative;
    margin-top: 20px;
}

/* 装飾的な引用符（任意） */
.doctor-comment::before {
    content: "“";
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 60px;
    color: rgba(168, 138, 75, 0.2);
    font-family: "Noto Serif JP", serif;
}

/* スマホ対応 */
@media (max-width: 767px) {
    .doctor-body {
        margin: 20px;
        padding: 30px 20px;
    }

    .dictor-flex {
        flex-direction: column;
        gap: 30px;
    }

    .doctor-message {
        font-size: 1rem;
        text-align: left;
    }

    .career-wrap {
        width: 100%;
    }

    .doctor-img {
        max-width: 220px;
    }
}

@media (min-width: 768px) {
    .doctor-section {
        padding: 90px 0;
    }
}

/* 医師の紹介ここまで=================================================================================== */

/* アクセスここから===================================================================================== */
/* フッターセクション=================================================================================== */
.footer-section {
    padding: 80px 0;
    background-color: #fdfaf7;
}

/* タイトル部分 */
.footer-section .title-en {
    color: #c5a359;
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.2em;
    font-size: 0.9rem;
}

.footer-section h2 {
    color: #4a4a4a;
    font-size: 1.8rem;
    margin-bottom: 50px;
}

.footer-body {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-article {
    flex: 1;
    min-width: 340px;
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(181, 131, 141, 0.08);
    border-top: 4px solid #b5838d;
}

.footer-title h3 {
    background: #fff;
    color: #b5838d;
    margin: 0;
    padding: 25px 15px 10px;
    font-size: 1.2rem;
    text-align: center;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.footer-title h3::after {
    content: "";
    display: block;
    width: 30px;
    height: 1px;
    background: #c5a359;
    margin: 10px auto 0;
}

.footer-titleWrap {
    padding: 20px 30px 40px;
}

.accessText {
    color: #c5a359;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    margin-bottom: 15px;
    display: block;
    text-align: center;
}

.addressInner iframe {
    filter: grayscale(0.3) contrast(0.9);
    border-radius: 2px;
}

.accessButton {
    display: inline-block;
    padding: 12px 40px;
    margin-top: 10px;
    background: #b5838d;
    color: #fff;
    border-radius: 5px;
    font-size: 14px;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: all 0.4s ease;
    border: 1px solid #b5838d;
}

.accessButton:hover {
    background: #fff;
    color: #b5838d;
}

.timetableInner table {
    width: 100%;
    border-collapse: collapse;
    font-size: 11px;
}

.tableTop {
    color: #b5838d;
    font-weight: bold;
    border-bottom: 1px solid #eee;
}

.tableLeft {
    color: #999;
}

.timetableInner td,
.timetableInner th {
    padding: 12px 2px;
}

/* 補足テキスト：背景のピンクをグッと抑える */
.timetableText {
    font-size: 13px;
    color: #666;
    line-height: 1.8;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.timetableText small {
    color: #b5838d;
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

.map {
    width: 90%;
    height: 250px;
}

/* 各院アクセスここまで================================================================================================ */
/* snsアイコン設定ここから====================================================================================== */
.snsIcon {
    text-align: center;
    background-color: #fdfaf7;

}

.sns {
    transition: filter 0.3s ease, transform 0.3s ease;
    margin-bottom: 100px;
}

.sns:hover {
    opacity: 0.7;
    color: #867664;
}

.youtube {
    width: 160px;
    height: auto;
}

/* snsアイコン設定ここまで====================================================================================== */
/* 固定CTAここから============================================================================================= */

.fixed-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    z-index: 9999;
    box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.08);
}

/* =========================
   共通ボタン
========================= */

.fixed-cta a {
    flex: 1;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    padding: 16px 10px;

    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;

    transition: 0.3s;
}

/* =========================
   電話ボタン
========================= */

.cta-phone {
    background: #FFF8F4;
    color: #7A6A60;
    border-top: 1px solid #E8DCCF;
}

/* ラッパー */
.cta-phone-wrap {
    position: relative;
    flex: 1;
}

/* =========================
   WEBボタン
========================= */

.cta-web {
    background: #b5838d;
    color: #fff;
    box-shadow: 0 4px 15px rgba(181, 131, 141, 0.35);
}

/* =========================
   電話メニュー（上に開く）
========================= */

.tel_menu {
    position: absolute;
    bottom: 100%;
    left: 0;
    width: 100%;

    background: #fff;
    border-top: 1px solid #ccc;
    box-shadow: 0 -6px 20px rgba(0, 0, 0, .12);

    transform: scaleY(0);
    transform-origin: bottom;
    opacity: 0;

    transition: transform 0.3s ease, opacity 0.3s ease;

    z-index: 10000;

    pointer-events: none;
}

.tel_menu.show {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
}

/* メニュー項目 */
.tel_menu a {
    display: block;
    padding: 15px;
    text-align: center;

    color: #867664;
    font-weight: bold;
    text-decoration: none;

    border-bottom: 1px solid #eee;
}

.tel_menu a:last-child {
    border-bottom: none;
}

.cta-icon {
    width: 18px;
    height: 18px;
    display: inline-block;
    object-fit: contain;
}

.cta-phone:hover .cta-icon,
.cta-web:hover .cta-icon {
    transform: scale(1.1);
    transition: 0.2s;
}

/* =========================
   PC
========================= */

@media (min-width: 768px) {

    .fixed-cta {
        max-width: 680px;
        left: 50%;
        transform: translateX(-50%);
        border-radius: 18px 18px 0 0;
        overflow: hidden;
    }

    .fixed-cta a {
        padding: 20px;
        font-size: 16px;
    }
}

/* =========================
   hover
========================= */

@media (hover: hover) {
    .fixed-cta a:hover {
        opacity: 0.9;
        transform: translateY(-2px);
    }
}




/* 本文アニメーション */
.animation {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s ease;
}

.animation.show {
    opacity: 1;
    transform: translateY(0);
}


.timing02 {
    transition-delay: .2s;
}

.timing03 {
    transition-delay: .4s;
}

.timing04 {
    transition-delay: .6s;
}

.timing05 {
    transition-delay: .8s;
}