/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --accent-color: #D4A574;
    --text-primary: #2C2C2C;
    --text-secondary: #7a7066;
    --text-light: #a59c93;
    --background-light: #FDFCFA;
    --background-cream: #faf7f3;
    --background-cloud: #f9f6f2;
    --border-light: #ebe6e0;
    --shadow-light: rgba(0, 0, 0, 0.06);
    --shadow-medium: rgba(0, 0, 0, 0.1);
    --gradient-accent: linear-gradient(135deg, #D4A574 0%, #c4955f 100%);
    --gradient-soft: linear-gradient(45deg, #faf8f6 0%, #f0edf4 50%, #f5e6e8 100%);
}

body {
    font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--background-light);
    font-size: 16px;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.menu .container {
    position: relative;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(254, 253, 251, 0.98);
    backdrop-filter: blur(15px);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-bottom: 1px solid var(--border-light);
    box-shadow: 0 2px 20px rgba(74, 69, 63, 0.03);
}

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

.logo-image {
    height: 50px;
    width: auto;
    margin-bottom: 2px;
}

.logo .tagline {
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 300;
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s ease;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.nav-menu a:hover {
    color: var(--accent-color);
    background-color: var(--background-cream);
}

.btn-reservation {
    background: var(--gradient-accent);
    color: white !important;
    padding: 12px 24px !important;
    border-radius: 25px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(212, 165, 116, 0.3);
}

.btn-reservation:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 165, 116, 0.4);
    background: var(--gradient-accent);
}

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

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

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #fefdfb 0%, #f8f5f1 100%);
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}



.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background-image: url('https://page.gensparksite.com/v1/base64_upload/73168806f4134cc29b9c5a2ae7656284');
    background-size: cover;
    background-position: center left;
    background-repeat: no-repeat;
    opacity: 0.35;
    z-index: 1;
    mask: linear-gradient(to left, black 0%, black 40%, transparent 80%);
    -webkit-mask: linear-gradient(to left, black 0%, black 40%, transparent 80%);
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    min-height: calc(100vh - 80px);
    position: relative;
    z-index: 3;
}

.hero-text {
    flex: 1;
    max-width: 600px;
    padding-right: 60px;
    padding-left: 40px;
    position: relative;
}

.left-decoration {
    display: none;
}

.hero-taglines {
    margin-bottom: 20px;
}

.hero-tagline-main {
    font-size: 22px;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 4px;
    letter-spacing: 0.05em;
}

.hero-tagline-sub {
    font-size: 16px;
    color: var(--text-secondary);
    letter-spacing: 0.08em;
}

.hero-title {
    font-size: 52px;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 32px;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.hero-title-sub {
    font-size: 32px;
    font-weight: 400;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.02em;
    display: block;
    margin-top: 24px;
    line-height: 1.5;
}

.hero-highlight {
    color: var(--accent-color);
    font-weight: 600;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    position: relative;
}

.hero-highlight::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: 2px;
    opacity: 0.6;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 48px;
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1.5;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 36px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    min-width: 180px;
    letter-spacing: 0.01em;
}

.btn-primary {
    background: var(--text-primary);
    color: white;
    box-shadow: 0 4px 20px rgba(74, 69, 63, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(74, 69, 63, 0.3);
    background: #3d3832;
}

@keyframes gentlePulse {
    0%, 100% { box-shadow: 0 8px 25px rgba(230, 201, 168, 0.5); }
    50% { box-shadow: 0 12px 35px rgba(230, 201, 168, 0.6); }
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--text-primary);
}

.btn-secondary:hover {
    background: var(--text-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(74, 69, 63, 0.2);
}

.hero-image {
    position: relative;
}

.hero-bg {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.15) 0%, rgba(247, 243, 240, 0.1) 50%, transparent 80%);
    border-radius: 50%;
    opacity: 0.6;
    position: relative;
    animation: float 6s ease-in-out infinite;
    filter: blur(1px);
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, rgba(212, 165, 116, 0.1) 50%, transparent 80%);
    border-radius: 50%;
    animation: float 4s ease-in-out infinite reverse;
    filter: blur(0.5px);
}

@keyframes float {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-20px) scale(1.05); }
}

/* Navigation Pills */
.nav-pills {
    padding: 40px 0;
    background: white;
    border-bottom: 1px solid var(--border-light);
}

.pills-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.pill {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 16px;
    background: var(--background-cream);
    border-radius: 16px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
}

.pill:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(212, 165, 116, 0.3);
}

.pill i {
    font-size: 24px;
    margin-bottom: 4px;
}

.pill span {
    font-size: 14px;
    font-weight: 500;
}

/* Pill Hot - Campaign Highlight */
.pill-hot {
    background: var(--accent-color);
    color: white;
}

.pill-hot:hover {
    background: #c4955f;
    transform: translateY(-2px);
}

.pill-hot i,
.pill-hot span {
    color: white;
}

/* Navigation Campaign Link */
.nav-campaign {
    color: var(--accent-color) !important;
    font-weight: 600;
}

/* Section Styles */
.section {
    padding: 80px 0;
}

.section:nth-child(even) {
    background: var(--gradient-soft);
}

.section:nth-child(odd) {
    background: var(--background-cloud);
}

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

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Concept Section */
.concept {
    position: relative;
    overflow: hidden;
}

.concept::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    background-image: url('https://cdn1.genspark.ai/user-upload-image/gpt_image_edited/a130bc28-025e-47c9-ad1f-3b553c51b0ff');
    background-size: cover;
    background-position: center left;
    background-repeat: no-repeat;
    opacity: 0.25;
    z-index: 1;
    mask: linear-gradient(to left, black 0%, black 40%, transparent 80%);
    -webkit-mask: linear-gradient(to left, black 0%, black 40%, transparent 80%);
}

.concept-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.concept-text {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.concept-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 32px;
    color: var(--text-primary);
    font-weight: 400;
}



/* Campaign Banner - Simple Style */
.campaign-banner-simple {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 2px solid var(--accent-color);
    border-radius: 12px;
    padding: 20px 24px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 2px 8px rgba(212, 165, 116, 0.2);
}

.banner-simple-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.banner-simple-content {
    flex: 1;
}

.banner-simple-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.banner-simple-text {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.banner-simple-staff {
    font-size: 11px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 4px;
}

.mobile-br {
    display: none;
}

.banner-simple-btn {
    padding: 10px 24px;
    background: var(--gradient-accent);
    color: white;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.banner-simple-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 165, 116, 0.3);
}



/* Menu Section */
/* 施術時間の案内 - 控えめなデザイン */
.menu-time-notice {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #fafaf9;
    border: 1px solid #e7e5e4;
    border-left: 3px solid #d4a574;
    border-radius: 8px;
    padding: 16px 20px;
    margin-bottom: 30px;
}

.time-notice-icon {
    font-size: 20px;
    line-height: 1;
    flex-shrink: 0;
    opacity: 0.7;
}

.time-notice-content {
    flex: 1;
}

.time-notice-text {
    margin: 0 0 6px 0;
    font-size: 13px;
    line-height: 1.6;
    color: #78716c;
}

.time-notice-text strong {
    color: #57534e;
    font-weight: 600;
}

.time-notice-example {
    margin: 0;
    font-size: 12px;
    color: #a8a29e;
    font-weight: 500;
    padding-left: 10px;
    border-left: 2px solid #e7e5e4;
}

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

.menu-item {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 20px var(--shadow-light);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid var(--border-light);
    overflow: hidden;
}

/* 背景画像を削除 - クリーンなデザインに変更 */

.menu-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px var(--shadow-medium);
}

.menu-item.featured {
    border-color: var(--accent-color);
    box-shadow: 0 4px 20px rgba(230, 201, 168, 0.3);
    transform: scale(1.02);
}

.menu-item.option {
    opacity: 0.9;
    border: 2px dashed var(--border-light);
    background: var(--background-beige);
}

.menu-item.option .menu-title {
    color: var(--text-secondary);
}

.menu-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--gradient-accent);
    color: white;
    padding: 6px 16px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    z-index: 4;
}

.menu-icon {
    width: 80px;
    height: 80px;
    background: var(--background-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 32px;
    color: var(--accent-color);
    position: relative;
    z-index: 2;
}

.menu-image {
    width: 100%;
    height: 200px;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
    overflow: hidden;
    border-radius: 16px;
}

.menu-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(74, 69, 63, 0.1);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: high-quality;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
}

.menu-item:hover .menu-photo {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(74, 69, 63, 0.2);
}

/* リンパドレナージュの画像を最高画質で表示 */
.lymph-photo {
    filter: brightness(1.0) contrast(1.03) saturate(1.0);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: high-quality;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
}

.menu-item:hover .lymph-photo {
    filter: brightness(1.03) contrast(1.05) saturate(1.02);
}

/* ヘッドスパの画像を少し暗く調整 */
.headspa-photo {
    filter: brightness(0.92) contrast(1.05) saturate(0.98);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: high-quality;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
}

.menu-item:hover .headspa-photo {
    filter: brightness(0.95) contrast(1.07) saturate(1.0);
}

/* 全身もみほぐしの画像調整 */
.momihogushi-photo {
    filter: brightness(1.0) contrast(1.02) saturate(1.0);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: high-quality;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
}

.menu-item:hover .momihogushi-photo {
    filter: brightness(1.02) contrast(1.04) saturate(1.02);
}

.menu-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
    position: relative;
    z-index: 2;
}

.menu-description {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.menu-description strong {
    color: var(--text-primary);
    font-weight: 600;
}

.menu-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-color);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.menu-price::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -10px;
    right: -10px;
    bottom: -5px;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.1) 0%, rgba(230, 201, 168, 0.15) 100%);
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.menu-item:hover .menu-price::before {
    opacity: 1;
}

.menu-price .counter {
    display: inline-block;
    transition: all 0.3s ease;
}

.duration {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-light);
}

.menu-note {
    font-size: 12px;
    color: #e74c3c;
    font-weight: 600;
    margin-top: 8px;
    text-decoration: line-through;
    text-decoration-color: var(--text-light);
    text-decoration-thickness: 1px;
    position: relative;
    z-index: 2;
    background: rgba(231, 76, 60, 0.1);
    padding: 4px 8px;
    border-radius: 6px;
    border: 1px dashed #e74c3c;
}

.menu-note::before {
    content: '期間限定 ';
    font-weight: 700;
    color: #c0392b;
}

/* Menu Options Style */
.menu-options {
    margin: 20px 0;
}

.menu-option-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px;
    margin-bottom: 16px;
    background: var(--background-cream);
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
    transition: all 0.3s ease;
}

.menu-option-item:hover {
    background: white;
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(230, 201, 168, 0.3);
}

.option-duration {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
}

.option-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 4px;
}

.option-desc {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

.option-note {
    font-size: 11px;
    color: var(--text-secondary);
    margin-top: 4px;
    font-style: italic;
}

.menu-item-note {
    font-size: 12px;
    color: var(--text-secondary);
    text-align: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed var(--border-light);
}

/* Menu Addon Section */
.menu-addon-section {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 2px dashed var(--border-light);
}

.addon-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 16px;
    font-style: italic;
    text-align: center;
}

.addon-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    margin-bottom: 10px;
    background: var(--background-cream);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.addon-item:hover {
    background: rgba(230, 201, 168, 0.2);
    transform: translateX(3px);
}

.addon-item.addon-divider {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 2px dashed rgba(212,165,116,0.3);
}

.addon-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    flex: 1;
}

.addon-duration {
    font-size: 13px;
    color: var(--text-secondary);
    margin: 0 12px;
}

.addon-price {
    font-size: 16px;
    font-weight: 600;
    color: var(--accent-color);
}

.menu-item.has-discount::after {
    content: 'お得！';
    position: absolute;
    top: 15px;
    left: -5px;
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    color: white;
    padding: 4px 12px;
    border-radius: 0 8px 8px 0;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(231, 76, 60, 0.3);
    z-index: 3;
}

/* Before After Section */
.before-after {
    position: relative;
    overflow: hidden;
    background: var(--background-light);
}

.before-after-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.before-after-image {
    text-align: center;
}

.results-image {
    width: 100%;
    max-width: 700px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(74, 69, 63, 0.15);
    transition: all 0.3s ease;
}

.results-image:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 40px rgba(74, 69, 63, 0.2);
}

.before-after-text {
    text-align: center;
}

.progress-text {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 24px;
    position: relative;
}

.progress-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.step {
    padding: 12px 20px;
    background: var(--background-cream);
    border-radius: 25px;
    border: 2px solid var(--border-light);
    transition: all 0.3s ease;
}

.step:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 201, 168, 0.3);
}

.step-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
}

.step:hover .step-label {
    color: white;
}

.step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    border-radius: 50%;
    color: white;
    font-size: 14px;
    transition: all 0.3s ease;
}

.step-arrow:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(230, 201, 168, 0.4);
}

.results-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
}

/* Features Section */
.features {
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background-image: url('https://page.gensparksite.com/v1/base64_upload/7f46df86d4bae18be1bf9d4915a7c190');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    opacity: 0.08;
    z-index: 1;
    mask: linear-gradient(to right, black 0%, black 20%, transparent 60%);
    -webkit-mask: linear-gradient(to right, black 0%, black 20%, transparent 60%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
}

.feature-with-image {
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(74, 69, 63, 0.1);
    padding: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.feature-with-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(74, 69, 63, 0.2);
}

.feature-image-container {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
}

.feature-room-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.feature-with-image:hover .feature-room-image {
    transform: scale(1.1);
}

.feature-with-image .feature-icon {
    margin-top: 20px;
}

.feature-with-image .feature-title {
    padding: 0 20px;
}

.feature-with-image .feature-description {
    padding: 0 20px 30px 20px;
}

/* Feature Showcase - 映える大画面表示 */
.features-single {
    max-width: 1000px;
    margin: 0 auto;
}

.feature-showcase {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(74, 69, 63, 0.15);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 0;
}

.feature-showcase:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(74, 69, 63, 0.25);
}

.feature-showcase-image {
    position: relative;
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
    overflow: hidden;
    background: var(--background-cream);
    border-radius: 16px;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    box-shadow: 0 8px 30px rgba(74, 69, 63, 0.12);
}

.feature-showcase-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 1px,
            rgba(0, 0, 0, 0.005) 1px,
            rgba(0, 0, 0, 0.005) 2px
        );
    pointer-events: none;
    opacity: 0.2;
    mix-blend-mode: overlay;
}

.feature-hero-image {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.7s ease;
    filter: brightness(0.98) contrast(1.1) saturate(0.96) hue-rotate(-2deg) sharpen(1);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0) scale(1);
    transform: translateZ(0) scale(1);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: high-quality;
    image-rendering: optimizeQuality;
    -ms-interpolation-mode: bicubic;
    will-change: transform;
}

.feature-showcase:hover .feature-hero-image {
    transform: scale(1.05) translateZ(0);
    filter: brightness(1.0) contrast(1.12) saturate(0.98) hue-rotate(-1deg);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.1) 50%,
        rgba(0, 0, 0, 0.3) 100%
    );
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-showcase:hover .image-overlay {
    opacity: 1;
}

.overlay-badge {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.feature-showcase-content {
    padding: 40px;
    text-align: center;
}

.showcase-title {
    font-size: 28px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
    line-height: 1.4;
}

.showcase-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.showcase-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.mini-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--background-cream);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.mini-feature:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(230, 201, 168, 0.4);
}

.mini-icon {
    font-size: 20px;
}

.mini-text {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
}

.mini-feature:hover .mini-text {
    color: white;
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.feature-description {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Access Section */
.access-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.access-info {
    display: grid;
    gap: 30px;
}

.access-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.access-icon {
    font-size: 24px;
    width: 40px;
    flex-shrink: 0;
}

.access-details h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.access-details p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.google-profile-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.google-profile-link:hover {
    color: #c4955f;
    text-decoration: underline;
}

.access-visual {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: center;
}

.access-image-container {
    position: relative;
    width: 280px;
    height: 350px;
    margin: 0 auto;
    perspective: 1000px;
}

.access-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 
        0 10px 30px rgba(74, 69, 63, 0.15),
        0 0 0 1px rgba(230, 201, 168, 0.2);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: rotateY(-5deg) rotateX(2deg);
}

.access-image:hover {
    transform: rotateY(0deg) rotateX(0deg) scale(1.05);
    box-shadow: 
        0 20px 50px rgba(74, 69, 63, 0.25),
        0 0 0 1px rgba(230, 201, 168, 0.3);
}

.access-map {
    background: var(--background-cream);
    border-radius: 20px;
    padding: 20px;
    border: 1px solid var(--border-light);
    box-shadow: 0 4px 20px rgba(74, 69, 63, 0.08);
}

.google-map {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(74, 69, 63, 0.1);
}

.google-map iframe {
    width: 100%;
    height: 400px;
    border: 0;
    display: block;
}

.map-overlay {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.map-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.map-info i {
    color: var(--accent-color);
    font-size: 16px;
}

.map-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(212, 165, 116, 0.3);
    transition: all 0.3s ease;
}

.map-link-btn:hover {
    background: #c4955f;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.4);
}

.map-link-btn i {
    font-size: 12px;
}



/* Reservation Section */
.reservation-notice {
    text-align: center;
    margin-bottom: 40px;
    padding: 20px;
    background: rgba(212, 165, 116, 0.1);
    border-radius: 16px;
    border-left: 4px solid var(--accent-color);
}

.reservation-notice p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.reservation-system {
    margin-bottom: 60px;
}

/* Initial Reservation Section */
.initial-reservation {
    text-align: center;
    padding: 60px 20px;
}

.reservation-cta {
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: 36px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.cta-description {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 40px;
}

.btn-large {
    padding: 20px 50px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(212, 165, 116, 0.3);
}

.btn-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 165, 116, 0.4);
}

.reservation-step {
    display: none;
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 32px var(--shadow-light);
    border: 1px solid var(--border-light);
    margin-bottom: 30px;
}

.reservation-step.active {
    display: block;
}

.step-header {
    text-align: center;
    margin-bottom: 32px;
}

.step-title {
    font-size: 28px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.step-description {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.menu-selection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

/* Reservation Menu Section - メニュー表と統一 */
.reservation-menu-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 769px) {
    .reservation-menu-section {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}

.reservation-menu-card {
    background: white;
    border-radius: 20px;
    padding: 30px 25px;
    box-shadow: 0 4px 20px var(--shadow-light);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.reservation-menu-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--shadow-medium);
}

.reservation-menu-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-light);
}

.menu-note-inline {
    font-size: 12px;
    font-weight: 400;
    color: var(--text-secondary);
    display: block;
    margin-top: 4px;
}

.reservation-options-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.reservation-option {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--background-cream);
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.reservation-option:hover {
    background: white;
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(230, 201, 168, 0.3);
}

.reservation-option.selected {
    background: rgba(230, 201, 168, 0.2);
    border-left-color: var(--accent-color);
    box-shadow: 0 4px 15px rgba(230, 201, 168, 0.4);
}

.option-time {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    min-width: 60px;
    text-align: center;
}

.option-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.option-price-label {
    font-size: 20px;
    font-weight: 700;
    color: var(--accent-color);
}

.option-desc-text {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* 初回限定メニュー */
.first-time-special {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 2px solid var(--accent-color);
    margin-top: 0;
}

@media (min-width: 769px) {
    .first-time-special {
        grid-column: 1 / -1;
    }
}

.first-time-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--accent-color);
}

.first-time-icon {
    font-size: 24px;
}

.first-time-special .reservation-menu-title {
    margin: 0;
    color: var(--accent-color);
    font-size: 20px;
}

.first-time-badge {
    margin-left: auto;
    background: var(--accent-color);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.option-label {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
    font-size: 15px;
}

.option-price-special {
    color: var(--accent-color) !important;
    font-size: 20px !important;
    font-weight: 700 !important;
}

.option-price-original {
    font-size: 12px;
    color: var(--text-light);
    text-decoration: line-through;
    margin-left: 8px;
}

.first-time-notes {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(212, 165, 116, 0.3);
    text-align: center;
}

.reservation-menu-note {
    font-size: 12px;
    color: var(--text-secondary);
    text-align: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed var(--border-light);
}

.first-time-lymph-note {
    font-size: 11px;
    color: var(--text-secondary);
    margin-top: 8px;
}

.first-time-notes p {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 600;
    margin: 0;
    margin-bottom: 6px;
}

.first-time-notes p:last-child {
    margin-bottom: 0;
}

/* セット割引案内 */
.set-discount-notice {
    background: linear-gradient(135deg, #fff8e1 0%, #ffe082 100%);
    border: 2px solid #ffc107;
    border-radius: 12px;
    padding: 16px;
    margin-top: 20px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    animation: slideDown 0.3s ease-out;
}

.set-discount-notice .notice-icon {
    font-size: 28px;
    flex-shrink: 0;
    line-height: 1;
}

.set-discount-notice .notice-content {
    flex: 1;
}

.set-discount-notice strong {
    display: block;
    font-size: 16px;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.set-discount-notice p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

.set-discount-notice .highlight {
    color: #f57c00;
    font-weight: 700;
    font-size: 16px;
}

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

/* チェックボックススタイル */
.option-checkbox {
    font-size: 24px;
    color: var(--border-light);
    transition: all 0.3s ease;
    min-width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reservation-option.selected .option-checkbox {
    color: var(--accent-color);
}

.option-checkbox i {
    transition: all 0.3s ease;
}

/* メニュー進行セクション */
.menu-proceed-section {
    margin-top: 40px;
    padding: 30px 20px;
    text-align: center;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    border: 2px dashed var(--border-light);
}

.menu-proceed-section .btn-large {
    min-width: 280px;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.menu-proceed-section .btn-large.disabled {
    background: var(--border-light);
    color: var(--text-light);
    cursor: not-allowed;
    opacity: 0.6;
}

.menu-proceed-section .btn-large.disabled:hover {
    background: var(--border-light);
    transform: none;
    box-shadow: none;
}

.proceed-hint {
    margin-top: 16px;
    font-size: 14px;
    color: var(--text-secondary);
    font-style: italic;
}

.proceed-hint strong {
    color: #dc2626;
    font-weight: 700;
    font-size: 15px;
}

/* 選択メニューサマリー - より目立つデザイン */
.selected-menu-summary {
    background: linear-gradient(135deg, #fff7ed 0%, #fef3c7 100%);
    border: 4px solid #f59e0b;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 12px 40px rgba(245, 158, 11, 0.3);
    position: relative;
    animation: summaryPulse 2s ease-in-out infinite;
}

@keyframes summaryPulse {
    0%, 100% {
        box-shadow: 0 12px 40px rgba(245, 158, 11, 0.3);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 16px 50px rgba(245, 158, 11, 0.5);
        transform: scale(1.01);
    }
}

.selected-menu-summary::before {
    content: '👇 まずはこちらをコピー 👇';
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: #dc2626;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
    animation: bounce 1s ease-in-out infinite;
    white-space: nowrap;
}

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

.summary-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 2px dashed #f59e0b;
    gap: 16px;
}

.summary-title {
    font-size: 22px;
    font-weight: 700;
    color: #92400e;
    margin: 0;
    text-align: center;
}

.btn-copy {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
    animation: copyButtonPulse 1.5s ease-in-out infinite;
    position: relative;
    min-width: 250px;
    justify-content: center;
}

@keyframes copyButtonPulse {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
    }
    50% {
        box-shadow: 0 12px 35px rgba(220, 38, 38, 0.6);
    }
}

.btn-copy:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(220, 38, 38, 0.6);
}

.btn-copy i {
    font-size: 18px;
}

.summary-content {
    margin-bottom: 16px;
}

.summary-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.summary-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    background: white;
    border-radius: 10px;
    border-left: 4px solid #f59e0b;
    font-size: 16px;
}

.summary-number {
    font-weight: 700;
    color: #d97706;
    min-width: 30px;
    font-size: 18px;
}

.summary-text {
    color: #78716c;
    font-weight: 500;
}

.summary-item.summary-discount {
    border-left-color: #10b981;
    background: #f0fdf4;
}

.summary-item.summary-discount .summary-text {
    color: #059669;
    font-weight: 600;
}

.summary-item.summary-total {
    border-left-color: #3b82f6;
    background: #eff6ff;
}

.summary-item.summary-total .summary-text {
    color: #1e40af;
    font-weight: 700;
    font-size: 18px;
}

.summary-item.summary-time {
    border-left-color: #8b5cf6;
    background: #faf5ff;
}

.summary-item.summary-time .summary-text {
    color: #6b21a8;
    font-weight: 600;
    font-size: 15px;
}

.summary-notice {
    background: white;
    padding: 16px;
    border-radius: 10px;
    border: 2px solid #fbbf24;
}

.summary-notice p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #78716c;
}

.summary-notice strong {
    color: #dc2626;
    font-weight: 700;
}

.calendar-instruction {
    background: #dbeafe;
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 20px;
    text-align: center;
    border: 2px solid #3b82f6;
}

.calendar-instruction p {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    color: #1e40af;
}

/* カレンダー表示ボタンセクション */
.show-calendar-section {
    text-align: center;
    padding: 40px 20px;
    background: #f8fafc;
    border-radius: 16px;
    margin-bottom: 30px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

@keyframes highlightSection {
    0%, 100% {
        background: #f8fafc;
        border-color: #e2e8f0;
        transform: scale(1);
    }
    50% {
        background: #dbeafe;
        border-color: #3b82f6;
        transform: scale(1.02);
    }
}

.show-calendar-section .btn-large {
    min-width: 300px;
    padding: 20px 40px;
    font-size: 18px;
    font-weight: 700;
}

.show-calendar-hint {
    margin-top: 16px;
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
}

.menu-option {
    background: var(--background-cream);
    border: 2px solid var(--border-light);
    border-radius: 16px;
    padding: 24px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.menu-option:hover {
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(230, 201, 168, 0.3);
}

.menu-option.selected {
    border-color: var(--accent-color);
    background: rgba(230, 201, 168, 0.1);
    box-shadow: 0 4px 20px rgba(230, 201, 168, 0.2);
}

.menu-option-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.menu-option-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.menu-option-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 6px;
}

.menu-option-duration {
    font-size: 12px;
    font-weight: 400;
    color: var(--text-light);
}

.menu-option-desc {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 4px;
}

.btn-back {
    background: var(--background-cream);
    border: 1px solid var(--border-light);
    color: var(--text-primary);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.btn-back:hover {
    background: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
}

.google-calendar-frame {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(74, 69, 63, 0.1);
    border: 1px solid var(--border-light);
}

.google-calendar-frame iframe {
    width: 100%;
    height: 600px;
    border: none;
    display: block;
}

.reservation-alternative {
    max-width: 400px;
    margin: 0 auto;
}

.alternative-method {
    text-align: center;
    padding: 30px 20px;
    background: var(--background-cream);
    border-radius: 20px;
    box-shadow: 0 4px 20px var(--shadow-light);
    border: 1px solid var(--border-light);
    width: 100%;
}

.method-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.method-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.method-description {
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

/* LINE QR Code Section */
.line-qr-section {
    margin-bottom: 30px;
}

.qr-code-container {
    display: inline-block;
    padding: 16px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 12px;
}

.line-qr-image {
    width: 180px;
    height: 180px;
    display: block;
}

.qr-instruction {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 600;
    margin: 0;
}

/* LINE URL Section */
.line-url-section {
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
}

.url-label {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.btn-line {
    background: #00C300;
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-line:hover {
    background: #00A300;
    transform: translateY(-2px);
}

.btn-line i {
    font-size: 18px;
}

.btn-web {
    background: var(--gradient-accent);
    color: white;
}

.btn-web:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.4);
}

.reservation-footer {
    text-align: center;
    padding: 30px;
    background: var(--background-cream);
    border-radius: 16px;
}

.reservation-footer p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.reservation-footer .highlight {
    font-weight: 600;
    color: var(--accent-color);
}

/* Footer */
.footer {
    background: var(--background-cream);
    color: var(--text-primary);
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-light);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 8px;
    /* フィルターを削除してロゴを正常に表示 */
}

.footer-brand p {
    font-size: 14px;
    color: var(--text-secondary);
}

.footer-tagline p {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-light);
}

.footer-bottom p {
    font-size: 12px;
    color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 1024px) {
    /* Campaign Banner - Tablet */
    .campaign-banner-simple {
        padding: 16px 20px;
    }
    
    .banner-simple-icon {
        font-size: 28px;
    }
    
    .banner-simple-title {
        font-size: 16px;
    }
    
    .banner-simple-btn {
        padding: 8px 20px;
    }
    .hero-content {
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }
    
    .left-decoration {
        display: none;
    }
    
    .hero-text {
        padding-right: 0;
        padding-left: 20px;
        max-width: 100%;
    }
    
    .hero-text::before {
        width: 80px;
        height: 80px;
        left: -10px;
    }
    
    .hero-text::after {
        font-size: 18px;
        left: -15px;
        top: 3%;
    }
    
    .hero-title {
        font-size: 42px;
        line-height: 1.25;
    }
    
    .hero-title-sub {
        font-size: 26px;
        margin-top: 16px;
    }
    
    .hero-highlight::after {
        height: 2px;
        bottom: -2px;
    }
    
    .hero-taglines {
        text-align: center;
        margin-bottom: 16px;
    }
    
    .hero-tagline-main {
        font-size: 20px;
        -webkit-text-fill-color: #c09060;
        color: #c09060;
        font-weight: 700;
    }
    
    .hero-tagline-sub {
        font-size: 14px;
        color: #5a5450;
        font-weight: 500;
    }
    
    .hero::before {
        width: 100%;
        height: 40%;
        top: auto;
        bottom: 0;
        right: 0;
        mask: linear-gradient(to top, black 0%, black 30%, transparent 70%);
        -webkit-mask: linear-gradient(to top, black 0%, black 30%, transparent 70%);
    }
    
    .concept::before {
        width: 100%;
        height: 45%;
        top: auto;
        bottom: 0;
        right: 0;
        mask: linear-gradient(to top, black 0%, black 30%, transparent 70%);
        -webkit-mask: linear-gradient(to top, black 0%, black 30%, transparent 70%);
        opacity: 0.25;
    }
    
    .access-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .access-visual {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .access-image-container {
        width: 240px;
        height: 300px;
        justify-self: center;
    }
    
    .features::before {
        width: 100%;
        height: 30%;
        top: auto;
        bottom: 0;
        left: 0;
        mask: linear-gradient(to top, black 0%, black 15%, transparent 50%);
        -webkit-mask: linear-gradient(to top, black 0%, black 15%, transparent 50%);
        opacity: 0.05;
    }
    
    .concept-text p {
        font-size: 16px;
        line-height: 1.7;
        margin-bottom: 24px;
    }
    
    .concept-text p br {
        display: none;
    }
    
    .progress-steps {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }
    
    .step {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .step-arrow {
        transform: rotate(90deg);
        margin: 8px 0;
    }

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

@media (max-width: 768px) {
    /* Campaign Banner - Mobile */
    .campaign-banner-simple {
        padding: 14px;
        flex-wrap: wrap;
        gap: 10px;
        align-items: flex-start;
    }
    
    .banner-simple-icon {
        font-size: 26px;
        line-height: 1;
        margin-top: 2px;
    }
    
    .banner-simple-content {
        flex: 1;
        min-width: 0;
    }
    
    .banner-simple-title {
        font-size: 15px;
        margin-bottom: 4px;
        line-height: 1.3;
    }
    
    .banner-simple-text {
        font-size: 12px;
        line-height: 1.4;
        margin-bottom: 2px;
    }
    
    .banner-simple-staff {
        font-size: 10px;
        margin-top: 2px;
    }
    
    .mobile-br {
        display: block;
    }
    
    .banner-simple-btn {
        padding: 10px 18px;
        font-size: 13px;
        white-space: nowrap;
        align-self: center;
        margin-left: auto;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .logo-image {
        height: 40px;
    }
    
    .footer-logo {
        height: 35px;
        /* フィルターを削除してロゴを正常に表示 */
    }
    
    .hero::before {
        background-attachment: scroll;
        background-position: center center;
        opacity: 0.55;
    }
    
    .hero-title {
        font-size: 32px;
        text-shadow: 0 2px 8px rgba(255, 255, 255, 0.8);
    }
    
    .hero-title-sub {
        font-size: 22px;
        margin-top: 12px;
        text-shadow: 0 2px 8px rgba(255, 255, 255, 0.8);
    }
    
    .hero-text::before {
        width: 60px;
        height: 60px;
        left: -8px;
    }
    
    .hero-text::after {
        font-size: 16px;
        left: -12px;
        top: 2%;
    }
    
    .hero-taglines {
        text-align: center;
        margin-bottom: 12px;
    }
    
    .hero-tagline-main {
        font-size: 18px;
        margin-bottom: 2px;
        text-shadow: 0 1px 4px rgba(255, 255, 255, 0.8);
        -webkit-text-fill-color: #c09060;
        color: #c09060;
        font-weight: 700;
    }
    
    .hero-tagline-sub {
        font-size: 13px;
        text-shadow: 0 1px 4px rgba(255, 255, 255, 0.7);
        color: #5a5450;
        font-weight: 500;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .pills-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
    
    .pill {
        padding: 16px 12px;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    /* 施術時間案内 - モバイル */
    .menu-time-notice {
        padding: 14px 16px;
        gap: 10px;
    }
    
    .time-notice-icon {
        font-size: 18px;
    }
    
    .time-notice-text {
        font-size: 12px;
    }
    
    .time-notice-example {
        font-size: 11px;
        padding-left: 8px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .feature-image-container {
        height: 240px;
    }
    
    .feature-showcase-image {
        max-width: 100%;
    }
    
    .showcase-title {
        font-size: 24px;
    }
    
    .showcase-description {
        font-size: 15px;
    }
    
    .showcase-features {
        gap: 15px;
    }
    
    .mini-feature {
        padding: 10px 16px;
    }
    
    .mini-text {
        font-size: 13px;
    }
    
    .feature-showcase-content {
        padding: 30px 20px;
    }
    
    .overlay-badge {
        font-size: 16px;
        padding: 10px 20px;
    }
    
    .progress-text {
        font-size: 18px;
    }
    
    .progress-steps {
        gap: 12px;
    }
    
    .step {
        padding: 10px 16px;
    }

    .step-label {
        font-size: 13px;
    }

    .step-arrow {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }
    
    /* 予約システム - モバイル対応 */
    .reservation-option {
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .option-checkbox {
        font-size: 22px;
        min-width: 26px;
    }
    
    .option-time {
        font-size: 18px;
        min-width: 50px;
    }
    
    .option-price-label {
        font-size: 18px;
    }
    
    .option-desc-text {
        font-size: 12px;
    }
    
    .menu-proceed-section {
        padding: 20px 15px;
        margin-top: 30px;
    }
    
    .menu-proceed-section .btn-large {
        min-width: 100%;
        padding: 16px 30px;
        font-size: 16px;
    }
    
    .proceed-hint {
        font-size: 13px;
        margin-top: 12px;
    }
    
    /* メニューサマリー - モバイル */
    .selected-menu-summary {
        padding: 24px 16px;
        margin-top: 20px;
    }
    
    .selected-menu-summary::before {
        font-size: 12px;
        padding: 6px 16px;
        top: -30px;
    }
    
    .summary-header {
        gap: 16px;
    }
    
    .summary-title {
        font-size: 18px;
    }
    
    .btn-copy {
        width: 100%;
        justify-content: center;
        padding: 16px 30px;
        font-size: 16px;
        min-width: auto;
    }
    
    .show-calendar-section {
        padding: 30px 16px;
    }
    
    .show-calendar-section .btn-large {
        width: 100%;
        min-width: auto;
        padding: 16px 30px;
        font-size: 16px;
    }
    
    .show-calendar-hint {
        font-size: 13px;
    }
    
    .summary-item {
        padding: 12px;
        font-size: 14px;
    }
    
    .summary-number {
        min-width: 25px;
        font-size: 16px;
    }
    
    .summary-item.summary-total .summary-text {
        font-size: 16px;
    }
    
    .summary-notice p {
        font-size: 13px;
    }
    
    .calendar-instruction p {
        font-size: 14px;
    }
    
    .reservation-step {
        padding: 30px 20px;
    }
    
    .step-title {
        font-size: 24px;
    }
    
    .menu-selection-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .reservation-menu-section {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .reservation-option {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .option-time {
        font-size: 18px;
    }
    
    .option-price-label {
        font-size: 18px;
    }
    
    .google-calendar-frame iframe {
        height: 500px;
    }
    
    .alternative-method {
        padding: 25px 15px;
    }
    
    .line-qr-image {
        width: 160px;
        height: 160px;
    }
    
    .qr-code-container {
        padding: 12px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .access-image-container {
        width: 200px;
        height: 250px;
    }
    
    .access-image {
        border-radius: 10px;
        transform: rotateY(-3deg) rotateX(1deg);
    }
    
    .access-map {
        padding: 15px;
    }
    
    .map-overlay {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }
    
    .map-info {
        justify-content: center;
        font-size: 12px;
    }
    
    .map-link-btn {
        justify-content: center;
        font-size: 12px;
        padding: 8px 12px;
    }
    
    .google-map iframe {
        height: 300px;
    }
    
    .map-overlay {
        top: 10px;
        left: 10px;
        padding: 6px 12px;
    }
    
    .map-info {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    /* Campaign Banner - Small Mobile */
    .campaign-banner-simple {
        padding: 12px;
        gap: 8px;
    }
    
    .banner-simple-icon {
        font-size: 22px;
    }
    
    .banner-simple-title {
        font-size: 14px;
        margin-bottom: 3px;
    }
    
    .banner-simple-text {
        font-size: 11px;
        line-height: 1.6;
    }
    
    .banner-simple-btn {
        font-size: 12px;
        padding: 8px 14px;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .nav-container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 40px 0;
    }
    
    .hero::before {
        background-attachment: scroll;
        background-position: center;
        opacity: 0.4;
    }
    
    .hero-title {
        font-size: 32px;
        line-height: 1.3;
        margin-bottom: 24px;
        text-shadow: 0 2px 8px rgba(255, 255, 255, 0.9);
    }
    
    .hero-title-sub {
        font-size: 18px;
        margin-top: 10px;
        text-shadow: 0 2px 8px rgba(255, 255, 255, 0.9);
    }
    
    .hero-text::before {
        width: 50px;
        height: 50px;
        left: -5px;
    }
    
    .hero-text::after {
        font-size: 14px;
        left: -10px;
        top: 1%;
    }
    
    .concept-text p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 20px;
    }
    
    .concept-text p br {
        display: none;
    }
    
    .hero-taglines {
        margin-bottom: 16px;
    }
    
    .hero-tagline-main {
        font-size: 16px;
        text-shadow: 0 1px 4px rgba(255, 255, 255, 0.9);
        -webkit-text-fill-color: #c09060;
        color: #c09060;
        font-weight: 700;
    }
    
    .hero-tagline-sub {
        font-size: 12px;
        text-shadow: 0 1px 4px rgba(255, 255, 255, 0.8);
        color: #5a5450;
        font-weight: 500;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .pills-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .google-calendar-frame iframe {
        height: 450px;
    }
    
    .form-title {
        font-size: 20px;
    }
    
    /* 予約システム - 小画面モバイル対応 */
    .reservation-option {
        padding: 14px;
        gap: 10px;
    }
    
    .option-checkbox {
        font-size: 20px;
        min-width: 24px;
    }
    
    .option-time {
        font-size: 16px;
        min-width: 45px;
    }
    
    .option-price-label {
        font-size: 16px;
    }
    
    .option-desc-text {
        font-size: 11px;
    }
    
    .menu-proceed-section .btn-large {
        padding: 14px 25px;
        font-size: 15px;
    }
    
    .proceed-hint {
        font-size: 12px;
    }
    
    /* メニューサマリー - 小画面モバイル */
    .selected-menu-summary {
        padding: 20px 12px;
        margin-top: 15px;
    }
    
    .selected-menu-summary::before {
        font-size: 11px;
        padding: 5px 12px;
        top: -28px;
    }
    
    .summary-title {
        font-size: 16px;
    }
    
    .btn-copy {
        padding: 14px 24px;
        font-size: 15px;
    }
    
    .show-calendar-section {
        padding: 24px 12px;
    }
    
    .show-calendar-section .btn-large {
        padding: 14px 24px;
        font-size: 15px;
    }
    
    .show-calendar-hint {
        font-size: 12px;
    }
    
    .summary-item {
        padding: 10px;
        font-size: 13px;
        gap: 8px;
    }
    
    .summary-number {
        min-width: 22px;
        font-size: 14px;
    }
    
    .summary-item.summary-total .summary-text {
        font-size: 15px;
    }
    
    .summary-notice {
        padding: 12px;
    }
    
    .summary-notice p {
        font-size: 12px;
    }
    
    .calendar-instruction {
        padding: 12px;
    }
    
    .calendar-instruction p {
        font-size: 13px;
    }
    
    .method-title {
        font-size: 16px;
    }
    
    .feature-showcase-image {
        max-width: 100%;
        border-radius: 12px;
    }
    
    .feature-showcase-content {
        padding: 25px 16px;
    }
    
    .showcase-title {
        font-size: 20px;
    }
    
    .showcase-description {
        font-size: 14px;
    }
    
    .showcase-features {
        flex-direction: column;
        gap: 12px;
    }
    
    .mini-feature {
        width: 100%;
        justify-content: center;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}



.menu-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.feature-item:hover {
    transform: translateY(-2px);
}

.pill:hover {
    background: var(--gradient-accent);
    color: white;
    transform: translateY(-2px);
}

/* Focus States for Accessibility */
.btn:focus,
.pill:focus,
.nav-menu a:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .header,
    .nav-pills,
    .hero-buttons,
    .reservation-methods {
        display: none;
    }
    
    .section {
        padding: 20px 0;
    }
    
    body {
        font-size: 12px;
        line-height: 1.4;
    }
}