:root {
    --primary-pink: #E8B4B8;
    --soft-pink: #F5E6E8;
    --deep-pink: #D67A7F;
    --text-gray: #666666;
    --light-gray: #999999;
    --cream: #FFF9FA;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--text-gray);
    background-color: #FFFFFF;
    overflow-x: hidden;
}

/* TOPへ戻るボタン */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--deep-pink);
    color: white;
    border: none;
    border-radius: 0;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    box-shadow: 0 4px 15px rgba(214, 122, 127, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-to-top-text {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--primary-pink);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(214, 122, 127, 0.5);
}

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

/* ナビゲーション */
.navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(232, 180, 184, 0.1);
    padding: 1rem 0;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(-100%);
    pointer-events: none;
}

.navbar.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.navbar-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--deep-pink);
    letter-spacing: 1px;
}

.navbar-nav .nav-link {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin: 0 1rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-pink);
}

.navbar-nav .nav-link.active {
    color: var(--deep-pink);
    font-weight: 500;
}

.appointment-btn {
    background: linear-gradient(135deg, var(--primary-pink), var(--deep-pink));
    color: white;
    border: none;
    padding: 0.6rem 2rem;
    border-radius: 0px;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.appointment-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(232, 180, 184, 0.4);
}

/* ヒーローセクション */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #FAEBE8;
}

/* フルスクリーン画像スライダー */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    animation: heroSlideshow 15s infinite;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-slide-1 {
    animation-delay: 0s;
}

.hero-slide-2 {
    animation-delay: 5s;
}

.hero-slide-3 {
    animation-delay: 10s;
}

@keyframes heroSlideshow {
    0% { opacity: 0; }
    3% { opacity: 1; }
    30% { opacity: 1; }
    33% { opacity: 0; }
    100% { opacity: 0; }
}

/* 左上のロゴ */
.hero-logo {
    position: absolute;
    top: 30px;
    left: 30px;
    z-index: 10;
    animation: fadeInDown 0.8s ease;
}

.logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 1px;
    text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}

/* 右上の連絡先・予約 */
.hero-contact-info {
    position: absolute;
    top: 30px;
    right: 30px;
    display: flex;
    align-items: stretch;
    gap: 8px;
    z-index: 10;
    animation: fadeInDown 0.8s ease;
}

.contact-tel {
    display: flex;
}

.contact-tel-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    transition: background 0.3s ease;
}

.contact-tel-link:hover {
    background: rgba(255, 255, 255, 1);
}

.contact-label {
    display: block;
    color: var(--text-gray);
    font-size: 0.75rem;
    margin-bottom: 0.4rem;
    letter-spacing: 0.5px;
}

.contact-phone {
    display: flex;
    align-items: center;
    color: var(--deep-pink);
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 1;
}

.contact-web {
    display: flex;
}

.contact-web-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--deep-pink);
    color: #fff;
    padding: 0.8rem 2rem;
    text-decoration: none;
    transition: background 0.3s ease;
    line-height: 1.4;
}

.contact-web-link:hover {
    background: var(--primary-pink);
    color: #fff;
}

.contact-web-sub {
    font-size: 0.7rem;
    letter-spacing: 1px;
}

.contact-web-main {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 2px;
}

/* キャッチコピー オーバーレイ */
.hero-copy {
    position: absolute;
    left: 5%;
    bottom: 15%;
    z-index: 5;
    filter: drop-shadow(0 0 2px rgba(255,214,220,0.55)) drop-shadow(0 0 4px rgba(255,214,220,0.35));
}

.hero-copy-sub {
    font-family: 'Noto Serif JP', serif;
    font-size: 1rem;
    letter-spacing: 4px;
    margin-bottom: 1rem;
    font-weight: 400;
    background: linear-gradient(135deg, var(--deep-pink) 0%, #b85a60 50%, var(--deep-pink) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.hero-copy-main {
    font-family: 'Noto Serif JP', serif;
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 3px;
    background: linear-gradient(135deg, var(--deep-pink) 0%, #b85a60 50%, var(--deep-pink) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    margin: 0;
}

/* スクロールインジケーター */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.scroll-indicator-text {
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: #fff;
    text-shadow: 0 1px 5px rgba(0,0,0,0.3);
}

.scroll-indicator-line {
    display: block;
    width: 1px;
    height: 40px;
    background: #fff;
    animation: scrollLine 1.5s ease-in-out infinite;
    transform-origin: top;
}

@keyframes scrollLine {
    0% { transform: scaleY(0); opacity: 0; }
    50% { transform: scaleY(1); opacity: 1; }
    100% { transform: scaleY(0); opacity: 0; transform-origin: bottom; }
}

.section-number {
    position: absolute;
    top: 50%;
    left: -30px;
    transform: translateY(-50%);
    font-family: 'Cormorant Garamond', serif;
    font-size: 8rem;
    color: var(--soft-pink);
    opacity: 0.3;
    font-weight: 600;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(232, 180, 184, 0.2);
}

/* インフォメーションカード */
.info-cards {
    padding: 4rem 0;
    background: var(--cream);
    position: relative;
}

.info-cards::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://placehold.jp/FFF9FA/F5E6E8/50x50.png?text=+');
    background-repeat: repeat;
    opacity: 0.5;
    z-index: 0;
}

.info-cards .container {
    position: relative;
    z-index: 1;
}

.info-card {
    background: white;
    border: 1px solid rgba(232, 180, 184, 0.2);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(232, 180, 184, 0.2);
    border-color: var(--primary-pink);
}

.info-card .icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--soft-pink), white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--deep-pink);
    font-size: 1.5rem;
}

/* コンセプトセクション */
.concept-section {
    position: relative;
    padding: 6rem 0;
    background: url("/carna/bg__concept03.webp") center / cover no-repeat;
    margin-bottom: 5rem;
}

.concept-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.28) 0%,
        rgba(0, 0, 0, 0.14) 50%,
        rgba(0, 0, 0, 0.28) 100%
    );
    z-index: 0;
}

.concept-section__inner {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 30px;
}

.concept-section__content {
    text-align: center;
}

.concept-section__title {
    margin-bottom: 1.5rem;
}

.concept-section__en {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 6.5rem;
    line-height: 1;
    letter-spacing: 0.1em;
    color: #fff;
    margin-bottom: 0.8rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.concept-section__ja {
    display: block;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.1em;
    color: #fff;
    margin-bottom: 0.8rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.concept-section__deco {
    position: relative;
    display: block;
    width: 80px;
    height: 10px;
    margin: 0 auto;
}

.concept-section__deco::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    transform: translateY(-50%);
    background: linear-gradient(
        to right,
        #fff 0,
        #fff 32px,
        transparent 32px,
        transparent 48px,
        #fff 48px,
        #fff 80px
    );
}

.concept-section__deco::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    border: 1px solid #fff;
    transform: translate(-50%, -50%) rotate(45deg);
}

.concept-section__copy {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.8;
    color: #fff;
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.concept-section__text {
    font-size: 0.95rem;
    line-height: 2.2;
    color: #fff;
    letter-spacing: 0.02em;
}

@media (max-width: 767px) {
    .concept-section {
        padding: 4rem 0;
        margin-bottom: 3rem;
        background: url("/carna/bg__concept03_sp.webp") center / cover no-repeat;
    }

    .concept-section__en {
        font-size: 4rem;
        letter-spacing: 0.1em;
    }

    .concept-section__ja {
        font-size: 1.25rem;
    }

    .concept-section__copy {
        font-size: 1.1rem;
    }

    .concept-section__text {
        font-size: 0.875rem;
        line-height: 2.1;
        text-align: left;
    }
}

.section-header {
    position: relative;
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    font-family: 'Cormorant Garamond', serif;
    color: var(--primary-pink);
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-weight: 500;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: var(--text-gray);
    font-weight: 400;
    margin-bottom: 1rem;
}

.section-title .ja-number {
    font-family: 'Noto Sans JP', sans-serif;
}

.section-description {
    color: var(--light-gray);
    font-size: 1rem;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

/* 特徴セクション */
.features-section {
    padding: 5rem 0 0;
    background: var(--cream);
}

.section-title-small {
    font-size: 0.75em;
}

/* Feature Block: 共通 */
.feature-block {
    position: relative;
    margin-bottom: 0;
}

.feature-block__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
    position: relative;
    padding: 0 30px;
}

/* 画像 */
.feature-block__img {
    position: relative;
    width: 55%;
    flex-shrink: 0;
}

.feature-block__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.feature-block__img-label {
    position: absolute;
    top: 20px;
    left: -10px;
    background: rgba(255, 255, 255, 0.9);
    padding: 15px 20px;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.8;
    color: var(--text-gray);
    z-index: 2;
}

/* テキスト */
.feature-block__txt {
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3rem 2.5rem;
    flex: 1;
    text-align: center;
}

.feature-block__num {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    line-height: 1;
}

.feature-block__num-label {
    font-family: "Helvetica Neue", "Arial", sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.35em;
    color: var(--primary-pink);
    padding-left: 0.2em;
    margin-bottom: 0.35rem;
    text-transform: uppercase;
}

.feature-block__num-value {
    font-family: "Helvetica Neue", "Arial", sans-serif;
    font-size: 4.5rem;
    font-weight: 600;
    color: #2c3e2c;
    letter-spacing: 0;
    position: relative;
    padding-bottom: 0.15em;
}

.feature-block__num-value::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 2.2rem;
    height: 2px;
    background: var(--primary-pink);
}

.feature-block--right .feature-block__num-label,
.feature-block--bg-pattern .feature-block__num-label {
    color: #8DB8A7;
}

.feature-block--right .feature-block__num-value::after,
.feature-block--bg-pattern .feature-block__num-value::after {
    background: #8DB8A7;
}

.feature-block__title {
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--primary-pink);
    line-height: 1.5;
}

.feature-block__title--pink {
    border-bottom-color: var(--primary-pink);
}

.feature-block__title--green {
    border-bottom-color: #8DB8A7;
}

.feature-block__desc {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-gray);
}

/* Left layout: 画像左、テキスト右 */
.feature-block--left .feature-block__inner {
    flex-direction: row;
}

.feature-block--left .feature-block__txt {
    margin-left: -40px;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

/* Right layout: 画像右、テキスト左 */
.feature-block--right .feature-block__inner {
    flex-direction: row-reverse;
}

.feature-block--right .feature-block__txt {
    margin-right: -40px;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

/* Feature block with background pattern */
.feature-block--bg-pattern {
    background: var(--cream);
    padding: 5rem 0;
}

/* FEATURE 01 wrapper */
.feature-block--left:first-of-type {
    padding-bottom: 5rem;
}

/* FEATURE 02 wrapper */
.feature-block--right {
    background: #f0ebe4;
    padding: 5rem 0;
}

/* Wide layout (FEATURE 03) */
.feature-block--wide {
    background: linear-gradient(135deg, #5a6e5a 0%, #3d4f3d 100%);
    padding: 5rem 0 4rem;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.feature-block__wide-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 30px;
}

.feature-block__wide-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.feature-block--wide .feature-block__num {
    margin-bottom: 0;
    align-items: center;
}

.feature-block--wide .feature-block__num-label {
    color: rgba(255, 255, 255, 0.85);
}

.feature-block--wide .feature-block__num-value {
    color: #fff;
}

.feature-block--wide .feature-block__num-value::after {
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.8);
}

.feature-block__wide-title {
    font-size: 1.8rem;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0;
    line-height: 1.5;
}

.feature-block__wide-desc {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
}

/* 設備スライダー */
.feature-slide__wrap {
    max-width: 1200px;
    margin: 0 auto;
    overflow-x: auto;
    padding: 0 30px 1rem;
    -webkit-overflow-scrolling: touch;
}

.feature-slide__track {
    display: flex;
    gap: 1.5rem;
    padding-bottom: 0.5rem;
}

.feature-slide__item {
    flex: 0 0 auto;
    width: 260px;
    text-align: center;
}

.feature-slide__item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

.feature-slide__caption {
    font-size: 1.1rem;
    font-weight: 500;
    color: #fff;
    margin-top: 1rem;
    line-height: 1.5;
}

/* レスポンシブ */
@media (max-width: 768px) {
    .features-section {
        padding: 3rem 0 0;
    }

    .feature-block__inner {
        flex-direction: column !important;
        padding: 0 15px;
    }

    .feature-block__img {
        width: 100%;
    }

    .feature-block--left .feature-block__txt,
    .feature-block--right .feature-block__txt {
        margin-left: 0;
        margin-right: 0;
        margin-top: -20px;
        padding: 2rem 1.5rem;
    }

    .feature-block__img-label {
        font-size: 0.9rem;
        padding: 10px 15px;
    }

    .feature-block__title {
        font-size: 1.25rem;
    }

    .feature-block__wide-header {
        flex-direction: column;
        gap: 1rem;
    }

    .feature-block__wide-title {
        font-size: 1.4rem;
    }

    .feature-block--left:first-of-type,
    .feature-block--right,
    .feature-block--bg-pattern {
        padding: 3rem 0;
    }

    .feature-slide__item {
        width: 200px;
    }
}

/* 医師紹介（理事長ご挨拶）セクション */
.greeting-section {
    padding: 6rem 0 4rem;
    background: linear-gradient(to bottom, white 0%, var(--cream) 100%);
    position: relative;
    overflow: hidden;
}

.greeting-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--soft-pink) 0%, transparent 70%);
    opacity: 0.3;
    z-index: 0;
}

.greeting-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--soft-pink) 0%, transparent 70%);
    opacity: 0.5;
    z-index: 0;
}

.greeting-section > .container {
    position: relative;
    z-index: 1;
}

.greeting-header {
    margin-bottom: 4rem;
}

.greeting-title {
    text-align: center;
}

.greeting-en {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    letter-spacing: 3px;
    color: var(--text-gray);
    margin-bottom: 1rem;
    font-weight: 400;
}

.accent-letter {
    color: var(--deep-pink);
}

.greeting-ja {
    display: block;
    font-size: 1.8rem;
    color: var(--text-gray);
    font-weight: 300;
    letter-spacing: 2px;
}

.greeting-content {
    margin-bottom: 5rem;
}

.doctor-main-image {
    position: relative;
    overflow: hidden;
    border-radius: 0px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.doctor-main-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    object-position: center top;
}

.doctor-name-overlay {
    position: absolute;
    bottom: 40px;
    left: 40px;
    background: rgba(255, 255, 255, 0.98);
    padding: 2rem;
    border-radius: 0px;
    text-align: center;
    min-width: 200px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.doctor-main-image:hover .doctor-name-overlay {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.title-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.decoration-line {
    margin: 1rem auto;
    width: 80px;
}

.doctor-name-ja {
    display: block;
    font-size: 1.8rem;
    color: var(--text-gray);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.doctor-name-en {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: var(--primary-pink);
    letter-spacing: 1px;
}

.greeting-message {
    padding: 2rem 3rem 2rem 0;
}

.message-text {
    color: var(--text-gray);
    line-height: 2;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.greeting-btn {
    text-align: center;
}

.btn-more {
    display: inline-block;
    background: var(--deep-pink);
    color: white;
    padding: 0.8rem 2.5rem;
    border-radius: 0px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(214, 122, 127, 0.3);
}

.btn-more:hover {
    background: var(--primary-pink);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(232, 180, 184, 0.3);
    color: white;
}

/* クリニックギャラリー */
.clinic-gallery {
    margin-top: 5rem;
    margin-bottom: 2rem;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
}

.gallery-scroll-wrapper {
    width: 100%;
    overflow: hidden;
    padding: 2rem 0;
}

.gallery-scroll-track {
    display: flex;
    gap: 1.5rem;
    animation: scroll-gallery 40s linear infinite;
    width: fit-content;
}

.gallery-scroll-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-gallery {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.gallery-item {
    flex: 0 0 auto;
    width: 400px;
    height: 300px;
    overflow: hidden;
    border-radius: 0px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* 診療案内セクション */
/* 診療内容セクション */
.medical-section {
    margin-bottom: 0;
}

.medical-section__bg {
    background:
        radial-gradient(ellipse at 30% 5%, rgba(245, 232, 210, 0.6) 0%, transparent 55%),
        radial-gradient(ellipse at 50% 45%, rgba(255, 255, 255, 0.55) 0%, transparent 65%),
        radial-gradient(ellipse at 50% 100%, rgba(232, 168, 160, 0.45) 0%, transparent 60%),
        linear-gradient(to bottom,
            #f5ead8 0%,
            #fbe7dc 25%,
            #fdf0e8 50%,
            #f3c9be 78%,
            #e8a8a0 100%);
    padding: 5rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.medical-section__bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='300' height='300'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.6'/></svg>");
    opacity: 0.18;
    mix-blend-mode: overlay;
    pointer-events: none;
}

.medical-section__inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 1;
}

.medical-section__title {
    text-align: center;
    margin-bottom: 3.5rem;
}

.medical-section__en {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    line-height: 1;
    letter-spacing: 0.1em;
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

.medical-section__en .accent-letter {
    color: var(--primary-pink);
}

.medical-section__ja {
    display: block;
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.4;
    color: var(--text-gray);
}

/* お悩み / 施術カテゴリー */
.medical-category {
    margin-bottom: 3.5rem;
}

.medical-category:last-child {
    margin-bottom: 0;
}

.medical-category__heading {
    text-align: center;
    margin-bottom: 2rem;
}

.medical-category__en {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    line-height: 1;
    letter-spacing: 0.08em;
    color: var(--primary-pink);
    margin-bottom: 0.4rem;
}

.medical-category__ja {
    display: block;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--text-gray);
}

.medical-category__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.medical-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.1rem 1rem;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.9);
    color: var(--text-gray);
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    line-height: 1.4;
    transition: all 0.3s ease;
    min-height: 60px;
}

.medical-tag:hover {
    background: var(--deep-pink);
    color: #fff;
    border-color: var(--deep-pink);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

/* 料金表リンク */
.medical-fee {
    padding: 4rem 0;
}

.medical-fee__inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 30px;
    background: #fdf0e8;
}

.medical-fee__link {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 2rem;
    padding: 2rem 4rem;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.3s ease;
    position: relative;
}

.medical-fee__link::after {
    content: "";
    position: absolute;
    right: 3rem;
    top: 50%;
    width: 12px;
    height: 12px;
    border-right: 2px solid var(--text-gray);
    border-bottom: 2px solid var(--text-gray);
    transform: translateY(-50%) rotate(-45deg);
    transition: right 0.3s ease;
}

.medical-fee__link:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.medical-fee__link:hover::after {
    right: 2.5rem;
}

.medical-fee__ja {
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--text-gray);
}

.medical-fee__en {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    line-height: 1;
    color: #8DB8A7;
    letter-spacing: 0.1em;
}

/* 診療内容セクション レスポンシブ */
@media (max-width: 768px) {
    .medical-section__bg {
        padding: 3rem 0 4rem;
    }

    .medical-section__en {
        font-size: 3.125rem;
    }

    .medical-section__ja {
        font-size: 1.4rem;
    }

    .medical-category__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .medical-category__en {
        font-size: 1.8rem;
    }

    .medical-tag {
        font-size: 0.85rem;
        padding: 0.9rem 0.6rem;
        min-height: 52px;
    }

    .medical-fee {
        padding: 3rem 0;
    }

    .medical-fee__link {
        padding: 1.5rem 2.5rem;
        gap: 1.5rem;
    }

    .medical-fee__ja {
        font-size: 1.4rem;
    }

    .medical-fee__en {
        font-size: 1.5rem;
    }
}

/* お知らせセクション */
.news-item {
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(232, 180, 184, 0.2);
    transition: all 0.3s ease;
}

/* スマホ用（lg未満） */
@media (max-width: 991px) {
    .news-item {
        padding: 1rem 0;
    }
}

.news-item:hover {
    padding-left: 1rem;
    background: var(--cream);
}

.news-date {
    color: var(--primary-pink);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.news-category {
    display: inline-block;
    background: var(--primary-pink);
    color: white;
    padding: 0.2rem 0.8rem;
    border-radius: 0px;
    font-size: 0.8rem;
    margin-right: 1rem;
}

/* アクセスセクション */
.access-section {
    padding: 6rem 0;
    background: var(--cream);
    position: relative;
    background-image: url('https://placehold.jp/FFF9FA/F5E6E8/60x60.png?text=+');
    background-repeat: repeat;
}

.access-info {
    background: var(--cream);
    padding: 3rem;
    border-radius: 0px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.access-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.access-item i {
    color: var(--primary-pink);
    font-size: 1.2rem;
    width: 30px;
}

.access-building-photo {
    position: relative;
    border-radius: 0px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.access-building-photo img {
    width: 100%;
    height: auto;
    display: block;
}

.access-details {
    background: var(--cream);
    padding: 2rem;
    border-radius: 0px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
}

.access-details .detail-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex: 1;
}

.access-details .detail-item i {
    color: var(--primary-pink);
    font-size: 2.5rem;
}

.access-details .detail-item span {
    color: var(--text-gray);
    font-size: 0.95rem;
    text-align: center;
}

.access-details .divider {
    width: 1px;
    height: 60px;
    background: #EAD4D6;
}

/* INFORMATIONセクション */
.information-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #D4A5A5 0%, #E8B4B8 100%);
    position: relative;
}

.information-section .section-header h2 {
    color: white;
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 3rem;
}

.hours-table-wrapper {
    background: white;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.hours-table-wrapper h3 {
    color: var(--text-gray);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
}

.hours-table thead {
    background: linear-gradient(135deg, var(--primary-pink), var(--deep-pink));
}

.hours-table thead th {
    color: white;
    padding: 1rem 0.5rem;
    text-align: center;
    font-weight: 500;
    font-size: 0.95rem;
}

.hours-table tbody td {
    padding: 1rem 0.5rem;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
}

.hours-table tbody tr:last-child td {
    border-bottom: none;
}

/* 診療時間テーブル：1列目は折り返さず1行で表示する */
.hours-table thead th:first-child,
.hours-table tbody td:first-child {
    white-space: nowrap;
}

/* スマホ：日付列の余白と文字を詰めて、1行表示のまま収める */
@media (max-width: 767.98px) {
    .hours-table thead th,
    .hours-table tbody td {
        padding: 0.75rem 0.2rem;
        font-size: 0.85rem;
    }
}

.hours-note {
    margin-top: 1.5rem;
    padding: 1rem;
    background: var(--soft-pink);
    
    font-size: 0.9rem;
    color: var(--text-gray);
}

.hours-note p {
    margin-bottom: 0.5rem;
}

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

.contact-info-box {
    background: white;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    height: 100%;
}

.contact-info-box .address {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.contact-info-box .address .postal-code {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.info-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: #D4877B;
    color: white;
    padding: 1rem 2rem;
    border-radius: 0px;
    text-decoration: none;
    margin-bottom: 2rem;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-link-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(196, 122, 111, 0.4);
    color: white;
}

.info-link-btn-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: 1.5px solid #fff;
    border-radius: 50%;
    font-size: 0.7rem;
}

.header-logo .logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--deep-pink);
    letter-spacing: 1px;
}

.contact-phone-box {
    background: none;
    padding: 0;
    border-radius: 0px;
    margin-bottom: 1.5rem;
}

.contact-phone-box .phone-label {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

.contact-phone-box .info-contact-row {
    display: flex;
    align-items: stretch;
    gap: 10px;
}

.contact-phone-box .phone-number {
    flex: 1;
    font-size: 1.8rem;
    color: var(--deep-pink);
    font-weight: 700;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    background: var(--soft-pink);
    padding: 1.2rem 1.5rem;
    border-radius: 0;
}

.contact-phone-box .phone-number i {
    color: var(--deep-pink);
}

.info-web-reserve-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--deep-pink);
    color: #fff;
    padding: 1.2rem 2rem;
    text-decoration: none;
    transition: background 0.3s ease;
    line-height: 1.4;
    border-radius: 0;
    position: relative;
    overflow: hidden;
}

.info-web-reserve-btn::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 20px 20px;
    border-color: transparent transparent rgba(0,0,0,0.2) transparent;
}

.info-web-reserve-btn:hover {
    background: var(--primary-pink);
    color: #fff;
}

.info-web-reserve-sub {
    font-size: 0.75rem;
    letter-spacing: 1px;
}

.info-web-reserve-main {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    .contact-phone-box .info-contact-row {
        flex-direction: column;
        gap: 8px;
    }

    .contact-phone-box .phone-number {
        font-size: 1.5rem;
        flex-direction: row;
    }
}

@media (max-width: 768px) {
    .hours-table-wrapper,
    .contact-info-box {
        padding: 1rem;
    }
}

.web-reservation-btn {
    display: inline-block;
    background: linear-gradient(135deg, #8B7355, #A0826B);
    color: white;
    padding: 1.2rem 3rem;
    border-radius: 0px;
    text-decoration: none;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.web-reservation-btn .reservation-label {
    display: block;
    font-size: 0.8rem;
    margin-bottom: 0.3rem;
}

.web-reservation-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(139, 115, 85, 0.4);
    color: white;
}

/* フッター */
footer {
    background: linear-gradient(135deg, var(--deep-pink), var(--primary-pink));
    color: white;
    padding: 4rem 0 2rem;
}

.footer-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

/* 診療案内を2列表示 */
.footer-links-columns {
    column-count: 2;
    column-gap: 1.5rem;
}

/* スマホでフォントサイズを小さく */
@media (max-width: 767px) {
    .footer-links-columns li {
        font-size: 0.9rem;
    }
    .footer-links-columns {
        column-gap: 1rem;
    }
}

/* アニメーション */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.8s ease forwards;
}

/* スマホのみ表示 */
.sp-only {
    display: none;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .sp-only {
        display: inline;
    }

    .section-title {
        font-size: 2rem;
    }

    /* hero-slide--contain: 画像全体を表示し、上下の余白をぼかした背景画像で埋める（iPhone スライドショー風） */
    /* 背景層: 同じ画像を cover で敷き、強くぼかす */
    .hero-slide--contain::before {
        content: "";
        position: absolute;
        inset: 0;
        background-size: cover;
        background-position: center;
        filter: blur(20px);
        transform: scale(1.15); /* ぼかしで端が透けないよう少し拡大 */
        z-index: 0;
    }
    .hero-slide-2.hero-slide--contain::before {
        background-image: url("/carna/beauty/main_2.webp");
    }
    .hero-slide-3.hero-slide--contain::before {
        background-image: url("/carna/beauty/main_3.webp");
    }

    /* 前面層: 鮮明な画像を全体表示（余白はぼかし背景で埋まる） */
    .hero-slide--contain img {
        position: relative;
        z-index: 1;
        object-fit: contain;
        transform: scale(2.4);
    }

    .hero-logo {
        top: 15px;
        left: 0;
        right: 0;
        text-align: center;
    }

    .logo-text {
        font-size: 1.3rem;
    }

    .hero-copy {
        left: 5%;
        right: 5%;
        bottom: 18%;
    }

    .hero-copy-sub {
        font-size: 1.3rem;
        letter-spacing: 2px;
    }

    .hero-copy-main {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }

    .hero-slide {
        top: -10px;
    }

    .hero-slide img {
        object-position: center;
    }

    /* 理事長ご挨拶セクション */
    .greeting-en {
        font-size: 3rem;
    }

    .greeting-ja {
        font-size: 1.5rem;
    }

    .doctor-main-image img {
        height: 400px;
    }

    .doctor-name-overlay {
        left: 20px;
        bottom: 20px;
        padding: 1.5rem;
    }

    .greeting-message {
        padding: 2rem 0;
        margin-top: 2rem;
    }

    .gallery-item {
        width: 300px;
        height: 225px;
    }

    .access-details {
        flex-direction: column;
        gap: 1.5rem;
    }

    .access-details .divider {
        width: 80%;
        height: 1px;
    }
}

@media (max-width: 576px) {
    .hero-copy-main {
        font-size: 2.3rem;
    }

    .medical-category__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item {
        width: 250px;
        height: 187px;
    }

    .gallery-scroll-track {
        gap: 1rem;
    }
}

/* ページヘッダーセクション（index以外） - ロゴ・連絡先・タイトル統合 */
.page-header-section {
    background: linear-gradient(135deg, var(--soft-pink) 0%, var(--cream) 100%);
    padding: 1.5rem 0 3rem 0;
    position: relative;
}

.page-header-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("/carna/bg01.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    pointer-events: none;
}

.page-header-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://placehold.jp/FFFFFF/F5E6E8/100x100.png?text=+');
    background-repeat: repeat;
    opacity: 0.1;
    pointer-events: none;
    z-index: 0;
}

.page-header-section .container {
    position: relative;
    z-index: 1;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.header-logo {
    flex-shrink: 0;
}

.header-logo a {
    text-decoration: none;
}



.header-contact-info {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 1rem 1.5rem;
    border-radius: 0px;
    box-shadow: 0 2px 20px rgba(232, 180, 184, 0.15);
}

.header-contact-info .contact-box {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.header-contact-info .contact-label {
    font-size: 0.75rem;
    color: var(--light-gray);
    letter-spacing: 0.5px;
}

.header-contact-info .contact-phone {
    color: var(--deep-pink);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.header-contact-info .contact-phone:hover {
    color: var(--primary-pink);
}

.header-contact-info .contact-address {
    font-size: 0.8rem;
    color: var(--text-gray);
}

.header-appointment-btn {
    background: linear-gradient(135deg, var(--primary-pink), var(--deep-pink));
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 0px;
    color: white;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    box-shadow: 0 4px 15px rgba(214, 122, 127, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.header-appointment-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(214, 122, 127, 0.4);
}

.header-appointment-btn .btn-label {
    font-size: 0.7rem;
    opacity: 0.9;
}

.header-appointment-btn .btn-main-text {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
}

/* ページタイトル */
.page-title-wrapper {
    text-align: center;
    padding: 1rem 0;
}

.page-title {
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.page-title-en {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--light-gray);
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.page-title-ja {
    font-family: 'Noto Serif JP', 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--text-gray);
    letter-spacing: 0.05em;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .page-header-section {
        padding: 1rem 0 2rem 0;
    }

    .header-top {
        margin-bottom: 1.5rem;
        justify-content: center;
    }

    .page-title-en {
        font-size: 1rem;
    }

    .page-title-ja {
        font-size: 2rem;
    }
}

/* お知らせセクションタイトル */
.news-section-header {
    margin-bottom: 2.5rem;
}

.news-title {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 0.8rem;
}

.news-title-en {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 400;
    color: var(--text-gray);
    letter-spacing: 0.1em;
}

.news-title-ja {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-gray);
    letter-spacing: 0.05em;
}

.news-title-line {
    width: 100%;
    height: 1px;
    background-color: var(--text-gray);
}

/* ナビゲーションメニュー */
.navigation-menu-section {
    background-color: #FFFFFF;
    padding: 2rem 0 3rem;
    border-bottom: 1px solid rgba(232, 180, 184, 0.2);
    z-index: 100;
}

.navigation-menu {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    position: relative;
}

.navigation-menu .menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--text-gray);
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: background 0.3s ease, color 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
}

.navigation-menu .menu-item .menu-text {
    font-weight: 400;
}

.navigation-menu .menu-item .menu-icon {
    opacity: 0;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: var(--deep-pink);
    transition: opacity 0.3s ease;
}

.navigation-menu .menu-item:hover {
    background: var(--primary-pink);
    color: #fff;
}

.navigation-menu .menu-item.menu-item--has-dropdown:hover {
    background: none;
    color: inherit;
}

.navigation-menu .menu-item--has-dropdown:hover .menu-item__link {
    background: var(--primary-pink);
    color: #fff;
}

.navigation-menu .menu-item.active {
    color: var(--deep-pink);
}

.navigation-menu .menu-item.active .menu-text {
    font-weight: 500;
}

.navigation-menu .menu-item.active .menu-icon {
    opacity: 1;
}

/* ドロップダウン付きメニュー */
.navigation-menu .menu-item.menu-item--has-dropdown {
    cursor: pointer;
    position: static;
    padding-bottom: 2rem;
    margin-bottom: -2rem;
}

.menu-item--has-dropdown .menu-item__link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: calc(0.3rem - 2px);
    text-decoration: none;
    color: inherit;
    padding: 0.5rem 1rem;
    transition: background 0.3s ease, color 0.3s ease;
}

.menu-item--has-dropdown .menu-item__link::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid var(--text-gray);
    transition: border-color 0.3s ease;
}

.menu-item--has-dropdown:hover .menu-item__link::after {
    border-top-color: #fff;
}

/* メガメニュー共通 */
.menu-dropdown--mega {
    display: none;
    position: absolute;
    left: calc(-50vw + 50%);
    width: 100vw;
    background: #fff;
    padding: 1.5rem 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-top: 3px solid var(--primary-pink);
    z-index: 200;
    top: 100%;
}

.menu-item--has-dropdown:hover > .menu-dropdown--mega {
    display: block;
}

.menu-dropdown__mega-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.menu-dropdown__mega-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
}

/* お悩みから探す: 3列 */
.menu-dropdown--mega:not(.menu-dropdown--wide) .menu-dropdown__mega-list {
    grid-template-columns: repeat(3, 1fr);
}

/* 施術から探す: 4列 */
.menu-dropdown--wide .menu-dropdown__mega-list {
    grid-template-columns: repeat(4, 1fr);
}

.menu-dropdown__mega-list li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.menu-dropdown__mega-list li a {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0.7rem 1.2rem;
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: background 0.2s ease, color 0.2s ease;
    position: relative;
    padding-left: 1.8rem;
}

.menu-dropdown__mega-list li a::before {
    content: "";
    position: absolute;
    left: 0.8rem;
    top: 50%;
    width: 6px;
    height: 6px;
    border-right: 1.5px solid var(--primary-pink);
    border-bottom: 1.5px solid var(--primary-pink);
    transform: translateY(-50%) rotate(-45deg);
}

.menu-dropdown__mega-list li a:hover {
    background: var(--primary-pink);
    color: #fff;
}

.menu-dropdown__mega-list li a:hover::before {
    border-right-color: #fff;
    border-bottom-color: #fff;
}

/* SP用 サブメニュー（アコーディオン） */
.nav-item--accordion {
    position: relative;
}

.nav-link--toggle {
    cursor: pointer;
}

.nav-link--toggle .fas {
    transition: transform 0.3s ease;
}

.nav-link--toggle.is-open .fas {
    transform: rotate(180deg);
}

.nav-sub {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0 0 0 1rem;
    background: rgba(0, 0, 0, 0.02);
}

.nav-sub.is-open {
    display: block;
}

.nav-sub li a {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-sub li:last-child a {
    border-bottom: none;
}

.nav-sub li a:hover {
    color: var(--deep-pink);
}

/* SPメニュー：項目が多い場合に内部スクロールできるようにする
   （ナビは fixed-top のため、はみ出すとタップできなくなる対策） */
@media (max-width: 991.98px) {
    .navbar .navbar-collapse {
        max-height: calc(100vh - 70px);
        max-height: calc(100dvh - 70px); /* iOSのアドレスバー分を考慮 */
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
    }
}

/* レスポンシブ対応 */
@media (max-width: 992px) {
    .navigation-menu {
        gap: 1.5rem;
    }

    .navigation-menu .menu-item {
        font-size: 0.85rem;
    }

    .hero-logo {
        top: 20px;
        left: 0px;
        right: 0;
        margin: auto;
        text-align: center;
    }
}
/* ページネーション */
.page-link {
    color: var(--deep-pink);
    border-color: #dee2e6;
}

.page-link:hover {
    color: #fff;
    background-color: var(--deep-pink);
    border-color: var(--deep-pink);
}

.page-item.active .page-link {
    background-color: var(--deep-pink);
    border-color: var(--deep-pink);
}

.page-item.disabled .page-link {
    color: var(--light-gray);
}

/* お知らせコンテンツ内の画像 */
.text-muted img {
    max-width: 100%;
    height: auto;
}

/* ===== 施術ページ共通スタイル ===== */

/* 目次 */
.treatment-toc {
    background: var(--cream);
    border: 1px solid rgba(232, 180, 184, 0.3);
    padding: 1.5rem 2rem;
    margin-bottom: 3rem;
}

.treatment-toc ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0;
}

.treatment-toc ul li {
    width: calc(100% / 3);
    box-sizing: border-box;
}

.treatment-toc ul li a {
    display: block;
    padding: 0.5rem 0.8rem;
    padding-left: 1.5rem;
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    transition: color 0.2s ease;
}

.treatment-toc ul li a::before {
    content: "";
    position: absolute;
    left: 0.5rem;
    top: 50%;
    width: 6px;
    height: 6px;
    border-right: 1.5px solid var(--primary-pink);
    border-bottom: 1.5px solid var(--primary-pink);
    transform: translateY(-50%) rotate(-45deg);
}

.treatment-toc ul li a:hover {
    color: var(--deep-pink);
}

/* セクション */
.treatment-section {
    margin-bottom: 3.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.treatment-section:last-child {
    border-bottom: none;
}

.treatment-section__title {
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--text-gray);
    padding-bottom: 0.8rem;
    margin-bottom: 1.5rem;
    border-bottom: 3px solid var(--primary-pink);
    position: relative;
}

.treatment-section__subtitle {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--text-gray);
    margin-bottom: 0.8rem;
}

.treatment-case-title {
    font-size: 1.4rem;
}

.treatment-section__subtitle-sm {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-gray);
    margin-top: 1.2rem;
    margin-bottom: 0.6rem;
}

/* 点滴・注射メニュー項目 */
.treatment-menu-item {
    margin-bottom: 3rem;
}

.treatment-menu-item:last-child {
    margin-bottom: 0;
}

.treatment-menu-item__title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-gray);
    padding-left: 0.9rem;
    margin-bottom: 1.2rem;
    border-left: 5px solid var(--primary-pink);
}

.treatment-section__content p {
    font-size: 0.95rem;
    line-height: 1.9;
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* プレイスホルダー画像 */
.treatment-placeholder-img {
    background: #f0f0f0;
    border: 2px dashed #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 1rem;
    font-weight: 500;
    min-height: 250px;
    margin-bottom: 1rem;
}

.treatment-placeholder-img--small {
    min-height: 180px;
}

.treatment-placeholder-img--wide {
    min-height: 120px;
}

.treatment-placeholder-img--banner {
    min-height: 400px;
    font-size: 1.5rem;
}

/* 実画像 */
.treatment-img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 1rem;
}

/* 文章と横並び・カード内の画像は高さを抑えてバランスを取る
   （バナーと横長図解は全体表示のまま除外） */
.treatment-img:not(.treatment-img--banner):not(.treatment-img--wide) {
    max-height: 360px;
    width: auto;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.treatment-banner {
    margin-bottom: 2rem;
}

/* 効果カード */
.treatment-effect-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 1.5rem;
    height: 100%;
}

/* おすすめボックス（こんな方におすすめ） */
.treatment-recommend-box {
    background-color: #f7f3ef;
    border-radius: 12px;
    padding: 1.5rem 2rem;
    margin: 1.5rem 0;
}

.treatment-recommend-box__title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark, #333);
    margin: 0 0 0.8rem 0;
    padding: 0;
    border: none;
}

/* チェックリスト（こんな方におすすめ） */
.treatment-check-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0;
}

.treatment-check-list li {
    width: 50%;
    padding: 0.6rem 0;
    padding-left: 1.8rem;
    position: relative;
    font-size: 0.95rem;
    color: var(--text-gray);
    box-sizing: border-box;
}

.treatment-check-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0.65rem;
    color: var(--primary-pink);
    font-size: 0.9rem;
}

/* 薬剤・オプションカード */
.treatment-drug-card,
.treatment-option-card {
    background: var(--cream);
    padding: 2rem;
    border-radius: 4px;
}

.treatment-drug-card--outline {
    background: transparent;
    border: 1px dashed var(--text-gray);
}

/* 施術詳細テーブル */
.treatment-detail-table {
    width: 100%;
    border-collapse: collapse;
}

.treatment-detail-table th,
.treatment-detail-table td {
    padding: 1rem 1.2rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-gray);
    vertical-align: top;
}

.treatment-detail-table th {
    background: var(--cream);
    font-weight: 500;
    white-space: nowrap;
    width: 180px;
}

/* 注意事項リスト */
.treatment-caution-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.treatment-caution-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.treatment-caution-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.85rem;
    width: 8px;
    height: 8px;
    background: var(--primary-pink);
    border-radius: 50%;
}

/* よくある質問 */
.treatment-faq__item {
    margin-bottom: 0;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: none;
}

.treatment-faq__item:last-child {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.treatment-faq__q {
    background: var(--cream);
    padding: 1rem 3.5rem 1rem 3rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-gray);
    position: relative;
    cursor: pointer;
    transition: background 0.2s ease;
    user-select: none;
}

.treatment-faq__q:hover {
    background: #f0e0e2;
}

.treatment-faq__q::before {
    content: "Q";
    position: absolute;
    left: 1rem;
    top: 1rem;
    color: var(--deep-pink);
    font-weight: 700;
    font-size: 1.1rem;
}

/* +/- アイコン */
.treatment-faq__icon {
    position: absolute;
    right: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
}

.treatment-faq__icon::before,
.treatment-faq__icon::after {
    content: "";
    position: absolute;
    background: var(--text-gray);
    transition: transform 0.3s ease;
}

/* 横線 */
.treatment-faq__icon::before {
    width: 20px;
    height: 2px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

/* 縦線（+の縦棒） */
.treatment-faq__icon::after {
    width: 2px;
    height: 20px;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

/* 開いた状態: 縦線を回転して消す */
.treatment-faq__q.is-open .treatment-faq__icon::after {
    transform: translateX(-50%) rotate(90deg);
}

/* 回答部分: デフォルトで閉じる */
.treatment-faq__a {
    display: none;
    padding: 1rem 1.2rem;
    padding-left: 3rem;
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--text-gray);
    position: relative;
    background: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.treatment-faq__a.is-open {
    display: block;
}

.treatment-faq__a::before {
    content: "A";
    position: absolute;
    left: 1rem;
    top: 1rem;
    color: #8DB8A7;
    font-weight: 700;
    font-size: 1.1rem;
}

/* 施術ページ レスポンシブ */
@media (max-width: 768px) {
    .treatment-toc ul li {
        width: 50%;
    }

    .treatment-check-list li {
        width: 100%;
    }

    .treatment-detail-table th {
        width: 120px;
        font-size: 0.85rem;
    }

    .treatment-detail-table td {
        font-size: 0.85rem;
    }

    .treatment-section__title {
        font-size: 1.3rem;
    }

    .treatment-drug-card,
    .treatment-option-card {
        padding: 1.2rem;
    }
}

@media (max-width: 576px) {
    .treatment-toc ul li {
        width: 100%;
    }

    .treatment-detail-table th {
        display: block;
        width: 100%;
        border-bottom: none;
    }

    .treatment-detail-table td {
        display: block;
        width: 100%;
    }
}

/* バナーセクション */
.banner-section {
    background-color: #FBEFF0;
}

.banner-section-header {
    position: relative;
}

.banner-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.2;
}

.banner-title-en {
    font-size: 2rem;
    letter-spacing: 0.2em;
    color: var(--deep-pink, #A75265);
    font-weight: 500;
}

.banner-title-ja {
    font-size: 1rem;
    margin-top: 0.5rem;
    color: #555;
    letter-spacing: 0.1em;
}

.banner-title-line {
    width: 40px;
    height: 2px;
    background: var(--deep-pink, #A75265);
    margin: 1rem auto 0;
}

.banner-slider-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 40px 3rem;
    position: relative;
}

/* Slick 初期化前のチラつき防止 */
.banner-slider {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.banner-slider.slick-initialized {
    opacity: 1;
}

.banner-slider .slick-list {
    overflow: hidden;
}

.banner-slider .slick-slide {
    padding: 0 10px;
    height: auto;
    transition: transform 0.5s ease, opacity 0.5s ease;
    opacity: 0.5;
    transform: scale(0.92);
}

.banner-slider .slick-slide.slick-center {
    opacity: 1;
    transform: scale(1);
}

.banner-slider-item {
    overflow: hidden;
}

.banner-slider-item a {
    display: block;
    text-decoration: none;
    color: inherit;
    line-height: 0;
}

.banner-slider-item img {
    width: 100%;
    height: auto;
    max-width: none;
    display: block;
    object-fit: cover;
}

/* Slick 矢印 */
.banner-slider .slick-prev,
.banner-slider .slick-next {
    width: 40px;
    height: 40px;
    z-index: 2;
}

.banner-slider .slick-prev {
    left: -40px;
}

.banner-slider .slick-next {
    right: -40px;
}

.banner-slider .slick-prev:before,
.banner-slider .slick-next:before {
    font-size: 40px;
    color: var(--deep-pink, #A75265);
    opacity: 0.85;
}

/* Slick ドット */
.banner-slider .slick-dots {
    bottom: -35px;
}

.banner-slider .slick-dots li button:before {
    font-size: 10px;
    color: #cbb6ba;
    opacity: 0.6;
}

.banner-slider .slick-dots li.slick-active button:before {
    color: var(--deep-pink, #A75265);
    opacity: 1;
}

@media (max-width: 991.98px) {
    .banner-slider-wrapper {
        padding: 1.5rem 0 3rem;
    }

    .banner-slider .slick-list {
        margin: 0;
        padding: 0 !important;
    }

    .banner-slider .slick-slide {
        padding: 0 6px;
    }

    .banner-slider .slick-prev {
        left: 5px;
    }

    .banner-slider .slick-next {
        right: 5px;
    }

    .banner-slider .slick-prev:before,
    .banner-slider .slick-next:before {
        font-size: 30px;
    }

    .banner-title-en {
        font-size: 1.5rem;
    }
}

/* 症例紹介スライダー */
.artmake-case-slider {
    opacity: 0;
    transition: opacity 0.3s ease;
    margin: 0 -10px;
}

.artmake-case-slider.slick-initialized {
    opacity: 1;
}

.artmake-case-slider .slick-slide {
    height: auto;
}

.artmake-case-slider .slick-track {
    display: flex;
    align-items: stretch;
}

.artmake-case-slider__item {
    padding: 0 10px;
    height: 100%;
}

.artmake-case-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.artmake-case-card__img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    display: block;
}

.artmake-case-card__body {
    padding: 1.2rem;
}

.artmake-case-card__title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--deep-pink);
    margin-bottom: 0.8rem;
}

.artmake-case-card__list {
    margin: 0;
}

.artmake-case-card__row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 0.5rem;
    padding: 0.4rem 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
    font-size: 0.85rem;
}

.artmake-case-card__row:last-child {
    border-bottom: none;
}

.artmake-case-card__row dt {
    color: var(--light-gray);
    flex-shrink: 0;
}

.artmake-case-card__row dd {
    color: var(--text-gray);
    text-align: right;
    margin: 0;
    word-break: keep-all;
}

/* Slick 矢印 */
.artmake-case-slider .slick-prev,
.artmake-case-slider .slick-next {
    width: 40px;
    height: 40px;
    z-index: 2;
}

.artmake-case-slider .slick-prev {
    left: -40px;
}

.artmake-case-slider .slick-next {
    right: -40px;
}

.artmake-case-slider .slick-prev:before,
.artmake-case-slider .slick-next:before {
    font-size: 40px;
    color: var(--deep-pink, #A75265);
    opacity: 0.85;
}

/* Slick ドット */
.artmake-case-slider .slick-dots {
    bottom: -45px;
}

.artmake-case-slider .slick-dots li button:before {
    font-size: 10px;
    color: #cbb6ba;
    opacity: 0.6;
}

.artmake-case-slider .slick-dots li.slick-active button:before {
    color: var(--deep-pink, #A75265);
    opacity: 1;
}

@media (max-width: 991.98px) {
    .artmake-case-slider .slick-prev {
        left: 5px;
    }

    .artmake-case-slider .slick-next {
        right: 5px;
    }

    .artmake-case-slider .slick-prev:before,
    .artmake-case-slider .slick-next:before {
        font-size: 30px;
    }

    .artmake-case-slider .slick-dots {
        bottom: -55px;
    }
}

/* テーマカラーのリンク（青字をサイトのローズピンクに統一・使い回し用） */
.theme-link {
    color: #C8707A;
    text-decoration: none;
    transition: color 0.2s ease;
}

.theme-link:hover {
    color: #A75265;
    text-decoration: underline;
}

/* テーマカラーのアウトラインボタン（使い回し用） */
.btn-theme-outline {
    color: #C8707A;
    border: 1px solid #C8707A;
    background-color: transparent;
    transition: all 0.2s ease;
}

.btn-theme-outline:hover,
.btn-theme-outline:focus {
    color: #fff;
    background-color: #C8707A;
    border-color: #C8707A;
}

/* 施術担当名と対応可能部位バッジの横並びレイアウト */
.treatment-staff-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    column-gap: 1.5rem;
    row-gap: 0.6rem;
    margin-bottom: 0.8rem;
}

.treatment-staff-header__name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--deep-pink);
    margin-bottom: 0;
}

/* 施術担当の対応可能部位バッジ */
.treatment-area-badges {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
}

.treatment-area-badges__label {
    font-weight: 600;
    color: var(--text-gray);
    margin-right: 0.25rem;
}

.treatment-area-badge {
    display: inline-block;
    padding: 0.35rem 0.9rem;
    background-color: #C8707A;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 999px;
}

@media (max-width: 767.98px) {
    .treatment-area-badge {
        padding: 0.25rem 0.65rem;
        font-size: 0.75rem;
    }
}

/* テーマカラーの塗りつぶしボタン（ホバーで白背景に反転） */
.btn-theme-fill {
    color: #fff;
    border: 1px solid #C8707A;
    background-color: #C8707A;
    transition: all 0.2s ease;
}

.btn-theme-fill:hover,
.btn-theme-fill:focus {
    color: #C8707A;
    background-color: #fff;
    border-color: #C8707A;
}

/* 料金一覧メニューカード */
.fee-menu-card {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    height: 100%;
    padding: 1rem 1.1rem;
    background: linear-gradient(135deg, #FFF9FA 0%, #F9EDEF 100%);
    border: 1px solid rgba(200, 112, 122, 0.18);
    border-radius: 12px;
    text-decoration: none;
    color: #6b4a4e;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, color .25s ease;
}

.fee-menu-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(200, 112, 122, 0.18);
    border-color: #C8707A;
    color: #C8707A;
}

.fee-menu-card__icon {
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #C8707A 0%, #E8B4B8 100%);
    color: #fff;
    font-size: 1.05rem;
}

.fee-menu-card__label {
    flex: 1 1 auto;
    font-size: 0.98rem;
    line-height: 1.35;
    font-weight: 500;
}

.fee-menu-card__arrow {
    flex: 0 0 auto;
    color: #C8707A;
    opacity: .55;
    transition: transform .25s ease, opacity .25s ease;
}

.fee-menu-card:hover .fee-menu-card__arrow {
    opacity: 1;
    transform: translateX(3px);
}

/* スマホではカードの余白を気持ち小さく */
@media (max-width: 767.98px) {
    .fee-menu-card {
        padding: 0.75rem 0.85rem;
    }
}

/* セクション見出し（帯）: 旧インラインスタイルをCSSに集約 */
.section-title-wrapper {
    background: linear-gradient(135deg, #C8707A 0%, #E8B4B8 100%);
    padding: 1rem 0 1.5rem;
    position: relative;
    margin-bottom: 4rem;
}

.section-title-wrapper__line {
    position: absolute;
    bottom: 0.5rem;
    left: 0;
    width: 100%;
    height: 1px;
    background: white;
}

.section-title-elegant {
    color: white;
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    margin: 0;
}

/* スマホでは帯の占有面積を抑える */
@media (max-width: 767.98px) {
    .section-title-wrapper {
        padding: 0.6rem 0 1rem;
        margin-bottom: 2rem;
    }

    .section-title-wrapper__line {
        bottom: 0.35rem;
    }

    .section-title-elegant {
        font-size: 1.3rem;
        letter-spacing: 0.1em;
    }
}

/* 料金表：料金列は折り返さず1行で表示する */
.fee-table .table th.text-end,
.fee-table .table td.text-end {
    white-space: nowrap;   /* 「50,000円」を途中で折らない */
    width: 1%;             /* 内容ぴったりの幅に縮め、余りをメニュー名列へ回す */
}

/* PCではメニュー名が長い場合のみ折り返す */
.fee-table .table td:first-child,
.fee-table .table th:first-child {
    word-break: break-word;
}

/* PC：テーブルを内容幅に収め、料金がコンテナ右端まで離れないようにする */
@media (min-width: 768px) {
    .fee-table .table {
        width: auto;                   /* Bootstrapの width:100% を解除し内容幅にフィット */
        min-width: min(100%, 640px);   /* 表ごとに幅がバラつかないよう下限を設定 */
        max-width: 100%;
    }

    /* 料金列は桁数が違っても列幅を揃える */
    .fee-table .table th.text-end,
    .fee-table .table td.text-end {
        min-width: 7em;
    }
}

/* スマホ：折り返さず横スクロールで見せる */
@media (max-width: 767.98px) {
    .fee-table .table th,
    .fee-table .table td {
        white-space: nowrap;
        word-break: normal;
    }
}
