/* ===========================================
   ローディングアニメーション（トップページのみ）
   =========================================== */

.p-pageLoader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #E8A87C;
    z-index: 9999;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
    pointer-events: none;
}

.p-pageLoader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.p-pageLoader__geometricMorph {
    width: clamp(60px, 4.7vw, 80px);
    height: clamp(60px, 4.7vw, 80px);
    background: linear-gradient(135deg, #F2F8EF, #ffffff);
    position: relative;
    will-change: transform, border-radius;
    animation: geometricMorph 3s ease-in-out infinite;
}

@keyframes geometricMorph {
    0%,
    100% {
        border-radius: 20%;
        transform: rotate(0deg) scale(1);
    }
    25% {
        border-radius: 50%;
        transform: rotate(90deg) scale(0.9);
    }
    50% {
        border-radius: 5%;
        transform: rotate(180deg) scale(1.1);
    }
    75% {
        border-radius: 50%;
        transform: rotate(270deg) scale(0.9);
    }
}


/* レスポンシブ */

@media (max-width: 960px) {
    .p-pageLoader__geometricMorph {
        width: clamp(50px, 6vw, 70px);
        height: clamp(50px, 6vw, 70px);
    }
}

@media (max-width: 450px) {
    .p-pageLoader__geometricMorph {
        width: clamp(40px, 8vw, 60px);
        height: clamp(40px, 8vw, 60px);
    }
}


/* ===========================================
   なごみ接骨院 新デザイン用スタイル
   =========================================== */


/* ヒーローセクション - 新デザイン */

.p-heroSection--nagomi {
    padding: 0 !important;
    margin: 0 !important;
    min-height: calc(100vh - 100px);
    background: transparent;
    position: relative;
}

.p-heroSection--nagomi .p-heroSection__wrapper {
    display: flex !important;
    flex-direction: row !important;
    min-height: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    align-items: flex-start !important;
}

.p-heroSection--nagomi .p-heroSection__branding {
    background: transparent !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: center !important;
    padding: clamp(40px, 5vw, 80px) clamp(30px, 4vw, 60px) clamp(40px, 5vw, 80px) clamp(30px, 4vw, 60px) !important;
    position: relative !important;
    z-index: 1 !important;
    flex: 0 0 33.333% !important;
    max-width: 33.333% !important;
    height: auto !important;
    max-height: 100% !important;
    box-sizing: border-box !important;
    align-self: stretch !important;
}

.p-heroSection--nagomi .p-heroSection__logo {
    margin-bottom: clamp(20px, 2.5vw, 40px) !important;
    display: block !important;
    visibility: visible !important;
    flex-shrink: 0 !important;
}

.p-heroSection--nagomi .p-heroSection__logo img {
    width: clamp(60px, 7vw, 100px) !important;
    height: auto !important;
    display: block !important;
    visibility: visible !important;
    max-width: 100% !important;
}

.p-heroSection--nagomi .p-heroSection__clinicName {
    writing-mode: vertical-rl !important;
    text-orientation: mixed !important;
    font-size: clamp(20px, 2.5vw, 32px) !important;
    font-weight: 100 !important;
    color: #414141 !important;
    margin: 0 !important;
    padding: 0 !important;
    letter-spacing: 0.15em !important;
    line-height: 1.6 !important;
    font-family: "Kosugi Maru", "Hiragino Maru Gothic ProN", "Yu Gothic", Meiryo, system-ui, -apple-system, "Segoe UI", sans-serif !important;
    display: block !important;
    white-space: nowrap !important;
    visibility: visible !important;
    opacity: 1 !important;
    flex-shrink: 1 !important;
}

.p-heroSection--nagomi .p-heroSection__image {
    flex: 0 0 66.667% !important;
    max-width: 66.667% !important;
    width: 66.667% !important;
    height: calc(100vh - 100px) !important;
    max-height: 600px !important;
    min-height: auto;
    overflow: hidden;
    position: relative;
    display: flex !important;
    align-items: flex-start !important;
}

.p-heroSection--nagomi .p-heroSection__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}


/* スライドショー */

.p-heroSection--nagomi .p-heroSection__slideshow {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.p-heroSection--nagomi .p-heroSection__slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 3s ease-in-out;
}

.p-heroSection--nagomi .p-heroSection__slide--active {
    opacity: 1;
    z-index: 2;
}

.p-heroSection--nagomi .p-heroSection__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}


/* ヘッダー - 新デザイン */


/* ヘッダーとフッターのスタイルは common.css に移動しました */


/* ===========================================
   当院についてセクション - 新デザイン
   =========================================== */

.p-aboutSection--nagomi {
    background: transparent;
    padding: clamp(60px, 8vw, 120px) 0;
}

.p-aboutSection--nagomi .l-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 40px);
    overflow: visible;
}

.p-aboutSection--nagomi .p-aboutSection__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: visible;
}


/* メインタグライン */

.p-aboutSection--nagomi .p-aboutSection__tagline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(20px, 3vw, 40px);
    margin-bottom: clamp(40px, 5vw, 60px);
    position: relative;
    width: 100%;
    max-width: 900px;
}

.p-aboutSection--nagomi .p-aboutSection__decoration {
    flex-shrink: 0;
}

.p-aboutSection--nagomi .p-aboutSection__decoration--left .p-aboutSection__olive {
    width: clamp(150px, 11.7vw, 300px);
    height: auto;
    transform: translateY(-15px) rotate(0deg);
}

.p-aboutSection--nagomi .p-aboutSection__decoration--right .p-aboutSection__olive {
    width: clamp(150px, 11.7vw, 300px);
    height: auto;
    transform: translateY(15px) rotate(180deg);
}

.p-aboutSection--nagomi .p-aboutSection__taglineText {
    text-align: center;
}

.p-aboutSection--nagomi .p-aboutSection__taglineLine1,
.p-aboutSection--nagomi .p-aboutSection__taglineLine2 {
    font-size: clamp(28px, 2.1vw, 40px);
    font-weight: 500;
    color: #414141;
    margin: 0;
    line-height: 1.8;
    font-family: "Kosugi Maru", "Hiragino Maru Gothic ProN", "Yu Gothic", Meiryo, system-ui, -apple-system, "Segoe UI", sans-serif;
}


/* コンテンツエリア（画像とテキストをまとめる） */

.p-aboutSection--nagomi .p-aboutSection__contentArea {
    width: 50%;
    min-width: 400px;
    /* max-width: 600px; */
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}


/* メイン画像 */

.p-aboutSection--nagomi .p-aboutSection__heroImage {
    width: 100%;
    margin: 0 0 clamp(40px, 5vw, 60px);
    border-radius: 16px;
    overflow: hidden;
}

.p-aboutSection--nagomi .p-aboutSection__heroImage img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}


/* サブヘッディング */

.p-aboutSection--nagomi .p-aboutSection__subheading {
    font-size: clamp(22px, 1.71vw, 42px);
    white-space: nowrap;
    font-weight: 700;
    color: #414141;
    text-align: center;
    margin: 0 0 clamp(30px, 4vw, 40px);
    line-height: 1.6;
    font-family: "Kosugi Maru", "Hiragino Maru Gothic ProN", "Yu Gothic", Meiryo, system-ui, -apple-system, "Segoe UI", sans-serif;
}


/* 本文テキスト */

.p-aboutSection--nagomi .p-aboutSection__text {
    width: 100%;
    margin: 0 0 clamp(40px, 5vw, 60px);
    text-align: left;
}

.p-aboutSection--nagomi .p-aboutSection__text p {
    font-size: clamp(18px, 1.4vw, 32px);
    line-height: 2;
    color: #414141;
    margin: 0 0 clamp(20px, 2.5vw, 30px);
    font-family: "Kosugi Maru", "Hiragino Maru Gothic ProN", "Yu Gothic", Meiryo, system-ui, -apple-system, "Segoe UI", sans-serif;
}

.p-aboutSection--nagomi .p-aboutSection__text p:last-child {
    margin-bottom: 0;
}


/* ボタン */

.p-aboutSection--nagomi .p-aboutSection__buttons {
    display: flex;
    gap: clamp(20px, 3vw, 30px);
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.c-btn--nagomi-outline {
    background: transparent;
    color: #A8B89A;
    border: 2px solid #A8B89A;
    padding: clamp(12px, 1.8vw, 16px) clamp(32px, 4vw, 48px);
    border-radius: 30px;
    text-decoration: none;
    font-size: clamp(16px, 1.25vw, 26px);
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-family: "Kosugi Maru", "Hiragino Maru Gothic ProN", "Yu Gothic", Meiryo, system-ui, -apple-system, "Segoe UI", sans-serif;
}

.c-btn--nagomi-outline:hover {
    background: #A8B89A;
    color: #ffffff;
    border-color: #A8B89A;
}

.c-btn--nagomi-green {
    background: #A8B89A;
    color: #ffffff;
    padding: clamp(12px, 1.8vw, 16px) clamp(32px, 4vw, 48px);
    border-radius: 30px;
    text-decoration: none;
    font-size: clamp(14px, 1.8vw, 16px);
    font-weight: 600;
    transition: background-color 0.3s ease;
    white-space: nowrap;
    font-family: "Kosugi Maru", "Hiragino Maru Gothic ProN", "Yu Gothic", Meiryo, system-ui, -apple-system, "Segoe UI", sans-serif;
}

.c-btn--nagomi-green:hover {
    background: #92B19C;
}


/* ===========================================
   SNSセクション - 新デザイン
   =========================================== */

.p-snsSection--nagomi {
    background: #FAF9F6;
    padding: clamp(60px, 8vw, 120px) 0;
    /* 既存の装飾を無効化 */
    position: relative;
    overflow: visible;
}

.p-snsSection--nagomi::before,
.p-snsSection--nagomi::after {
    display: none !important;
}

.p-snsSection--nagomi .l-container {
    /* max-width: 1400px; */
    width: 90%;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 40px);
}

.p-snsSection--nagomi .p-snsSection__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #EDE7D4;
    border-radius: clamp(32px, 2.5vw, 48px);
    padding: clamp(40px, 5vw, 60px) clamp(30px, 4vw, 50px);
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}


/* ヘッダー部分 */

.p-snsSection--nagomi .p-snsSection__header {
    width: 100%;
    text-align: center;
    margin-bottom: clamp(40px, 5vw, 60px);
}

.p-snsSection--nagomi .p-snsSection__subtitleWrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(15px, 2vw, 25px);
    margin: 0 auto clamp(20px, 2.5vw, 30px);
    width: 100%;
    max-width: 600px;
}

.p-snsSection--nagomi .p-snsSection__decoration {
    flex-shrink: 0;
}

.p-snsSection--nagomi .p-snsSection__decoration .p-snsSection__olive {
    width: clamp(40px, 5vw, 60px);
    height: auto;
    display: block;
}

.p-snsSection--nagomi .p-snsSection__decoration--right {
    transform: scaleX(-1);
}

.p-snsSection--nagomi .p-snsSection__subtitle {
    font-size: clamp(18px, 2.2vw, 24px);
    font-weight: 500;
    color: #414141;
    margin: 0;
    white-space: nowrap;
    font-family: "Kosugi Maru", "Hiragino Maru Gothic ProN", "Yu Gothic", Meiryo, system-ui, -apple-system, "Segoe UI", sans-serif;
    /* 既存の鉤括弧スタイルを無効化 */
    position: static !important;
    padding: 0 !important;
    display: inline-block !important;
}

.p-snsSection--nagomi .p-snsSection__subtitle::before,
.p-snsSection--nagomi .p-snsSection__subtitle::after {
    display: none !important;
}

.p-snsSection--nagomi .p-snsSection__title {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 700;
    color: #414141;
    margin: 0 0 clamp(20px, 2.5vw, 30px);
    font-family: "Kosugi Maru", "Hiragino Maru Gothic ProN", "Yu Gothic", Meiryo, system-ui, -apple-system, "Segoe UI", sans-serif;
    /* 既存の黄色背景とドットボーダーを無効化 */
    background: none !important;
    padding: 0 !important;
    border: none !important;
    position: static !important;
}

.p-snsSection--nagomi .p-snsSection__title::before,
.p-snsSection--nagomi .p-snsSection__title::after {
    display: none !important;
}

.p-snsSection--nagomi .p-snsSection__titleDecoration {
    width: 100%;
    max-width: 600px;
    display: flex;
    justify-content: center;
    margin: 0 auto;
}

.p-snsSection--nagomi .p-snsSection__oliveLong {
    width: 100%;
    height: auto;
    display: block;
}


/* Instagram投稿エリア */

.p-snsSection--nagomi .p-snsSection__instagramPosts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(15px, 2vw, 25px);
    width: 90%;
    max-width: 1200px;
    margin: 0 auto clamp(40px, 5vw, 60px);
}

.p-snsSection--nagomi .p-snsSection__post {
    width: 100%;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.p-snsSection--nagomi .p-snsSection__postImage {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.p-snsSection--nagomi .p-snsSection__postPlaceholder {
    padding: 40px 20px;
    text-align: center;
    color: #999;
    font-size: 14px;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.p-snsSection--nagomi .p-snsSection__postPlaceholder p {
    margin: 5px 0;
}


/* Instagram埋め込み用 */

.p-snsSection--nagomi .p-snsSection__post iframe {
    width: 100%;
    border: 0;
    display: block;
}


/* フッター部分 */

.p-snsSection--nagomi .p-snsSection__footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(20px, 2.5vw, 30px);
}

.p-snsSection--nagomi .p-snsSection__hashtag {
    font-size: clamp(18px, 2.2vw, 24px);
    font-weight: 600;
    color: #8B4513;
    margin: 0;
    font-family: "Kosugi Maru", "Hiragino Maru Gothic ProN", "Yu Gothic", Meiryo, system-ui, -apple-system, "Segoe UI", sans-serif;
}

.c-btn--nagomi-instagram {
    background: #D88363;
    color: #ffffff;
    padding: clamp(12px, 1.8vw, 16px) clamp(32px, 4vw, 48px);
    border-radius: 30px;
    text-decoration: none;
    font-size: clamp(14px, 1.8vw, 16px);
    font-weight: 600;
    transition: background-color 0.3s ease;
    white-space: nowrap;
    font-family: "Kosugi Maru", "Hiragino Maru Gothic ProN", "Yu Gothic", Meiryo, system-ui, -apple-system, "Segoe UI", sans-serif;
}

.c-btn--nagomi-instagram:hover {
    background: #C57353;
}


/* 交通事故ページへのリンクボタン */

.p-priceSection__trafficButton {
    margin-top: clamp(30px, 4vw, 50px);
    text-align: center;
}

.c-btn--nagomi-traffic {
    background: #94B49F;
    color: #ffffff;
    padding: clamp(12px, 1.8vw, 16px) clamp(32px, 4vw, 48px);
    border-radius: 30px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(16px, 1.25vw, 26px);
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-family: "Kosugi Maru", "Hiragino Maru Gothic ProN", "Yu Gothic", Meiryo, system-ui, -apple-system, "Segoe UI", sans-serif;
}

.c-btn--nagomi-traffic:hover {
    background: #7a9a85;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(148, 180, 159, 0.3);
}


/* レスポンシブ */

@media (max-width: 960px) {
    .p-snsSection--nagomi .p-snsSection__instagramPosts {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .p-snsSection--nagomi .p-snsSection__instagramPosts {
        grid-template-columns: repeat(2, 1fr);
    }
    .p-snsSection--nagomi .p-snsSection__subtitleWrapper {
        flex-wrap: wrap;
    }
    .p-snsSection--nagomi .p-snsSection__decoration {
        display: none;
    }
}


/* レスポンシブ */

@media (max-width: 960px) {
    .p-aboutSection--nagomi .l-container {
        overflow: visible;
    }
    .p-aboutSection--nagomi .p-aboutSection__inner {
        overflow: visible;
    }
    .p-aboutSection--nagomi .p-aboutSection__tagline {
        overflow: visible;
    }
    .p-aboutSection--nagomi .p-aboutSection__taglineText {
        white-space: nowrap;
    }
    .p-aboutSection--nagomi .p-aboutSection__decoration {
        flex-shrink: 0;
    }
    .p-aboutSection--nagomi .p-aboutSection__contentArea {
        width: 90%;
        min-width: 300px;
        max-width: 100%;
    }
    .p-aboutSection--nagomi .p-aboutSection__text {
        text-align: center;
    }
    .p-snsSection--nagomi .p-snsSection__subtitleWrapper {
        flex-wrap: initial;
    }
}


/* レスポンシブ */

@media (max-width: 960px) {
    .p-heroSection--nagomi .p-heroSection__wrapper {
        flex-direction: column !important;
        align-items: stretch !important;
    }
    .p-heroSection--nagomi .p-heroSection__branding {
        flex: 0 0 auto !important;
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        min-height: auto !important;
        padding: clamp(30px, 4vw, 50px) clamp(20px, 3vw, 40px) !important;
    }
    .p-heroSection--nagomi .p-heroSection__logo img {
        width: clamp(60px, 8vw, 90px) !important;
    }
    .p-heroSection--nagomi .p-heroSection__clinicName {
        font-size: clamp(18px, 2.2vw, 28px) !important;
        max-height: none !important;
    }
    .p-heroSection--nagomi .p-heroSection__image {
        flex: 0 0 auto !important;
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        min-height: 60vh;
        aspect-ratio: 16 / 9;
    }
    .p-heroSection--nagomi .p-heroSection__image img {
        height: 100%;
    }
    /* Header responsive styles moved to common.css */
}

.main-visual {
    position: relative;
    margin: 0 0 0 auto;
    width: 80%;
    height: 100vh;
    background: url('../images/common/yawara-sejutsu.JPG') center center/cover no-repeat;
    border-bottom-left-radius: clamp(100px, 15vw, 200px);
    overflow: hidden;
}


/* 背景画像スライダー用（Web Animations APIで動的に追加される要素） */

.main-visual__slide {
    /* JavaScriptで動的にスタイルが設定されます */
    border-bottom-left-radius: clamp(100px, 15vw, 200px);
    overflow: hidden;
}


/* コンテンツを前面に */

.main-visual>*:not(.main-visual__slide) {
    position: relative;
    z-index: 10;
}


/*/ タブレット用 (960px以下) */

@media (max-width: 960px) {
    .main-visual {
        width: 100%;
        border-bottom-left-radius: clamp(60px, 8vw, 120px);
        height: 60vh;
    }
    .main-visual__slide {
        border-bottom-left-radius: clamp(60px, 8vw, 120px);
    }
}


/*/ スマホ用 (450px以下) */

@media (max-width: 450px) {
    .c-btn {
        cursor: pointer;
        display: inline-block;
        line-height: 1;
        overflow: hidden;
        text-align: center;
        text-decoration: none;
        vertical-align: middle;
        white-space: nowrap;
        width: 100%;
    }
    .c-btn--nagomi-green {
        background: #A8B89A;
        color: #ffffff;
        padding: clamp(12px, 1.8vw, 16px) clamp(32px, 4vw, 48px);
        border-radius: 30px;
        text-decoration: none;
        font-size: clamp(16px, 1.25vw, 26px);
        font-weight: 600;
        transition: background-color 0.3s ease;
        white-space: nowrap;
        font-family: "Kosugi Maru", "Hiragino Maru Gothic ProN", "Yu Gothic", Meiryo, system-ui, -apple-system, "Segoe UI", sans-serif;
    }
    .c-btn--nagomi-outline {
        background: none;
        color: #A8B89A;
        border: 2px solid #A8B89A;
        padding: clamp(12px, 1.8vw, 16px) clamp(32px, 4vw, 48px);
        border-radius: 30px;
        text-decoration: none;
        font-size: clamp(16px, 1.25vw, 26px);
        font-weight: 600;
        transition: all 0.3s ease;
        white-space: nowrap;
        font-family: "Kosugi Maru", "Hiragino Maru Gothic ProN", "Yu Gothic", Meiryo, system-ui, -apple-system, "Segoe UI", sans-serif;
    }
    .c-btn--arrow::after {
        width: 15px !important;
    }
    .c-btn--primary {
        background: #4A6B4A;
        color: #ffffff;
        padding: 8px clamp(32px, 3vw, 48px) !important;
        border-radius: clamp(60px, 4.68vw, 100px);
        font-size: clamp(16px, 1.2vw, 20px);
        font-weight: 600;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        white-space: nowrap;
    }
    .main-visual {
        width: 85%;
        border-top-left-radius: clamp(32px, 6vw, 60px);
        border-bottom-left-radius: clamp(32px, 6vw, 60px);
        margin-top: 220px;
        height: 40vh;
        min-height: 300px;
        background-position: top;
        overflow: visible;
    }
    .main-visual__slide {
        border-top-left-radius: clamp(32px, 6vw, 60px);
        border-bottom-left-radius: clamp(32px, 6vw, 60px);
    }
    .p-heroSection {
        overflow: visible !important;
    }
    .p-heroSection__overlay {
        left: 20px;
        right: 20px;
        top: -80px !important;
        position: absolute !important;
        gap: 0 !important;
    }
    .p-heroSection__overlayBox {
        box-shadow: none !important;
        text-align: left !important;
        padding: 0 !important;
        font-size: 22px !important;
    }
    .p-aboutSection {
        margin-top: 50px;
        padding: 40px 0;
    }
    .p-heroNews {
        left: 0 !important;
        margin: 0 !important;
        border-top-left-radius: 0 !important;
        border-bottom-left-radius: 0 !important;
    }
    .p-heroSection--nagomi .p-heroSection__image {
        flex: 0 0 auto !important;
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        min-height: 30vh;
        aspect-ratio: 16 / 9;
    }
    /* 下のセクション */
    .p-aboutSection__inner {
        /* max-width: 1200px; */
        width: 100% !important;
        margin: 0 auto;
    }
    .p-aboutSection__title {
        font-size: clamp(28px, 2.1vw, 40px) !important;
        margin-bottom: clamp(22px, 1.71vw, 42px) !important;
        line-height: 1.7 !important;
    }
    .p-aboutSection__text p {
        margin-bottom: 1em;
        font-size: clamp(15px, 1.17vw, 28px);
    }
    .p-aboutSection__image--large {
        width: 220px;
        height: 160px;
        left: -50px !important;
    }
    .p-aboutSection__image--small {
        width: 160px;
        height: 120px;
        right: -50px !important;
    }
    .p-aboutSection--nagomi .p-aboutSection__taglineLine1,
    .p-aboutSection--nagomi .p-aboutSection__taglineLine2 {
        font-size: clamp(18px, 1.4vw, 32px);
        font-weight: 500;
        color: #414141;
        margin: 0;
        line-height: 1.8;
        font-family: "Kosugi Maru", "Hiragino Maru Gothic ProN", "Yu Gothic", Meiryo, system-ui, -apple-system, "Segoe UI", sans-serif;
    }
    .p-aboutSection--nagomi .p-aboutSection__tagline {
        overflow: visible;
    }
    .p-aboutSection--nagomi .p-aboutSection__decoration {
        position: absolute;
        display: block;
    }
    .p-aboutSection--nagomi .p-aboutSection__decoration--left {
        left: clamp(-200px, -15vw, -100px);
        top: 50%;
    }
    .p-aboutSection--nagomi .p-aboutSection__decoration--right {
        right: clamp(-200px, -15vw, -100px);
        top: 50%;
    }
    .p-aboutSection {
        padding: 0 0;
        overflow: visible;
        margin-top: 0;
    }
    .p-aboutSection--nagomi .p-aboutSection__decoration--left .p-aboutSection__olive {
        width: clamp(150px, 11.7vw, 300px);
        height: auto;
        transform: translateY(-50%) translateY(50px) translateX(-130px) rotate(0deg);
    }
    .p-aboutSection--nagomi .p-aboutSection__decoration--right .p-aboutSection__olive {
        width: clamp(150px, 11.7vw, 300px);
        height: auto;
        transform: translateY(-50%) translateX(130px) translateY(-50px) rotate(180deg);
    }
    .aboutSection__tagline {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: clamp(20px, 3vw, 40px);
        margin-bottom: 0;
        position: relative;
        width: 100%;
        max-width: 900px;
    }
    .p-aboutSection--nagomi .p-aboutSection__subheading {
        font-size: clamp(22px, 1.71vw, 42px);
        white-space: initial;
        font-weight: 700;
        color: #414141;
        text-align: center;
        margin: 0 0 clamp(30px, 4vw, 40px);
        line-height: 1.6;
        font-family: "Kosugi Maru", "Hiragino Maru Gothic ProN", "Yu Gothic", Meiryo, system-ui, -apple-system, "Segoe UI", sans-serif;
    }
    .p-aboutSection--nagomi .p-aboutSection__text p {
        font-size: clamp(14px, 1.09vw, 24px);
        line-height: 2;
        text-align: left;
        color: #414141;
        margin: 0 0 clamp(20px, 2.5vw, 30px);
        font-family: "Kosugi Maru", "Hiragino Maru Gothic ProN", "Yu Gothic", Meiryo, system-ui, -apple-system, "Segoe UI", sans-serif;
    }
    .p-aboutSection--nagomi .p-aboutSection__buttons {
        display: flex;
        gap: 10px;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        width: fit-content;
    }
    /* インスタ */
    .p-snsSection--nagomi .p-snsSection__subtitle {
        font-size: clamp(14px, 1.09vw, 24px);
        font-weight: 500;
        color: #414141;
        margin: 0;
        white-space: nowrap;
        font-family: "Kosugi Maru", "Hiragino Maru Gothic ProN", "Yu Gothic", Meiryo, system-ui, -apple-system, "Segoe UI", sans-serif;
        position: static !important;
        padding: 0 !important;
        display: inline-block !important;
    }
    .p-snsSection--nagomi .p-snsSection__decoration {
        display: block;
    }
    /* メニュー */
    .c-menuCard {
        padding: clamp(40px, 3vw, 60px) !important;
        /* padding-bottom: clamp(90px, 6.5vw, 110px); */
        min-height: 200px !important;
        height: 200px;
        border-radius: clamp(22px, 1.71vw, 42px) !important;
    }
    .c-menuCard__title {
        font-size: clamp(22px, 1.71vw, 42px) !important;
        font-weight: 700;
        line-height: 1.3;
        margin-bottom: clamp(24px, 1.8vw, 32px);
    }
    .c-menuCard__cta {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: clamp(24px, 1.8vw, 32px);
        transform: none;
        position: absolute !important;
    }
    .c-menuCard__cta {
        right: -10px !important;
        bottom: -5px !important;
    }
    .c-menuCard__label {
        border-top-left-radius: clamp(15px, 1.17vw, 28px) !important;
        border-bottom-right-radius: clamp(15px, 1.17vw, 28px) !important;
    }
    /* 院長メッセージ */
    .p-directorSection__container {
        width: 90% !important;
        padding: 0 15px;
    }
    .p-directorSection__title {
        font-size: clamp(22px, 1.71vw, 42px)!important;
    }
    .p-directorSection__subtitle {
        font-size: clamp(14px, 1.2vw, 18px);
        font-weight: 600;
        color: #36BAC7;
        letter-spacing: 0.2em;
        margin-bottom: 5px !important;
        text-align: center;
    }
    .p-directorSection__content {
        display: flex;
        gap: clamp(40px, 3vw, 60px);
        align-items: center !important;
    }
    .p-directorSection__profileTitle {
        margin-bottom: 0 !important;
    }
    .p-directorSection__profileName {
        font-size: clamp(22px, 1.71vw, 42px)!important;
        color: #5A5A5A;
        line-height: 2;
        margin-bottom: 0px !important;
    }
    .p-directorSection__mainText {
        font-size: clamp(22px, 1.71vw, 42px) !important;
        font-weight: 700;
        color: #5A5A5A;
        line-height: 1.7 !important;
        margin-bottom: clamp(30px, 2.3vw, 50px);
        text-align: left !important;
        margin-bottom: 20px !important;
    }
    .p-directorSection__text p {
        font-size: clamp(15px, 1.17vw, 28px) !important;
        text-align: left !important;
    }
    /* お客様の声 */
    .p-voiceSection__title {
        font-size: clamp(22px, 1.71vw, 42px) !important;
        font-weight: 700;
        color: #ffffff;
        line-height: 1.3;
        text-align: left;
        margin-bottom: clamp(30px, 2.3vw, 50px);
    }
    .p-voiceSection__inner {
        width: 85% !important;
        margin: 0 auto;
        margin-top: 20px !important;
    }
    .p-voiceSection__subtitle {
        font-size: clamp(14px, 1.2vw, 18px);
        font-weight: 600;
        color: #ffffff;
        letter-spacing: 0.2em;
        margin-bottom: 5px !important;
        text-align: left;
    }
    .p-voiceSection__mainText {
        font-size: clamp(22px, 1.71vw, 42px) !important;
        font-weight: 700;
        color: #ffffff;
        line-height: 1.7;
        margin-bottom: clamp(22px, 1.71vw, 42px) !important;
        text-align: left;
    }
    .p-voiceSection::before {
        top: 0 !important;
        right: 0 !important;
        width: 100px !important;
        height: 100px !important;
    }
    .p-voiceSection::after {
        top: 90px !important;
        right: 80px !important;
        width: 30px !important;
        height: 30px !important;
    }
    /* よくある質問 */
    .p-faqSection__title {
        font-size: clamp(22px, 1.71vw, 42px)!important;
        font-weight: 700;
        color: #5A5A5A;
        line-height: 1.3;
        text-align: center;
        margin-bottom: 5;
    }
    .p-faqSection__subtitle {
        font-size: clamp(14px, 1.2vw, 18px);
        font-weight: 600;
        color: #36BAC7;
        letter-spacing: 0.2em;
        margin-bottom: 5px !important;
        text-align: center;
    }
    .c-faqItem__question {
        padding: 5px clamp(20px, 1.6vw, 25px)!important;
    }
}


/* ===========================================
   症状カードセクション
   =========================================== */

.p-symptomSection {
    background: transparent;
    padding: clamp(60px, 8vw, 120px) 0;
}

.p-symptomSection .l-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
}

.p-symptomSection__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 70%;
    min-width: 600px;
    max-width: 1200px;
    margin: 0 auto;
    overflow: visible;
    box-sizing: border-box;
}

.p-symptomSection__title {
    font-size: clamp(20px, 1.56vw, 40px);
    font-weight: 700;
    color: #414141;
    text-align: center;
    margin: 0 0 clamp(40px, 5vw, 60px);
    font-family: "Kosugi Maru", "Hiragino Maru Gothic ProN", "Yu Gothic", Meiryo, system-ui, -apple-system, "Segoe UI", sans-serif;
}


/* 症状カードグリッド */

.p-symptomCards {
    width: 100%;
    position: relative;
    overflow: visible;
    box-sizing: border-box;
}

.p-symptomCards__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(20px, 3vw, 30px);
    margin-bottom: clamp(40px, 5vw, 60px);
    width: 100%;
    box-sizing: border-box;
    min-width: 0;
}


/* 症状カード */

.p-symptomCard {
    position: relative;
    aspect-ratio: 1;
    border-radius: clamp(16px, 2vw, 24px);
    overflow: visible;
    min-width: 0;
    width: 100%;
}

.p-symptomCard__link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
    position: relative;
    border-radius: clamp(16px, 2vw, 24px);
    background: #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: visible;
    box-sizing: border-box;
}

.p-symptomCard__link:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}


/* 手描き風枠線SVG */

.p-symptomCard__border {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: visible;
}

.p-symptomCard__border rect {
    vector-effect: non-scaling-stroke;
    shape-rendering: geometricPrecision;
}


/* コンテンツ */

.p-symptomCard__content {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    border: 2px solid #9FB7A4;
    border-radius: clamp(16px, 1.25vw, 26px);
    flex-direction: column;
    padding: clamp(20px, 2.5vw, 30px) 0;
    box-sizing: border-box;
}


/* ヘッダー（タイトルと矢印） */

.p-symptomCard__header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(8px, 1vw, 12px);
    margin-bottom: clamp(15px, 2vw, 20px);
}

.p-symptomCard__title {
    font-size: clamp(16px, 1.25vw, 26px);
    font-weight: 700;
    color: #414141;
    margin: 0;
    line-height: 1.4;
    font-family: "Kosugi Maru", "Hiragino Maru Gothic ProN", "Yu Gothic", Meiryo, system-ui, -apple-system, "Segoe UI", sans-serif;
}

.p-symptomCard__arrow {
    flex-shrink: 0;
    width: clamp(24px, 3vw, 28px);
    height: clamp(24px, 3vw, 28px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.p-symptomCard__arrow svg {
    width: 100%;
    height: 100%;
    display: block;
}


/* アイキャッチ画像（丸型） */

.p-symptomCard__image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    min-height: 0;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.p-symptomCard__imageImg {
    width: auto;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.p-symptomCard__imagePlaceholder {
    width: auto;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.p-symptomCard__imagePlaceholder svg {
    width: 100%;
    height: 100%;
}


/* ボタン */

.p-symptomCards__button {
    text-align: center;
}

.c-btn--nagomi-symptom {
    background: #9FB7A4;
    color: #ffffff;
    padding: clamp(14px, 1.8vw, 18px) clamp(40px, 5vw, 60px);
    border-radius: 30px;
    text-decoration: none;
    font-size: clamp(16px, 1.25vw, 26px);
    font-weight: 600;
    transition: background-color 0.3s ease;
    display: inline-block;
    font-family: "Kosugi Maru", "Hiragino Maru Gothic ProN", "Yu Gothic", Meiryo, system-ui, -apple-system, "Segoe UI", sans-serif;
}

.c-btn--nagomi-symptom:hover {
    background: #8FA392;
}


/* 投稿がない場合 */

.p-symptomCards--empty {
    text-align: center;
    padding: clamp(40px, 5vw, 60px);
    color: #999;
}


/* レスポンシブ */

@media (max-width: 960px) {
    .p-symptomSection__inner {
        width: 90%;
        min-width: 400px;
    }
    .p-symptomCards__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: clamp(15px, 2vw, 20px);
    }
}

@media (max-width: 600px) {
    .p-symptomSection__inner {
        width: 95%;
        min-width: 300px;
    }
    .p-symptomCards__grid {
        grid-template-columns: 1fr 1fr;
    }
}


/* ===========================================
   施術メニュー・料金セクション
   =========================================== */

.p-priceSection {
    background: #EDE7D4;
    padding: clamp(60px, 8vw, 120px) 0;
}

.p-priceSection .l-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 40px);
}

.p-priceSection__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.p-priceSection__title {
    font-size: clamp(20px, 1.56vw, 40px);
    font-weight: 700;
    color: #414141;
    text-align: center;
    margin: 0 0 clamp(30px, 4vw, 40px);
    font-family: "Kosugi Maru", "Hiragino Maru Gothic ProN", "Yu Gothic", Meiryo, system-ui, -apple-system, "Segoe UI", sans-serif;
}

.p-priceSection__lead {
    text-align: center;
    margin-bottom: clamp(40px, 5vw, 60px);
    max-width: 800px;
}

.p-priceSection__lead p {
    font-size: clamp(14px, 1.09vw, 24px);
    line-height: 2;
    color: #414141;
    margin: 0 0;
    font-family: "Kosugi Maru", "Hiragino Maru Gothic ProN", "Yu Gothic", Meiryo, system-ui, -apple-system, "Segoe UI", sans-serif;
}

.p-priceSection__lead p:last-child {
    margin-bottom: 0;
}


/* 料金表ボックス */

.p-priceSection__box {
    background: #ffffff;
    border-radius: clamp(24px, 3vw, 32px);
    padding: clamp(30px, 4vw, 50px) clamp(30px, 4vw, 50px);
    width: 100%;
    max-width: 1000px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}


/* ヘッダー部分 */

.p-priceSection__header {
    display: flex;
    align-items: center;
    gap: clamp(20px, 3vw, 30px);
    margin-bottom: clamp(30px, 4vw, 40px);
    padding-bottom: clamp(20px, 2.5vw, 30px);
    border-bottom: 1px solid #E0E0E0;
}

.p-priceSection__category {
    background: #94B49F;
    color: #ffffff;
    padding: clamp(8px, 1.2vw, 12px) clamp(24px, 3vw, 36px);
    border-radius: 50px;
    font-size: clamp(16px, 1.25vw, 26px);
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
    font-family: "Kosugi Maru", "Hiragino Maru Gothic ProN", "Yu Gothic", Meiryo, system-ui, -apple-system, "Segoe UI", sans-serif;
}

.p-priceSection__headerNote {
    font-size: clamp(16px, 1.25vw, 26px);
    color: #94B49F;
    line-height: 1.8;
    margin: 0;
    flex: 1;
    font-family: "Kosugi Maru", "Hiragino Maru Gothic ProN", "Yu Gothic", Meiryo, system-ui, -apple-system, "Segoe UI", sans-serif;
}


/* 料金表 */

.p-priceSection__table {
    width: 100%;
    border-collapse: collapse;
    border: none;
}

.p-priceSection__table th,
.p-priceSection__table td {
    border-left: none;
    border-right: none;
}

.p-priceSection__tableHeader {
    background: #ffffff;
    padding: clamp(16px, 2vw, 20px) clamp(20px, 2.5vw, 24px);
    text-align: left;
    font-size: clamp(18px, 1.4vw, 32px);
    font-weight: 700;
    color: #94B49F;
    border-bottom: 1px dashed #94B49F;
    border-left: none;
    border-right: none;
    border-top: none;
    font-family: "Kosugi Maru", "Hiragino Maru Gothic ProN", "Yu Gothic", Meiryo, system-ui, -apple-system, "Segoe UI", sans-serif;
}

.p-priceSection__tableHeader:first-child {
    width: 25%;
}

.p-priceSection__tableHeader:nth-child(2) {
    width: 20%;
}

.p-priceSection__tableHeader:last-child {
    width: 55%;
}

.p-priceSection__tableCell {
    padding: clamp(20px, 2.5vw, 24px) clamp(20px, 2.5vw, 24px);
    font-size: clamp(16px, 1.25vw, 26px);
    color: #414141;
    line-height: 1.8;
    border-bottom: 1px dashed #94B49F;
    border-left: none;
    border-right: none;
    border-top: none;
    background: #ffffff;
    vertical-align: top;
    font-family: "Kosugi Maru", "Hiragino Maru Gothic ProN", "Yu Gothic", Meiryo, system-ui, -apple-system, "Segoe UI", sans-serif;
}

.p-priceSection__tableCell:first-child {
    font-weight: 600;
}

.p-priceSection__table tbody tr:last-child .p-priceSection__tableCell {
    border-bottom: none;
}


/* レスポンシブ */

@media (max-width: 960px) {
    .p-priceSection__header {
        flex-direction: column;
        gap: clamp(15px, 2vw, 20px);
    }
    .p-priceSection__table {
        display: block;
        overflow-x: auto;
    }
    .p-priceSection__tableHeader,
    .p-priceSection__tableCell {
        white-space: nowrap;
        min-width: 150px;
    }
}

@media (max-width: 600px) {
    .p-priceSection__box {
        padding: clamp(20px, 3vw, 30px) clamp(15px, 2vw, 20px);
    }
    .p-priceSection__table {
        font-size: 12px;
    }
    .p-priceSection__tableHeader,
    .p-priceSection__tableCell {
        padding: clamp(12px, 2vw, 16px) clamp(12px, 2vw, 16px);
        min-width: 120px;
    }
}


/* ========================================
   施術の流れセクション（なごみデザイン）
   ======================================== */

.p-flowSection--nagomi {
    background: #FAF9F6 !important;
    padding: clamp(60px, 8vw, 120px) 0 !important;
    position: relative;
}

.p-flowSection--nagomi .p-flowSection__inner {
    max-width: 1400px !important;
    width: 100% !important;
    min-width: auto !important;
    margin: 0 auto !important;
    padding: 0 clamp(20px, 4vw, 40px) !important;
}

.p-flowSection--nagomi .p-flowSection__subtitle {
    display: none !important;
}

.p-flowSection--nagomi .p-flowSection__title {
    font-size: clamp(20px, 1.56vw, 40px) !important;
    font-weight: 700 !important;
    color: #414141 !important;
    text-align: center !important;
    margin: 0 0 clamp(20px, 2.5vw, 30px) !important;
    font-family: "Kosugi Maru", "Hiragino Maru Gothic ProN", "Yu Gothic", Meiryo, system-ui, -apple-system, "Segoe UI", sans-serif;
}

.p-flowSection--nagomi .p-flowSection__intro {
    font-size: clamp(16px, 2vw, 18px) !important;
    line-height: 1.8 !important;
    color: #414141 !important;
    text-align: center !important;
    margin: 0 auto clamp(50px, 6vw, 80px) auto !important;
    max-width: 800px !important;
    font-family: "Kosugi Maru", "Hiragino Maru Gothic ProN", "Yu Gothic", Meiryo, system-ui, -apple-system, "Segoe UI", sans-serif;
}

.p-flowSection--nagomi .p-flowSection__list {
    display: none !important;
}

.p-flowSection--nagomi .p-flowSection__defs {
    position: absolute;
    z-index: -1;
    visibility: hidden;
    width: 0;
    height: 0;
}


/* グリッド */

.p-flowSection--nagomi .p-flowSection__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(24px, 3vw, 40px);
    position: relative;
    --stagger: 44px;
}


/* ポリシーセクション（3列グリッド） */

.p-flowSection--policy .p-flowSection__grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: clamp(24px, 3vw, 40px) !important;
    position: relative !important;
}


/* カード共通 */

.p-flowCard {
    position: relative;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    border: 3px solid #94B49F;
    border-radius: 0 clamp(36px, 2.8vw, 72px) 0 clamp(36px, 2.8vw, 72px);
    padding: clamp(20px, 2.5vw, 28px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    box-sizing: border-box;
}


/* 白ベースカード（枠線あり） */

.p-flowCard--outline {
    background: #ffffff;
}


/* 塗りベースカード（背景色あり） */

.p-flowCard--solid {
    background: #94B49F;
    color: #ffffff;
}


/* 手書き風枠線（白ベースのみ） */

.p-flowCard__border {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: visible;
}

.p-flowCard__border rect {
    vector-effect: non-scaling-stroke;
    shape-rendering: geometricPrecision;
}


/* STEPラベル */

.p-flowCard__step {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: #94B49F;
    color: #ffffff;
    padding: clamp(8px, 1vw, 12px) clamp(12px, 1.5vw, 18px);
    /* 左上は尖らせる、右下は正円の4分の1の曲線（大きな半径） */
    border-radius: 0 0 clamp(40px, 5vw, 60px) 0;
    z-index: 2;
    font-family: "Kosugi Maru", "Hiragino Maru Gothic ProN", "Yu Gothic", Meiryo, system-ui, -apple-system, "Segoe UI", sans-serif;
}


/* 塗りベースカード（2, 4）のSTEPラベル：白背景、#94B49F文字色、ゆるいカーブ */

.p-flowCard--solid .p-flowCard__step {
    background: #ffffff;
    color: #94B49F;
    /* 左上は尖らせる、右下は正円の4分の1の曲線（大きな半径） */
    border-radius: 0 0 clamp(40px, 5vw, 60px) 0;
}

.p-flowCard__stepLabel {
    font-size: clamp(10px, 0.78vw, 18px);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.05em;
}

.p-flowCard__stepNumber {
    font-size: clamp(20px, 1.56vw, 40px);
    font-weight: 700;
    line-height: 1;
    margin-top: 2px;
}


/* 見出し */

.p-flowCard__heading {
    font-size: clamp(20px, 1.56vw, 40px);
    font-weight: 700;
    margin: 0 0 0;
    line-height: 1.8;
    font-family: "Kosugi Maru", "Hiragino Maru Gothic ProN", "Yu Gothic", Meiryo, system-ui, -apple-system, "Segoe UI", sans-serif;
}

.p-flowCard--solid .p-flowCard__heading {
    color: #ffffff;
}


/* 画像 */

.p-flowCard__media {
    width: 100%;
    aspect-ratio: 1;
    border-radius: clamp(12px, 1.5vw, 16px);
    overflow: hidden;
    margin-bottom: clamp(16px, 2vw, 20px);
    flex-shrink: 0;
    /* background: #ffffff; */
    padding: clamp(8px, 1vw, 12px);
    box-sizing: border-box;
}

.p-flowCard__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: clamp(8px, 1vw, 12px);
}


/* 説明文 */

.p-flowCard__text {
    font-size: clamp(14px, 1.09vw, 24px);
    line-height: 1.8;
    margin: 0;
    flex: 1;
    font-family: "Kosugi Maru", "Hiragino Maru Gothic ProN", "Yu Gothic", Meiryo, system-ui, -apple-system, "Segoe UI", sans-serif;
}

.p-flowCard--solid .p-flowCard__text {
    color: #ffffff;
}


/* スタッガード配置（偶数カードを下にずらす） */

.p-flowSection--nagomi .p-flowCard:nth-child(even) {
    transform: translateY(var(--stagger, 44px));
}


/* レスポンシブ */

@media (max-width: 960px) {
    .p-flowSection--nagomi .p-flowSection__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: clamp(20px, 2.5vw, 30px);
    }
    /* タブレットではスタッガードを解除 */
    .p-flowSection--nagomi .p-flowCard:nth-child(even) {
        transform: none;
    }
    /* ポリシーセクション（3列）のタブレット対応 */
    .p-flowSection--policy .p-flowSection__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 600px) {
    .p-flowSection--nagomi .p-flowSection__grid {
        grid-template-columns: 1fr;
        gap: clamp(20px, 2.5vw, 28px);
    }
    /* スマホではスタッガードを解除 */
    .p-flowSection--nagomi .p-flowCard:nth-child(even) {
        transform: none;
    }
    /* ポリシーセクション（3列）のスマホ対応 */
    .p-flowSection--policy .p-flowSection__grid {
        grid-template-columns: 1fr !important;
    }
}


/* ========================================
   院長メッセージセクション（なごみデザイン）
   ======================================== */

.p-directorSection--nagomi {
    background: #FAF9F6 !important;
    padding: clamp(60px, 8vw, 120px) 0 !important;
    position: relative;
}

.p-directorSection--nagomi .p-directorSection__subtitle {
    display: none !important;
}

.p-directorSection--nagomi .p-directorSection__decoration--bottomLeft {
    display: none !important;
}

.p-directorSection--nagomi .l-container {
    width: 75%;
    min-width: 600px;
    margin: 0 auto;
    padding: 0;
}

.p-directorSection--nagomi .p-directorSection__inner {
    width: 100% !important;
    min-width: auto !important;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.p-directorSection--nagomi .p-directorSection__title {
    font-size: clamp(20px, 1.56vw, 40px);
    font-weight: 700;
    color: #414141;
    margin: 0 0 clamp(40px, 5vw, 60px);
    text-align: center;
    font-family: "Kosugi Maru", "Hiragino Maru Gothic ProN", "Yu Gothic", Meiryo, system-ui, -apple-system, "Segoe UI", sans-serif;
}

.p-directorSection--nagomi .p-directorSection__content {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: clamp(40px, 5vw, 60px);
    width: 100%;
}


/* 左側：画像エリア */

.p-directorSection--nagomi .p-directorSection__imageWrapper {
    flex: 0 0 auto;
    width: clamp(300px, 35vw, 450px);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.p-directorSection--nagomi .p-directorSection__image {
    width: 100%;
    border-radius: 0;
    overflow: visible;
    margin-bottom: clamp(16px, 2vw, 24px);
}

.p-directorSection--nagomi .p-directorSection__image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    object-position: center;
}

.p-directorSection--nagomi .p-directorSection__profile {
    text-align: center;
    width: 100%;
    margin-top: clamp(16px, 2vw, 24px);
}

.p-directorSection--nagomi .p-directorSection__profileText {
    font-size: clamp(16px, 1.25vw, 26px);
    color: #414141;
    margin: 0;
    font-family: "Kosugi Maru", "Hiragino Maru Gothic ProN", "Yu Gothic", Meiryo, system-ui, -apple-system, "Segoe UI", sans-serif;
}


/* 右側：テキストエリア */

.p-directorSection--nagomi .p-directorSection__text {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.p-directorSection--nagomi .p-directorSection__mainText {
    font-size: clamp(28px, 2.1vw, 40px);
    font-weight: 700;
    color: #414141;
    line-height: 1.6;
    margin: 0 0 clamp(32px, 4vw, 48px);
    text-align: left;
    font-family: "Kosugi Maru", "Hiragino Maru Gothic ProN", "Yu Gothic", Meiryo, system-ui, -apple-system, "Segoe UI", sans-serif;
}

.p-directorSection--nagomi .p-directorSection__text p {
    font-size: clamp(16px, 1.25vw, 26px);
    line-height: 2;
    color: #414141;
    margin: 0 0 clamp(20px, 2.5vw, 28px);
    text-align: left;
    font-family: "Kosugi Maru", "Hiragino Maru Gothic ProN", "Yu Gothic", Meiryo, system-ui, -apple-system, "Segoe UI", sans-serif;
}

.p-directorSection--nagomi .p-directorSection__text p:last-of-type {
    margin-bottom: clamp(32px, 4vw, 48px);
}


/* ボタン */

.c-btn--nagomi-message {
    background: #94B49F;
    color: #ffffff;
    padding: clamp(12px, 1.8vw, 16px) clamp(32px, 4vw, 48px);
    border-radius: 30px;
    text-decoration: none;
    font-size: clamp(14px, 1.8vw, 16px);
    font-weight: 600;
    transition: background-color 0.3s ease;
    white-space: nowrap;
    font-family: "Kosugi Maru", "Hiragino Maru Gothic ProN", "Yu Gothic", Meiryo, system-ui, -apple-system, "Segoe UI", sans-serif;
    display: inline-block;
    align-self: flex-end;
    margin-top: auto;
}

.c-btn--nagomi-message:hover {
    background: #7FA08A;
}


/* レスポンシブ */

@media (max-width: 960px) {
    .p-directorSection--nagomi .p-directorSection__content {
        flex-direction: column;
        align-items: center;
        gap: clamp(30px, 4vw, 40px);
    }
    .p-directorSection--nagomi .p-directorSection__imageWrapper {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 600px) {
    .p-directorSection--nagomi .p-directorSection__imageWrapper {
        max-width: 100%;
    }
}


/* ========================================
   お客様の声セクション（なごみデザイン）
   ======================================== */

.p-voiceSection--nagomi {
    background: #96b29e !important;
    padding: clamp(60px, 8vw, 120px) 0 !important;
    border-radius: 0 !important;
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
    position: relative;
    overflow: visible !important;
}

.p-voiceSection--nagomi::before,
.p-voiceSection--nagomi::after {
    display: none !important;
    content: none !important;
}

.p-voiceSection--nagomi .l-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 40px);
}

.p-voiceSection--nagomi .p-voiceSection__inner {
    width: 100% !important;
    min-width: auto !important;
}

.p-voiceSection--nagomi .p-voiceSection__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.p-voiceSection--nagomi .p-voiceSection__textWrapper {
    width: 100%;
    margin-bottom: clamp(40px, 5vw, 60px);
}

.p-voiceSection--nagomi .p-voiceSection__title {
    font-size: clamp(18px, 1.4vw, 32px);
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 clamp(24px, 3vw, 32px);
    font-family: "Kosugi Maru", "Hiragino Maru Gothic ProN", "Yu Gothic", Meiryo, system-ui, -apple-system, "Segoe UI", sans-serif;
}

.p-voiceSection--nagomi .p-voiceSection__subtitle {
    display: none !important;
}

.p-voiceSection--nagomi .p-voiceSection__mainText {
    font-size: clamp(28px, 2.1vw, 40px);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.8;
    margin: 0 0 clamp(32px, 4vw, 48px);
    font-family: "Kosugi Maru", "Hiragino Maru Gothic ProN", "Yu Gothic", Meiryo, system-ui, -apple-system, "Segoe UI", sans-serif;
}

.p-voiceSection--nagomi .p-voiceSection__text {
    font-size: clamp(16px, 1.25vw, 26px);
    line-height: 2;
    color: #ffffff;
    margin: 0 0 clamp(20px, 2.5vw, 28px);
    font-family: "Kosugi Maru", "Hiragino Maru Gothic ProN", "Yu Gothic", Meiryo, system-ui, -apple-system, "Segoe UI", sans-serif;
}

.p-voiceSection--nagomi .p-voiceSection__text:last-of-type {
    margin-bottom: 0;
}

.p-voiceSection--nagomi .p-voiceSection__buttonWrapper {
    align-self: flex-end;
    margin-top: 0;
}


/* ボタンスタイル */

.c-btn--nagomi-voice {
    background: #f8f4f0;
    color: #D88363;
    border: 2px solid #D88363;
    padding: clamp(12px, 1.8vw, 16px) clamp(32px, 4vw, 48px);
    border-radius: 50px;
    text-decoration: none;
    font-size: clamp(16px, 1.25vw, 26px);
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease;
    white-space: nowrap;
    font-family: "Kosugi Maru", "Hiragino Maru Gothic ProN", "Yu Gothic", Meiryo, system-ui, -apple-system, "Segoe UI", sans-serif;
    display: inline-block;
    position: relative;
}

.c-btn--nagomi-voice:hover {
    background: #D88363;
    color: #ffffff;
}


/* レスポンシブ */

@media (max-width: 960px) {
    .p-voiceSection--nagomi .p-voiceSection__content {
        max-width: 100%;
    }
    .p-voiceSection--nagomi .p-voiceSection__buttonWrapper {
        align-self: center;
    }
}

@media (max-width: 600px) {
    .p-voiceSection--nagomi .p-voiceSection__buttonWrapper {
        width: 100%;
        text-align: center;
    }
}


/* ========================================
   よくある質問セクション（なごみデザイン）
   ======================================== */

.p-faqSection--nagomi {
    background: #FAF9F6 !important;
    background-color: #FAF9F6 !important;
    padding: clamp(60px, 8vw, 120px) 0 !important;
    position: relative !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    overflow: visible !important;
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
}

.p-faqSection--nagomi .p-faqSection__background {
    display: none !important;
}


/* style.cssの古いスタイルを上書き */

.p-faqSection--nagomi.p-faqSection {
    background-color: #FAF9F6 !important;
    padding: clamp(60px, 8vw, 120px) 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    overflow: visible !important;
}

.p-faqSection--nagomi .l-container {
    margin: 0 auto !important;
    padding: 0 !important;
    width: 70% !important;
    min-width: 600px;
}

.p-faqSection--nagomi .p-faqSection__inner {
    width: 100% !important;
    min-width: auto !important;
    max-width: 1000px !important;
    margin: 0 auto !important;
    text-align: left !important;
}

.p-faqSection--nagomi .p-faqSection__subtitle {
    display: none !important;
}

.p-faqSection--nagomi .p-faqSection__title {
    font-size: clamp(18px, 1.4vw, 32px);
    font-weight: 700;
    color: #414141;
    text-align: center;
    margin: 0 0 clamp(20px, 2.5vw, 30px);
    font-family: "Kosugi Maru", "Hiragino Maru Gothic ProN", "Yu Gothic", Meiryo, system-ui, -apple-system, "Segoe UI", sans-serif;
}

.p-faqSection--nagomi .p-faqSection__lead {
    font-size: clamp(16px, 1.25vw, 26px);
    line-height: 2;
    color: #414141;
    text-align: center;
    margin: 0 0 clamp(40px, 5vw, 60px);
    font-family: "Kosugi Maru", "Hiragino Maru Gothic ProN", "Yu Gothic", Meiryo, system-ui, -apple-system, "Segoe UI", sans-serif;
}

.p-faqSection--nagomi .p-faqSection__list {
    margin-bottom: clamp(40px, 5vw, 60px) !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    max-width: 1000px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}


/* FAQアイテム - style.cssの古いスタイルを上書き */

.p-faqSection--nagomi .c-faqItem {
    background-color: transparent !important;
    border: none !important;
    border-bottom: 1px solid #94B49F !important;
    border-radius: 0 !important;
    margin-bottom: 0 !important;
    padding: 0 !important;
    box-shadow: none !important;
    overflow: visible !important;
    transition: none !important;
}

.p-faqSection--nagomi .c-faqItem:first-child {
    border-top: 1px solid #94B49F !important;
}

.p-faqSection--nagomi .c-faqItem:last-child {
    border-bottom: 1px solid #94B49F !important;
}

.p-faqSection--nagomi .c-faqItem.is-active {
    border-bottom: 1px dashed #94B49F !important;
}


/* 質問部分 - style.cssの古いスタイルを上書き */

.p-faqSection--nagomi .c-faqItem__question {
    display: flex !important;
    align-items: center !important;
    gap: clamp(12px, 1.5vw, 16px) !important;
    padding: clamp(20px, 2.5vw, 28px) 0 !important;
    cursor: pointer !important;
    position: relative !important;
    justify-content: flex-start !important;
    background-color: transparent !important;
    transition: none !important;
}

.p-faqSection--nagomi .c-faqItem__qIcon {
    flex-shrink: 0;
    width: clamp(32px, 4vw, 40px);
    height: clamp(32px, 4vw, 40px);
    background: #94B49F;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(18px, 1.4vw, 36px);
    font-weight: 700;
    font-family: "Kosugi Maru", "Hiragino Maru Gothic ProN", "Yu Gothic", Meiryo, system-ui, -apple-system, "Segoe UI", sans-serif;
}

.p-faqSection--nagomi .c-faqItem__questionText {
    flex: 1 !important;
    font-size: clamp(16px, 1.25vw, 26px) !important;
    font-weight: 600 !important;
    color: #94B49F !important;
    font-family: "Kosugi Maru", "Hiragino Maru Gothic ProN", "Yu Gothic", Meiryo, system-ui, -apple-system, "Segoe UI", sans-serif !important;
    text-align: left !important;
    line-height: 1.4 !important;
}

.p-faqSection--nagomi .c-faqItem__questionText::before {
    display: none !important;
    content: none !important;
}

.p-faqSection--nagomi .c-faqItem__icon {
    flex-shrink: 0;
    width: clamp(24px, 3vw, 28px);
    height: clamp(24px, 3vw, 28px);
    color: #94B49F;
    font-size: clamp(20px, 2.5vw, 24px);
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    line-height: 1;
    background: none !important;
    border-radius: 0 !important;
    position: relative;
}

.p-faqSection--nagomi .c-faqItem__icon::before {
    content: '';
    position: absolute;
    width: clamp(16px, 2vw, 20px);
    height: 2px;
    background: #94B49F;
    transition: transform 0.3s ease;
}

.p-faqSection--nagomi .c-faqItem__icon::after {
    content: '';
    position: absolute;
    width: 2px;
    height: clamp(16px, 2vw, 20px);
    background: #94B49F;
    transition: transform 0.3s ease;
}

.p-faqSection--nagomi .c-faqItem.is-active .c-faqItem__icon::after {
    transform: rotate(90deg);
    opacity: 0;
}

.p-faqSection--nagomi .c-faqItem__icon {
    color: transparent !important;
}


/* 回答部分 */

.p-faqSection--nagomi .c-faqItem__answer {
    display: none !important;
    background: #ffffff !important;
    padding: clamp(20px, 2.5vw, 28px) 0 !important;
    border-top: 1px dashed #94B49F !important;
    max-height: none !important;
    overflow: visible !important;
}

.p-faqSection--nagomi .c-faqItem.is-active .c-faqItem__answer {
    display: block !important;
}

.p-faqSection--nagomi .c-faqItem__answer p {
    padding: 0 !important;
    padding-left: 0 !important;
}

.p-faqSection--nagomi .c-faqItem__answer p::before {
    display: none !important;
    content: none !important;
}

.p-faqSection--nagomi .c-faqItem__answerContent {
    display: flex;
    align-items: flex-start;
    gap: clamp(12px, 1.5vw, 16px);
}

.p-faqSection--nagomi .c-faqItem__aIcon {
    flex-shrink: 0;
    width: clamp(32px, 4vw, 40px);
    height: clamp(32px, 4vw, 40px);
    background: #D88363;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(18px, 2.2vw, 22px);
    font-weight: 700;
    font-family: "Kosugi Maru", "Hiragino Maru Gothic ProN", "Yu Gothic", Meiryo, system-ui, -apple-system, "Segoe UI", sans-serif;
}

.p-faqSection--nagomi .c-faqItem__answerText {
    flex: 1;
}

.p-faqSection--nagomi .c-faqItem__answerText p {
    font-size: clamp(16px, 1.25vw, 26px);
    line-height: 2;
    color: #333333;
    margin: 0 0 clamp(12px, 1.5vw, 16px);
    font-family: "Kosugi Maru", "Hiragino Maru Gothic ProN", "Yu Gothic", Meiryo, system-ui, -apple-system, "Segoe UI", sans-serif;
}

.p-faqSection--nagomi .c-faqItem__answerText p:last-child {
    margin-bottom: 0;
}

.p-faqSection--nagomi .c-faqItem__answerText a {
    color: #D88363;
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.p-faqSection--nagomi .c-faqItem__answerText a:hover {
    opacity: 0.8;
}


/* ボタン */

.p-faqSection--nagomi .p-faqSection__button {
    text-align: center;
    margin-top: clamp(40px, 5vw, 60px);
}

.c-btn--nagomi-faq {
    background: #94B49F;
    color: #ffffff;
    padding: clamp(12px, 1.8vw, 16px) clamp(32px, 4vw, 48px);
    border-radius: 30px;
    text-decoration: none;
    font-size: clamp(16px, 1.25vw, 26px);
    font-weight: 600;
    transition: background-color 0.3s ease;
    white-space: nowrap;
    font-family: "Kosugi Maru", "Hiragino Maru Gothic ProN", "Yu Gothic", Meiryo, system-ui, -apple-system, "Segoe UI", sans-serif;
    display: inline-block;
}

.c-btn--nagomi-faq:hover {
    background: #7FA08A;
}


/* アクセスセクションのスタイルは common.css に移動しました */


/* フッターのスタイルは common.css に移動しました */


/* レスポンシブ */

@media (max-width: 600px) {
    .p-faqSection--nagomi .c-faqItem__question {
        flex-wrap: wrap;
    }
    .p-faqSection--nagomi .c-faqItem__icon {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }
    .p-faqSection--nagomi .c-faqItem.is-active .c-faqItem__icon {
        transform: translateY(-50%) rotate(45deg);
    }
}


/* ===========================================
   レスポンシブブレイクポイント
   =========================================== */


/* タブレット以下（960px以下） */

@media (max-width: 960px) {
    /* ここに960px以下のスタイルを追加 */
    /* min-widthを無効化（スマホでの左右はみ出し防止） */
    .p-heroSection--nagomi .p-heroSection__branding,
    .p-aboutSection--nagomi .p-aboutSection__inner,
    .p-snsSection--nagomi .p-snsSection__inner,
    .p-symptomSection__inner,
    .p-priceSection__inner,
    .p-flowSection--nagomi .p-flowSection__inner,
    .p-directorSection--nagomi .p-directorSection__inner,
    .p-voiceSection--nagomi .p-voiceSection__inner,
    .p-faqSection--nagomi .p-faqSection__inner,
    .p-bannerSection__inner {
        min-width: auto !important;
    }
}


/* スマートフォン以下（460px以下） */

@media (max-width: 460px) {
    /* ここに460px以下のスタイルを追加 */
    .p-symptomCards__button {
        text-align: center;
        width: fit-content;
        margin: 0 auto;
    }
    /* メニュー */
    .p-symptomSection__inner {
        width: 90%;
        min-width: auto !important;
    }
    .p-priceSection__header {
        flex-direction: column;
        gap: clamp(15px, 2vw, 20px);
        justify-content: center;
        align-items: center;
    }
    .p-priceSection__headerNote {
        font-size: clamp(14px, 1.09vw, 24px);
        color: #94B49F;
        line-height: 1.8;
        margin: 0;
        flex: 1;
        font-family: "Kosugi Maru", "Hiragino Maru Gothic ProN", "Yu Gothic", Meiryo, system-ui, -apple-system, "Segoe UI", sans-serif;
    }
    /* .p-flowCard レイアウト変更（460px以下） */
    .p-flowCard {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        justify-content: center;
        gap: 12px;
        align-items: center;
    }
    .p-flowCard__heading {
        flex: 0 0 100% !important;
        width: 100% !important;
        order: 1;
    }
    .p-flowCard__step {
        position: absolute;
        top: 0;
        left: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        background: #94B49F;
        color: #ffffff;
        padding: clamp(8px, 1vw, 12px) clamp(12px, 1.5vw, 18px);
        border-radius: 0 0 clamp(20px, 1.56vw, 40px) 0;
        z-index: 2;
        font-family: "Kosugi Maru", "Hiragino Maru Gothic ProN", "Yu Gothic", Meiryo, system-ui, -apple-system, "Segoe UI", sans-serif;
    }
    .p-flowCard--solid .p-flowCard__step {
        background: #ffffff;
        color: #94B49F;
        border-radius: 0 0 clamp(20px, 1.56vw, 40px) 0;
    }
    .p-flowCard__media {
        flex: 0 0 30% !important;
        width: 40% !important;
        max-width: 40% !important;
        min-width: 0 !important;
        margin-bottom: 0 !important;
        aspect-ratio: 1 !important;
        order: 2;
    }
    .p-flowCard__text {
        flex: 0 0 60% !important;
        width: 60% !important;
        max-width: 60% !important;
        min-width: 0 !important;
        order: 3;
        text-align: left;
        font-size: clamp(12px, 0.93vw, 20px);
    }
    /* 画像がある場合の崩れ防止 */
    .p-flowCard__media img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    /* 院長 */
    .p-directorSection--nagomi .l-container {
        width: 75%;
        min-width: auto;
        margin: 0 auto;
        padding: 0;
    }
    .p-directorSection__image {
        width: 75% !important;
        height: auto !important;
    }
    /* スタッフ */
    .p-voiceArchiveList__grid {
        grid-template-columns: 1fr;
        width: 100% !important;
        min-width: initial;
    }
    /* よくある質問 */
    .p-faqSection--nagomi .l-container {
        margin: 0 auto !important;
        padding: 0 !important;
        width: 90% !important;
        min-width: 600px;
    }
    /* 症状カード */
    .p-symptomCard__title {
        font-size: 15px;
        font-weight: 700;
        color: #414141;
        margin: 0;
        line-height: 1.4;
        font-family: "Kosugi Maru", "Hiragino Maru Gothic ProN", "Yu Gothic", Meiryo, system-ui, -apple-system, "Segoe UI", sans-serif;
    }
    .p-symptomCard__content {
        position: relative;
        z-index: 2;
        width: 100%;
        height: 100%;
        display: flex;
        border: 2px solid #9FB7A4;
        border-radius: clamp(16px, 1.25vw, 26px);
        flex-direction: column;
        padding: clamp(20px, 2.5vw, 30px) 0;
        box-sizing: border-box;
    }
    /* FAQセクション */
    .p-faqSection--nagomi .p-faqSection__lead {
        font-size: clamp(14px, 1.09vw, 24px);
        line-height: 2;
        color: #414141;
        text-align: center;
        margin: 0 0 clamp(40px, 5vw, 60px);
        font-family: "Kosugi Maru", "Hiragino Maru Gothic ProN", "Yu Gothic", Meiryo, system-ui, -apple-system, "Segoe UI", sans-serif;
    }
    /* 院長セクション */
    .p-directorSection--nagomi .p-directorSection__inner {
        width: 95% !important;
        min-width: auto !important;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    /* タグライン */
    .p-aboutSection--nagomi .p-aboutSection__tagline {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: clamp(20px, 3vw, 40px);
        margin-bottom: 0;
        position: relative;
        width: 100%;
        max-width: 900px;
    }
}


/* ========================================
   トップページ - ブログセクション（上下paddingを小さく）
   ======================================== */

.p-voiceArchiveList--topPage {
    padding: clamp(24px, 3vw, 40px) 0 !important;
}