/* ===========================
   グローバル設定
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* メインカラー: 柔らかいブルー（安心・清潔感） */
    --primary-color: #7ba9c8;
    --primary-light: #9ac0db;
    --primary-dark: #5a8db0;
    
    /* アクセントカラー */
    --secondary-color: #a8c9e0;
    --accent-color: #f7b4a3;
    
    /* ニュートラルカラー */
    --dark-color: #2c3e50;
    --text-dark: #333333;
    --text-medium: #555555;
    --text-light: #777777;
    
    /* 背景色 */
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --bg-cream: #fefdf8;
    
    /* ステータスカラー */
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --info-color: #17a2b8;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--text-dark);
    line-height: 1.8;
    overflow-x: hidden;
    background: var(--bg-white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Noto Serif JP', serif;
    font-weight: 600;
    line-height: 1.4;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* ===========================
   コンテナ
   =========================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===========================
   ナビゲーション
   =========================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.6rem;
    font-family: 'Noto Serif JP', serif;
    font-weight: 700;
    color: var(--primary-color);
}

.logo i {
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* ===========================
   ヒーローセクション
   =========================== */
.hero {
    height: 100vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, rgba(123, 169, 200, 0.92), rgba(168, 201, 224, 0.88)),
                url('https://images.unsplash.com/photo-1519415387722-a1c3bbef716c?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.parallax-section {
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.15);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--bg-white);
    padding: 0 20px;
    max-width: 900px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 25px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInDown 1s ease-out;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    font-weight: 400;
    line-height: 1.9;
    opacity: 0.95;
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

.hero-keywords {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

.keyword-badge {
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.05rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.hero-features {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.5s backwards;
}

.hero-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 20px 25px;
    border-radius: 50%;
    width: 130px;
    height: 130px;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-feature-item i {
    font-size: 2rem;
    color: var(--bg-white);
}

.hero-feature-item span {
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.4;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.cta-button.primary {
    background: var(--bg-white);
    color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.cta-button.secondary {
    background: transparent;
    color: var(--bg-white);
    border: 2px solid var(--bg-white);
}

.cta-button.secondary:hover {
    background: var(--bg-white);
    color: var(--primary-color);
}

.cta-button.white {
    background: var(--bg-white);
    color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.cta-button.white:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    gap: 8px;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    width: 2px;
    height: 15px;
    background: var(--bg-white);
    border-radius: 2px;
    opacity: 0.7;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

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

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

/* ===========================
   セクション共通
   =========================== */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    font-size: 0.85rem;
    color: var(--primary-color);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-weight: 600;
}

.section-tag.white-text {
    color: var(--bg-white);
}

.section-title {
    font-size: 2.8rem;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.section-title.white-text {
    color: var(--bg-white);
}

.section-description {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 650px;
    margin: 0 auto;
}

.section-description.white-text {
    color: rgba(255, 255, 255, 0.95);
}

/* ===========================
   お悩みチェックリストセクション
   =========================== */
.concerns-section {
    background: var(--bg-white);
    padding: 80px 0;
}

.concerns-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 20px;
}

.concerns-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.concerns-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.concern-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px 25px;
    background: var(--bg-cream);
    border-radius: 12px;
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-light);
}

.concern-item:hover {
    background: var(--bg-white);
    box-shadow: 0 5px 20px rgba(123, 169, 200, 0.15);
    transform: translateX(5px);
    border-left-color: var(--primary-color);
}

.concern-item i {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.concern-item p {
    color: var(--text-dark);
    line-height: 1.7;
    margin: 0;
    font-size: 0.95rem;
}

.concerns-cta {
    text-align: center;
    padding: 40px 30px;
    background: linear-gradient(135deg, rgba(123, 169, 200, 0.1), rgba(168, 201, 224, 0.1));
    border-radius: 20px;
    border: 2px solid var(--primary-light);
}

.concerns-message {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 600;
}

/* ===========================
   特徴セクション
   =========================== */
.about-section {
    background: var(--bg-cream);
}

/* 写真ラベル共通スタイル */
.photo-label {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.75);
    color: var(--bg-white);
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    z-index: 10;
}

.photo-label.large {
    font-size: 1rem;
    padding: 12px 15px;
}

/* 写真ショーケース */
.photo-showcase {
    margin: 50px 0 60px;
}

.showcase-main {
    margin-bottom: 25px;
}

.photo-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.photo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

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

.photo-item.large {
    height: 400px;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.showcase-grid .photo-item {
    height: 200px;
}

/* アバウト写真付きカード */
.about-image-wrapper {
    position: relative;
    width: 100%;
    height: 200px;
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
}

.about-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.about-item {
    text-align: center;
    padding: 45px 35px;
    background: var(--bg-white);
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.about-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(74, 139, 111, 0.15);
}

.about-icon {
    width: 85px;
    height: 85px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    font-size: 2.2rem;
}

.about-item h3 {
    font-size: 1.5rem;
    margin-bottom: 18px;
    color: var(--dark-color);
}

.about-item p {
    color: var(--text-medium);
    line-height: 1.9;
}

/* ===========================
   お悩みセクション
   =========================== */
.trouble-section {
    background: linear-gradient(135deg, rgba(123, 169, 200, 0.94), rgba(168, 201, 224, 0.92)),
                url('https://images.unsplash.com/photo-1576091160399-112ba8d25d1d?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.trouble-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.05);
}

.trouble-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    position: relative;
    z-index: 1;
    margin-bottom: 50px;
}

.trouble-card {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    padding: 35px 28px;
    border-radius: 18px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.trouble-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.trouble-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--warning-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    font-size: 1.8rem;
}

.trouble-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--dark-color);
}

.trouble-card p {
    color: var(--text-medium);
    line-height: 1.7;
    font-size: 0.95rem;
}

.trouble-cta {
    text-align: center;
    position: relative;
    z-index: 1;
}

.trouble-message {
    color: var(--bg-white);
    font-size: 1.15rem;
    margin-bottom: 25px;
    font-weight: 500;
}

/* ===========================
   メニュー・料金セクション
   =========================== */
.menu-section {
    background: var(--bg-light);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.menu-card {
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.menu-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.menu-card.featured {
    border: 3px solid var(--primary-color);
}

.menu-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 10;
}

.menu-header {
    padding: 30px 25px 20px;
    text-align: center;
    background: var(--bg-cream);
}

.menu-header h3 {
    font-size: 1.7rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.menu-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Noto Serif JP', serif;
}

.price-unit {
    font-size: 1rem;
    color: var(--text-light);
}

.menu-image-placeholder {
    height: 200px;
    background: linear-gradient(135deg, rgba(123, 169, 200, 0.5), rgba(168, 201, 224, 0.5)),
                url('https://images.unsplash.com/photo-1604654894610-df63bc536371?w=600&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    position: relative;
    transition: transform 0.3s ease;
}

.menu-card:hover .menu-image-placeholder {
    transform: scale(1.05);
}

.menu-image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(123, 169, 200, 0.4);
}

.menu-image-placeholder.featured {
    background: linear-gradient(135deg, rgba(90, 141, 176, 0.5), rgba(123, 169, 200, 0.5)),
                url('https://images.unsplash.com/photo-1519415387722-a1c3bbef716c?w=600&q=80');
    background-size: cover;
    background-position: center;
}

.menu-image-placeholder.featured::before {
    background: rgba(90, 141, 176, 0.4);
}

.menu-image-placeholder i {
    font-size: 3.5rem;
    margin-bottom: 10px;
    opacity: 0.9;
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
}

.menu-features {
    list-style: none;
    padding: 30px 25px;
}

.menu-features li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

.menu-features i {
    color: var(--primary-color);
    font-size: 1rem;
}

.menu-note {
    padding: 0 25px 25px;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
}

.menu-note-section {
    margin-top: 50px;
    padding: 30px;
    background: rgba(74, 139, 111, 0.08);
    border-radius: 15px;
    text-align: center;
}

.menu-note-section p {
    margin: 10px 0;
    color: var(--text-medium);
    font-size: 0.95rem;
}

.menu-note-section i {
    color: var(--primary-color);
    margin-right: 8px;
}

/* ===========================
   施術の流れセクション
   =========================== */
.flow-section {
    background: var(--bg-white);
}

.flow-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.flow-timeline::before {
    content: '';
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
}

.flow-item {
    display: grid;
    grid-template-columns: 100px 1fr 80px;
    gap: 30px;
    align-items: center;
    margin-bottom: 50px;
    position: relative;
}

.flow-number {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Noto Serif JP', serif;
    box-shadow: 0 5px 20px rgba(74, 139, 111, 0.3);
    position: relative;
    z-index: 2;
}

.flow-content {
    background: var(--bg-cream);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
}

.flow-photo {
    position: relative;
    width: 100%;
    height: 200px;
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
}

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

.flow-item:hover .flow-photo img {
    transform: scale(1.05);
}

.flow-content h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--dark-color);
}

.flow-content p {
    color: var(--text-medium);
    line-height: 1.8;
}

.flow-icon {
    width: 70px;
    height: 70px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
}

/* ===========================
   お客様の声セクション
   =========================== */
.voice-section {
    background: linear-gradient(135deg, rgba(168, 201, 224, 0.92), rgba(123, 169, 200, 0.94)),
                url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.voice-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.05);
}

.voice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
    margin-bottom: 50px;
}

.voice-card {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    padding: 35px;
    border-radius: 18px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.voice-card.with-photo {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.voice-photo {
    position: relative;
    width: 100%;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 15px;
}

.voice-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.voice-content {
    flex: 1;
}

/* お客様の声 写真ギャラリー */
.voice-photo-gallery {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.gallery-title {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--dark-color);
}

.gallery-photos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.gallery-photo-item {
    position: relative;
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-photo-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.gallery-photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.voice-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.voice-rating {
    margin-bottom: 20px;
    color: var(--warning-color);
    font-size: 1.1rem;
}

.voice-text {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text-medium);
    margin-bottom: 25px;
    font-style: italic;
}

.voice-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.voice-name {
    font-weight: 600;
    color: var(--dark-color);
}

.voice-treatment {
    font-size: 0.85rem;
    color: var(--primary-color);
    background: rgba(74, 139, 111, 0.1);
    padding: 5px 12px;
    border-radius: 15px;
}

/* ===========================
   アクセスセクション
   =========================== */
.access-section {
    background: var(--bg-cream);
}

/* 店舗写真 */
.store-photos {
    margin: 50px 0;
}

.store-photo-main {
    position: relative;
    width: 100%;
    height: 400px;
    margin-bottom: 25px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.store-photo-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.store-photo-main:hover img {
    transform: scale(1.05);
}

.store-photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.store-photo-item {
    position: relative;
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.store-photo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.store-photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.access-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
}

.access-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-item-large {
    display: flex;
    gap: 20px;
    background: var(--bg-white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.info-item-large.highlight {
    background: linear-gradient(135deg, rgba(123, 169, 200, 0.1), rgba(168, 201, 224, 0.1));
    border: 2px solid var(--primary-light);
}

.info-item-large:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(74, 139, 111, 0.12);
}

.info-icon-large {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.info-text-large h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.info-text-large p {
    line-height: 1.8;
    color: var(--text-medium);
}

.phone-number {
    font-size: 1.8rem !important;
    font-weight: 700 !important;
    color: var(--primary-color) !important;
    margin-top: 5px;
}

.phone-note {
    font-size: 0.9rem !important;
    margin-top: 5px;
}

.access-map {
    background: var(--bg-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.map-placeholder {
    height: 100%;
    min-height: 500px;
    background: linear-gradient(135deg, rgba(123, 169, 200, 0.8), rgba(168, 201, 224, 0.8)),
                url('https://images.unsplash.com/photo-1524661135-423995f22d0b?w=800&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    padding: 40px;
    text-align: center;
    position: relative;
}

.map-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(123, 169, 200, 0.6);
}

.map-placeholder i {
    font-size: 5rem;
    margin-bottom: 20px;
    opacity: 0.9;
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
}

.map-placeholder p {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
}

.map-note {
    font-size: 0.85rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

/* ===========================
   予約セクション
   =========================== */
.contact-section {
    background: linear-gradient(135deg, rgba(123, 169, 200, 0.96), rgba(90, 141, 176, 0.94)),
                url('https://images.unsplash.com/photo-1486312338219-ce68d2c6f44d?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

/* ===========================
   代表者紹介セクション
   =========================== */
.staff-section {
    background: var(--bg-white);
    padding: 100px 0;
}

.staff-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: center;
    margin-top: 50px;
}

.staff-image-area {
    text-align: center;
}

.staff-image-placeholder {
    width: 100%;
    max-width: 300px;
    height: 350px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(123, 169, 200, 0.3), rgba(168, 201, 224, 0.3)),
                url('https://images.unsplash.com/photo-1559839734-2b71ea197ec2?w=400&q=80');
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    color: var(--bg-white);
    box-shadow: 0 10px 30px rgba(123, 169, 200, 0.25);
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.staff-image-placeholder:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(123, 169, 200, 0.35);
}

.staff-image-placeholder i {
    font-size: 5rem;
    margin-bottom: 15px;
    opacity: 0;
    display: none;
}

.staff-image-placeholder p {
    font-size: 0.9rem;
    font-weight: 600;
    background: rgba(0, 0, 0, 0.5);
    padding: 8px 15px;
    border-radius: 20px;
}

.staff-text-area {
    background: var(--bg-cream);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

.staff-name {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--dark-color);
    border-bottom: 3px solid var(--primary-color);
    padding-bottom: 15px;
}

.name-large {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-left: 15px;
}

.staff-qualification {
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(123, 169, 200, 0.1);
    border-radius: 10px;
}

.staff-qualification p {
    margin: 8px 0;
    color: var(--text-medium);
    font-weight: 500;
}

.staff-qualification i {
    color: var(--primary-color);
    margin-right: 10px;
}

.staff-message {
    line-height: 2;
}

.staff-message p {
    margin-bottom: 20px;
    color: var(--text-medium);
}

.staff-signature {
    margin-top: 30px;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* ===========================
   ビフォーアフターセクション
   =========================== */
.beforeafter-section {
    background: var(--bg-light);
    padding: 100px 0;
}

/* メイン施術例 */
.beforeafter-featured {
    background: var(--bg-white);
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 60px;
}

.featured-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.featured-comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 30px;
    align-items: center;
    margin-bottom: 30px;
}

.comparison-item {
    position: relative;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.comparison-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comparison-label {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 700;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.comparison-label.before {
    background: #f44336;
    color: var(--bg-white);
}

.comparison-label.after {
    background: #4caf50;
    color: var(--bg-white);
}

.comparison-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
}

.comparison-arrow i {
    font-size: 3rem;
}

.comparison-arrow span {
    font-size: 1.2rem;
    font-weight: 600;
    background: var(--bg-cream);
    padding: 8px 20px;
    border-radius: 20px;
}

.featured-comment {
    text-align: center;
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-medium);
    padding: 25px;
    background: rgba(123, 169, 200, 0.1);
    border-radius: 15px;
    border-left: 5px solid var(--primary-color);
}

.beforeafter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.beforeafter-card {
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.beforeafter-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.beforeafter-images {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 20px;
    background: var(--bg-cream);
}

.ba-image {
    position: relative;
    flex: 1;
}

.ba-placeholder {
    height: 180px;
    background: linear-gradient(135deg, #f5f5f5, #e0e0e0),
                url('https://images.unsplash.com/photo-1505944270255-72b8c68c6a70?w=400&q=80');
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.beforeafter-card:hover .ba-placeholder {
    transform: scale(1.05);
}

.ba-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
}

.ba-placeholder.after-bg {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.3), rgba(139, 195, 74, 0.3)),
                url('https://images.unsplash.com/photo-1560762484-813fc97650a0?w=400&q=80');
    background-size: cover;
    background-position: center;
    color: var(--bg-white);
}

.ba-placeholder.after-bg::before {
    background: rgba(76, 175, 80, 0.3);
}

.ba-placeholder i {
    font-size: 3rem;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.ba-placeholder p {
    font-size: 1.2rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.ba-label {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.before-label {
    background: #f44336;
    color: var(--bg-white);
}

.after-label {
    background: #4caf50;
    color: var(--bg-white);
}

.ba-arrow {
    margin: 0 15px;
    color: var(--primary-color);
    font-size: 2rem;
}

.ba-info {
    padding: 25px;
}

.ba-info h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--dark-color);
}

.ba-detail {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.ba-comment {
    font-style: italic;
    color: var(--primary-color);
    font-weight: 600;
    padding: 15px;
    background: rgba(123, 169, 200, 0.1);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.beforeafter-note {
    margin-top: 40px;
    text-align: center;
    padding: 20px;
    background: rgba(123, 169, 200, 0.1);
    border-radius: 10px;
}

.beforeafter-note p {
    color: var(--text-medium);
    font-size: 0.95rem;
}

.beforeafter-note i {
    color: var(--primary-color);
    margin-right: 8px;
}

.contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.05);
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.contact-method {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.contact-method i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-method h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.contact-method p {
    color: var(--text-medium);
    margin-bottom: 10px;
}

.contact-number {
    font-size: 2rem !important;
    font-weight: 700 !important;
    color: var(--primary-color) !important;
    margin: 15px 0 !important;
}

.contact-time {
    font-size: 0.9rem !important;
}

.line-button,
.form-button {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 30px;
    background: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 0.95rem;
}

.line-button:hover,
.form-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.contact-form-wrapper {
    position: relative;
    z-index: 1;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    padding: 50px 45px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.form-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 35px;
    color: var(--dark-color);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.required {
    color: var(--danger-color);
    font-size: 0.8rem;
    margin-left: 5px;
}

.optional {
    color: var(--text-light);
    font-size: 0.8rem;
    margin-left: 5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Noto Sans JP', sans-serif;
    transition: all 0.3s ease;
    background: var(--bg-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(74, 139, 111, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.form-privacy {
    margin: 25px 0;
    text-align: center;
}

.checkbox-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.submit-button {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--bg-white);
    border: none;
    border-radius: 10px;
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(74, 139, 111, 0.3);
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(74, 139, 111, 0.4);
}

/* ===========================
   フッター
   =========================== */
.footer {
    background: var(--dark-color);
    color: var(--bg-white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.8rem;
    font-family: 'Noto Serif JP', serif;
    font-weight: 700;
    color: var(--primary-light);
    margin-bottom: 15px;
}

.footer-logo i {
    font-size: 2rem;
}

.footer-description {
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.footer-contact p {
    margin: 10px 0;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact i {
    margin-right: 10px;
    color: var(--primary-light);
}

.footer-links h4,
.footer-social h4 {
    margin-bottom: 20px;
    font-size: 1.2rem;
    color: var(--bg-white);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* ===========================
   アニメーション
   =========================== */
.fade-in {
    animation: fadeIn 1s ease-out;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ===========================
   レスポンシブデザイン
   =========================== */
@media (max-width: 1024px) {
    .access-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .staff-content {
        grid-template-columns: 1fr;
    }
    
    .beforeafter-grid {
        grid-template-columns: 1fr;
    }
    
    /* パララックス効果をモバイルでは無効化 */
    .parallax-section {
        background-attachment: scroll;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        width: 100%;
        padding: 30px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        gap: 20px;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.05rem;
    }
    
    .hero-features {
        gap: 20px;
    }
    
    .hero-feature-item {
        width: 110px;
        height: 110px;
        padding: 15px 20px;
    }
    
    .hero-feature-item i {
        font-size: 1.5rem;
    }
    
    .hero-feature-item span {
        font-size: 0.75rem;
    }

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

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        width: 100%;
        max-width: 300px;
    }

    .about-content,
    .trouble-grid,
    .menu-grid,
    .voice-grid,
    .contact-methods,
    .concerns-grid {
        grid-template-columns: 1fr;
    }
    
    .showcase-grid,
    .gallery-photos,
    .store-photo-grid {
        grid-template-columns: 1fr;
    }
    
    .photo-item.large {
        height: 300px;
    }
    
    .showcase-grid .photo-item {
        height: 180px;
    }
    
    .featured-comparison {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .comparison-arrow {
        flex-direction: row;
        transform: rotate(90deg);
    }
    
    .comparison-item {
        height: 300px;
    }

    .flow-timeline::before {
        left: 25px;
    }

    .flow-item {
        grid-template-columns: 50px 1fr;
        gap: 20px;
    }

    .flow-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .flow-icon {
        display: none;
    }
    
    .flow-photo {
        height: 150px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 35px 25px;
    }
    
    .store-photo-main {
        height: 300px;
    }
    
    .store-photo-item,
    .gallery-photo-item {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

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

    .cta-button {
        padding: 14px 30px;
        font-size: 0.95rem;
    }
    
    .menu-card,
    .voice-card,
    .contact-method {
        padding: 25px 20px;
    }
}
