/*
Theme Name: Clair
Theme URI: https://south-b.com
Description: 大阪・奈良・和歌山の美容室ポータルサイト(ACF Pro対応 + 当日予約枠管理) ※AI機能は停止中／salon・specialty・areaをREST公開
Version: 3.5.6
Author: Clair
Author URI: https://south-b.com
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: clair
*/

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=Noto+Sans+JP:wght@300;400;500;600&display=swap');

:root {
    --rose-gold: #c9a38a;
    --rose-gold-light: #daa58c;
    --beige-light: #f5f1ed;
    --beige: #e8e0d5;
    --beige-dark: #d4c4b0;
    --text-primary: #4a3933;
    --text-secondary: #8b7355;
    --white: #ffffff;
    --shadow: rgba(201, 163, 138, 0.2);
}

/* v3.5.0: サロンオーナー共通ナビ */
.clair-owner-nav-wrap {
    position: sticky;
    top: 0;
    z-index: 900;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(201, 163, 138, 0.24);
    box-shadow: 0 2px 10px rgba(74, 57, 51, 0.06);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.admin-bar .clair-owner-nav-wrap {
    top: 32px;
}

.clair-owner-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    max-width: 1080px;
    margin: 0 auto;
    padding: 10px 16px;
    white-space: nowrap;
}

.clair-owner-nav-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 8px 14px;
    border: 1px solid rgba(201, 163, 138, 0.42);
    border-radius: 8px;
    background: #fff;
    color: #4a3933;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    flex: 0 0 auto;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.clair-owner-nav-link:hover {
    background: #f8f1ec;
    color: #4a3933;
    text-decoration: none;
}

.clair-owner-nav-link.is-active {
    background: #c9a38a;
    border-color: #c9a38a;
    color: #fff;
}

@media (max-width: 782px) {
    .admin-bar .clair-owner-nav-wrap {
        top: 46px;
    }

    .clair-owner-nav {
        padding: 9px 12px;
    }

    .clair-owner-nav-link {
        min-height: 36px;
        padding: 7px 12px;
        font-size: 0.84rem;
    }
}

/* v3.5.0: ACFメニュー取り込み */
.menu-setting-actions {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    flex-wrap: wrap;
    margin: 0 0 14px;
}

.menu-setting-actions .add-new-btn {
    flex: 0 0 auto;
    margin: 0;
}

.acf-menu-import-box {
    flex: 1 1 300px;
    margin: 0;
    padding: 14px;
    border: 1px solid rgba(201, 163, 138, 0.32);
    border-radius: 8px;
    background: #fffaf7;
}

.acf-menu-import-box form {
    margin: 0;
}

.acf-menu-import-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 16px;
    border: 0;
    border-radius: 8px;
    background: #c9a38a;
    color: #fff;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    cursor: pointer;
}

.acf-menu-import-btn:hover {
    background: #b89078;
}

.acf-menu-import-box p {
    margin: 8px 0 0;
    color: #7a6a60;
    font-size: 0.82rem;
    line-height: 1.6;
}

.menu-import-result {
    margin: 0 0 16px;
    padding: 14px 16px;
    border: 1px solid rgba(201, 163, 138, 0.36);
    border-radius: 8px;
    background: #fffaf7;
    color: #4a3933;
    font-size: 0.88rem;
    line-height: 1.7;
}

.menu-import-result p {
    margin: 6px 0 0;
}

@media (max-width: 640px) {
    .menu-setting-actions {
        display: block;
    }

    .menu-setting-actions .add-new-btn,
    .acf-menu-import-btn {
        width: 100%;
    }

    .acf-menu-import-box {
        margin-top: 10px;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    background: linear-gradient(135deg, var(--beige-light) 0%, var(--white) 100%);
    color: var(--text-primary);
    overflow-x: hidden;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(201, 163, 138, 0.1);
    animation: slideDown 0.8s ease-out;
}

@keyframes slideDown {
    from { transform: translateY(-100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: inline-block;
    text-decoration: none;
}

.logo-image {
    height: 70px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 0.5px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--rose-gold), var(--rose-gold-light));
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Hero Section */
.hero {
    margin-top: 85px;
    padding-top: 2rem;
    padding-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--beige-light) 0%, rgba(255, 255, 255, 0.9) 50%, var(--beige) 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 163, 138, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s infinite ease-in-out;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(218, 165, 140, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s infinite ease-in-out reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.05); }
}

.hero-content {
    text-align: center;
    z-index: 1;
    max-width: 900px;
    padding: 2rem;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-logo {
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.2s both;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-main {
    font-family: 'Cormorant Garamond', serif;
    font-size: 7rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--rose-gold) 0%, var(--rose-gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.logo-main ruby rt {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.35em;
    color: var(--rose-gold);
    font-weight: 400;
    text-transform: none;
    letter-spacing: 1px;
}

.logo-main ruby {
    ruby-align: center;
}

.logo-kana {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.9rem;
    color: var(--text-secondary);
    letter-spacing: 2px;
    margin-top: 0.3rem;
    font-weight: 300;
}

@keyframes fadeInUp {
    from { transform: translateY(40px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--rose-gold) 0%, var(--rose-gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.hero-photos {
    width: 100%;
    max-width: 900px;
    margin: 0 auto 3rem;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
    animation: fadeInUp 1s ease-out 0.5s both;
    background: transparent;
}

.hero-photos-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
    box-shadow: 0 20px 60px rgba(74, 57, 51, 0.15);
}

.search-box {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px var(--shadow);
    max-width: 700px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.search-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--rose-gold);
}

.area-section {
    margin-bottom: 0;
}

.search-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 0;
}

.sub-area-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
    margin-top: 0.5rem;
    animation: fadeIn 0.3s ease-out;
}

.level-1-children {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem !important;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.search-item {
    padding: 1rem;
    background: var(--beige-light);
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 4px 12px rgba(201, 163, 138, 0.15);
    position: relative;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.search-item:hover {
    background: var(--beige);
    box-shadow: 0 6px 16px rgba(201, 163, 138, 0.25);
    transform: translateY(-2px);
}

/* エリアボタン（area-parent）のホバー・アクティブ装飾 */
.area-parent {
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* レベル1（都道府県）：ピンクゴールド系 */
.area-parent.level-1 {
    background: linear-gradient(135deg, var(--rose-gold-light) 0%, var(--rose-gold) 100%);
    color: white !important;
    box-shadow: 0 6px 16px rgba(201, 163, 138, 0.3);
    font-size: 1rem;
    font-weight: 700;
}

.area-parent.level-1:hover {
    background: linear-gradient(135deg, var(--rose-gold) 0%, #b8926f 100%);
    box-shadow: 0 8px 20px rgba(201, 163, 138, 0.4);
    transform: translateY(-3px);
}

.area-parent.level-1.active {
    background: linear-gradient(135deg, #b8926f 0%, #a67c57 100%);
    box-shadow: 0 8px 24px rgba(201, 163, 138, 0.5);
    border: 2px solid var(--rose-gold);
}

/* レベル2（市区域）：ベージュ系（通常のsearch-itemと同じ） */
.area-parent.level-2 {
    background: var(--beige-light);
    color: var(--text-primary) !important;
    box-shadow: 0 4px 12px rgba(201, 163, 138, 0.15);
    font-size: 0.9rem;
    font-weight: 700;
    padding: 1.2rem 0.8rem;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: normal;
    line-height: 1.3;
}

.area-parent.level-2:hover {
    background: var(--beige);
    box-shadow: 0 6px 16px rgba(201, 163, 138, 0.25);
    transform: translateY(-2px);
}

.area-parent.level-2.active {
    background: linear-gradient(135deg, var(--rose-gold-light) 0%, var(--rose-gold) 100%);
    color: white !important;
    box-shadow: 0 8px 20px rgba(201, 163, 138, 0.35);
    border: 2px solid var(--rose-gold);
}

.search-item.active {
    background: var(--rose-gold);
    color: white;
    border-color: var(--rose-gold-light);
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.service-tag {
    padding: 0.6rem 1.2rem;
    background: var(--beige-light);
    border-radius: 20px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 3px 10px rgba(201, 163, 138, 0.12);
}

.service-tag:hover {
    background: var(--beige);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(201, 163, 138, 0.2);
}

.service-tag.active {
    background: var(--rose-gold);
    color: white;
    border-color: var(--rose-gold-light);
}

/* 悩み別セクション */
#concerns-section {
    padding: 1.5rem;
    background: rgba(245, 241, 237, 0.5);
    border-radius: 12px;
    border-left: 4px solid var(--rose-gold);
}

.concerns-tags {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.concern-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-primary);
    padding: 0.6rem;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.concern-label:hover {
    background: rgba(201, 163, 138, 0.1);
}

.concern-checkbox {
    cursor: pointer;
    width: 18px;
    height: 18px;
    accent-color: var(--rose-gold);
}

@media (max-width: 768px) {
    .concerns-tags {
        grid-template-columns: 1fr;
    }
}

.search-btn {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, var(--rose-gold), var(--rose-gold-light));
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    box-shadow: 0 6px 20px rgba(201, 163, 138, 0.3);
    position: relative;
}

.search-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(201, 163, 138, 0.45);
}

.search-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(201, 163, 138, 0.35);
}

/* Areas Section */
.areas-section {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--rose-gold);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.area-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px var(--shadow);
    transition: all 0.3s ease;
    cursor: pointer;
}

.area-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(201, 163, 138, 0.3);
}

.area-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.area-count {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Featured Section */
.featured-section {
    background: var(--beige-light);
    padding: 5rem 2rem;
}

.featured-container {
    max-width: 1400px;
    margin: 0 auto;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.salon-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow);
    transition: all 0.3s ease;
}

.salon-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(201, 163, 138, 0.3);
}

.salon-image {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, var(--beige) 0%, var(--beige-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.salon-content {
    padding: 1.5rem;
}

.salon-name {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: var(--text-primary);
}

.salon-kana {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.salon-card-kana {
    font-size: 0.75rem;
    color: #999;
    margin: -0.3rem 0 0.4rem;
    letter-spacing: 0.5px;
}

.salon-location {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.salon-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tag {
    padding: 0.4rem 0.8rem;
    background: var(--beige-light);
    border-radius: 12px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.salon-price {
    font-size: 1.1rem;
    color: var(--rose-gold);
    font-weight: 600;
}

/* List Page */
.page-content {
    margin-top: 90px;
    padding: 3rem 2rem;
    min-height: 100vh;
}

.content-container {
    max-width: 1400px;
    margin: 0 auto;
}

.page-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--rose-gold);
    text-align: center;
}

.salon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
}

.stars {
    color: #FFB800;
    font-size: 1rem;
}

.rating-count {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 968px) {
    .hero h1 {
        font-size: 3rem;
    }

    .search-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nav-links {
        gap: 1.5rem;
        font-size: 0.9rem;
    }

    .logo {
        font-size: 2rem;
    }
}

@media (max-width: 640px) {
    nav {
        padding: 1rem 1rem;
    }
    
    .logo {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }
    
    .nav-links {
        gap: 1rem;
        font-size: 0.75rem;
    }
    
    .hero-logo .logo-main {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
    
    .hero-logo .logo-kana {
        font-size: 0.75rem;
        letter-spacing: 1px;
    }
    
    .hero-logo {
        margin-bottom: 1.5rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-photos {
        margin-bottom: 2rem;
    }

    .search-grid {
        grid-template-columns: 1fr;
    }

    .areas-grid {
        grid-template-columns: 1fr;
    }

    .salon-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   店舗詳細ページ
   ============================================ */

.salon-detail {
    max-width: 1200px;
    margin: 120px auto 60px;
    padding: 0 2rem;
}

/* ギャラリー */
.salon-gallery {
    margin-bottom: 3rem;
}

.gallery-main {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 40px var(--shadow);
}

.gallery-main-image {
    display: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-main-image.active {
    display: block;
}

.gallery-main-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(201,163,138,0.10), rgba(218,165,140,0.18));
    color: #8b7355;
    gap: 12px;
}
.placeholder-icon {
    font-size: 3rem;
    opacity: 0.7;
}
.placeholder-text {
    font-size: 0.92rem;
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: 0.05em;
}

.gallery-thumbnails {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    overflow-x: auto;
}

.thumbnail {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.thumbnail:hover {
    border-color: var(--rose-gold);
}

.thumbnail.active {
    border-color: var(--rose-gold);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* サロンヘッダー */
.salon-header {
    margin-bottom: 2rem;
}

.salon-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.salon-name-kana {
    font-size: 0.9rem;
    color: #999;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.salon-meta {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.salon-categories {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.category-badge {
    background: linear-gradient(135deg, var(--rose-gold), var(--rose-gold-light));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.salon-area {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.salon-conditions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.condition-tag {
    color: var(--rose-gold);
    font-size: 0.9rem;
}

/* 予約ボタン */
.reservation-section {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.btn-reservation {
    flex: 1;
    min-width: 200px;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-line {
    background: #06C755;
    color: white;
    box-shadow: 0 2px 8px rgba(6, 199, 85, 0.3);
}

.btn-line:hover {
    background: #05b04a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(6, 199, 85, 0.4);
}

.btn-line:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(6, 199, 85, 0.3);
}

.line-icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
    flex-shrink: 0;
}

.btn-web {
    background: var(--rose-gold);
    color: white;
}

.btn-web:hover {
    background: var(--rose-gold-light);
    transform: translateY(-2px);
}

.btn-phone {
    background: var(--text-primary);
    color: white;
}

.btn-phone:hover {
    background: var(--text-secondary);
    transform: translateY(-2px);
}

/* セクション */
.salon-description,
.salon-menu,
.salon-info,
.salon-blog-section,
.salon-reviews {
    margin: 3rem 0;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px var(--shadow);
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--rose-gold);
    padding-bottom: 0.5rem;
}

.description-content {
    line-height: 1.8;
    color: var(--text-secondary);
}

/* メニューリスト */
.menu-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: var(--beige-light);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.menu-item:hover {
    background: var(--beige);
    transform: translateX(5px);
}

.menu-info h3 {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.menu-duration {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.menu-price {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--rose-gold);
}

/* セットメニュー */
.salon-set-menu {
    margin: 3rem 0;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px var(--shadow);
}

.set-menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.set-menu-card {
    background: var(--beige-light);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.set-menu-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.set-menu-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.set-menu-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.set-menu-card:hover .set-menu-image img {
    transform: scale(1.05);
}

.set-menu-content {
    padding: 1.5rem;
}

.set-menu-name {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.set-menu-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--rose-gold);
    margin-bottom: 0.8rem;
}

.set-menu-duration {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.set-menu-description {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(201, 163, 138, 0.2);
}

@media (max-width: 768px) {
    .set-menu-grid {
        grid-template-columns: 1fr;
    }
}

/* 店舗情報テーブル */
.info-table {
    width: 100%;
    border-collapse: collapse;
}

.info-table tr {
    border-bottom: 1px solid var(--beige);
}

.info-table th {
    text-align: left;
    padding: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    width: 150px;
    vertical-align: top;
}

.info-table td {
    padding: 1rem;
    color: var(--text-secondary);
}

/* ブロググリッド */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow);
}

.blog-thumbnail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 1.5rem;
}

.blog-type-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.blog-type-campaign {
    background: #ff6b6b;
    color: white;
}

.blog-type-new_service {
    background: #4ecdc4;
    color: white;
}

.blog-type-event {
    background: #ffd93d;
    color: var(--text-primary);
}

.blog-type-before_after {
    background: var(--rose-gold);
    color: white;
}

.blog-type-hairstyle {
    background: var(--rose-gold);
    color: white;
}

.blog-type-other {
    background: var(--beige-dark);
    color: white;
}

.blog-title {
    font-size: 1.1rem;
    margin: 0.5rem 0;
    color: var(--text-primary);
}

.blog-date {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.hair-length-tags {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.hair-length-tag {
    background: var(--beige);
    padding: 0.2rem 0.6rem;
    border-radius: 10px;
    font-size: 0.8rem;
    color: var(--text-primary);
}

/* ============================================
   一覧・検索ページ
   ============================================ */

.archive-salon {
    margin-top: 100px;
}

.search-filter {
    background: white;
    padding: 3rem 0;
    box-shadow: 0 5px 20px var(--shadow);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.page-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
    text-align: center;
}

.filter-form {
    background: var(--beige-light);
    padding: 2rem;
    border-radius: 20px;
}

.filter-group {
    margin-bottom: 2rem;
}

.filter-label {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.filter-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.filter-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.btn-filter-submit,
.btn-filter-reset {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-right: 1rem;
}

.btn-filter-submit {
    background: var(--rose-gold);
    color: white;
}

.btn-filter-submit:hover {
    background: var(--rose-gold-light);
    transform: translateY(-2px);
}

.btn-filter-reset {
    background: white;
    color: var(--text-primary);
    border: 2px solid var(--beige-dark);
}

.btn-filter-reset:hover {
    background: var(--beige-light);
}

/* サロン一覧 */
.salon-list {
    padding: 3rem 0;
}

.result-count {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.count-number {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--rose-gold);
}

.salon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.salon-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.3s ease;
}

.salon-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--shadow);
}

.salon-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.salon-card-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.salon-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.salon-card:hover .salon-card-image img {
    transform: scale(1.1);
}

.no-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(201,163,138,0.10), rgba(218,165,140,0.18));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.92rem;
    color: #8b7355;
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: 0.05em;
}

.badge-new {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ff6b6b;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.badge-today-available {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, var(--rose-gold), var(--rose-gold-light));
    color: var(--white);
    padding: 0.45rem 0.85rem;
    border-radius: 18px;
    font-size: 0.82rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(74, 57, 51, 0.18);
}

.salon-card-content {
    padding: 1.5rem;
}

.salon-card-title {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.salon-card-area {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.salon-card-tags {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.tag {
    background: var(--beige);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    color: var(--text-primary);
}

.salon-card-conditions {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.salon-card-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--rose-gold);
}

.clair-today-availability {
    margin: 1.4rem 0 0;
    padding: 1rem 1.1rem;
    border: 1px solid rgba(201, 163, 138, 0.35);
    border-radius: 16px;
    background: rgba(245, 241, 237, 0.75);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.clair-today-availability__headline {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    flex-wrap: wrap;
}

.clair-today-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, var(--rose-gold), var(--rose-gold-light));
    color: var(--white);
    padding: 0.42rem 0.85rem;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
}

.clair-today-times {
    color: var(--text-primary);
    font-size: 0.98rem;
    font-weight: 600;
}

.clair-today-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    background: var(--white);
    color: var(--rose-gold);
    border: 1px solid rgba(201, 163, 138, 0.45);
    text-decoration: none;
    font-weight: 700;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.clair-today-cta:hover {
    background: var(--rose-gold);
    color: var(--white);
}

@media (max-width: 640px) {
    .clair-today-availability {
        align-items: stretch;
    }

    .clair-today-availability__headline,
    .clair-today-cta {
        width: 100%;
    }

    .clair-today-cta {
        text-align: center;
    }
}

.no-results {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-secondary);
}

.no-results p {
    margin: 1rem 0;
    font-size: 1.1rem;
}

/* ページネーション */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.pagination ul {
    display: flex;
    gap: 0.5rem;
    list-style: none;
}

.pagination a,
.pagination span {
    padding: 0.8rem 1.2rem;
    background: white;
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.pagination a:hover {
    background: var(--rose-gold);
    color: white;
}

.pagination .current {
    background: var(--rose-gold);
    color: white;
}

/* ============================================
   フロントエンド編集フォーム
   ============================================ */

.salon-edit-page,
.salon-blog-page {
    max-width: 800px;
    margin: 120px auto 60px;
    padding: 0 2rem;
}

.success-message {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.error-message {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.edit-actions {
    margin-bottom: 2rem;
}

.btn-preview {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: var(--rose-gold);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-preview:hover {
    background: var(--rose-gold-light);
    transform: translateY(-2px);
}

.salon-edit-form,
.blog-post-form {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px var(--shadow);
}

.form-section {
    margin-bottom: 3rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.required {
    color: #ff6b6b;
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="url"],
.form-group input[type="number"],
.form-group input[type="file"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--beige);
    border-radius: 10px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.readonly-field {
    padding: 0.8rem;
    background: #f5f1ed;
    border: 2px solid #e8e0d5;
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 1rem;
    min-height: 1.5em;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--rose-gold);
}

.form-group small {
    display: block;
    margin-top: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.checkbox-group {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

/* 得意技術セクション */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.service-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--beige-light);
    border: 2px solid var(--beige);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-checkbox:hover {
    background: var(--beige);
    border-color: var(--rose-gold);
}

.service-checkbox input[type="checkbox"] {
    cursor: pointer;
    width: 18px;
    height: 18px;
    accent-color: var(--rose-gold);
}

.service-checkbox input[type="checkbox"]:checked + span {
    color: var(--rose-gold);
    font-weight: 600;
}

.service-checkbox input[type="checkbox"]:checked {
    accent-color: var(--rose-gold);
}

/* 悩み別セクション */
.concerns-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.8rem;
}

.concern-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem;
    background: white;
    border: 1px solid var(--beige);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.concern-checkbox:hover {
    background: var(--beige-light);
    border-color: var(--rose-gold);
}

.concern-checkbox input[type="checkbox"] {
    cursor: pointer;
    width: 16px;
    height: 16px;
    accent-color: var(--rose-gold);
}

.concern-checkbox span {
    font-size: 0.9rem;
    color: var(--text-primary);
}

.field-description {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.form-actions {
    margin-top: 2rem;
    text-align: center;
}

.btn-submit {
    padding: 1rem 3rem;
    background: var(--rose-gold);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: var(--rose-gold-light);
    transform: translateY(-2px);
}

.help-section {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--beige-light);
    border-radius: 15px;
}

.help-section h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.help-section ul {
    list-style-position: inside;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ビフォーアフターギャラリー */
.before-after-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.before-after-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.before-after-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow);
}

.before-after-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.before-image,
.after-image {
    position: relative;
}

.before-image img,
.after-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.before-image .label,
.after-image .label {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 10px;
    font-size: 0.8rem;
}

.hair-length-badge {
    padding: 0.5rem 1rem;
    text-align: center;
    background: var(--beige);
    color: var(--text-primary);
    font-weight: 600;
}

.salon-name-small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* ブログ投稿リスト */
.my-blogs-section {
    margin-top: 3rem;
}

.blog-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.blog-list-item {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 3px 10px var(--shadow);
}

.blog-list-item .blog-date {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.blog-list-item .blog-title {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

/* ============================================
   ヘアギャラリー（トップページ）
   ============================================ */

.hair-length-filter {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 2rem;
    background: white;
    border: 2px solid var(--beige-dark);
    border-radius: 50px;
    color: var(--text-primary);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background: var(--beige-light);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: var(--rose-gold);
    border-color: var(--rose-gold);
    color: white;
}

.hair-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.hair-gallery-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.hair-gallery-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px var(--shadow);
}

.hair-image {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.hair-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.hair-gallery-card:hover .hair-image img {
    transform: scale(1.1);
}

.hair-length-badge-small {
    padding: 0.5rem 1rem;
    text-align: center;
    background: var(--beige);
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.9rem;
}

/* ============================================
   ブログ投稿ページ（管理画面誘導版）
   ============================================ */

.blog-info-box {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px var(--shadow);
    margin-bottom: 3rem;
}

.blog-info-box h2 {
    color: var(--text-primary);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.blog-info-box > p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.btn-new-post {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, var(--rose-gold), var(--rose-gold-light));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.btn-new-post:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--shadow);
}

.blog-guide,
.blog-tips {
    margin-top: 2rem;
    padding: 2rem;
    background: var(--beige-light);
    border-radius: 15px;
}

.blog-guide h3,
.blog-tips h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.blog-guide ol {
    padding-left: 1.5rem;
    line-height: 2;
    color: var(--text-secondary);
}

.blog-guide ol li ul {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    list-style-type: disc;
    padding-left: 1.5rem;
}

.blog-tips ul {
    list-style-position: inside;
    line-height: 2;
    color: var(--text-secondary);
}

.blog-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.btn-edit-small {
    padding: 0.4rem 1rem;
    background: var(--rose-gold);
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-edit-small:hover {
    background: var(--rose-gold-light);
    transform: translateY(-2px);
}

.gallery-info {
    margin-top: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.no-posts {
    text-align: center;
    padding: 3rem;
    background: var(--beige-light);
    border-radius: 15px;
}

.no-posts p {
    color: var(--text-secondary);
    margin: 0.5rem 0;
    line-height: 1.8;
}

/* ==========================================================================
   Google Maps スタイル
   ========================================================================== */

.salon-map {
    margin: 3rem 0;
}

.map-container {
    margin-top: 1.5rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow);
}

.acf-map {
    width: 100%;
    height: 400px;
    border-radius: 15px;
}

.acf-map img {
    max-width: inherit !important;
}

.acf-map-edit {
    width: 100%;
    border-radius: 10px;
    border: 2px solid var(--beige);
    overflow: hidden;
}

.map-search {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.map-search input[type="text"] {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid var(--beige);
    border-radius: 8px;
    font-size: 1rem;
}

.btn-map-search {
    padding: 12px 30px;
    background: var(--rose-gold);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-map-search:hover {
    background: var(--rose-gold-light);
    transform: translateY(-2px);
}

.field-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 10px;
    line-height: 1.6;
}



/* 会社概要・利用規約ページ */
.about-page {
    padding-top: 80px; /* ヘッダー分の余白 */
}

.about-hero {
    background: linear-gradient(135deg, #f5f0eb 0%, #fff 100%);
    padding: 60px 20px;
    text-align: center;
}

.about-title {
    font-size: 2.5rem;
    color: var(--rose-gold);
    margin-bottom: 10px;
    font-family: 'Cormorant Garamond', serif;
}

.about-subtitle {
    font-size: 1.1rem;
    color: #666;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
}

.about-section {
    margin-bottom: 50px;
}

.section-title {
    font-size: 1.8rem;
    color: var(--rose-gold);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--rose-gold);
    font-family: 'Cormorant Garamond', serif;
}

.section-content {
    line-height: 1.8;
    color: #333;
}

/* モバイル対応 */
@media (max-width: 768px) {
    .about-page {
        padding-top: 70px;
    }
    
    .about-hero {
        padding: 40px 20px;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .about-content {
        padding: 40px 20px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
}

/* v3.5.6: salon-info landing page */
.clair-salon-lp,
.clair-salon-lp * {
    box-sizing: border-box;
    letter-spacing: 0;
}

.clair-salon-lp {
    --lp-ink: #342a26;
    --lp-muted: #725f56;
    --lp-rose: #b97d6d;
    --lp-rose-dark: #8d564a;
    --lp-blush: #f7e9e5;
    --lp-pale: #fbf7f4;
    --lp-line: #ead7cf;
    --lp-green: #06c755;
    padding-top: 80px;
    overflow: hidden;
    color: var(--lp-ink);
    background: #fff;
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.8;
}

.clair-salon-lp img {
    display: block;
    max-width: 100%;
    height: auto;
}

.clair-salon-lp h1,
.clair-salon-lp h2,
.clair-salon-lp h3,
.clair-salon-lp p,
.clair-salon-lp ul,
.clair-salon-lp ol,
.clair-salon-lp figure {
    margin-top: 0;
}

.clair-salon-lp h2 {
    margin-bottom: 22px;
    color: var(--lp-ink);
    font-family: 'Cormorant Garamond', 'Noto Sans JP', serif;
    font-size: 40px;
    font-weight: 600;
    line-height: 1.35;
    text-align: center;
}

.clair-salon-lp__wide,
.clair-salon-lp__narrow {
    width: min(100% - 48px, 1180px);
    margin-inline: auto;
}

.clair-salon-lp__narrow {
    width: min(100% - 48px, 820px);
}

.clair-salon-lp__section {
    padding: 92px 0;
}

.clair-salon-lp__section-kicker {
    margin-bottom: 10px;
    color: var(--lp-rose-dark);
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
}

.clair-salon-lp__lead {
    max-width: 760px;
    margin: 0 auto 38px;
    color: var(--lp-muted);
    font-size: 16px;
    text-align: center;
}

.clair-salon-lp__hero {
    position: relative;
    display: flex;
    min-height: min(720px, 78svh);
    align-items: center;
    isolation: isolate;
}

.clair-salon-lp__hero-image,
.clair-salon-lp__hero-shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.clair-salon-lp__hero-image {
    z-index: -2;
    object-fit: cover;
    object-position: center;
}

.clair-salon-lp__hero-shade {
    z-index: -1;
    background: rgba(35, 25, 21, 0.6);
}

.clair-salon-lp__hero-inner {
    width: min(100% - 48px, 1180px);
    margin-inline: auto;
    padding: 72px 0;
    color: #fff;
}

.clair-salon-lp__eyebrow {
    margin-bottom: 18px;
    font-size: 15px;
    font-weight: 600;
}

.clair-salon-lp__hero h1 {
    max-width: 760px;
    margin-bottom: 24px;
    color: #fff;
    font-family: 'Cormorant Garamond', 'Noto Sans JP', serif;
    font-size: 64px;
    font-weight: 600;
    line-height: 1.22;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}

.clair-salon-lp__hero-copy {
    max-width: 700px;
    margin-bottom: 22px;
    font-size: 18px;
    line-height: 1.9;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.5);
}

.clair-salon-lp__free-badge {
    display: inline-block;
    margin-bottom: 24px;
    padding: 8px 14px;
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.16);
    font-size: 16px;
    font-weight: 700;
}

.clair-salon-lp__line-button {
    display: inline-flex;
    min-height: 54px;
    max-width: 100%;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border: 2px solid var(--lp-green);
    border-radius: 6px;
    background: var(--lp-green);
    box-shadow: 0 8px 20px rgba(6, 199, 85, 0.22);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.clair-salon-lp__line-button:hover,
.clair-salon-lp__line-button:focus-visible {
    box-shadow: 0 10px 24px rgba(6, 199, 85, 0.3);
    color: #fff;
    transform: translateY(-2px);
}

.clair-salon-lp__hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 24px;
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
    font-size: 13px;
}

.clair-salon-lp__hero-points li::before {
    content: "✓";
    margin-right: 7px;
    color: #fff;
    font-weight: 700;
}

.clair-salon-lp__intro {
    background: #fff;
}

.clair-salon-lp__intro .clair-salon-lp__narrow {
    position: relative;
    padding-left: 42px;
    border-left: 3px solid var(--lp-rose);
}

.clair-salon-lp__intro h2,
.clair-salon-lp__intro .clair-salon-lp__section-kicker {
    text-align: left;
}

.clair-salon-lp__intro p:not(.clair-salon-lp__section-kicker) {
    margin-bottom: 18px;
    color: var(--lp-muted);
    font-size: 16px;
}

.clair-salon-lp__problems,
.clair-salon-lp__fit,
.clair-salon-lp__faq {
    background: var(--lp-pale);
}

.clair-salon-lp__problem-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.clair-salon-lp__problem-grid img {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(70, 48, 40, 0.1);
    object-fit: cover;
}

.clair-salon-lp__features {
    background: #fff;
}

.clair-salon-lp__feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    align-items: start;
}

.clair-salon-lp__feature {
    overflow: hidden;
    border: 1px solid var(--lp-line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(70, 48, 40, 0.07);
}

.clair-salon-lp__feature summary {
    position: relative;
    cursor: pointer;
    list-style: none;
}

.clair-salon-lp__feature summary::-webkit-details-marker {
    display: none;
}

.clair-salon-lp__feature summary img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.clair-salon-lp__feature summary span {
    display: block;
    min-height: 44px;
    padding: 10px 42px 10px 14px;
    color: var(--lp-rose-dark);
    font-size: 13px;
    font-weight: 700;
}

.clair-salon-lp__feature summary span::after {
    position: absolute;
    right: 15px;
    bottom: 10px;
    content: "+";
    font-size: 20px;
    line-height: 1;
}

.clair-salon-lp__feature[open] summary span::after {
    content: "−";
}

.clair-salon-lp__feature-body {
    padding: 18px;
    border-top: 1px solid var(--lp-line);
    color: var(--lp-muted);
    font-size: 14px;
}

.clair-salon-lp__feature-body p:last-child {
    margin-bottom: 0;
}

.clair-salon-lp__feature-body img {
    width: 100%;
    margin-top: 16px;
    border-radius: 6px;
}

.clair-salon-lp__menu-support {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 48px;
    align-items: center;
    margin-top: 72px;
    padding: 48px 0;
    border-top: 1px solid var(--lp-line);
    border-bottom: 1px solid var(--lp-line);
}

.clair-salon-lp__menu-support h3 {
    margin-bottom: 14px;
    color: var(--lp-ink);
    font-family: 'Cormorant Garamond', 'Noto Sans JP', serif;
    font-size: 32px;
    line-height: 1.4;
}

.clair-salon-lp__menu-support p:not(.clair-salon-lp__section-kicker) {
    margin-bottom: 0;
    color: var(--lp-muted);
}

.clair-salon-lp__menu-support .clair-salon-lp__section-kicker {
    text-align: left;
}

.clair-salon-lp__menu-support img {
    width: 100%;
    border-radius: 8px;
}

.clair-salon-lp__center-cta {
    margin-top: 48px;
    text-align: center;
}

.clair-salon-lp__comparison {
    background: var(--lp-blush);
}

.clair-salon-lp__table-scroll {
    overflow-x: auto;
    border: 1px solid var(--lp-line);
    border-radius: 8px;
    background: #fff;
}

.clair-salon-lp table {
    width: 100%;
    border-collapse: collapse;
}

.clair-salon-lp table th,
.clair-salon-lp table td {
    padding: 18px 20px;
    border-right: 1px solid var(--lp-line);
    border-bottom: 1px solid var(--lp-line);
    color: var(--lp-muted);
    font-size: 15px;
    text-align: left;
    vertical-align: middle;
}

.clair-salon-lp table tr:last-child th,
.clair-salon-lp table tr:last-child td {
    border-bottom: 0;
}

.clair-salon-lp table th:last-child,
.clair-salon-lp table td:last-child {
    border-right: 0;
}

.clair-salon-lp__comparison thead th {
    background: var(--lp-ink);
    color: #fff;
    font-weight: 700;
    text-align: center;
}

.clair-salon-lp__comparison tbody th {
    width: 22%;
    background: #fffaf8;
    color: var(--lp-ink);
    font-weight: 700;
}

.clair-salon-lp__comparison tbody td:nth-child(2) {
    background: #fff4f0;
    color: var(--lp-rose-dark);
}

.clair-salon-lp__comparison-note {
    max-width: 820px;
    margin: 30px auto 0;
    color: var(--lp-muted);
    text-align: center;
}

.clair-salon-lp__comparison-note p:last-child {
    margin-bottom: 0;
}

.clair-salon-lp__operation {
    background: #fff;
}

.clair-salon-lp__operation-steps {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
    margin: 38px 0 22px;
    padding: 0;
    counter-reset: none;
    list-style: none;
}

.clair-salon-lp__operation-steps li {
    position: relative;
    min-height: 190px;
    padding: 24px 16px;
    border: 1px solid var(--lp-line);
    border-radius: 8px;
    background: #fff;
    text-align: center;
}

.clair-salon-lp__operation-steps li:not(:last-child)::after {
    position: absolute;
    top: 50%;
    right: -11px;
    z-index: 2;
    width: 20px;
    height: 20px;
    content: "›";
    color: var(--lp-rose);
    font-size: 24px;
    line-height: 18px;
}

.clair-salon-lp__operation-steps span,
.clair-salon-lp__operation-steps strong,
.clair-salon-lp__operation-steps small {
    display: block;
}

.clair-salon-lp__operation-steps span {
    margin-bottom: 18px;
    color: var(--lp-rose-dark);
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    font-weight: 700;
}

.clair-salon-lp__operation-steps strong {
    margin-bottom: 10px;
    color: var(--lp-ink);
    font-size: 16px;
}

.clair-salon-lp__operation-steps small {
    color: var(--lp-muted);
    font-size: 12px;
    line-height: 1.7;
}

.clair-salon-lp__operation-note {
    margin-bottom: 0;
    padding: 12px 16px;
    border-left: 3px solid var(--lp-rose);
    background: var(--lp-pale);
    color: var(--lp-muted);
    font-size: 14px;
    text-align: center;
}

.clair-salon-lp__fit-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.clair-salon-lp__fit-grid figure {
    overflow: hidden;
    margin-bottom: 0;
    border: 1px solid var(--lp-line);
    border-radius: 8px;
    background: #fff;
}

.clair-salon-lp__fit-grid img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.clair-salon-lp__fit-grid figcaption {
    min-height: 78px;
    padding: 16px 14px;
    color: var(--lp-ink);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.6;
    text-align: center;
}

.clair-salon-lp__pricing {
    background: var(--lp-ink);
    color: #fff;
}

.clair-salon-lp__pricing h2,
.clair-salon-lp__pricing .clair-salon-lp__section-kicker {
    color: #fff;
}

.clair-salon-lp__price-panel {
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 8px;
    background: #fff;
    color: var(--lp-ink);
}

.clair-salon-lp__price-label {
    margin-bottom: 10px;
    color: var(--lp-rose-dark);
    font-weight: 700;
    text-align: center;
}

.clair-salon-lp__price-main {
    margin-bottom: 26px;
    text-align: center;
}

.clair-salon-lp__price-main strong,
.clair-salon-lp__price-main span {
    display: block;
}

.clair-salon-lp__price-main strong {
    color: var(--lp-rose-dark);
    font-family: 'Cormorant Garamond', 'Noto Sans JP', serif;
    font-size: 46px;
    line-height: 1.35;
}

.clair-salon-lp__price-main span {
    color: var(--lp-muted);
    font-size: 14px;
}

.clair-salon-lp__price-panel ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 28px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.clair-salon-lp__price-panel li {
    position: relative;
    padding-left: 24px;
    color: var(--lp-muted);
    font-size: 14px;
}

.clair-salon-lp__price-panel li::before {
    position: absolute;
    left: 0;
    content: "✓";
    color: var(--lp-rose-dark);
    font-weight: 700;
}

.clair-salon-lp__price-message {
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    text-align: center;
}

.clair-salon-lp__flow {
    background: #fff;
}

.clair-salon-lp__flow-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin: 36px 0 0;
    padding: 0;
    list-style: none;
}

.clair-salon-lp__flow-list li {
    position: relative;
    min-height: 190px;
    padding: 26px 20px;
    border-top: 3px solid var(--lp-rose);
    background: var(--lp-pale);
}

.clair-salon-lp__flow-list span {
    display: block;
    margin-bottom: 24px;
    color: var(--lp-rose-dark);
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    font-weight: 600;
}

.clair-salon-lp__flow-list strong {
    display: block;
    margin-bottom: 8px;
    color: var(--lp-ink);
}

.clair-salon-lp__flow-list p {
    margin-bottom: 0;
    color: var(--lp-muted);
    font-size: 13px;
}

.clair-salon-lp__faq-list {
    display: grid;
    gap: 12px;
}

.clair-salon-lp__faq-list details {
    border: 1px solid var(--lp-line);
    border-radius: 8px;
    background: #fff;
}

.clair-salon-lp__faq-list summary {
    position: relative;
    min-height: 58px;
    padding: 16px 52px 16px 20px;
    cursor: pointer;
    color: var(--lp-ink);
    font-size: 15px;
    font-weight: 700;
    list-style: none;
}

.clair-salon-lp__faq-list summary::-webkit-details-marker {
    display: none;
}

.clair-salon-lp__faq-list summary::before {
    margin-right: 10px;
    content: "Q.";
    color: var(--lp-rose-dark);
}

.clair-salon-lp__faq-list summary::after {
    position: absolute;
    top: 16px;
    right: 20px;
    content: "+";
    color: var(--lp-rose-dark);
    font-size: 22px;
}

.clair-salon-lp__faq-list details[open] summary::after {
    content: "−";
}

.clair-salon-lp__faq-list details p {
    margin: 0;
    padding: 0 20px 20px 54px;
    color: var(--lp-muted);
    font-size: 14px;
}

.clair-salon-lp__legal {
    background: #fff;
}

.clair-salon-lp__legal .clair-salon-lp__table-scroll {
    box-shadow: none;
}

.clair-salon-lp__legal th {
    width: 210px;
    background: var(--lp-pale);
    color: var(--lp-ink);
    font-weight: 700;
}

.clair-salon-lp__legal a {
    color: var(--lp-rose-dark);
    font-weight: 700;
}

.clair-salon-lp__final-cta {
    padding: 88px 0;
    background: var(--lp-rose-dark);
    color: #fff;
    text-align: center;
}

.clair-salon-lp__final-cta h2,
.clair-salon-lp__final-cta .clair-salon-lp__section-kicker {
    color: #fff;
}

.clair-salon-lp__final-cta p {
    margin-bottom: 28px;
    font-size: 18px;
}

.clair-salon-lp__final-cta small {
    display: block;
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 960px) {
    .clair-salon-lp h2 {
        font-size: 34px;
    }

    .clair-salon-lp__hero h1 {
        font-size: 52px;
    }

    .clair-salon-lp__problem-grid,
    .clair-salon-lp__fit-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .clair-salon-lp__feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .clair-salon-lp__operation-steps {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .clair-salon-lp__operation-steps li:not(:last-child)::after {
        display: none;
    }

    .clair-salon-lp__flow-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .clair-salon-lp {
        padding-top: 70px;
    }

    .clair-salon-lp__wide,
    .clair-salon-lp__narrow,
    .clair-salon-lp__hero-inner {
        width: min(100% - 32px, 1180px);
    }

    .clair-salon-lp__section {
        padding: 64px 0;
    }

    .clair-salon-lp h2 {
        margin-bottom: 18px;
        font-size: 28px;
    }

    .clair-salon-lp__section-kicker {
        font-size: 12px;
    }

    .clair-salon-lp__hero {
        min-height: 70svh;
    }

    .clair-salon-lp__hero-image {
        object-position: 58% center;
    }

    .clair-salon-lp__hero-shade {
        background: rgba(35, 25, 21, 0.68);
    }

    .clair-salon-lp__hero-inner {
        padding: 54px 0;
    }

    .clair-salon-lp__hero h1 {
        font-size: 38px;
        line-height: 1.28;
    }

    .clair-salon-lp__hero-copy {
        font-size: 15px;
        line-height: 1.8;
    }

    .clair-salon-lp__line-button {
        width: 100%;
        padding-inline: 18px;
        font-size: 15px;
    }

    .clair-salon-lp__hero-points {
        gap: 7px 16px;
        font-size: 12px;
    }

    .clair-salon-lp__intro .clair-salon-lp__narrow {
        padding-left: 20px;
    }

    .clair-salon-lp__intro p:not(.clair-salon-lp__section-kicker),
    .clair-salon-lp__lead {
        font-size: 14px;
    }

    .clair-salon-lp__problem-grid {
        gap: 10px;
    }

    .clair-salon-lp__feature-grid,
    .clair-salon-lp__menu-support,
    .clair-salon-lp__price-panel ul,
    .clair-salon-lp__flow-list {
        grid-template-columns: 1fr;
    }

    .clair-salon-lp__menu-support {
        gap: 24px;
        margin-top: 52px;
        padding: 36px 0;
    }

    .clair-salon-lp__menu-support h3 {
        font-size: 26px;
    }

    .clair-salon-lp table {
        min-width: 620px;
    }

    .clair-salon-lp table th,
    .clair-salon-lp table td {
        padding: 14px 12px;
        font-size: 13px;
    }

    .clair-salon-lp__operation-steps {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .clair-salon-lp__operation-steps li {
        min-height: 170px;
        padding: 20px 12px;
    }

    .clair-salon-lp__fit-grid {
        grid-template-columns: 1fr;
    }

    .clair-salon-lp__fit-grid figcaption {
        min-height: auto;
    }

    .clair-salon-lp__price-panel {
        padding: 28px 20px;
    }

    .clair-salon-lp__price-main strong {
        font-size: 38px;
    }

    .clair-salon-lp__flow-list li {
        min-height: auto;
    }

    .clair-salon-lp__faq-list summary {
        padding-left: 16px;
        font-size: 14px;
    }

    .clair-salon-lp__faq-list details p {
        padding: 0 16px 18px;
        font-size: 13px;
    }

    .clair-salon-lp__legal th {
        width: 150px;
    }

    .clair-salon-lp__final-cta {
        padding: 64px 0;
    }

    .clair-salon-lp__final-cta p {
        font-size: 15px;
    }
}
