/*
Top Menu Section Styles for Beauty Clinic Theme
美容クリニックテーマ - TOPページメニューセクション専用スタイル
*/

/* 人気施術セクション */
.popular-treatments {
    background: #FFFFFF;
    padding-top: 60px;
    margin: 0 auto;
    margin-bottom: 0;
}

.popular-treatments .container {
    max-width: 100%;
    margin: 0 auto;
}

/* セクションヘッダー */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 700;
    /* 変更: ゴールドから水色へ */
    color: #49bfd8;
    letter-spacing: 0.1em;
}

.section-subtitle {
    font-family: 'Shippori Mincho', serif;
    font-size: 12px;
    font-weight: 700;
    /* 変更: ゴールドから水色へ */
    color: #49bfd8;
    letter-spacing: 0.05em;
    margin: 0;
}

/* 施術リスト */
.treatments-list {
    margin-bottom: 50px;
}

/* 施術カード */
.treatment-card {
    margin-bottom: 50px;
    background: #FFFFFF;
}

.treatment-card:last-child {
    margin-bottom: 0;
}

.treatment-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 0 auto;
    margin-bottom: 20px;
}

/* 施術アイコン */
.treatment-icon {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    /* 変更: グラデーションを水色系へ */
    background: linear-gradient(135deg, #49bfd8 0%, #FFFFFF 100%);
    margin-bottom: 15px;
    flex-shrink: 0;
}

/* 施術名 */
.treatment-name {
    font-family: 'Shippori Mincho', serif;
    font-size: 16px;
    font-weight: 500;
    color: #333333 !important;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

/* 施術コンテンツ */
.treatment-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    margin-bottom: 20px;
}

/* 施術画像（ベース） */
.treatment-image {
    width: 100%;
    overflow: hidden;
    position: relative;
    text-align: right;
    z-index: 10;
}

.treatment-image img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.treatment-image.placeholder {
    background: #E5E5E5;
}

.treatment-title {
    font-family: 'Shippori Mincho', serif;
    font-size: 20px;
    font-weight: 500;
    color: #333333 !important;
    line-height: 1.6;
    letter-spacing: 0.1em;
    margin-bottom: 15px;
    position: absolute;
    padding-left: 7%;
    z-index: 20;
    text-shadow: 1px 4px 4px rgba(0, 0, 0, 0.25);
    text-align: left;
}

.treatment-description {
    font-family: 'Shippori Mincho', serif;
    font-size: 10px;
    font-weight: 500;
    color: #333333 !important;
    line-height: 1.7;
    letter-spacing: 0.15em;
    margin-bottom: 5px;
    padding-left: 7%;
    text-align: left;
}

.view-more-text {
    text-align: right;
    margin-right: 10px;
}

.view-more {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 700;
    /* 変更: 水色へ */
    color: #49bfd8;
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    padding: 8px 12px;
    min-height: 44px;
}

.view-more:hover {
    /* 変更: ホバー時の水色（少し濃いめ） */
    color: #3baebd;
}

/* アクションボタン */
.treatment-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.menu-list-btn,
.price-check-btn {
    display: block;
    width: 163px;
    max-width: 100%;
    padding: 15px 20px;
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: 0.1em;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
}

.menu-list-btn {
    /* 変更: 背景色を水色へ */
    background: #49bfd8;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 700;
}

.menu-list-btn:hover {
    /* 変更: ホバー背景色 */
    background: #3baebd;
    transform: translateY(-2px);
}

.price-check-btn {
    background: transparent;
    color: #333333 !important;
    font-size: 10px;
    font-weight: 400;
    border: 1px solid #333333 !important;
}

.price-check-btn:hover {
    color: #333;
    transform: translateY(-2px);
}

/* ABOUT USセクション - 改善版 */
.about-us {
    padding-top: 40px;
    background-color: #FCFCFC;
    position: relative;
}

.about-text {
    font-family: 'Shippori Mincho', serif;
    font-size: 14px;
    font-weight: 500;
    color: #333333 !important;
    line-height: 3.0;
    letter-spacing: 0.15em;
    margin-bottom: 20px;
    padding: 7%;
    text-align: left;
}

/* モバイル版 - 画像配置 */
.about-area {
    position: relative;
}

/* ABOUT US画像スライダー */
.about-image-1 {
    width: 90%;
    margin: 0 auto;
    margin-bottom: 30px;
    z-index: 2;
    position: relative;
}

.about-image-1 .about-slide-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transition: transform 0.4s ease, box-shadow 0.4s ease, opacity 1.5s ease;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.about-image-1 .about-slide-image:first-child {
    position: relative; /* 最初の画像は高さを確保 */
}

.about-image-1 .about-slide-image.active {
    opacity: 1;
    z-index: 2;
}

.about-image-1 .about-slide-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.about-image-2 {
    width: 85%;
    padding-left: 7%;
    position: relative;
    z-index: 1;
}

.about-image-2 img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-image-2 img:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.about-image-2 > .view-more-text {
    display: block;
    text-align: center;
    margin-top: 20px;
    margin-right: 0;
}

/* 料金セクション */
.price-section {
    padding: 40px 0;
    margin-bottom: 40px;
    position: relative;
    background: #FFFFFF;
}

.price-section .container {
    max-width: 100%;
    padding: 0 20px;
    margin: 0 auto;
}

/* 料金グリッドレイアウト */
.price-grid {
    display: grid;
    grid-template-columns: 1fr; /* スマホは1カラム */
    gap: 20px;
    margin-bottom: 40px;
}

/* 料金カードグループ (price.phpのデザインを踏襲) */
.price-menu-group {
    background: #FFFFFF;
    border: 1px solid #49bfd8; /* 水色ボーダー */
    border-radius: 12px;
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 4px 12px rgba(73, 191, 216, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.price-menu-group:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(73, 191, 216, 0.2);
}

/* グループタイトル */
.price-group-title {
    font-family: 'Shippori Mincho', serif;
    font-size: 18px;
    font-weight: 700;
    color: #49bfd8; /* 水色 */
    text-align: center;
    margin-top: 0;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
    padding-bottom: 10px;
    border-bottom: 1px solid #e0faff;
}

/* 料金リスト定義リスト */
.price-menu-list {
    margin: 0;
    padding: 0;
    flex-grow: 1; /* ボタンを下揃えにするために伸長 */
}

/* 各メニューアイテム */
.price-menu-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 12px 0;
    border-bottom: 1px solid #e0faff; /* 薄い水色 */
}

.price-menu-item:last-child {
    border-bottom: none;
}

/* メニュー名 */
.price-menu-item dt {
    font-family: 'Shippori Mincho', serif;
    font-size: 14px;
    font-weight: 500;
    color: #333333;
    letter-spacing: 0.05em;
    line-height: 1.5;
}

/* 価格 */
.price-menu-item dd {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 700;
    color: #49bfd8; /* 水色 */
    margin-left: 10px;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

/* キャンペーン価格等の強調スタイル */
.price-menu-item.member-price {
    background-color: rgba(73, 191, 216, 0.1); /* 薄い水色背景 */
    padding: 10px 10px;
    border-radius: 4px;
    border-bottom: none;
    margin: 5px 0;
}

.price-menu-item.member-price dt {
    color: #49bfd8;
    font-weight: 700;
}

.price-menu-item.member-price dd {
    color: #49bfd8;
    font-size: 20px;
}

/* カード内 View More ボタンエリア */
.price-menu-btn-area {
    text-align: right;
    margin-top: 20px;
}

.price-view-more-btn {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    font-weight: 700;
    color: #49bfd8;
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.price-view-more-btn:hover {
    color: #3baebd; /* 濃い水色 */
}

/* 下部 PRICE LIST ボタン */
.price-actions {
    text-align: center;
    width: 100%;
    margin-top: 20px;
}

.price-list-btn {
    display: inline-block;
    background: #49bfd8; /* 水色 */
    color: #FFFFFF;
    padding: 15px 60px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 30px; /* 角丸ボタン */
}

.price-list-btn:hover {
    background: #3baebd;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(73, 191, 216, 0.3);
}

/* PC版レスポンシブ (960px以上) */
@media screen and (min-width: 960px) {
    .price-section {
        padding: 80px 0;
    }

    .price-section .container {
        padding: 0 5%;
    }

    /* 3カラムグリッド */
    .price-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        margin-bottom: 60px;
    }

    .price-menu-group {
        padding: 40px 30px;
    }

    .price-group-title {
        font-size: 22px;
        margin-bottom: 30px;
    }

    .price-menu-item {
        padding: 15px 0;
    }

    .price-menu-item dt {
        font-size: 15px;
    }

    .price-menu-item dd {
        font-size: 20px;
    }

    .price-list-btn {
        font-size: 20px;
        padding: 20px 80px;
    }
}

/* お客様の声セクション */
.customer-voice {
    padding: 40px 0;
    position: relative;
    background: #FCFCFC;
}

.customer-voice .container {
    padding: 0 20px;
    max-width: 100%;
}

/* 音声カードグリッド */
.voice-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.voice-card {
    background: #FFFFFF;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
}

.voice-content {
    width: 100%;
    position: relative;
    min-height: 100px;
}

.voice-text {
    font-family: 'Shippori Mincho', serif;
    font-size: 10px;
    font-weight: 400;
    color: #333333 !important;
    line-height: 1.8;
    letter-spacing: 0.05em;
    text-align: left;
    padding-right: 50px;
}

.voice-text > span {
    /* 変更: 強調文字を水色へ */
    color: #49bfd8;
}

.voice-profile {
    font-family: 'Shippori Mincho', serif;
    font-size: 10px;
    font-weight: 400;
    color: #333333 !important;
    text-align: right;
    letter-spacing: 0.05em;
    margin: 0;
    padding-right: 50px;
    padding-top: 10px;
}

.voice-profile.buttom-content{
    padding-top: 30px;
}

.voice-image {
    text-align: right;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 45px;
    height: 45px;
    object-fit: cover;
}

/* ===================================================
   施術一覧セクション（TREATMENT FINDER）
   =================================================== */
.treatment-finder-section {
    background: #FFFFFF;
    padding-top: 60px;
    margin: 0 auto;
}

.treatment-finder-section .container {
    max-width: 100%;
    margin: 0 auto;
}

/* タブナビゲーション */
.finder-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    padding: 0 20px;
}

.finder-tab {
    font-family: 'Shippori Mincho', serif;
    font-size: 14px;
    font-weight: 500;
    color: #333333 !important;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    padding: 10px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.05em;
}

.finder-tab.active {
    /* 変更: アクティブ時の色・ボーダー */
    color: #49bfd8 !important;
    border-bottom: 2px solid #49bfd8;
    font-weight: 700;
}

.finder-tab:hover {
    color: #49bfd8 !important;
}

/* タブコンテンツ */
.finder-content {
    display: none;
    padding: 0 7%;
}

.finder-content.active {
    display: block;
    animation: fadeIn 0.4s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* カテゴリ */
.finder-category {
    margin-bottom: 50px;
}

.finder-category:last-child {
    margin-bottom: 30px;
}

/* カテゴリヘッダー */
.category-header-finder {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 1px solid #E5E5E5;
}

.category-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.category-icon-finder {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.category-icon-finder img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.category-icon-concern {
    font-size: 16px;
    /* 変更: アイコン色 */
    color: #49bfd8;
}

.category-title-finder {
    font-family: 'Shippori Mincho', serif;
    font-size: 16px;
    font-weight: 700;
    color: #333333 !important;
    letter-spacing: 0.05em;
    margin: 0;
}

/* 施術グリッド */
.treatment-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    width: 100%;
}

/* 施術アイテム */
.treatment-item {
    background: #FFFFFF;
    border: 1px solid #E5E5E5;
    border-radius: 8px;
    padding: 15px 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 100%;
    box-sizing: border-box;
}

.treatment-item:hover {
    /* 変更: ホバー時のボーダー */
    border-color: #49bfd8;
    background: #FCFCFC;
    transform: translateY(-2px);
    /* 変更: ホバー時の影（水色系） */
    box-shadow: 0 4px 12px rgba(73, 191, 216, 0.15);
}

.treatment-item-name {
    font-family: 'Shippori Mincho', serif;
    font-size: 14px;
    font-weight: 700;
    /* 変更: 文字色 */
    color: #49bfd8;
    margin: 0;
    letter-spacing: 0.05em;
}

.treatment-item-description {
    font-family: 'Shippori Mincho', serif;
    font-size: 10px;
    font-weight: 400;
    color: #333333 !important;
    margin: 0;
    letter-spacing: 0.05em;
    line-height: 1.6;
}

/* アクションボタン */
.finder-actions {
    text-align: center;
    margin-top: 40px;
    padding: 0 7%;
}

.all-menu-btn {
    display: inline-block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    font-weight: 700;
    /* 変更: 文字色 */
    color: #49bfd8;
    text-decoration: none;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    padding: 10px 0;
}

.all-menu-btn:hover {
    /* 変更: ホバー色 */
    color: #3baebd;
    transform: translateX(5px);
}

/* タブレット以上 */
@media screen and (min-width: 600px) {
    .treatment-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .finder-tab {
        font-size: 16px;
        padding: 12px 30px;
    }

    .category-title-finder {
        font-size: 18px;
    }

    .treatment-item {
        padding: 20px 25px;
    }

    .treatment-item-name {
        font-size: 16px;
    }

    .treatment-item-description {
        font-size: 12px;
    }
}

@media screen and (min-width: 960px) {
    /* 960px以上に適用されるCSS（PC用） */
    .container {
        padding: 0 5%;
    }

    /* 人気施術セクション */
    .popular-treatments {
        padding-top: 130px;
        margin: 0;
    }

    .popular-treatments .container {
        padding-bottom: 7%;
    }

    .section-header {
        margin-bottom: 60px;
    }

    .section-title {
        font-size: 54px;
        margin-bottom: 10px;
    }

    .section-subtitle {
        font-size: 32px;
    }

    .treatments-list {
        display: flex;
        justify-content: center;
        gap: 45px;
        margin: 0 auto;
        margin-bottom: 20px;
    }

    .treatment-icon {
        width: 31px;
        height: 31px;
    }

    .treatment-name {
        font-size: 24px;
    }

    .treatment-card:last-child  {
        margin-bottom: 50px;
    }

    .treatment-title {
        font-size: 24px;
        padding: 0;
        position: static;
    }

    .treatment-description {
        font-size: 16px;
        padding-left: 0;
    }

    .treatment-image img {
        width: 300px;
        height: 300px;
        object-fit: contain;
    }

    .view-more {
        font-size: 24px;
    }

    .treatment-actions {
        display: flex;
        flex-direction: row;
        justify-content: center;
    }

    .menu-list-btn {
        font-size: 36px;
        width: 320px;
        height: 90px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .price-check-btn {
        font-size: 20px;
        width: 320px;
        height: 90px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .price-check-btn div {
        align-items: center;
    }

    /* 私たちについて - PC版（70%縮小版） */
    .about-us {
        padding: 70px 0 70px 0;
        margin-bottom: 0;
    }

    .about-text {
        font-size: 14px;
        padding: 0;
        line-height: 2.2;
        padding-top: 70px;
    }

    .about-us .about-area {
        display: grid !important;
        grid-template-columns: 55% 45%;
        gap: 0 28px;
        max-width: 980px;
        margin: 0 auto;
        align-items: start;
    }
    
    .about-us .about-text {
        grid-column: 2 / 3;
        grid-row: 1;
        padding-left: 0;
        margin-bottom: 28px;
    }
    
    /* 画像1（メインビジュアル） */
    .about-us .about-image-1 {
        grid-column: 1 / 2;
        grid-row: 1 / 4;
        width: 100%;
        margin: 0;
        padding: 0;
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        z-index: 1;
        position: relative;
    }
    
    .about-us .about-image-1 .about-slide-image {
        width: 100%;
        height: auto;
        max-width: 100%;
        border-radius: 8px;
        box-shadow: 0 11px 34px rgba(0, 0, 0, 0.15);
    }

    .about-us .about-image-1 .about-slide-image:hover {
        transform: translateY(-6px);
        box-shadow: 0 14px 42px rgba(0, 0, 0, 0.2);
    }
    
    /* 画像2（サブビジュアル） */
    .about-us .about-image-2 {
        grid-column: 2 / 3;
        grid-row: 2;
        width: 100%;
        padding: 0;
        margin: 0;
        margin-bottom: 21px;
        position: relative;
        z-index: 2;
    }
    
    .about-us .about-image-2 img {
        width: 100%;
        max-width: 280px;
        height: auto;
        border-radius: 8px;
        box-shadow: 0 11px 34px rgba(0, 0, 0, 0.15);
    }

    .about-us .about-image-2 img:hover {
        transform: translateY(-6px);
        box-shadow: 0 14px 42px rgba(0, 0, 0, 0.2);
    }
    
    /* view moreボタン */
    .about-us .view-more-text {
        grid-column: 2 / 3;
        grid-row: 3;
        position: relative;
        margin: 0;
        text-align: right;
    }

    .about-us .view-more-text a {
        font-size: 28px;
    }

    /* 料金表 */
    .price-list .price-item.member-price {
        /* 変更: 背景薄塗り（水色） */
        background-color: rgba(73, 191, 216, 0.1);
        /* 変更: ボーダー */
        border-left: 3px solid #49bfd8;
        padding-left: 12px;
    }

    .price-list .price-item.member-price .price-name {
        /* 変更: 文字色 */
        color: #49bfd8;
        font-weight: 600;
    }

    .price-list .price-item.member-price .price-value {
        /* 変更: 文字色 */
        color: #49bfd8;
        font-weight: 700;
    }

    .price-section {
        padding: 50px 0;
        margin-bottom: 0;
    }

    .price-section.container {
        padding: 0;
    }

    .price-list {
        display: block;
    }

    .price-navigation {
        display: none;
    }
    
    .price-card {
        overflow: visible;
        min-height: auto;
        padding: 0;
        background: transparent;
        border: none;
        display: flex;
        gap: 50px;
        justify-content: center;
    }
    
    .price-list {
        display: block !important;
        opacity: 1 !important;
        transform: translateX(0) !important;
        position: static !important;
        width: 300px;
        background: #FFFFFF;
        /* 変更: ボーダー */
        border: 1px solid #49bfd8;
        border-radius: 12px;
        padding: 20px;
        margin-bottom: 0;
    }

    .price-list.active {
        width: 300px;
    }
    
    .price-list.slide-in-right,
    .price-list.slide-in-left,
    .price-list.slide-out-right,
    .price-list.slide-out-left {
        animation: none !important;
        position: static !important;
        transform: translateX(0) !important;
    }
    
    .price-list::before {
        content: attr(data-title);
        display: block;
        /* 変更: ラベル背景色 */
        background: #49bfd8;
        color: #FFFFFF;
        font-family: 'Shippori Mincho', serif;
        font-size: 14px;
        font-weight: 700;
        text-align: center;
        margin: -45px -20px 20px 25px;
        width: 163px;
        padding: 12px 24px;
        border-radius: 21px;
    }

    .price-card .view-more {
        text-align: center;
    }

    .price-card .view-more a {
        align-items: flex-end;
        font-size: 16px;
    }

    .price-actions {
        padding-top: 50px;
        text-align: center;
    }

    .price-actions a {
        font-size: 36px;
        width: 320px;
        justify-content: center;
        align-items: center;
    }

    /* お客様の声 - PC版 */
    .customer-voice .container  {
        padding: 0 2%;
    }

    .voice-cards {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, auto);
        gap: 30px;
        margin-bottom: 60px;
    }

    .voice-card {
        width: 100%;
        margin: 0;
    }

    /* PC版のカード順序 */
    .voice-card:nth-child(1) { grid-column: 3; grid-row: 1; }
    .voice-card:nth-child(2) { grid-column: 1; grid-row: 1; }
    .voice-card:nth-child(3) { grid-column: 2; grid-row: 1; }
    .voice-card:nth-child(4) { grid-column: 1; grid-row: 2; }
    .voice-card:nth-child(5) { grid-column: 2; grid-row: 2; }

    .voice-text { font-size: 16px; }
    .voice-profile { font-size: 16px; }

    /* 施術一覧セクション - PC */
    .treatment-finder-section {
        padding: 100px 0 120px 0;
    }

    .treatment-finder-section .container {
        padding: 0 5%;
    }

    .finder-tabs {
        gap: 40px;
        margin-bottom: 60px;
    }

    .finder-tab {
        font-size: 20px;
        padding: 15px 40px;
    }

    .finder-content {
        padding: 0;
    }

    .finder-category {
        margin-bottom: 60px;
    }

    .category-header-finder {
        margin-bottom: 30px;
        padding-bottom: 15px;
    }

    .category-icon { width: 40px; height: 40px; }
    .category-icon-finder { width: 40px; height: 40px; }
    .category-icon-concern { font-size: 24px; }
    .category-title-finder { font-size: 24px; }

    .treatment-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .treatment-item {
        padding: 25px 30px;
        gap: 8px;
    }

    .treatment-item-name { font-size: 18px; }
    .treatment-item-description { font-size: 14px; }

    .finder-actions {
        margin-top: 60px;
        padding: 0;
    }

    .all-menu-btn {
        font-size: 24px;
        padding: 15px 0;
    }
}

/* 大画面PC */
@media screen and (min-width: 1400px) {
    .treatment-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .about-us .about-area {
        max-width: 1120px;
    }
    .about-us .about-image-2 img {
        max-width: 315px;
    }
}

/*
Campaign Slider Section Styles for Beauty Clinic Theme
*/
.campaign-slider-section {
    background: #FFFFFF;
    padding: 20px 0;
    overflow: hidden;
}

.campaign-slider-section .container {
    max-width: 100%;
    margin: 0 auto;
}

.campaign-slider-container {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    width: 100%;
}

.campaign-slides-wrapper {
    overflow: hidden;
    width: 100%;
}

.campaign-slides {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.campaign-slide {
    flex: 0 0 85%;
    margin: 0 7.5%;
    position: relative;
    transition: all 0.5s ease;
}

.campaign-slide.center {
    z-index: 2;
    opacity: 1;
    transform: scale(1);
}

.campaign-slide.side {
    opacity: 0.5;
    transform: scale(0.9);
}

.campaign-slide-link {
    display: block;
    width: 100%;
    position: relative;
    text-decoration: none;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.campaign-slide-link::before {
    content: "";
    display: block;
    padding-top: 100%;
}

.campaign-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.5s ease;
}

.campaign-slide.center .campaign-slide-link:hover .campaign-image {
    transform: scale(1.05);
}

.campaign-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.campaign-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(134, 134, 134, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.campaign-indicator:hover {
    background: rgba(134, 134, 134, 0.6);
    transform: scale(1.2);
}

.campaign-indicator.active {
    /* 変更: インジケーター色 */
    background: #49bfd8;
    width: 30px;
    border-radius: 6px;
}

/* タブレット以上 */
@media screen and (min-width: 600px) {
    .campaign-slide {
        flex: 0 0 60%;
        margin: 0 5%;
    }
    .campaign-slide.center {
        flex: 0 0 70%;
        margin: 0 15%;
    }
    .campaign-indicator {
        width: 14px;
        height: 14px;
    }
    .campaign-indicator.active {
        width: 35px;
    }
}

/* PC版 */
@media screen and (min-width: 960px) {
    .campaign-slider-section {
        padding: 100px 0;
    }
    .campaign-slider-container {
        max-width: 1400px;
        padding: 0 5%;
    }
    .campaign-slides-wrapper {
        overflow: visible;
    }
    .campaign-slides {
        justify-content: center;
        gap: 30px;
        transform: none !important;
        transition: none !important;
    }
    .campaign-slide {
        flex: 0 0 calc(33.333% - 20px);
        margin: 0;
        opacity: 1;
        transform: scale(1);
    }
    .campaign-slide.center,
    .campaign-slide.side {
        flex: 0 0 calc(33.333% - 20px);
        margin: 0;
        opacity: 1;
        transform: scale(1);
        z-index: 1;
    }
    .campaign-indicators {
        display: none;
    }
    .campaign-slide-link:hover .campaign-image {
        transform: scale(1.05);
    }
}

/* 大画面PC */
@media screen and (min-width: 1400px) {
    .campaign-slider-container {
        max-width: 1600px;
    }
    .campaign-slides {
        gap: 40px;
    }
    .campaign-slide {
        flex: 0 0 calc(33.333% - 27px);
    }
    .campaign-slide.center,
    .campaign-slide.side {
        flex: 0 0 calc(33.333% - 27px);
    }
}

/* キャンペーンモーダル */
.campaign-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.campaign-modal.active {
    display: block;
    opacity: 1;
    animation: modalFadeIn 0.3s ease;
}

.campaign-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    cursor: pointer;
}

.campaign-modal-content {
    position: relative;
    width: 90%;
    max-width: 800px;
    height: 90vh;
    max-height: 800px;
    margin: 5vh auto;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
}

.campaign-modal-image-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.campaign-modal-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.campaign-modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    font-size: 32px;
    line-height: 1;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10002;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Arial, sans-serif;
}

.campaign-modal-close:hover {
    /* 変更: ホバー色 */
    background: #49bfd8;
    color: #FFFFFF;
    transform: rotate(90deg);
}

body.campaign-modal-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

@media screen and (min-width: 960px) {
    .campaign-modal-content {
        width: 80%;
        max-width: 1000px;
        max-height: 900px;
    }
    .campaign-modal-close {
        top: 20px;
        right: 20px;
        width: 60px;
        height: 60px;
        font-size: 36px;
    }
}

@keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ===============================================
   キャンペーン告知エリア（Blue ver. + 修正・追加分）
   =============================================== */
.campaign-notice-area {
    width: 100%;
    margin: 30px 0 50px 0; 
    padding: 20px 0;
    /* 変更: ピンクボーダーを水色系に */
    border-top: 1px solid rgba(73, 191, 216, 0.4);
    border-bottom: 1px solid rgba(73, 191, 216, 0.4);
    /* 変更: 背景グラデーションを淡い水色に */
    background: linear-gradient(90deg, #FFFFFF 0%, #f2fdff 50%, #FFFFFF 100%);
}

.menu-page .campaign-notice-area {
    margin: 20px 0 30px 0;
}

.campaign-notice-inner {
    display: flex;
    flex-direction: column !important; /* PCでも縦並びに強制 */
    justify-content: center !important;
    gap: 8px !important; /* 上下の間隔 */
    padding: 15px 0 !important; /* 上下の余白 */
    text-align: center;
    align-items: center;
}

/* ラベル：＼ 期間限定 ／ */
.campaign-notice-label {
    font-family: 'Shippori Mincho', serif;
    font-size: 12px;
    font-weight: 700;
    /* 変更: ピンクから水色へ */
    color: #49bfd8; 
    letter-spacing: 0.15em;
    margin: 0 !important;
    margin-right: 0 !important; /* 横並び用の右余白を削除 */
    margin-bottom: 0 !important;
    border: none !important; /* ボーダー（区切り線）を削除 */
}

/* 擬似要素（::after等）で線が表示されている場合の対策 */
.campaign-notice-label::after,
.campaign-notice-label::before {
    display: none !important;
    content: none !important;
    border: none !important;
}

/* 追加テキスト：簡単手続き */
.campaign-notice-desc {
    font-family: 'Shippori Mincho', serif;
    font-size: 13px;
    font-weight: 500;
    color: #333333;
    letter-spacing: 0.05em;
    margin: 0 !important;
    text-align: center;
    border: none !important;
}

/* 価格・テキストのまとまり */
.campaign-notice-content {
    margin: 0;
    line-height: 1;
    display: flex;
    align-items: baseline;
    gap: 15px;
}

/* テキスト：会員価格 */
.notice-text {
    font-family: 'Shippori Mincho', serif;
    font-size: 14px;
    font-weight: 500;
    color: #333333;
    letter-spacing: 0.1em;
}

/* 価格：¥3,300 */
.notice-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 600;
    /* 変更: ピンクから水色へ */
    color: #49bfd8; 
    letter-spacing: 0.05em;
}

/* PC版レスポンシブ設定 (960px以上) */
@media screen and (min-width: 960px) {
    .campaign-notice-area {
        margin: 50px 0 80px 0; 
        padding: 25px 0;
    }
    .menu-page .campaign-notice-area {
        margin: 30px 0 40px 0;
    }
    
    .campaign-notice-label {
        font-size: 15px;
    }
    .campaign-notice-desc {
        font-size: 15px;
    }
    .notice-text {
        font-size: 16px;
    }
    .notice-price {
        font-size: 32px;
        position: relative;
        top: 2px;
        /* 変更: 文字色 */
        color: #49bfd8; 
    }
}

/* ==============================================
   ヒーローセクション（スマホ・PC対応完全版）
   ============================================== */

/* セクション全体 - スマホ版（コンパクト化・左寄せ） */
.hero-section {
    position: relative;
    width: 80%;
    background-color: #ffffff;
    overflow: visible;
    padding: 10px 0 15px 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-left: auto;
    margin-right: 0;
}

/* 画像エリア - スマホ版 */
.hero-image-container {
    width: 100%;
    position: relative;
    z-index: 1;
    height: auto;
}

.hero-image {
    width: 100%;
    display: block;
    object-fit: cover;
    object-position: right center;
}

/* テキストエリア - スマホ版（画面左端から配置） */
.hero-text-area {
    position: absolute;
    bottom: 0;
    left: 0;
    margin-left: calc(-20% + 10px);
    z-index: 100;
    width: auto;
}

/* テキスト全体のラッパー - スマホ版（コンパクト化） */
.hero-text {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* 各テキスト行（個別のボックス） - スマホ版（コンパクト化） */
.hero-text-line {
    font-family: 'Shippori Mincho', serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.15em;
    color: #4a4a4a;
    margin: 0;
    padding: 10px 20px;
    background: rgba(250, 248, 245, 0.85);
    backdrop-filter: blur(3px);
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    white-space: nowrap;
    display: inline-block;
    width: fit-content;
}

.hero-text-line span {
    font-size: 0.75em;
    font-weight: 400;
    color: #666;
}

/* PC版 (960px以上) */
@media screen and (min-width: 960px) {
    .hero-section {
        display: block;
        position: relative;
        height: 80vh; 
        min-height: 600px;
        padding-top: 40px; 
        margin-top: 0;
        overflow: visible;
        background-color: #ffffff; 
    }

    /* 画像コンテナ - PC版 */
    .hero-image-container {
        width: 92%;
        height: calc(100% - 40px);
        position: absolute;
        top: 40px; 
        right: 0;
        bottom: 0;
        left: auto;
        z-index: 1;
    }

    /* 画像本体 - PC版（角丸削除、全体像表示） */
    .hero-image {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: right center;
    }

    /* テキストエリア - PC版 */
    .hero-text-area {
        position: absolute;
        bottom: auto;
        top: 68%;
        left: 6%;
        transform: translateY(-50%);
        width: auto;
        z-index: 10;
        padding: 0;
    }

    /* テキスト全体のラッパー - PC版 */
    .hero-text {
        display: flex;
        flex-direction: column;
        gap: 18px;
    }

    /* 各テキスト行（個別のボックス） - PC版 */
    .hero-text-line {
        font-family: 'Shippori Mincho', serif;
        font-size: 48px;
        font-weight: 500;
        line-height: 1.3;
        letter-spacing: 0.18em;
        color: #4a4a4a;
        margin: 0;
        padding: 16px 40px;
        background: rgba(250, 248, 245, 0.75);
        backdrop-filter: blur(3px);
        border-radius: 4px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
        white-space: nowrap;
        display: inline-block;
        width: fit-content;
    }

    .hero-text-line span {
        font-size: 0.65em;
        font-weight: 400;
        color: #666;
    }
}

/* アニメーション */
.fade-in-up {
    opacity: 0;
    animation: fadeInUp 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.3s;
}

@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}




/* ==============================================
   ヒーローセクション（全画面・ヘッダー被せ対応版）
   ============================================== */

/* セクション自体を絶対配置で画面最上部に固定 */
.hero-section {
    position: absolute !important; /* ヘッダーの高さ分下がらず、最上部(0,0)に配置 */
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;        /* 横幅いっぱい */
    height: 100vh !important;      /* 縦幅いっぱい */
    margin: 0 !important;
    padding: 0 !important;
    z-index: 0 !important;         /* ヘッダーや他の要素より奥に配置 */
    overflow: hidden !important;   /* はみ出し防止 */
    background: #000;              /* 読み込み時の背景 */
}

/* 動画を画面いっぱいに埋める */
.hero-video {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;  /* 比率を維持してトリミング拡大 */
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    z-index: -1 !important;        /* セクション内でも最背面に */
}

.body {
    padding-top: 0 !important;
}

/* 網掛けオーバーレイ */
.hero-overlay {
    width: 100% !important;
    height: 100% !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    background: rgba(0, 0, 0, 0.1); /* 必要に応じて調整 */
    z-index: 1 !important;          /* 動画より手前 */
    pointer-events: none;           /* クリックを透過 */
}

/* 重要：
   .hero-section を absolute にしたため、
   後続のコンテンツ（キャンペーンスライダー等）が上にずり上がって重なってしまいます。
   それを防ぐために、キャンペーンセクション等の開始位置を下げる必要があります。
   以下のコードで調整します。
*/

/* ヒーローセクションの直後の要素（mainのパディングなどで調整する場合） */
.main-mv {
    /* ヒーローセクションの高さ分、コンテンツを押し下げる */
    padding-top: 100vh !important; 
    position: relative;
    z-index: 2; /* 動画より手前にコンテンツを表示 */
    background: transparent; /* 背景が白だと動画が隠れるため注意 */
}

/* もし .main-content 全体に白背景がついている場合は、
   キャンペーンセクション個別でマージンを取る必要があります */
/* 例:
.campaign-slider-section {
    margin-top: 100vh;
    position: relative;
    z-index: 2;
    background: #fff;
}
*/

/* ==============================================
   スマホ時の動画表示調整（帯なし・高さ自動調整版）
   ============================================== */

   @media screen and (max-width: 959px) {
    /* セクションの高さを「画面いっぱい(100vh)」から「動画の高さなり(auto)」に変更 */
    .hero-section {
        height: auto !important;       /* 高さを動画に合わせる */
        min-height: 0 !important;      /* 最小高さを解除 */
        position: relative !important; /* 下のコンテンツが重ならないよう通常配置に戻す */
        background: transparent !important; /* 背景色なし */
        padding-bottom: 0 !important;
    }

    /* 動画の配置調整 */
    .hero-video {
        position: relative !important; /* 絶対配置を解除して高さを確保 */
        width: 100% !important;        /* 横幅いっぱい */
        height: auto !important;       /* 高さは比率に合わせて自動調整 */
        object-fit: contain !important;/* 全体を表示 */
        top: auto !important;
        left: auto !important;
    }

    /* 網掛けオーバーレイも動画に合わせる */
    .hero-overlay {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
    }

    /* スマホ時はメインコンテンツの押し下げ(100vh)を不要にする */
    .main-content {
        padding-top: 0 !important;
        margin-top: 0 !important;
    }
}






/* キャンペーンスライダー PC版横スクロール化 */
@media screen and (min-width: 960px) {
    /* スライドを包むコンテナの設定 */
    .campaign-slides {
        display: flex !important;
        flex-wrap: nowrap !important; /* 折り返し禁止 */
        overflow-x: auto !important;  /* 横スクロール許可 */
        justify-content: flex-start !important; /* 左詰め */
        gap: 30px;
        padding-bottom: 20px; /* スクロールバーのスペース */
        
        /* スクロール動作の設定 */
        transform: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
        -webkit-overflow-scrolling: touch;
        
        /* コンテナの幅調整 */
        width: 100%;
        padding-left: 5px;
        padding-right: 5px;
    }

    /* 各スライド（クーポン画像）の設定 */
    .campaign-slide {
        /* 幅を固定して、画面からはみ出させる */
        /* 好みに合わせて 300px ～ 350px 程度で調整してください */
        flex: 0 0 320px !important; 
        min-width: 320px !important;
        margin: 0 !important;
        opacity: 1 !important;
        transform: scale(1) !important;
    }

    /* スクロールバーのデザイン（水色） */
    .campaign-slides::-webkit-scrollbar {
        height: 10px;
    }
    .campaign-slides::-webkit-scrollbar-track {
        background: #f0faff;
        border-radius: 5px;
    }
    .campaign-slides::-webkit-scrollbar-thumb {
        background: #49bfd8;
        border-radius: 5px;
    }
    .campaign-slides::-webkit-scrollbar-thumb:hover {
        background: #3baebd;
    }
}