
/* Base Styles */
:root {
    --primary-color: #d4a373;
    --secondary-color: #faedcd;
    --accent-color: #e9edc9;
    --dark-color: #10151f;
    --light-color: #fefefe;
    --gray-color: #f5f5f5;
    --text-color: #4a4a4a;
    --heading-font: 'Montserrat', 'Noto Sans JP', sans-serif;
    --body-font: 'Noto Sans JP', 'Montserrat', sans-serif;
    --serif-font: 'Noto Serif JP', serif;
    --concept-font: 'Noto Sans JP', sans-serif;
    --elegant-spacing: 0.05em;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

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

ul {
    list-style: none;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--dark-color);
}

p {
    margin-bottom: 15px;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.section-header h2 .accent {
    color: var(--primary-color);
}

.section-header p {
    font-size: 1.1rem;
    color: #777;
    max-width: 700px;
    margin: 0 auto;
}

section {
    padding: 100px 0;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 15px rgba(212, 163, 115, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    background-color: #c99362;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 163, 115, 0.5);
}

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

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* ナビゲーション基本設定 */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: rgba(16, 21, 31, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    height: 70px;
    background-color: rgba(16, 21, 31, 0.98);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-brand .logo {
    height: 50px;
    transition: height 0.3s ease;
}

.navbar.scrolled .navbar-brand .logo {
    height: 40px;
}

.navbar-brand .logo-fallback {
    height: 50px;
    padding: 8px 20px;
    background: linear-gradient(135deg, #c4915c, #d4a373, #e9c46a);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    color: white;
    font-family: var(--heading-font);
    letter-spacing: 2px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.navbar.scrolled .navbar-brand .logo-fallback {
    height: 40px;
    font-size: 1rem;
    padding: 6px 16px;
}

.navbar-nav {
    display: flex;
    align-items: center;
}

.navbar-nav li {
    margin: 0 15px;
}

.navbar-nav li a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--light-color);
    padding: 8px 0;
    position: relative;
}

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

.navbar-nav li a:hover::after,
.navbar-nav li a.active::after {
    width: 100%;
}

.reservation-btn {
    background-color: var(--primary-color);
    color: white !important;
    padding: 8px 20px !important;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.reservation-btn:hover {
    background-color: #c99362;
    transform: translateY(-2px);
}

.navbar-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem;
    z-index: 1001;
}

.navbar-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--light-color);
    margin: 3px 0;
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

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

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

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

/* ヒーローセクション背景設定 */
.hero-section,
#home,
section#home {
    background: #0a0a0a !important;
    background-color: #0a0a0a !important;
    background-image: none !important;
}

.hero-slider,
.hero-slide,
.hero-slide.active {
    background: #0a0a0a !important;
    background-color: #0a0a0a !important;
    background-image: none !important;
}

/* ヒーローアニメーション */
.hero-logo {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1.5s ease;
    margin-bottom: 60px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 20;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* PC版では元の位置に */
@media screen and (min-width: 769px) {
    .hero-logo {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
}

.hero-logo.show {
    opacity: 1;
    transform: translate(-50%, -50%);
}

.hero-logo.hide {
    opacity: 0;
    transform: translate(-50%, -70%);
    transition: all 1s ease;
}

.main-logo {
    max-width: 380px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(212, 163, 115, 0.4);
    transition: all 0.4s ease;
}

.main-logo:hover {
    transform: scale(1.08);
    box-shadow: 0 25px 60px rgba(212, 163, 115, 0.6);
}

.hero-logo .logo-fallback {
    max-width: 380px;
    height: 140px;
    margin: 0 auto;
    background: linear-gradient(135deg, #c4915c, #d4a373, #e9c46a, #f4d46b);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    font-weight: bold;
    color: white;
    font-family: var(--heading-font);
    letter-spacing: 4px;
    text-shadow: 0 6px 20px rgba(0, 0, 0, 0.7);
    box-shadow: 0 20px 50px rgba(212, 163, 115, 0.5);
    border: 3px solid rgba(255, 255, 255, 0.3);
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
}

.concept-container {
    max-width: 950px;
    margin: 0 auto;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 60px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1.5s ease;
    position: relative;
    z-index: 15;
}

.concept-container.show {
    opacity: 1;
    transform: translateY(0);
}

.concept-title {
    font-family: var(--heading-font);
    font-size: 3rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    line-height: 1.8;
    margin-bottom: 50px;
    margin-top: 80px;
    color: white;
    text-shadow: 0 6px 25px rgba(0, 0, 0, 0.9);
    text-align: center;
    animation: enhancedTitleSlideIn 2s ease-out 0.5s both;
    position: relative;
}

.concept-brief {
    margin-bottom: 0;
    animation: enhancedTextFadeIn 2s ease-out 1s both;
}

/* PC版：文章を横に広く読みやすく表示 */
/* PC版：文章を1行にまとめて横に広く表示 */
.concept-description p,
.concept-additional p,
.concept-brief p {
    font-family: var(--concept-font);
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: var(--elegant-spacing);
    line-height: 2.2;
    margin-bottom: 25px;
    color: white;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.9);
    text-align: center;
    opacity: 0.95;
    position: relative;
    transform: translateZ(0);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* PC版（769px以上）でヒーローセクションのコンセプト文章を左揃え＋改行間隔調整 */
@media screen and (min-width: 769px) {
    .concept-description p,
    .concept-additional p,
    .concept-brief p {
        text-align: left !important;
        margin-bottom: 35px !important;
        line-height: 2.4 !important;
    }
}

.luxury-btn-container {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1.5s ease;
    margin-top: 40px;
    position: relative;
    z-index: 10;
}

.luxury-btn-container.show {
    opacity: 1;
    transform: translateY(0);
}

.luxury-reservation-btn {
    display: inline-block;
    position: relative;
    background: linear-gradient(135deg, #d4a373 0%, #e9c46a 50%, #f4d46b 100%);
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 60px;
    padding: 25px 55px;
    text-decoration: none;
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    box-shadow: 0 20px 60px rgba(212, 163, 115, 0.7);
    transition: all 0.4s ease;
    overflow: hidden;
    animation: luxuryPulse 4s ease-in-out infinite;
}

.luxury-reservation-btn:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 30px 80px rgba(212, 163, 115, 0.9);
    background: linear-gradient(135deg, #c99362 0%, #d4a373 50%, #e9c46a 100%);
}

.luxury-reservation-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: btnShine 3s ease-in-out infinite;
}

.luxury-reservation-btn:hover::before {
    animation-duration: 1s;
}

.btn-icon {
    margin-right: 12px;
    font-size: 1.4rem;
    animation: iconBounce 2s ease-in-out infinite;
}

/* アニメーション定義 */
@keyframes luxuryPulse {
    0%, 100% { 
        box-shadow: 0 20px 60px rgba(212, 163, 115, 0.7);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 25px 80px rgba(212, 163, 115, 0.9);
        transform: scale(1.02);
    }
}

@keyframes btnShine {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes iconBounce {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-3px); }
}

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

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

}

/* 🎯 Re'formaの独自価値セクション - 最高級デザイン */
.unique-value-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%) !important;
    padding: 120px 0 !important;
    position: relative !important;
    overflow: hidden !important;
}

.unique-value-section::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 3px !important;
    background: linear-gradient(90deg, transparent, #d4a373, #e9c46a, #d4a373, transparent) !important;
}

.unique-value-section .section-header {
    margin-bottom: 80px !important;
    text-align: center !important;
}

.unique-value-section .section-header h2 {
    font-size: 2.8rem !important;
    color: #1a1a1a !important;
    margin-bottom: 20px !important;
    position: relative !important;
}

.unique-value-section .section-header p {
    font-size: 1.2rem !important;
    color: #666 !important;
    max-width: 600px !important;
    margin: 0 auto !important;
}

/* 価値ポイントカード */
.value-point {
    display: flex !important;
    align-items: flex-start !important;
    gap: 40px !important;
    margin-bottom: 80px !important;
    background: white !important;
    padding: 50px !important;
    border-radius: 25px !important;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08) !important;
    transition: all 0.4s ease !important;
    position: relative !important;
    overflow: hidden !important;
}

.value-point::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 4px !important;
    background: linear-gradient(90deg, #d4a373, #e9c46a, #f4d46b) !important;
}

.value-point:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12) !important;
}

.value-point:nth-child(even) {
    flex-direction: row-reverse !important;
}

/* アイコンスタイル */
.value-icon {
    flex-shrink: 0 !important;
    width: 120px !important;
    height: 120px !important;
    background: linear-gradient(135deg, #d4a373, #e9c46a, #f4d46b) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 15px 40px rgba(212, 163, 115, 0.4) !important;
    transition: all 0.4s ease !important;
    position: relative !important;
}

.value-icon::before {
    content: '' !important;
    position: absolute !important;
    inset: -3px !important;
    background: linear-gradient(45deg, #d4a373, #e9c46a, #f4d46b, #d4a373) !important;
    border-radius: inherit !important;
    z-index: -1 !important;
    animation: iconGlow 3s ease-in-out infinite !important;
}

@keyframes iconGlow {
    0%, 100% { opacity: 0.7; transform: rotate(0deg); }
    50% { opacity: 1; transform: rotate(180deg); }
}

.value-icon i {
    font-size: 3.5rem !important;
    color: white !important;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
}

.value-point:hover .value-icon {
    transform: scale(1.1) rotateY(15deg) !important;
    box-shadow: 0 20px 60px rgba(212, 163, 115, 0.6) !important;
}

/* コンテンツスタイル */
.value-content {
    flex: 1 !important;
    padding: 10px 0 !important;
}

.value-content h3 {
    font-size: 2.2rem !important;
    color: #1a1a1a !important;
    margin-bottom: 25px !important;
    font-weight: 600 !important;
    position: relative !important;
}

.value-content h3::after {
    content: '' !important;
    position: absolute !important;
    bottom: -8px !important;
    left: 0 !important;
    width: 80px !important;
    height: 3px !important;
    background: linear-gradient(90deg, #d4a373, #e9c46a) !important;
    border-radius: 2px !important;
}

.value-content p {
    font-size: 1.1rem !important;
    line-height: 1.8 !important;
    color: #555 !important;
    margin-bottom: 20px !important;
}

.conclusion-text {
    font-size: 1.2rem !important;
    color: #333 !important;
    font-weight: 500 !important;
    margin-top: 30px !important;
    padding: 20px !important;
    background: linear-gradient(135deg, #faedcd, #e9edc9) !important;
    border-radius: 15px !important;
    border-left: 4px solid #d4a373 !important;
}

.conclusion-text.special {
    font-size: 1.3rem !important;
    text-align: center !important;
    background: linear-gradient(135deg, #f0f8ff, #e6f3ff) !important;
    border-left: 4px solid #4a90e2 !important;
    color: #2c5282 !important;
    font-style: italic !important;
}

/* 時間比較スタイル */
.time-comparison {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 30px !important;
    margin: 30px 0 !important;
    padding: 30px !important;
    background: linear-gradient(135deg, #f8f9fa, #ffffff) !important;
    border-radius: 20px !important;
    border: 2px solid #e9ecef !important;
}

.time-item {
    text-align: center !important;
    padding: 20px !important;
    border-radius: 15px !important;
    transition: all 0.3s ease !important;
}

.time-item.general {
    background: linear-gradient(135deg, #f1f3f4, #e8eaed) !important;
    color: #666 !important;
}

.time-item.reforma {
    background: linear-gradient(135deg, #d4a373, #e9c46a) !important;
    color: white !important;
    transform: scale(1.1) !important;
    box-shadow: 0 10px 30px rgba(212, 163, 115, 0.4) !important;
}

.time-number {
    display: block !important;
    font-size: 2rem !important;
    font-weight: 700 !important;
    margin-bottom: 8px !important;
}

.time-label {
    display: block !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    margin-bottom: 5px !important;
}

.time-note {
    display: block !important;
    font-size: 0.9rem !important;
    opacity: 0.9 !important;
    font-style: italic !important;
}

.vs-arrow {
    color: #d4a373 !important;
    font-size: 2rem !important;
    animation: arrowPulse 2s ease-in-out infinite !important;
}

@keyframes arrowPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* お客様の声強化スタイル */
.customer-voice-enhanced {
    background: linear-gradient(135deg, #ffffff, #f8f9fa) !important;
    border: 2px solid #d4a373 !important;
    border-radius: 20px !important;
    padding: 30px !important;
    margin: 30px 0 !important;
    position: relative !important;
    box-shadow: 0 10px 30px rgba(212, 163, 115, 0.2) !important;
}

.quote-icon {
    position: absolute !important;
    top: -10px !important;
    left: 20px !important;
    background: white !important;
    color: #d4a373 !important;
    font-size: 2rem !important;
    padding: 5px 10px !important;
}

.customer-voice-enhanced p {
    font-size: 1.3rem !important;
    font-style: italic !important;
    color: #333 !important;
    text-align: center !important;
    margin: 10px 0 20px 0 !important;
    line-height: 1.6 !important;
}

.voice-attribution {
    text-align: center !important;
    color: #666 !important;
    font-size: 0.9rem !important;
    font-weight: 500 !important;
}

/* アプリ連携ハイライト */
.app-integration-highlight {
    background: linear-gradient(135deg, #e8f5e8, #f0f8ff) !important;
    border-radius: 20px !important;
    padding: 40px !important;
    margin: 30px 0 !important;
    border: 2px solid rgba(106, 176, 76, 0.3) !important;
    position: relative !important;
    overflow: hidden !important;
}

.app-integration-highlight::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 4px !important;
    background: linear-gradient(90deg, #6ab04c, #4a90e2, #6ab04c) !important;
}

.app-header {
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
    margin-bottom: 20px !important;
}

.app-icon {
    font-size: 2rem !important;
    color: #4a90e2 !important;
    background: white !important;
    padding: 10px !important;
    border-radius: 10px !important;
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3) !important;
}

.app-header h4 {
    font-size: 1.6rem !important;
    color: #2c5282 !important;
    margin: 0 !important;
}

/* CBT エビデンス */
.cbt-evidence {
    background: white !important;
    border-radius: 15px !important;
    padding: 25px !important;
    margin-top: 25px !important;
    border-left: 4px solid #4a90e2 !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08) !important;
}

.evidence-badge {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    background: linear-gradient(135deg, #4a90e2, #357abd) !important;
    color: white !important;
    padding: 8px 15px !important;
    border-radius: 20px !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    margin-bottom: 15px !important;
}

.cbt-evidence h5 {
    font-size: 1.3rem !important;
    color: #2c5282 !important;
    margin-bottom: 20px !important;
}

.evidence-points {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
}

.evidence-item {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    font-size: 1rem !important;
    color: #555 !important;
}

.evidence-item i {
    color: #4a90e2 !important;
    font-size: 1.1rem !important;
}

/* 予防の価値 - やさしさビジュアル */
.prevention-message {
    margin-bottom: 30px !important;
}

.prevention-message p strong {
    color: #d4a373 !important;
    background: linear-gradient(135deg, #faedcd, #e9edc9) !important;
    padding: 3px 8px !important;
    border-radius: 5px !important;
}

.kindness-visual {
    display: flex !important;
    justify-content: space-around !important;
    margin-top: 30px !important;
    padding: 25px !important;
    background: linear-gradient(135deg, #fff5f5, #f7fafc) !important;
    border-radius: 15px !important;
    border: 2px solid rgba(212, 163, 115, 0.2) !important;
}

.kindness-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 15px !important;
    border-radius: 10px !important;
    transition: all 0.3s ease !important;
}

.kindness-item:hover {
    transform: translateY(-5px) !important;
    background: white !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
}

.kindness-item i {
    font-size: 2.5rem !important;
    color: #d4a373 !important;
    margin-bottom: 5px !important;
}

.kindness-item span {
    font-size: 1rem !important;
    color: #555 !important;
    font-weight: 500 !important;
    text-align: center !important;
}

/* 🎯 タブレット対応（992px以下） */
@media screen and (max-width: 992px) {
    .unique-value-section {
        padding: 80px 0 !important;
    }
    
    .value-point {
        flex-direction: column !important;
        text-align: center !important;
        gap: 30px !important;
        padding: 40px 30px !important;
    }
    
    .value-point:nth-child(even) {
        flex-direction: column !important;
    }
    
    .value-icon {
        width: 100px !important;
        height: 100px !important;
    }
    
    .value-icon i {
        font-size: 3rem !important;
    }
    
    .value-content h3 {
        font-size: 2rem !important;
    }
    
    .time-comparison {
        flex-direction: column !important;
        gap: 20px !important;
    }
    
    .vs-arrow {
        transform: rotate(90deg) !important;
    }
    
    .kindness-visual {
        flex-direction: column !important;
        gap: 20px !important;
    }
}

/* 🎯 モバイル対応（768px以下） - 美しいカードデザイン完全実装 */
@media screen and (max-width: 768px) {
    .unique-value-section {
        padding: 60px 0 !important;
        background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%) !important;
    }
    
    .unique-value-section .section-header {
        margin-bottom: 60px !important;
        padding: 0 20px !important;
    }
    
    .unique-value-section .section-header h2 {
        font-size: 2.2rem !important;
        color: #1a1a1a !important;
        text-align: center !important;
        position: relative !important;
    }
    
    .unique-value-section .section-header h2::after {
        content: '' !important;
        position: absolute !important;
        bottom: -10px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 80px !important;
        height: 3px !important;
        background: linear-gradient(90deg, #d4a373, #e9c46a) !important;
        border-radius: 2px !important;
    }
    
    .unique-value-section .section-header p {
        font-size: 1.1rem !important;
        color: #666 !important;
        text-align: center !important;
        margin-top: 20px !important;
    }
    
    /* 🎯 価値ポイントカード - モバイル美化版 */
    .value-point {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        margin: 0 15px 40px 15px !important;
        background: white !important;
        padding: 40px 25px !important;
        border-radius: 25px !important;
        box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08) !important;
        transition: all 0.4s ease !important;
        position: relative !important;
        overflow: hidden !important;
        border: 1px solid rgba(212, 163, 115, 0.1) !important;
    }
    
    .value-point::before {
        content: '' !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        height: 4px !important;
        background: linear-gradient(90deg, #d4a373, #e9c46a, #f4d46b) !important;
    }
    
    .value-point:hover {
        transform: translateY(-8px) !important;
        box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12) !important;
    }
    
    /* 🎯 アイコン - モバイル美化版 */
    .value-icon {
        width: 90px !important;
        height: 90px !important;
        background: linear-gradient(135deg, #d4a373, #e9c46a, #f4d46b) !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        box-shadow: 0 15px 40px rgba(212, 163, 115, 0.4) !important;
        transition: all 0.4s ease !important;
        position: relative !important;
        margin-bottom: 25px !important;
        flex-shrink: 0 !important;
    }
    
    .value-icon::before {
        content: '' !important;
        position: absolute !important;
        inset: -3px !important;
        background: linear-gradient(45deg, #d4a373, #e9c46a, #f4d46b, #d4a373) !important;
        border-radius: inherit !important;
        z-index: -1 !important;
        animation: iconGlow 3s ease-in-out infinite !important;
    }
    
    .value-icon i {
        font-size: 2.8rem !important;
        color: white !important;
        text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
    }
    
    .value-point:hover .value-icon {
        transform: scale(1.1) !important;
        box-shadow: 0 20px 60px rgba(212, 163, 115, 0.6) !important;
    }
    
    /* 🎯 コンテンツ - モバイル美化版 */
    .value-content {
        width: 100% !important;
        text-align: center !important;
    }
    
    .value-content h3 {
        font-size: 1.8rem !important;
        color: #1a1a1a !important;
        margin-bottom: 20px !important;
        font-weight: 600 !important;
        position: relative !important;
        text-align: center !important;
    }
    
    .value-content h3::after {
        content: '' !important;
        position: absolute !important;
        bottom: -8px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 60px !important;
        height: 3px !important;
        background: linear-gradient(90deg, #d4a373, #e9c46a) !important;
        border-radius: 2px !important;
    }
    
    .value-content p {
        font-size: 1rem !important;
        line-height: 1.7 !important;
        color: #555 !important;
        margin-bottom: 20px !important;
        text-align: center !important;
    }
    
    .conclusion-text {
        font-size: 1.1rem !important;
        color: #333 !important;
        font-weight: 500 !important;
        margin-top: 25px !important;
        padding: 20px !important;
        background: linear-gradient(135deg, #faedcd, #e9edc9) !important;
        border-radius: 15px !important;
        border-left: 4px solid #d4a373 !important;
        text-align: center !important;
    }
    
    .conclusion-text.special {
        font-size: 1.2rem !important;
        text-align: center !important;
        background: linear-gradient(135deg, #f0f8ff, #e6f3ff) !important;
        border-left: 4px solid #4a90e2 !important;
        color: #2c5282 !important;
        font-style: italic !important;
    }
    
    /* 🎯 時間比較 - モバイル美化版 */
    .time-comparison {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 20px !important;
        margin: 25px 0 !important;
        padding: 25px 20px !important;
        background: linear-gradient(135deg, #f8f9fa, #ffffff) !important;
        border-radius: 20px !important;
        border: 2px solid #e9ecef !important;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05) !important;
    }
    
    .time-item {
        text-align: center !important;
        padding: 20px 25px !important;
        border-radius: 15px !important;
        transition: all 0.3s ease !important;
        width: 100% !important;
        max-width: 200px !important;
    }
    
    .time-item.general {
        background: linear-gradient(135deg, #f1f3f4, #e8eaed) !important;
        color: #666 !important;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05) !important;
    }
    
    .time-item.reforma {
        background: linear-gradient(135deg, #d4a373, #e9c46a) !important;
        color: white !important;
        transform: scale(1.05) !important;
        box-shadow: 0 12px 35px rgba(212, 163, 115, 0.4) !important;
    }
    
    .time-number {
        display: block !important;
        font-size: 1.8rem !important;
        font-weight: 700 !important;
        margin-bottom: 8px !important;
    }
    
    .time-label {
        display: block !important;
        font-size: 1rem !important;
        font-weight: 600 !important;
        margin-bottom: 5px !important;
    }
    
    .time-note {
        display: block !important;
        font-size: 0.9rem !important;
        opacity: 0.9 !important;
        font-style: italic !important;
    }
    
    .vs-arrow {
        color: #d4a373 !important;
        font-size: 1.5rem !important;
        transform: rotate(90deg) !important;
        animation: arrowPulse 2s ease-in-out infinite !important;
    }
    
    /* 🎯 お客様の声 - モバイル美化版 */
    .customer-voice-enhanced {
        background: linear-gradient(135deg, #ffffff, #f8f9fa) !important;
        border: 2px solid #d4a373 !important;
        border-radius: 20px !important;
        padding: 25px 20px !important;
        margin: 25px 0 !important;
        position: relative !important;
        box-shadow: 0 10px 30px rgba(212, 163, 115, 0.2) !important;
    }
    
    .quote-icon {
        position: absolute !important;
        top: -10px !important;
        left: 20px !important;
        background: white !important;
        color: #d4a373 !important;
        font-size: 1.8rem !important;
        padding: 5px 10px !important;
    }
    
    .customer-voice-enhanced p {
        font-size: 1.1rem !important;
        font-style: italic !important;
        color: #333 !important;
        text-align: center !important;
        margin: 15px 0 20px 0 !important;
        line-height: 1.6 !important;
    }
    
    .voice-attribution {
        text-align: center !important;
        color: #666 !important;
        font-size: 0.9rem !important;
        font-weight: 500 !important;
    }
    
    /* 🎯 アプリ連携ハイライト - モバイル美化版 */
    .app-integration-highlight {
        background: linear-gradient(135deg, #e8f5e8, #f0f8ff) !important;
        border-radius: 20px !important;
        padding: 30px 20px !important;
        margin: 25px 0 !important;
        border: 2px solid rgba(106, 176, 76, 0.3) !important;
        position: relative !important;
        overflow: hidden !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
    }
    
    .app-integration-highlight::before {
        content: '' !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        height: 4px !important;
        background: linear-gradient(90deg, #6ab04c, #4a90e2, #6ab04c) !important;
    }
    
    .app-header {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 15px !important;
        margin-bottom: 20px !important;
    }
    
    .app-icon {
        font-size: 2.5rem !important;
        color: #4a90e2 !important;
        background: white !important;
        padding: 15px !important;
        border-radius: 15px !important;
        box-shadow: 0 8px 25px rgba(74, 144, 226, 0.3) !important;
    }
    
    .app-header h4 {
        font-size: 1.5rem !important;
        color: #2c5282 !important;
        margin: 0 !important;
        text-align: center !important;
    }
    
    /* 🎯 CBTエビデンス - モバイル美化版 */
    .cbt-evidence {
        background: white !important;
        border-radius: 15px !important;
        padding: 25px 20px !important;
        margin-top: 25px !important;
        border-left: 4px solid #4a90e2 !important;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08) !important;
    }
    
    .evidence-badge {
        display: inline-flex !important;
        align-items: center !important;
        gap: 8px !important;
        background: linear-gradient(135deg, #4a90e2, #357abd) !important;
        color: white !important;
        padding: 10px 15px !important;
        border-radius: 20px !important;
        font-size: 0.9rem !important;
        font-weight: 600 !important;
        margin-bottom: 15px !important;
        box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3) !important;
    }
    
    .cbt-evidence h5 {
        font-size: 1.3rem !important;
        color: #2c5282 !important;
        margin-bottom: 20px !important;
        text-align: center !important;
    }
    
    .evidence-points {
        display: flex !important;
        flex-direction: column !important;
        gap: 15px !important;
    }
    
    .evidence-item {
        display: flex !important;
        align-items: flex-start !important;
        gap: 12px !important;
        font-size: 0.95rem !important;
        color: #555 !important;
        padding: 10px !important;
        background: #f8f9fa !important;
        border-radius: 10px !important;
        border-left: 3px solid #4a90e2 !important;
    }
    
    .evidence-item i {
        color: #4a90e2 !important;
        font-size: 1.1rem !important;
        margin-top: 2px !important;
        flex-shrink: 0 !important;
    }
    
    /* 🎯 予防メッセージ - モバイル美化版 */
    .prevention-message {
        margin-bottom: 25px !important;
        text-align: center !important;
    }
    
    .prevention-message p {
        text-align: center !important;
    }
    
    .prevention-message p strong {
        color: #d4a373 !important;
        background: linear-gradient(135deg, #faedcd, #e9edc9) !important;
        padding: 4px 8px !important;
        border-radius: 5px !important;
        display: inline-block !important;
    }
    
    .kindness-visual {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 20px !important;
        margin-top: 25px !important;
        padding: 25px 20px !important;
        background: linear-gradient(135deg, #fff5f5, #f7fafc) !important;
        border-radius: 15px !important;
        border: 2px solid rgba(212, 163, 115, 0.2) !important;
    }
    
    .kindness-item {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 10px !important;
        padding: 20px !important;
        border-radius: 15px !important;
        background: white !important;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08) !important;
        transition: all 0.3s ease !important;
        width: 100% !important;
        max-width: 200px !important;
    }
    
    .kindness-item:hover {
        transform: translateY(-5px) !important;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12) !important;
    }
    
    .kindness-item i {
        font-size: 2.5rem !important;
        color: #d4a373 !important;
        margin-bottom: 8px !important;
    }
    
    .kindness-item span {
        font-size: 1rem !important;
        color: #555 !important;
        font-weight: 500 !important;
        text-align: center !important;
    }
}

/* 🎯 さらに小さな画面対応（480px以下） */
@media screen and (max-width: 480px) {
    .unique-value-section {
        padding: 50px 0 !important;
    }
    
    .value-point {
        padding: 25px 15px !important;
        margin-bottom: 40px !important;
    }
    
    .value-icon {
        width: 70px !important;
        height: 70px !important;
    }
    
    .value-icon i {
        font-size: 2rem !important;
    }
    
    .value-content h3 {
        font-size: 1.6rem !important;
    }
    
    .conclusion-text {
        font-size: 1rem !important;
        padding: 12px !important;
    }
    
    .customer-voice-enhanced {
        padding: 20px !important;
    }
    
    .customer-voice-enhanced p {
        font-size: 1.1rem !important;
    }
    
    .time-item {
        padding: 15px !important;
    }
    
    .time-number {
        font-size: 1.6rem !important;
    }
    
    .app-integration-highlight {
        padding: 20px 12px !important;
    }
    
    .cbt-evidence {
        padding: 20px !important;
    }
    
    .kindness-item i {
        font-size: 2rem !important;
    }
    
    .kindness-item span {
        font-size: 0.9rem !important;
    }
}

/* Services Section */

/* Services Section */
.services-section {
    background-color: var(--gray-color);
}

.service-options {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 60px;
}

.service-option {
    flex: 1;
    background-color: white;
    border-radius: 10px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 163, 115, 0.1), transparent);
    transition: left 0.6s ease;
}

.service-option:hover::before {
    left: 100%;
}

.service-option:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--secondary-color), #f4e8c1);
    border-radius: 50%;
    display: flex !important;
    justify-content: center;
    align-items: center;
    font-size: 2rem !important;
    color: var(--primary-color) !important;
    position: relative;
    box-shadow: 0 8px 25px rgba(212, 163, 115, 0.3);
    transition: all 0.4s ease;
    z-index: 10;
}

.service-icon i {
    display: block !important;
    font-size: 2rem !important;
    color: var(--primary-color) !important;
    line-height: 1 !important;
    font-weight: 900 !important;
    font-family: 'Font Awesome 6 Free' !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.service-option:hover .service-icon {
    transform: scale(1.1) rotateY(10deg);
    box-shadow: 0 12px 35px rgba(212, 163, 115, 0.5);
}

.service-option h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-option p {
    text-align: left;
    padding: 0 10px;
    line-height: 1.8;
}

.service-features {
    margin-top: 25px;
    text-align: left;
}

.service-features li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
}

.service-features li i {
    color: var(--primary-color);
    margin-right: 10px;
    margin-top: 5px;
}

/* About Section */
.about-section {
    background-color: var(--gray-color);
}

/* Enhanced Profile Section - 新しいプロフィールスタイル */
.profile-container-enhanced {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.profile-header-section {
    background: linear-gradient(135deg, #d4a373 0%, #e9c46a 100%);
    color: white;
    padding: 50px 40px;
    text-align: center;
}

.profile-name-enhanced {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: white;
}

.profile-tagline-enhanced {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.95;
    font-weight: 400;
}

.profile-mission-enhanced {
    background: rgba(255,255,255,0.15);
    padding: 25px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    font-size: 1.1rem;
    line-height: 1.7;
}

.experience-grid-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    padding: 50px 40px;
}

.experience-card-enhanced {
    background: #f8f9fa;
    padding: 30px 25px;
    border-radius: 15px;
    border-left: 4px solid #d4a373;
    transition: all 0.3s ease;
    position: relative;
}

.experience-card-enhanced:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    background: white;
}

.experience-icon-enhanced {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.experience-title-enhanced {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #333;
}

.experience-description-enhanced {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.experience-insight-enhanced {
    background: linear-gradient(135deg, #faedcd, #e9edc9);
    padding: 15px;
    border-radius: 10px;
    font-size: 0.95rem;
    color: #555;
    font-style: italic;
    border-left: 3px solid #d4a373;
}

/* 🎯 温かみメッセージセクション - モバイル完全対応修正版 */

/* ベーススタイル（PC・モバイル共通） */
.gentle-message-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%) !important;
    padding: 80px 0 !important;
    position: relative !important;
}

.gentle-message-section::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 2px !important;
    background: linear-gradient(90deg, transparent, #d4a373, transparent) !important;
}

.gentle-message-container {
    max-width: 900px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
}

.gentle-message-box {
    background: white !important;
    border-radius: 25px !important;
    padding: 60px 50px !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08) !important;
    position: relative !important;
    overflow: hidden !important;
    border: 1px solid rgba(212, 163, 115, 0.1) !important;
}

.gentle-message-box::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 4px !important;
    background: linear-gradient(90deg, #d4a373, #e9c46a, #f4d46b) !important;
}

.gentle-heart-icon {
    text-align: center !important;
    margin-bottom: 30px !important;
}

.gentle-heart-icon i {
    font-size: 3rem !important;
    color: #d4a373 !important;
    opacity: 0.8 !important;
    animation: gentleHeartBeat 2s ease-in-out infinite !important;
    display: block !important;
}

@keyframes gentleHeartBeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.gentle-title {
    text-align: center !important;
    font-size: 2.2rem !important;
    color: #1a1a1a !important;
    margin-bottom: 40px !important;
    font-weight: 600 !important;
    position: relative !important;
}

.gentle-title::after {
    content: '' !important;
    position: absolute !important;
    bottom: -10px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 80px !important;
    height: 3px !important;
    background: linear-gradient(90deg, #d4a373, #e9c46a) !important;
    border-radius: 2px !important;
}

.gentle-content {
    text-align: center !important;
    margin-bottom: 50px !important;
}

.gentle-content p {
    font-size: 1.2rem !important;
    line-height: 2 !important;
    color: #555 !important;
    margin-bottom: 25px !important;
    font-weight: 400 !important;
}

.gentle-content p:last-child {
    font-size: 1.1rem !important;
    color: #333 !important;
    background: linear-gradient(135deg, #faedcd, #e9edc9) !important;
    padding: 20px !important;
    border-radius: 15px !important;
    border-left: 4px solid #d4a373 !important;
    margin-top: 30px !important;
}

.gentle-approach-points {
    background: #f8f9fa !important;
    border-radius: 20px !important;
    padding: 40px 35px !important;
    margin-bottom: 50px !important;
    border: 1px solid #e9ecef !important;
}

.gentle-approach-title {
    font-size: 1.4rem !important;
    color: #d4a373 !important;
    margin-bottom: 25px !important;
    text-align: center !important;
    font-weight: 600 !important;
}

.gentle-list {
    list-style: none !important;
    padding: 0 !important;
}

.gentle-list li {
    margin-bottom: 18px !important;
    padding: 15px 20px 15px 35px !important;
    background: white !important;
    border-radius: 12px !important;
    border-left: 4px solid #d4a373 !important;
    font-size: 1rem !important;
    color: #555 !important;
    line-height: 1.7 !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05) !important;
    transition: all 0.3s ease !important;
    position: relative !important;
}

.gentle-list li:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
    background: #fafafa !important;
}

.gentle-list li::before {
    content: '✓ ' !important;
    position: absolute !important;
    left: -2px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 30px !important;
    height: 24px !important;
    background: #d4a373 !important;
    color: white !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 0.8rem !important;
    font-weight: bold !important;
    padding-left: 2px !important;
}

.faq-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%) !important;
    border-radius: 20px !important;
    padding: 40px 35px !important;
    margin-bottom: 50px !important;
    border: 1px solid #e9ecef !important;
}

.faq-title {
    font-size: 1.4rem !important;
    color: #d4a373 !important;
    margin-bottom: 30px !important;
    text-align: center !important;
    font-weight: 600 !important;
}

.faq-item {
    margin-bottom: 15px !important;
    background: white !important;
    border-radius: 15px !important;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05) !important;
    border-left: 4px solid #e9c46a !important;
    transition: all 0.3s ease !important;
    overflow: hidden !important;
}

.faq-item:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1) !important;
}

.faq-question {
    font-size: 1.1rem !important;
    color: #333 !important;
    margin-bottom: 0 !important;
    font-weight: 600 !important;
    padding: 25px !important;
    cursor: pointer !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    transition: all 0.3s ease !important;
    position: relative !important;
}

.faq-question:hover {
    background: #f8f9fa !important;
    color: #d4a373 !important;
}

.faq-question::after {
    content: '▼' !important;
    font-size: 0.8rem !important;
    color: #d4a373 !important;
    transition: transform 0.3s ease !important;
    font-weight: bold !important;
}

.faq-question.active::after {
    transform: rotate(180deg) !important;
}

.faq-answer {
    font-size: 1rem !important;
    color: #666 !important;
    line-height: 1.7 !important;
    margin-bottom: 0 !important;
    padding: 0 25px 25px 25px !important;
    max-height: 0 !important;
    overflow: hidden !important;
    transition: all 0.4s ease !important;
    opacity: 0 !important;
}

.faq-answer.active {
    max-height: 200px !important;
    opacity: 1 !important;
    padding: 0 25px 25px 25px !important;
}

.final-message {
    text-align: center !important;
    background: linear-gradient(135deg, #faedcd 0%, #e9edc9 100%) !important;
    border-radius: 20px !important;
    padding: 40px 30px !important;
    border: 2px solid rgba(212, 163, 115, 0.2) !important;
    position: relative !important;
}

.final-message::before {
    content: '' !important;
    position: absolute !important;
    top: -3px !important;
    left: -3px !important;
    right: -3px !important;
    bottom: -3px !important;
    background: linear-gradient(45deg, #d4a373, #e9c46a, #d4a373) !important;
    border-radius: 22px !important;
    z-index: -1 !important;
    opacity: 0.3 !important;
}

.final-message p {
    font-size: 1.1rem !important;
    color: #555 !important;
    line-height: 1.8 !important;
    margin-bottom: 20px !important;
}

.final-message p:last-child {
    margin-bottom: 0 !important;
}

.final-message .highlight {
    font-size: 1.2rem !important;
    color: #d4a373 !important;
    font-weight: 600 !important;
    background: white !important;
    padding: 15px 25px !important;
    border-radius: 25px !important;
    display: inline-block !important;
    margin-top: 15px !important;
    box-shadow: 0 4px 15px rgba(212, 163, 115, 0.2) !important;
}

/* 🎯 タブレット対応（992px以下） */
@media screen and (max-width: 992px) {
    .gentle-message-section {
        padding: 60px 0 !important;
    }
    
    .gentle-message-box {
        padding: 50px 40px !important;
    }
    
    .gentle-title {
        font-size: 2rem !important;
    }
    
    .gentle-content p {
        font-size: 1.1rem !important;
    }
    
    .gentle-approach-points,
    .faq-section {
        padding: 35px 30px !important;
    }
    
    .final-message {
        padding: 35px 25px !important;
    }
}

/* 🎯 モバイル対応（768px以下）- 完全保持版 */
@media screen and (max-width: 768px) {
    .gentle-message-section {
        padding: 50px 0 !important;
        background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%) !important;
    }
    
    .gentle-message-container {
        padding: 0 15px !important;
    }
    
    .gentle-message-box {
        padding: 40px 25px !important;
        border-radius: 20px !important;
        background: white !important;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08) !important;
        border: 1px solid rgba(212, 163, 115, 0.1) !important;
    }
    
    .gentle-message-box::before {
        background: linear-gradient(90deg, #d4a373, #e9c46a, #f4d46b) !important;
        height: 4px !important;
    }
    
    .gentle-heart-icon i {
        font-size: 2.5rem !important;
        color: #d4a373 !important;
        animation: gentleHeartBeat 2s ease-in-out infinite !important;
    }
    
    .gentle-title {
        font-size: 1.8rem !important;
        margin-bottom: 35px !important;
        color: #1a1a1a !important;
    }
    
    .gentle-title::after {
        background: linear-gradient(90deg, #d4a373, #e9c46a) !important;
        width: 60px !important;
    }
    
    .gentle-content p {
        font-size: 1rem !important;
        line-height: 1.8 !important;
        margin-bottom: 20px !important;
        color: #555 !important;
    }
    
    .gentle-content p:last-child {
        background: linear-gradient(135deg, #faedcd, #e9edc9) !important;
        border-left: 4px solid #d4a373 !important;
        padding: 15px !important;
    }
    
    .gentle-approach-points {
        padding: 30px 20px !important;
        border-radius: 15px !important;
        background: #f8f9fa !important;
        border: 1px solid #e9ecef !important;
    }
    
    .gentle-approach-title {
        font-size: 1.3rem !important;
        color: #d4a373 !important;
    }
    
    .gentle-list li {
        padding: 12px 15px 12px 40px !important;
        font-size: 0.95rem !important;
        margin-bottom: 15px !important;
        background: white !important;
        border-left: 4px solid #d4a373 !important;
        border-radius: 12px !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05) !important;
    }
    
    .gentle-list li::before {
        width: 28px !important;
        left: -1px !important;
        background: #d4a373 !important;
        color: white !important;
        border-radius: 50% !important;
    }
    
    .faq-section {
        padding: 30px 20px !important;
        border-radius: 15px !important;
        background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%) !important;
        border: 1px solid #e9ecef !important;
    }
    
    .faq-title {
        font-size: 1.3rem !important;
        color: #d4a373 !important;
    }
    
    .faq-item {
        background: white !important;
        border-left: 4px solid #e9c46a !important;
        border-radius: 15px !important;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05) !important;
    }
    
    .faq-question {
        font-size: 1rem !important;
        padding: 20px !important;
        color: #333 !important;
    }
    
    .faq-question::after {
        color: #d4a373 !important;
    }
    
    .faq-answer {
        font-size: 0.95rem !important;
        padding: 0 20px 20px 20px !important;
        color: #666 !important;
    }
    
    .faq-answer.active {
        padding: 0 20px 20px 20px !important;
    }
    
    .final-message {
        padding: 30px 20px !important;
        border-radius: 15px !important;
        background: linear-gradient(135deg, #faedcd 0%, #e9edc9 100%) !important;
        border: 2px solid rgba(212, 163, 115, 0.2) !important;
    }
    
    .final-message p {
        font-size: 1rem !important;
        color: #555 !important;
    }
    
    .final-message .highlight {
        font-size: 1.1rem !important;
        padding: 12px 20px !important;
        background: white !important;
        color: #d4a373 !important;
        border-radius: 25px !important;
        box-shadow: 0 4px 15px rgba(212, 163, 115, 0.2) !important;
    }
}

/* 🎯 さらに小さな画面対応（480px以下） */
@media screen and (max-width: 480px) {
    .gentle-message-section {
        padding: 40px 0 !important;
    }
    
    .gentle-message-container {
        padding: 0 10px !important;
    }
    
    .gentle-message-box {
        padding: 30px 20px !important;
    }
    
    .gentle-title {
        font-size: 1.6rem !important;
    }
    
    .gentle-heart-icon i {
        font-size: 2.2rem !important;
    }
    
    .gentle-content p {
        font-size: 0.95rem !important;
        line-height: 1.7 !important;
    }
    
    .gentle-approach-points,
    .faq-section {
        padding: 25px 15px !important;
    }
    
    .gentle-list li {
        padding: 10px 12px 10px 35px !important;
        font-size: 0.9rem !important;
    }
    
    .gentle-list li::before {
        width: 26px !important;
        font-size: 0.7rem !important;
    }
    
    .faq-question {
        padding: 15px !important;
        font-size: 0.95rem !important;
    }
    
    .faq-answer {
        padding: 0 15px 15px 15px !important;
        font-size: 0.9rem !important;
    }
    
    .faq-answer.active {
        padding: 0 15px 15px 15px !important;
    }
    
    .final-message {
        padding: 25px 15px !important;
    }
    
    .final-message .highlight {
        font-size: 1rem !important;
        padding: 10px 15px !important;
    }
}

/* 🎯 Re'Formaが大切にしていること - 階層デザイン追加 */

.gentle-main-text {
    font-size: 1rem !important;
    font-weight: 600 !important;
    color: #333 !important;
    line-height: 1.6 !important;
    margin-bottom: 8px !important;
}

.gentle-sub-text {
    font-size: 0.9rem !important;
    font-weight: 400 !important;
    color: #666 !important;
    line-height: 1.5 !important;
    font-style: italic !important;
    padding-left: 15px !important;
    position: relative !important;
    margin-top: 5px !important;
}

.gentle-sub-text::before {
    content: '' !important;
    position: absolute !important;
    left: 0 !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 8px !important;
    height: 1px !important;
    background: #d4a373 !important;
}

/* タブレット対応 */
@media screen and (max-width: 992px) {
    .gentle-main-text {
        font-size: 0.95rem !important;
    }
    
    .gentle-sub-text {
        font-size: 0.85rem !important;
        padding-left: 12px !important;
    }
}

/* モバイル対応 */
@media screen and (max-width: 768px) {
    .gentle-main-text {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
        margin-bottom: 6px !important;
    }
    
    .gentle-sub-text {
        font-size: 0.8rem !important;
        padding-left: 10px !important;
        line-height: 1.4 !important;
    }
    
    .gentle-sub-text::before {
        width: 6px !important;
    }
}

/* さらに小さな画面対応 */
@media screen and (max-width: 480px) {
    .gentle-main-text {
        font-size: 0.85rem !important;
    }
    
    .gentle-sub-text {
        font-size: 0.75rem !important;
        padding-left: 8px !important;
    }
    
    .gentle-sub-text::before {
        width: 5px !important;
    }
}

/* 🎯 モバイル対応（768px以下）- 美しいカードデザイン維持 */
@media screen and (max-width: 768px) {
    .profile-header-section {
        padding: 40px 8px !important;
    }
    
    .profile-name-enhanced {
        font-size: 2rem;
    }
    
    .experience-grid-section {
        padding: 30px 8px 20px 8px !important;
    }
    
    .experience-card-enhanced {
        background: #f8f9fa;
        padding: 25px 8px;
        border-radius: 15px;
        border-left: 4px solid #d4a373;
        box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        transition: all 0.3s ease;
    }
    
    .experience-card-enhanced:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.12);
        background: white;
    }
    
    .experience-icon-enhanced {
        font-size: 2.2rem;
        margin-bottom: 12px;
        display: block;
    }
    
    .experience-title-enhanced {
        font-size: 1.2rem;
        font-weight: 600;
        margin-bottom: 10px;
        color: #333;
    }
    
    .experience-description-enhanced {
        color: #666;
        line-height: 1.5;
        margin-bottom: 12px;
        font-size: 0.95rem;
    }
    
    .experience-insight-enhanced {
        background: linear-gradient(135deg, #faedcd, #e9edc9);
        padding: 12px;
        border-radius: 8px;
        font-size: 0.9rem;
        color: #555;
        font-style: italic;
        border-left: 3px solid #d4a373;
        line-height: 1.4;
    }
    
    .profile-container-enhanced {
        margin: 5px;
        border-radius: 15px;
    }
}

/* さらに小さな画面対応 */
@media screen and (max-width: 480px) {
    .experience-grid-section {
        padding: 20px 5px;
        gap: 15px;
    }
    
    .experience-card-enhanced {
        padding: 20px 5px;
    }
    
    .experience-icon-enhanced {
        font-size: 2rem;
    }
    
    .experience-title-enhanced {
        font-size: 1.1rem;
    }
    
    .experience-description-enhanced {
        font-size: 0.9rem;
    }
    
    .experience-insight-enhanced {
        font-size: 0.85rem;
        padding: 10px;
    }
}

.profile-container {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 60px;
}

.profile-image {
    flex: 1;
}

.profile-image img {
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.profile-content {
    flex: 1;
}

.profile-content h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.profile-name {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.profile-credentials {
    margin-bottom: 20px;
}

.credential {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-right: 10px;
    margin-bottom: 10px;
}

.profile-message {
    line-height: 1.8;
    font-family: var(--serif-font);
}

/* Re'formaの想い - タイトル中央、説明文左詰め */
.philosophy {
    background-color: white;
    border-radius: 10px;
    padding: 60px 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.philosophy h3 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.8rem;
}

.philosophy-points {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.philosophy-point {
    flex: 1;
    text-align: center; /* 全体を中央詰めに戻す */
    padding: 0 20px;
    position: relative;
    transition: all 0.4s ease;
}

.philosophy-point:hover {
    transform: translateY(-10px);
}

.philosophy-point i {
    font-size: 2.5rem !important;
    color: var(--primary-color) !important;
    margin: 0 auto 20px !important;
    display: block !important;
    position: relative;
    transition: all 0.4s ease;
    text-shadow: 0 4px 15px rgba(212, 163, 115, 0.3);
    line-height: 1 !important;
    font-weight: 900 !important;
    font-family: 'Font Awesome 6 Free' !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: auto !important;
    height: auto !important;
    text-align: center !important;
    z-index: 10 !important;
}

.philosophy-point:hover i {
    transform: scale(1.2) rotateY(15deg);
    color: #c99362;
    text-shadow: 0 8px 25px rgba(212, 163, 115, 0.6);
}

.philosophy-point h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark-color);
    font-weight: 600;
    transition: color 0.3s ease;
    text-align: center; /* タイトルは中央詰め */
}

.philosophy-point:hover h4 {
    color: var(--primary-color);
}

.philosophy-point p {
    color: #666;
    line-height: 1.7;
    transition: color 0.3s ease;
    text-align: left; /* 説明文のみ左詰め */
}

/* PC版（769px以上）で想いの説明文を左揃えに */
@media screen and (min-width: 769px) {
    .philosophy-point p {
        text-align: left;
        padding-left: 0;
        margin-left: 0;
    }
}

.philosophy-point:hover p {
    color: #555;
}

/* Menu Section */
.menu-section {
    background-color: var(--gray-color);
    padding: 100px 0;
    position: relative;
    overflow: visible;
    z-index: 1;
    min-height: auto;
}

.service-menu {
    background-color: white;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 60px;
}

.service-menu h3 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.menu-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    gap: 10px;
    flex-wrap: wrap;
}

.menu-tab {
    padding: 12px 25px;
    background: linear-gradient(135deg, #d4a373, #e9c46a);
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 25px;
    margin: 0 5px;
    box-shadow: 0 4px 15px rgba(212, 163, 115, 0.3);
}

.menu-tab:hover {
    background: linear-gradient(135deg, #c99362, #d4a373);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 163, 115, 0.4);
}

.menu-tab.active {
    background: linear-gradient(135deg, #b8854f, #c99362);
    box-shadow: 0 8px 25px rgba(212, 163, 115, 0.5);
    transform: translateY(-3px);
}

.menu-content {
    display: none !important;
}

.menu-content.active {
    display: block !important;
}

.menu-item {
    margin-bottom: 25px;
    padding: 20px;
    background: #fafafa;
    border-radius: 10px;
    border-left: 3px solid var(--primary-color);
    transition: all 0.3s ease;
}

.menu-item:hover {
    background: #f5f5f5;
    transform: translateX(5px);
}

.trip-service {
    background: linear-gradient(135deg, #f4ead5, #f8f3e8) !important;
    border: 1px solid #e8dcc6;
    border-radius: 15px;
    margin-bottom: 30px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(212, 163, 115, 0.15);
}

.trip-service:hover {
    background: linear-gradient(135deg, #f0e6d1, #f4ead5) !important;
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(212, 163, 115, 0.25);
}

.menu-name {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.menu-name h4 {
    margin-bottom: 0;
    font-size: 1.3rem;
    color: #333;
    font-weight: 600;
}

.price {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.2rem;
    background: white;
    padding: 5px 15px;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.menu-item p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
    font-size: 0.95rem;
}

.special-notice {
    margin-top: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #faedcd 0%, #e9edc9 100%);
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
}

.special-notice h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.trip-details {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #e8dcc6;
}

.detail-item {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.detail-item strong {
    color: var(--primary-color);
    min-width: 100px;
    font-weight: 600;
}

.detail-item span {
    color: #666;
    line-height: 1.6;
}

.trip-notice {
    background: linear-gradient(135deg, #fdf6e3, #f9f0da);
    border: 1px solid #e8dcc6;
    border-radius: 15px;
    padding: 25px;
    margin-top: 30px;
    border-left: 4px solid #d4a373;
}

.trip-notice h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.trip-notice h4 i {
    margin-right: 10px;
    color: #d4a373;
}

/* Contact Section */
.contact-section .section-header h2 {
    font-size: 2rem !important;
    line-height: 1.3;
}

.contact-btn {
    background: linear-gradient(135deg, #d4a373, #e9c46a);
    color: white;
    padding: 50px 60px;
    border-radius: 30px;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 18px 50px rgba(212, 163, 115, 0.7);
    border: 2px solid rgba(255, 255, 255, 0.3);
    max-width: 400px;
    display: block;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    transform: translateY(0);
}

.contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.contact-btn:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 25px 70px rgba(212, 163, 115, 0.9);
    background: linear-gradient(135deg, #c99362, #d4a373);
}

.contact-btn:hover::before {
    left: 100%;
}

.contact-btn .fas {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
    animation: contactIconFloat 3s ease-in-out infinite;
}

.contact-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: white;
    font-weight: 700;
}

.contact-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 0;
}

@keyframes contactIconFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

/* Testimonials Section */
.testimonials-section {
    background-color: white;
    position: relative;
    padding: 120px 0;
}

.testimonials-carousel {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 0 20px;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 600%;
}

.testimonial-card {
    flex: 0 0 16.666667%;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 300px;
    border-right: 1px solid #eee;
    position: relative;
}

.testimonial-card:last-child {
    border-right: none;
}

.testimonial-content {
    flex-grow: 1;
    position: relative;
}

.quote-icon {
    position: absolute;
    top: -10px;
    left: 0;
    font-size: 2rem;
    color: #d4a373;
    opacity: 0.3;
}

.testimonial-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    font-style: italic;
    margin-top: 20px;
    margin-bottom: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4a373, #e9c46a);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: white;
    font-size: 1.2rem;
}

.author-info strong {
    display: block;
    color: #333;
    font-size: 1rem;
    font-weight: 600;
}

.author-info span {
    display: block;
    color: #666;
    font-size: 0.9rem;
    margin-top: 2px;
}

.testimonial-indicators {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.indicator {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.indicator.active {
    background: #d4a373;
    transform: scale(1.3);
    border-color: rgba(212, 163, 115, 0.3);
    box-shadow: 0 2px 8px rgba(212, 163, 115, 0.4);
}

.indicator:hover {
    background: #d4a373;
    transform: scale(1.1);
}

/* Reservation Section */
.reservation-section {
    background-color: var(--gray-color);
}

.reservation-container {
    display: flex;
    gap: 50px;
    max-width: 800px;
    margin: 0 auto;
    justify-content: center;
}

.reservation-form-only {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 60px 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.reservation-form-only::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #d4a373, #e9c46a, #f4d46b);
}

.reservation-form-only h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #1a1a1a;
    position: relative;
    display: inline-block;
}

.reservation-form-only h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #d4a373, #e9c46a);
    border-radius: 2px;
}

.reservation-intro {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 50px;
    line-height: 1.8;
}

.line-reservation-enhanced {
    background: linear-gradient(135deg, #06C755 0%, #05B04A 100%);
    color: white;
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.line-reservation-enhanced::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #06C755, #05B04A, #06C755);
    border-radius: 22px;
    z-index: -1;
    animation: borderGlow 3s ease-in-out infinite;
}

@keyframes borderGlow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.line-reservation-enhanced:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(6, 199, 85, 0.3);
}

.line-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    display: block;
    animation: lineIconBounce 2s ease-in-out infinite;
}

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

.line-reservation-enhanced h4 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: white;
}

.line-reservation-enhanced p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.line-btn-enhanced {
    background: white;
    color: #06C755;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.line-btn-enhanced::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: #06C755;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    z-index: -1;
}

.line-btn-enhanced:hover::before {
    width: 300px;
    height: 300px;
}

.line-btn-enhanced:hover {
    color: white;
    transform: scale(1.05);
}

.reservation-notes-enhanced {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 40px;
    border-radius: 15px;
    border-left: 4px solid #d4a373;
    position: relative;
}

.reservation-notes-enhanced h4 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #1a1a1a;
    display: flex;
    align-items: center;
}

.reservation-notes-enhanced h4 i {
    color: #d4a373;
    margin-right: 10px;
    font-size: 1.2rem;
}

.reservation-notes-enhanced ul {
    list-style: none;
    padding: 0;
}

.reservation-notes-enhanced ul li {
    margin-bottom: 18px;
    position: relative;
    padding-left: 30px;
    line-height: 1.7;
    color: #555;
    font-size: 1rem;
    display: flex;
    align-items: flex-start;
}

.reservation-notes-enhanced ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 2px;
    color: #d4a373;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
    width: 20px;
    text-align: center;
}

/* Apps Section */
.apps-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.apps-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4a373, transparent);
}

.apps-container {
    max-width: 1100px;
    margin: 0 auto;
}

.app-card {
    display: flex;
    align-items: center;
    margin-bottom: 100px;
    gap: 60px;
    background: white;
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.app-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #d4a373, #e9c46a, #f4d46b);
}

.app-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

.app-card:nth-child(even) {
    flex-direction: row-reverse;
}

.app-image {
    flex: 1;
    position: relative;
    text-align: center;
}

.app-logo {
    max-width: 280px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    background: white;
    padding: 20px;
}

.app-logo:hover {
    transform: scale(1.08) rotateY(5deg);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.2);
}

.app-details {
    flex: 1;
    padding: 20px 0;
}

.app-details h3 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #1a1a1a;
    position: relative;
    display: inline-block;
}

.app-details h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #d4a373, #e9c46a);
    border-radius: 2px;
}

.app-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.app-features {
    margin: 30px 0;
}

.app-features li {
    margin-bottom: 18px;
    display: flex;
    align-items: flex-start;
    font-size: 1rem;
    color: #555;
}

.app-features li i {
    color: #d4a373;
    margin-right: 15px;
    margin-top: 5px;
    font-size: 1.1rem;
}

.app-download {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.app-btn {
    padding: 15px 30px;
    background: linear-gradient(135deg, #333, #444);
    color: white;
    border-radius: 50px;
    display: flex;
    align-items: center;
    font-weight: 600;
    transition: all 0.4s ease;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.app-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.app-btn:hover::before {
    left: 100%;
}

.app-btn i {
    margin-right: 12px;
    font-size: 1.3rem;
}

.app-btn:hover {
    background: linear-gradient(135deg, #222, #333);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.app-integration {
    background: linear-gradient(135deg, #faedcd 0%, #e9edc9 100%);
    border-radius: 30px;
    padding: 80px 60px;
    text-align: center;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.app-integration::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 163, 115, 0.1) 0%, transparent 70%);
    animation: integrationGlow 8s ease-in-out infinite;
}

@keyframes integrationGlow {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
}

.app-integration h3 {
    margin-bottom: 30px;
    font-size: 2.5rem;
    color: #1a1a1a;
    position: relative;
    z-index: 2;
}

.app-integration p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.integration-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.point {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.point:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.point i {
    font-size: 3rem;
    color: #d4a373;
    margin-bottom: 25px;
    display: block;
}

.point h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.point p {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: white;
    padding: 80px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

.footer-logo {
    max-width: 300px;
}

.footer-logo .logo {
    height: 60px;
    margin-bottom: 20px;
}

.footer-logo .logo-fallback {
    height: 60px;
    padding: 12px 25px;
    background: linear-gradient(135deg, #c4915c, #d4a373, #e9c46a);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    font-family: var(--heading-font);
    letter-spacing: 2px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 20px;
}

.footer-contact h3,
.footer-nav h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
}

.footer-contact h3::after,
.footer-nav h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
}

.footer-contact p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.footer-contact p i {
    margin-right: 15px;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.social-links {
    display: flex !important;
    gap: 15px;
    margin-top: 20px;
    justify-content: flex-start;
}

.social-link {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), #e9c46a);
    color: white;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 1.2rem;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgba(212, 163, 115, 0.5);
}

.social-link i {
    font-size: 1.2rem !important;
    color: white !important;
    display: block !important;
}

.social-link.line-link {
    background: #06C755 !important;
}

.social-link.line-link:hover {
    background: #05B04A !important;
    box-shadow: 0 8px 20px rgba(6, 199, 85, 0.4);
}

.social-link.instagram-link {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D, #F56040, #F77737, #FCAF45, #FFDC80) !important;
}

.social-link.instagram-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgba(225, 48, 108, 0.4);
}

.footer-nav ul li {
    margin-bottom: 15px;
}

.footer-nav ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    color: #888;
    font-size: 0.9rem;
}

/* Scroll Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(212, 163, 115, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.scroll-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 163, 115, 0.7);
}

/* アニメーション効果 */
.fade-in-up {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s ease;
}

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

.service-option,
.app-card,
.testimonial,
.philosophy-point {
    animation: enhancedSlideInFromBottom 0.8s ease-out forwards;
    opacity: 0;
}

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

.gradient-text {
    background: linear-gradient(135deg, var(--primary-color), #e9c46a, #f4d46b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background: linear-gradient(135deg, var(--primary-color), #e9c46a, #f4d46b);
    }
    50% {
        background: linear-gradient(135deg, #f4d46b, var(--primary-color), #e9c46a);
    }
}

/* タブレット・デスクトップ用レスポンシブ */
@media screen and (max-width: 992px) {
    section {
        padding: 80px 0;
    }

    .service-options,
    .profile-container,
    .app-card,
    .reservation-container,
    .philosophy-points,
    .footer-content {
        flex-direction: column;
    }
    
    .philosophy-points {
        gap: 50px;
    }
    
    .philosophy-point {
        padding: 30px 20px;
    }
    
    .philosophy-point i {
        font-size: 3rem !important;
        margin-bottom: 25px !important;
    }

    .app-card {
        gap: 30px;
    }

    .app-card:nth-child(even) {
        flex-direction: column !important;
    }

    .integration-points {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
    }

    .footer-logo, .footer-contact, .footer-nav {
        margin-bottom: 40px;
    }
}

/* モバイル版レスポンシブ（768px以下） - 修正版 */
@media screen and (max-width: 768px) {
    /* 🎯 モバイル版：ナビのロゴを表示に戻す */
    .navbar-brand {
        display: flex !important; /* ロゴを表示 */
    }
    
    /* 🚨 ヒーローセクション内の偽物ロゴは完全削除 */
    .hero-section .navbar-brand,
    .hero-section .navbar .logo,
    .hero-section .navbar .logo-fallback {
        display: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
        position: absolute !important;
        left: -9999px !important;
    }
    
   /* 🚨 PC版でも偽物ロゴを強制的に完全削除 */
.hero-logo .logo-fallback,
.hero-section .logo-fallback {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    position: absolute !important;
    left: -9999px !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
}

/* PC版（769px以上）でも偽物ロゴを確実に非表示 */
@media screen and (min-width: 769px) {
    .hero-logo .logo-fallback {
        display: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
        position: absolute !important;
        left: -9999px !important;
        width: 0 !important;
        height: 0 !important;
    }
    
    /* 本物ロゴは確実に表示 */
    .hero-logo .main-logo {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        position: static !important;
        left: auto !important;
        max-width: 380px !important;
        width: auto !important;
        height: auto !important;
    }
}
    
    /* 🎯 本物ロゴは表示する */
    .hero-logo .main-logo,
    .hero-section .main-logo {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        position: static !important;
        left: auto !important;
    }
    
    .navbar-toggle {
        display: flex;
    }
    
    .navbar-nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: rgba(16, 21, 31, 0.98);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        transition: left 0.3s ease;
        overflow-y: auto;
    }

    .navbar-nav.show {
        left: 0;
    }

    .navbar-nav li {
        margin: 20px 0;
        width: 100%;
        text-align: center;
    }

    .navbar-nav li a {
        font-size: 1.1rem;
        padding: 15px;
        display: block;
    }

    .reservation-btn {
        margin-top: 20px !important;
        padding: 15px 30px !important;
    }

    /* ヒーローセクション - モバイル最適化 */
    .hero-section {
        padding: 80px 0 !important;
    }

    .hero-content {
        padding: 20px !important;
        height: auto !important;
        min-height: 100vh !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        position: relative !important;
    }


/* 🎯 モバイル版：ロゴを完全に画面中央に固定 */
.hero-logo {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    z-index: 9999 !important;
    margin: 0 !important;
    padding: 0 !important;
    transform: none !important;
    animation: none !important;
    transition: opacity 1s ease !important;
    pointer-events: none !important;
}

/* アニメーション状態も強制設定 */
.hero-logo.show {
    opacity: 1 !important;
}

.hero-logo.hide {
    opacity: 0 !important;
}


    /* 🎯 メインロゴのみ表示、フォールバック非表示 */
    .main-logo {
        max-width: 280px !important;
        width: 280px !important;
        display: block !important;
    }
    
    .hero-logo .logo-fallback {
        display: none !important; /* 黄色四角を完全非表示 */
        opacity: 0 !important;
        visibility: hidden !important;
    }

    .concept-container {
        max-width: 100% !important;
        padding: 0 20px !important;
        gap: 40px !important;
    }
    
    .concept-title {
        font-size: 2.2rem !important;
        line-height: 1.4 !important;
        margin-bottom: 40px !important;
        margin-top: 0 !important;
    }

    .concept-description p,
    .concept-additional p,
    .concept-brief p {
        font-size: 1rem !important;
        line-height: 1.8 !important;
        margin: 0 auto 20px auto !important;
        padding: 0 10px !important;
        text-align: center !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        white-space: normal !important;
        color: white !important;
        text-shadow: 0 3px 15px rgba(0, 0, 0, 0.9) !important;
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .luxury-reservation-btn {
        padding: 20px 40px !important;
        font-size: 1.1rem !important;
        letter-spacing: 1.5px !important;
    }
    
    .btn-icon {
        font-size: 1.2rem !important;
        margin-right: 8px !important;
    }

    /* その他のモバイル調整 */
    section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .service-options,
    .profile-container,
    .app-card,
    .reservation-container,
    .philosophy-points,
    .footer-content {
        flex-direction: column;
    }
    
    .philosophy-points {
        gap: 50px;
    }
    
    .philosophy-point {
        padding: 30px 20px;
    }
    
    .philosophy-point i {
        font-size: 3rem !important;
        margin-bottom: 25px !important;
    }

    .app-card {
        gap: 30px;
    }

    .app-card:nth-child(even) {
        flex-direction: column !important;
    }

    .integration-points {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
    }

    .footer-logo, .footer-contact, .footer-nav {
        margin-bottom: 40px;
    }

    .menu-tabs {
        gap: 5px;
    }
    
    .menu-tab {
        padding: 10px 15px;
        font-size: 0.9rem;
        margin: 0 2px;
    }
    
    .testimonials-carousel {
        padding: 0 10px;
    }
    
    .contact-btn {
        padding: 40px 30px;
        max-width: 350px;
    }
    
    .contact-title {
        font-size: 1.5rem;
    }
    
    .contact-subtitle {
        font-size: 1rem;
    }
    
    .line-reservation-enhanced {
        padding: 30px 20px;
    }
    
    .line-icon {
        font-size: 3rem;
    }
    
    .line-reservation-enhanced h4 {
        font-size: 1.5rem;
    }
    
    .reservation-notes-enhanced {
        padding: 30px 20px;
    }
}

/* さらに小さな画面（576px以下）での調整 */
@media screen and (max-width: 576px) {
    .section-header h2 {
        font-size: 1.8rem;
    }

    /* ヒーローセクション - 小画面でのさらなる最適化 */
    .hero-content {
        padding: 15px !important;
        width: 100% !important;
    }
    
    .concept-container {
        padding: 0 15px !important;
    }
    
    .concept-description p,
    .concept-additional p,
    .concept-brief p {
        font-size: 0.95rem !important;
        line-height: 1.7 !important;
        margin-bottom: 18px !important;
        padding: 0 !important;
    }

    .main-logo,
    .hero-logo .logo-fallback {
        max-width: 220px !important;
        width: 220px !important;
    }
    
    .hero-logo .logo-fallback {
        height: 90px !important;
        font-size: 1.6rem !important;
        letter-spacing: 1px !important;
    }
    
    .concept-title {
        font-size: 1.6rem !important;
        line-height: 1.3 !important;
    }

    .luxury-reservation-btn {
        padding: 18px 35px !important;
        font-size: 1rem !important;
        letter-spacing: 1px !important;
    }
    
    .btn-icon {
        font-size: 1.1rem !important;
        margin-right: 6px !important;
    }

    .app-card {
        margin-bottom: 40px;
        padding: 30px 20px;
    }
    
    .app-logo {
        max-width: 200px;
    }
    
    .app-details h3 {
        font-size: 1.8rem;
    }

    .profile-image {
        margin-bottom: 30px;
    }

    .service-option {
        padding: 30px 20px;
    }
    
    .service-icon {
        width: 65px !important;
        height: 65px !important;
        font-size: 1.6rem !important;
        margin-bottom: 20px;
    }
    
    .service-icon i {
        font-size: 1.6rem !important;
    }

    .btn {
        padding: 10px 20px;
    }

    .container {
        padding: 0 1rem;
    }

    .integration-points {
        grid-template-columns: 1fr;
    }
    
    .menu-name {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .price {
        align-self: flex-end;
    }
    
    .philosophy-points {
        gap: 35px;
        padding: 0 5px;
    }
    
    .philosophy-point {
        padding: 20px 10px;
    }
    
    .philosophy-point i {
        font-size: 2.5rem !important;
        margin-bottom: 20px !important;
    }
    
    .philosophy-point h4 {
        font-size: 1.2rem;
    }
    
    .philosophy-point p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    /* 予約注意事項をさらに最適化 */
    .reservation-notes-enhanced {
        padding: 20px 10px !important;
    }
    
    .reservation-notes-enhanced ul li {
        font-size: 0.85rem !important;
        line-height: 1.5 !important;
    }
}

    .reservation-notes-enhanced ul li {
        font-size: 0.85rem !important;
        line-height: 1.5 !important;
    }
}

/* 🎯 モバイル版のみ文章調整CSS - PC版は一切変更なし */

/* モバイル版（768px以下）のみ適用 */
@media screen and (max-width: 768px) {
    
    /* ①「変わりたい想いに、そっと寄り添います」の改行調整 */
    .about-section .section-header h2 {
        line-height: 1.4 !important;
    }
    
    .about-section .section-header h2 .accent::before {
        content: "\A" !important;
        white-space: pre !important;
    }
    
    /* ②プロフィールミッション文を左詰めに */
    .profile-mission-enhanced {
        text-align: left !important;
        line-height: 1.7 !important;
    }
    
    /* ③④⑤経験カードの説明文改行調整 */
    .experience-card-enhanced:nth-child(2) .experience-description-enhanced {
        line-height: 1.6 !important;
    }
    
    .experience-card-enhanced:nth-child(2) .experience-description-enhanced::after {
        content: "大学野球でのトレーナー経験、\A都市対抗野球出場選手の指導" !important;
        white-space: pre-line !important;
        display: block !important;
    }
    
    .experience-card-enhanced:nth-child(2) .experience-description-enhanced {
        font-size: 0 !important;
    }
    
    .experience-card-enhanced:nth-child(2) .experience-insight-enhanced::before {
        content: "「傷害予防と競技力向上を両立する、\Aパフォーマンス理論に基づいた支援を提供」" !important;
        white-space: pre-line !important;
        display: block !important;
        font-size: 0.9rem !important;
        color: #555 !important;
        font-style: italic !important;
        background: linear-gradient(135deg, #faedcd, #e9edc9) !important;
        padding: 12px !important;
        border-radius: 8px !important;
        border-left: 3px solid #d4a373 !important;
        line-height: 1.4 !important;
        margin-bottom: 15px !important;
    }
    
    .experience-card-enhanced:nth-child(2) .experience-insight-enhanced {
        font-size: 0 !important;
    }
    
    .experience-card-enhanced:nth-child(4) .experience-description-enhanced::after {
        content: "個人レッスンでの美容・\Aダイエットサポート" !important;
        white-space: pre-line !important;
        display: block !important;
    }
    
    .experience-card-enhanced:nth-child(4) .experience-description-enhanced {
        font-size: 0 !important;
    }
    
    /* ⑥⑦温かみメッセージセクションの改行調整 */
    .gentle-content p:nth-child(2)::after {
        content: "Re'formaでは、まず丁寧にお話をうかがい、\Aあなたに合ったアプローチを\A一緒に探していきます。" !important;
        white-space: pre-line !important;
        display: block !important;
    }
    
    .gentle-content p:nth-child(2) {
        font-size: 0 !important;
    }
    
    .gentle-content p:nth-child(3)::after {
        content: "初回の施術で\A「これなら変われそう」と\A前向きな気持ちになられる方が多くいらっしゃいます。" !important;
        white-space: pre-line !important;
        display: block !important;
    }
    
    .gentle-content p:nth-child(3) {
        font-size: 0 !important;
    }
    
    /* ⑧⑨最終メッセージの改行調整 */
    .final-message p:nth-child(1)::after {
        content: "今の状態が\A「当たり前」になっていませんか？" !important;
        white-space: pre-line !important;
        display: block !important;
    }
    
    .final-message p:nth-child(1) {
        font-size: 0 !important;
    }
    
    .final-message .highlight::after {
        content: "Re'formaは、あなたのペースで\A一緒に進んでいきます。" !important;
        white-space: pre-line !important;
        display: block !important;
    }
    
    .final-message .highlight {
        font-size: 0 !important;
    }
    
    /* ⑩⑪独自価値セクションヘッダーの改行調整 */
    .unique-value-section .section-header h2::after {
        content: "Re'formaだから\Aこそできる価値" !important;
        white-space: pre-line !important;
        display: block !important;
        font-size: 2.2rem !important;
        color: #1a1a1a !important;
        margin-bottom: 20px !important;
    }
    
    .unique-value-section .section-header h2 {
        font-size: 0 !important;
    }
    
    .unique-value-section .section-header p::after {
        content: "一般的な施術とは一線を画す、\A私たちの独自アプローチ" !important;
        white-space: pre-line !important;
        display: block !important;
    }
    
    .unique-value-section .section-header p {
        font-size: 0 !important;
    }
    
    /* ⑫時間比較説明文を左詰めに */
    .value-point.time-quality .value-content p:first-of-type {
        text-align: left !important;
        line-height: 1.7 !important;
    }
    
    /* ⑬お客様の声の改行調整 */
    .conclusion-text:not(.special)::after {
        content: "そう感じていただける理由が、\Aここにはあります。" !important;
        white-space: pre-line !important;
        display: block !important;
    }
    
    .conclusion-text:not(.special) {
        font-size: 0 !important;
    }
    
    /* ⑭⑮心身統合セクションの調整 */
    .value-point.mind-body .value-content h3::after {
        content: "からだと、こころの両方に寄り添う\A新しいサポート" !important;
        white-space: pre-line !important;
        display: block !important;
    }
    
    .value-point.mind-body .value-content h3 {
        font-size: 0 !important;
    }
    
    .value-point.mind-body .value-content p:first-of-type {
        text-align: left !important;
        line-height: 1.7 !important;
    }
    
    /* ⑯CBT理論ベースの3つのチェック項目を左詰めに */
    .evidence-points {
        text-align: left !important;
    }
    
    .evidence-item {
        text-align: left !important;
        justify-content: flex-start !important;
    }
    
    /* ⑰心身統合結論の改行調整 */
    .conclusion-text.special::after {
        content: "\"からだ\"と\"こころ\"、\A両方に寄り添える。\ARe'Formaだからこそできる、新しいサポートのかたちです。" !important;
        white-space: pre-line !important;
        display: block !important;
        font-style: italic !important;
    }
    
    .conclusion-text.special {
        font-size: 0 !important;
    }
    
    /* ⑱⑲予防セクションの改行調整 */
    .value-point.prevention .value-content h3::after {
        content: "未来への、\Aささやかな思いやり" !important;
        white-space: pre-line !important;
        display: block !important;
    }
    
    .value-point.prevention .value-content h3 {
        font-size: 0 !important;
    }
    
    .prevention-message p:nth-child(2)::after {
        content: "予防は、未来の自分のため。\Aそして何より、大切な人に心配をかけないための、\Aささやかな思いやりでもあります。" !important;
        white-space: pre-line !important;
        display: block !important;
        font-weight: normal !important;
    }
    
    .prevention-message p:nth-child(2) {
        font-size: 0 !important;
    }
    
    /* 強調部分のスタイルを再適用 */
    .prevention-message p:nth-child(2)::after strong {
        font-weight: 600 !important;
        color: #d4a373 !important;
        background: linear-gradient(135deg, #faedcd, #e9edc9) !important;
        padding: 3px 8px !important;
        border-radius: 5px !important;
    }
}

/* 🎯 PC・モバイル専用表示クラス - PC版は絶対に崩さない */

/* PC版のみ表示（768px以上） */
.pc-only {
    display: block !important;
}

.mobile-only {
    display: none !important;
}

/* モバイル版のみ表示（768px以下） */
@media screen and (max-width: 768px) {
    .pc-only {
        display: none !important;
    }
    
    .mobile-only {
        display: block !important;
    }
    
    /* テキスト専用クラス */
    .pc-text {
        display: none !important;
    }
    
    .mobile-text {
        display: block !important;
        text-align: left !important;
        line-height: 1.7 !important;
    }
}

/* PC版でのテキスト専用クラス */
@media screen and (min-width: 769px) {
    .pc-text {
        display: block !important;
    }
    
    .mobile-text {
        display: none !important;
    }
}

/* 🎯 PC・モバイル基本設定（追加必要） */
.pc-only {
    display: block !important;
}

.mobile-only {
    display: none !important;
}

/* モバイル版のみ表示（768px以下） */
@media screen and (max-width: 768px) {
    .pc-only {
        display: none !important;
    }
    
    .mobile-only {
        display: block !important;
    }
    
    /* テキスト専用クラス */
    .pc-text {
        display: none !important;
    }
    
    .mobile-text {
        display: block !important;
        text-align: left !important;
        line-height: 1.7 !important;
    }
}

/* PC版でのテキスト専用クラス */
@media screen and (min-width: 769px) {
    .pc-text {
        display: block !important;
    }
    
    .mobile-text {
        display: none !important;
    }
}

/* 🎯 Perfect Coming Soon - PC・モバイル完全対応版 */

/* Coming Soon 動画背景（完璧クロマキー処理） */
.coming-soon-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 25; /* 🎯 アプリロゴより前面、テキストより背面 */
    overflow: hidden;
    border-radius: 25px;
    pointer-events: none;
    opacity: 0; /* 🎯 初期は非表示 */
    transition: opacity 0.5s ease;
}

/* スクロール時に表示 */
.coming-soon-video-bg.show {
    opacity: 1;
}

.coming-soon-video-bg video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    
    /* 🎯 完璧クロマキー処理 */
    filter: 
        contrast(1.8) 
        saturate(0.15)
        brightness(1.4)
        hue-rotate(-75deg)
        drop-shadow(0 0 30px rgba(255,255,255,0.6));
    
    /* 🎯 ブレンドモード */
    mix-blend-mode: screen;
}

/* 🎯 モバイル対応（768px以下） - アプリロゴ位置＋美しい色味 */
@media screen and (max-width: 768px) {
    .coming-soon-video-bg {
        /* アプリロゴと完全同一サイズ・位置 */
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100% !important;
        height: 100% !important;
        border-radius: 20px !important;
        z-index: 25 !important;
        overflow: hidden !important;
        pointer-events: none !important;
    }
    
    .coming-soon-video-bg video {
        /* アプリロゴエリア内完全収納 */
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        width: 100% !important;
        height: 100% !important;
        max-width: 100% !important;
        max-height: 100% !important;
        object-fit: contain !important; /* 見切れ防止 */
        object-position: center center !important;
        
        /* 🎯 元動画の美しい色味を保持するクロマキー */
        filter: 
            contrast(1.1) 
            saturate(1.0)
            brightness(1.1)
            hue-rotate(-10deg)
            drop-shadow(0 0 20px rgba(255,255,255,0.3)) !important;
        mix-blend-mode: multiply !important;
    }
    
    /* アプリロゴエリアのサイズ統一 */
    .app-image {
        position: relative !important;
        width: 100% !important;
        max-width: 280px !important;
        height: 280px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 0 auto !important;
        z-index: 20 !important;
    }
    
    .app-logo {
        width: 100% !important;
        max-width: 280px !important;
        height: auto !important;
        z-index: 15 !important;
    }
}

/* 🎯 さらに小さな画面対応（480px以下） */
@media screen and (max-width: 480px) {
    .coming-soon-video-bg video {
        /* 小画面最適化 */
        filter: 
            contrast(2.0) 
            saturate(0.08)
            brightness(1.5)
            hue-rotate(-80deg)
            drop-shadow(0 0 40px rgba(255,255,255,0.8));
    }
}

/* 🎯 Perfect Coming Soon - 完璧クロマキー + 1回再生版 */

/* Coming Soon 動画背景（完璧クロマキー処理） */
.coming-soon-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 25; /* 🎯 アプリロゴより前面、テキストより背面 */
    overflow: hidden;
    border-radius: 25px;
    pointer-events: none;
    opacity: 0; /* 🎯 初期は非表示 */
    transition: opacity 0.5s ease;
}

/* スクロール時に表示 */
.coming-soon-video-bg.show {
    opacity: 1;
}

    .coming-soon-video-bg video {
    /* 🎯 自然な色味保持クロマキー処理 */
    filter: 
        contrast(1.1) 
        saturate(1.2) 
        brightness(1.0)
        hue-rotate(0deg);
    
    /* 🎯 緑背景のみ除去 */
    mix-blend-mode: multiply;
    
    /* 🎯 緑色完全除去マスク */
    -webkit-mask: 
        radial-gradient(circle at center, 
            rgba(255,255,255,1) 25%, 
            rgba(255,255,255,0.9) 50%, 
            rgba(255,255,255,0.6) 70%,
            rgba(0,0,0,0) 85%
        );
    mask: 
        radial-gradient(circle at center, 
            rgba(255,255,255,1) 25%, 
            rgba(255,255,255,0.9) 50%, 
            rgba(255,255,255,0.6) 70%,
            rgba(0,0,0,0) 85%
        );
    
    /* 🎯 ブレンドモード追加 */
    mix-blend-mode: screen;
}


/* 🎯 微細オーバーレイ */
.video-overlay-subtle {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.08) 0%, 
        rgba(255, 255, 255, 0.03) 50%, 
        rgba(255, 255, 255, 0.08) 100%);
    z-index: 26; /* 🎯 動画より前面 */
    pointer-events: none;
    border-radius: 25px;
}

/* Coming Soonカードスタイル */
.app-card-coming-soon {
    position: relative;
    overflow: hidden;
    z-index: 5;
}

/* 🎯 アプリロゴとコンテンツ（動画より背面） */
.app-card-coming-soon .app-image,
.app-card-coming-soon .app-details {
    position: relative;
    z-index: 20; /* 🎯 動画より背面、でも見える */
}

/* 🎯 Coming Soon テキストを最前面に */
.coming-soon-simple {
    background: linear-gradient(135deg, #faedcd 0%, #e9edc9 100%);
    border-radius: 15px;
    padding: 25px;
    margin-top: 30px;
    border-left: 4px solid var(--primary-color);
    position: relative;
    z-index: 50; /* 🎯 最前面表示 */
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255, 255, 255, 0.95);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.coming-soon-text {
    display: flex;
    align-items: center;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.2rem;
    text-shadow: 3px 3px 6px rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 51;
}

.coming-soon-text i {
    margin-right: 10px;
    font-size: 1.3rem;
    animation: iconPulse 2s ease-in-out infinite;
    filter: drop-shadow(3px 3px 6px rgba(0,0,0,0.5));
}

@keyframes iconPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

.coming-soon-note {
    color: #111;
    line-height: 1.6;
    margin: 0;
    font-size: 1.05rem;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 51;
}

/* 🎯 アプリロゴのz-index調整 */
.app-logo {
    position: relative;
    z-index: 15; /* 🎯 動画より背面 */
    max-width: 280px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    background: white;
    padding: 20px;
}

/* 🎯 1回だけ再生用のクラス */
.coming-soon-video-bg.played {
    opacity: 0.7;
    transition: opacity 1s ease 1s; /* 1秒後にフェード開始 */
}

.coming-soon-video-bg.finished {
    opacity: 0;
    pointer-events: none;
    transition: opacity 1s ease;
}

/* 🎯 モバイル対応（完璧な縦長表示） */
@media screen and (max-width: 768px) {
    .coming-soon-video-bg {
        border-radius: 20px;
        z-index: 25;
    }
    
    
    .app-card-coming-soon {
        flex-direction: column !important;
        gap: 30px;
        padding: 35px 20px;
        text-align: center;
        z-index: 5;
    }
    
    .app-card-coming-soon:nth-child(even) {
        flex-direction: column !important;
    }
    
    .coming-soon-simple {
        padding: 20px;
        text-align: center;
        z-index: 50;
        margin-top: 25px;
        border: 2px solid rgba(255, 255, 255, 0.95);
    }
    
    .coming-soon-text {
        justify-content: center;
        font-size: 1.1rem;
        z-index: 51;
    }
    
    .coming-soon-note {
        z-index: 51;
    }
    
    .video-overlay-subtle {
        z-index: 26;
        border-radius: 20px;
    }
}

@media screen and (max-width: 480px) {
    .coming-soon-video-bg video {
        min-width: 160%;
        min-height: 160%;
        
        /* 🎯 小画面用クロマキー調整 */
        filter: 
            contrast(2.0) 
            saturate(0.08)
            brightness(1.5)
            hue-rotate(-80deg)
            drop-shadow(0 0 40px rgba(255,255,255,0.8));
    }
    
    .coming-soon-simple {
        padding: 15px;
        z-index: 50;
    }
    
    .coming-soon-text {
        font-size: 1rem;
        z-index: 51;
    }
    
    .coming-soon-note {
        font-size: 0.95rem;
        z-index: 51;
    }
}

/* 🎯 デバッグ用（本番では削除可能） */
/* 
.coming-soon-video-bg {
    border: 3px solid red !important;
}
.coming-soon-simple {
    border: 3px solid blue !important;
}
*/

/* 🎯 モバイル余白最適化 - 追加CSS */
@media screen and (max-width: 768px) {
    .accordion-container {
        padding: 0 8px !important;
    }
    
    .accordion-item {
        margin: 0 4px 15px 4px !important;
    }
    
    .accordion-trigger {
        padding: 18px 16px !important;
    }
    
    .accordion-content-inner {
        padding: 0 16px 20px 16px !important;
    }
    
    .accordion-content-inner h3 {
        padding: 0 8px !important;
    }
    
    .expand-concept-btn {
        margin: 30px 8px !important;
    }
}

@media screen and (max-width: 480px) {
    .accordion-container {
        padding: 0 4px !important;
    }
    
    .accordion-item {
        margin: 0 2px 12px 2px !important;
    }
    
    .accordion-trigger {
        padding: 15px 12px !important;
    }
    
    .accordion-content-inner {
        padding: 0 12px 15px 12px !important;
    }
    
    .accordion-content-inner h3 {
        padding: 0 4px !important;
    }
}

/* 🔥 モバイル余白問題 完全解決 - 最高優先度CSS */
@media screen and (max-width: 768px) {
    /* 🎯 アコーディオン全体を画面幅最大活用 */
    .accordion-section {
        padding: 40px 0 !important;
    }
    
    .accordion-container {
    padding: 0 5px !important;
    margin: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}
    
    .accordion-header {
        padding: 0 10px !important;
        margin-bottom: 20px !important;
        text-align: center !important;
    }
    
    .accordion-header h2 {
        font-size: 1.8rem !important;
        margin-bottom: 10px !important;
    }
    
    .accordion-header p {
        font-size: 1rem !important;
        margin-top: 10px !important;
    }
    
    /* 🎯 アコーディオンアイテムを画面端まで */
    .accordion-item {
    margin: 0 2px 8px 2px !important;
    width: calc(100% - 4px) !important;
    box-sizing: border-box !important;
    border-radius: 10px !important;
}
    
    /* 🎯 アコーディオントリガーを最適化 */
    .accordion-trigger {
        padding: 12px 8px !important;
        margin: 0 !important;
        width: 100% !important;
        box-sizing: border-box !important;
        font-size: 0.95rem !important;
    }
    
    .accordion-icon {
        gap: 8px !important;
    }
    
    .accordion-icon i {
        font-size: 1.4rem !important;
        width: 30px !important;
    }
    
    .accordion-icon span {
        font-size: 0.95rem !important;
        line-height: 1.2 !important;
    }
    
    /* 🎯 アコーディオンコンテンツを最適化 */
    .accordion-content-inner {
        padding: 0 8px 15px 8px !important;
        margin: 0 !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .accordion-content-inner h3 {
        padding: 0 5px !important;
        margin: 15px 0 10px 0 !important;
        font-size: 1.3rem !important;
        line-height: 1.2 !important;
        text-align: center !important;
    }
    
    /* 🎯 各セクション要素を最適化 */
    .unique-value-section,
    .gentle-message-section,
    .apps-section,
    .reservation-section {
        width: 100% !important;
        overflow-x: hidden !important;
    }
    
    .unique-value-section .container,
    .gentle-message-container,
    .apps-container,
    .reservation-container {
        padding: 0 5px !important;
        margin: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    /* 🎯 価値ポイントカードを最適化 */
    .value-point {
        margin: 0 2px 20px 2px !important;
        padding: 15px 8px !important;
        width: calc(100% - 4px) !important;
        box-sizing: border-box !important;
    }
    
    .value-content h3 {
        font-size: 1.2rem !important;
        line-height: 1.3 !important;
        margin-bottom: 10px !important;
    }
    
    .value-content p {
        font-size: 0.9rem !important;
        line-height: 1.4 !important;
        margin-bottom: 8px !important;
    }
    
    /* 🎯 温かみメッセージボックスを最適化 */
    .gentle-message-box {
        margin: 0 2px !important;
        padding: 15px 8px !important;
        width: calc(100% - 4px) !important;
        box-sizing: border-box !important;
    }
    
    .gentle-content p {
        font-size: 0.9rem !important;
        line-height: 1.4 !important;
        margin-bottom: 8px !important;
    }
    
    /* 🎯 アプリカードを最適化 */
    .app-card {
        margin: 0 2px 20px 2px !important;
        padding: 15px 8px !important;
        width: calc(100% - 4px) !important;
        box-sizing: border-box !important;
    }
    
    .app-description {
        font-size: 0.9rem !important;
        line-height: 1.4 !important;
        margin-bottom: 8px !important;
    }
    
    /* 🎯 メニュー項目を最適化 */
    .menu-item {
        margin-bottom: 10px !important;
        padding: 12px 8px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .menu-item h4 {
        font-size: 1.1rem !important;
        margin-bottom: 5px !important;
    }
    
    .menu-item p {
        font-size: 0.85rem !important;
        line-height: 1.3 !important;
        margin-bottom: 5px !important;
    }
    
    /* 🎯 リスト項目を最適化 */
    .gentle-list li {
        padding: 8px 12px 8px 25px !important;
        margin-bottom: 6px !important;
        font-size: 0.85rem !important;
        line-height: 1.3 !important;
    }
    
    /* 🎯 その他の要素を最適化 */
    .time-comparison,
    .customer-voice-enhanced,
    .app-integration-highlight,
    .cbt-evidence {
        padding: 10px 8px !important;
        margin: 10px 0 !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .conclusion-text {
        padding: 8px !important;
        margin-top: 10px !important;
        font-size: 0.9rem !important;
        line-height: 1.3 !important;
    }
}

/* 🎯 さらに小さな画面（480px以下）での最適化 */
@media screen and (max-width: 480px) {
    .accordion-container {
        padding: 0 3px !important;
    }
    
    .accordion-item {
        margin: 0 1px 6px 1px !important;
        width: calc(100% - 2px) !important;
    }
    
    .accordion-trigger {
        padding: 10px 6px !important;
        font-size: 0.9rem !important;
    }
    
    .accordion-content-inner {
        padding: 0 6px 12px 6px !important;
    }
    
    .accordion-content-inner h3 {
        font-size: 1.2rem !important;
        margin: 12px 0 8px 0 !important;
    }
}

/* 🎯 施術メニューとアプリ連携の縦長問題解決 */
@media screen and (max-width: 768px) {
    /* ①施術メニューの最適化 */
    .service-menu {
        padding: 25px 15px !important;
        margin-bottom: 30px !important;
    }
    
    .service-menu h3 {
        font-size: 1.4rem !important;
        margin-bottom: 20px !important;
        text-align: center !important;
    }
    
    .menu-tabs {
        gap: 5px !important;
        margin-bottom: 20px !important;
        justify-content: center !important;
        flex-wrap: wrap !important;
    }
    
    .menu-tab {
        padding: 8px 15px !important;
        font-size: 0.9rem !important;
        margin: 2px !important;
        border-radius: 20px !important;
    }
    
    /* メニューアイテムをコンパクトに */
    .menu-item {
        margin-bottom: 12px !important;
        padding: 15px 10px !important;
        background: #fafafa !important;
        border-radius: 10px !important;
        border-left: 3px solid var(--primary-color) !important;
    }
    
    .menu-name {
        margin-bottom: 8px !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        flex-wrap: wrap !important;
        gap: 8px !important;
    }
    
    .menu-name h4 {
        font-size: 1.1rem !important;
        margin-bottom: 0 !important;
        flex: 1 !important;
        min-width: 60% !important;
    }
    
    .price {
        font-size: 1rem !important;
        padding: 4px 12px !important;
        border-radius: 15px !important;
        flex-shrink: 0 !important;
    }
    
    .menu-item p {
        font-size: 0.85rem !important;
        line-height: 1.4 !important;
        margin-bottom: 0 !important;
        color: #666 !important;
    }
    
    /* 出張整体の詳細情報をコンパクトに */
    .trip-service {
        padding: 20px 15px !important;
        margin-bottom: 20px !important;
    }
    
    .trip-details {
        margin-top: 15px !important;
        padding-top: 10px !important;
    }
    
    .detail-item {
        margin-bottom: 8px !important;
        display: flex !important;
        align-items: flex-start !important;
        gap: 8px !important;
    }
    
    .detail-item strong {
        min-width: 70px !important;
        font-size: 0.85rem !important;
    }
    
    .detail-item span {
        font-size: 0.85rem !important;
        line-height: 1.3 !important;
    }
    
    /* ②アプリ連携セクションの最適化 */
    .app-integration {
        padding: 40px 20px !important;
        margin-top: 40px !important;
        border-radius: 20px !important;
    }
    
    .app-integration h3 {
        font-size: 1.6rem !important;
        margin-bottom: 15px !important;
        line-height: 1.3 !important;
    }
    
    .app-integration p {
        font-size: 1rem !important;
        margin-bottom: 30px !important;
        line-height: 1.5 !important;
    }
    
    /* 連携ポイントを横並びでコンパクトに */
    .integration-points {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
        margin-top: 30px !important;
    }
    
    .point {
        background: white !important;
        padding: 20px 15px !important;
        border-radius: 15px !important;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08) !important;
        text-align: center !important;
    }
    
    .point i {
        font-size: 2rem !important;
        color: #d4a373 !important;
        margin-bottom: 10px !important;
        display: block !important;
    }
    
    .point h4 {
        font-size: 1.1rem !important;
        margin-bottom: 8px !important;
        color: #1a1a1a !important;
        line-height: 1.3 !important;
    }
    
    .point p {
        color: #666 !important;
        line-height: 1.4 !important;
        font-size: 0.85rem !important;
        margin: 0 !important;
    }
    
    /* Coming Soonボックスをコンパクトに */
    .coming-soon-simple {
        padding: 15px !important;
        margin-top: 20px !important;
        border-radius: 12px !important;
    }
    
    .coming-soon-text {
        font-size: 1rem !important;
        margin-bottom: 8px !important;
    }
    
    .coming-soon-note {
        font-size: 0.9rem !important;
        line-height: 1.4 !important;
        margin: 0 !important;
    }
}

/* さらに小さな画面（480px以下）での最適化 */
@media screen and (max-width: 480px) {
    .menu-name {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 5px !important;
    }
    
    .menu-name h4 {
        font-size: 1rem !important;
        min-width: auto !important;
    }
    
    .price {
        align-self: flex-end !important;
        font-size: 0.95rem !important;
    }
    
    .point h4 {
        font-size: 1rem !important;
    }
    
    .point p {
        font-size: 0.8rem !important;
    }
}

/* 🎯 プロフィール構成の美化・強化 */

/* プロフィールヘッダーを美しく復活 */
.profile-header-section {
    background: linear-gradient(135deg, #d4a373 0%, #e9c46a 100%) !important;
    color: white !important;
    padding: 50px 40px !important;
    text-align: center !important;
    border-radius: 20px 20px 0 0 !important;
}

.profile-name-enhanced {
    font-size: 2.5rem !important;
    margin-bottom: 15px !important;
    font-weight: 600 !important;
    color: white !important;
}

.profile-tagline-enhanced {
    font-size: 1.3rem !important;
    margin-bottom: 0 !important;
    opacity: 0.95 !important;
    font-weight: 400 !important;
    background: rgba(255,255,255,0.15) !important;
    padding: 20px !important;
    border-radius: 15px !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255,255,255,0.2) !important;
}

/* 経験カードグリッドの美化 */
.experience-grid-section {
    padding: 50px 40px 30px 40px !important;
    background: white !important;
}

/* 🎯 結論メッセージを大きく中央で目立たせる */
.profile-conclusion-enhanced {
    background: linear-gradient(135deg, #f4ead5 0%, #e8dcc6 100%) !important;
    padding: 60px 40px !important;
    text-align: center !important;
    border-radius: 0 0 20px 20px !important;
    position: relative !important;
    overflow: hidden !important;
}

.profile-conclusion-enhanced::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 4px !important;
    background: linear-gradient(90deg, #d4a373, #e9c46a, #f4d46b) !important;
}

.profile-conclusion-enhanced .profile-mission-enhanced {
    font-size: 1.8rem !important;
    font-weight: 600 !important;
    color: #2c1810 !important;
    line-height: 1.6 !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1) !important;
    position: relative !important;
    max-width: 800px !important;
    margin: 0 auto !important;
    background: white !important;
    padding: 40px 30px !important;
    border-radius: 20px !important;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1) !important;
    border: 2px solid rgba(212, 163, 115, 0.2) !important;
}

/* モバイル対応 */
@media screen and (max-width: 768px) {
    .profile-header-section {
        padding: 40px 20px !important;
        border-radius: 15px 15px 0 0 !important;
    }
    
    .profile-name-enhanced {
        font-size: 2rem !important;
    }
    
    .profile-tagline-enhanced {
        font-size: 1.1rem !important;
        padding: 15px !important;
    }
    
    .experience-grid-section {
        padding: 30px 20px 20px 20px !important;
    }
    
    .profile-conclusion-enhanced {
        padding: 40px 20px !important;
        border-radius: 0 0 15px 15px !important;
    }
    
    .profile-conclusion-enhanced .profile-mission-enhanced {
        font-size: 1.4rem !important;
        padding: 25px 20px !important;
        line-height: 1.5 !important;
    }
}

@media screen and (max-width: 480px) {
    .profile-name-enhanced {
        font-size: 1.8rem !important;
    }
    
    .profile-tagline-enhanced {
        font-size: 1rem !important;
    }
    
    .profile-conclusion-enhanced .profile-mission-enhanced {
        font-size: 1.2rem !important;
        padding: 20px 15px !important;
    }
}

/* 🎯 結論メッセージを独立したセクションとして強調 */

/* 結論セクションを経験カードから完全分離 */
.profile-conclusion-enhanced {
    background: linear-gradient(135deg, #f4ead5 0%, #e8dcc6 100%) !important;
    padding: 80px 40px !important;
    text-align: center !important;
    margin-top: 60px !important;
    border-radius: 25px !important;
    position: relative !important;
    overflow: hidden !important;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15) !important;
}

/* 上部装飾ライン */
.profile-conclusion-enhanced::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 6px !important;
    background: linear-gradient(90deg, #d4a373, #e9c46a, #f4d46b, #e9c46a, #d4a373) !important;
}

/* 結論メッセージボックスを大きく強調 */
.profile-conclusion-enhanced .profile-mission-enhanced {
    font-size: 1.5rem !important;
    font-weight: 600 !important;
    color: #1a1a1a !important;
    line-height: 1.5 !important;
    text-shadow: 0 3px 6px rgba(0,0,0,0.1) !important;
    position: relative !important;
    max-width: 1000px !important;
    width: 90% !important;
    margin: 0 auto !important;
    background: white !important;
    padding: 35px 50px !important;
    border-radius: 25px !important;
    box-shadow: 0 25px 60px rgba(0,0,0,0.15) !important;
    border: 3px solid rgba(212, 163, 115, 0.3) !important;
    text-align: center !important;
}

/* 結論メッセージに微細なアニメーション効果 */
.profile-conclusion-enhanced .profile-mission-enhanced::before {
    content: '' !important;
    position: absolute !important;
    top: -3px !important;
    left: -3px !important;
    right: -3px !important;
    bottom: -3px !important;
    background: linear-gradient(45deg, #d4a373, #e9c46a, #f4d46b, #d4a373) !important;
    border-radius: 28px !important;
    z-index: -1 !important;
    opacity: 0.2 !important;
}

@keyframes borderGlow {
    /* アニメーション削除 */
}

/* 経験カードグリッドは4枚だけで完結 */
.experience-grid-section {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 25px !important;
    padding: 50px 40px !important;
    background: white !important;
    border-radius: 0 0 20px 20px !important;
}

/* モバイル対応 */
@media screen and (max-width: 768px) {
    .profile-conclusion-enhanced {
        padding: 60px 20px !important;
        margin-top: 40px !important;
        border-radius: 20px !important;
    }
    
    .profile-conclusion-enhanced .profile-mission-enhanced {
        font-size: 1.6rem !important;
        padding: 40px 25px !important;
        line-height: 1.4 !important;
        border-radius: 20px !important;
    }
    
    .experience-grid-section {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        padding: 30px 20px !important;
    }
}

@media screen and (max-width: 480px) {
    .profile-conclusion-enhanced {
        padding: 50px 15px !important;
        margin-top: 30px !important;
    }
    
    .profile-conclusion-enhanced .profile-mission-enhanced {
        font-size: 1.4rem !important;
        padding: 30px 20px !important;
        line-height: 1.3 !important;
    }
}

/* 🎯 プロフィール結論メッセージ - PC・モバイル最適化 */
.pc-only {
    display: block !important;
}

.mobile-only {
    display: none !important;
}

/* モバイル版のみ表示（768px以下） */
@media screen and (max-width: 768px) {
    .pc-only {
        display: none !important;
    }
    
    .mobile-only {
        display: block !important;
        text-align: center !important;
        line-height: 1.5 !important;
    }
}

/* 🎯 プロ仕様 - 美しい固定「閉じる」ボタン */
.accordion-close-btn {
    position: sticky;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    margin: 30px auto 0;
    width: fit-content;
    
    /* 美しいグラデーションボタン */
    background: linear-gradient(135deg, rgba(212, 163, 115, 0.95) 0%, rgba(233, 196, 106, 0.95) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    
    /* エレガントなデザイン */
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 12px 24px;
    
    /* タイポグラフィ */
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    
    /* 影とエフェクト */
    box-shadow: 
        0 8px 32px rgba(212, 163, 115, 0.4),
        0 4px 16px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    
    /* スムーズなトランジション */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    outline: none;
    
    /* 微細なアニメーション */
    animation: gentleFloat 4s ease-in-out infinite;
}

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

.accordion-close-btn:hover {
    /* ホバー時の美しい変化 */
    background: linear-gradient(135deg, rgba(201, 147, 98, 0.98) 0%, rgba(212, 163, 115, 0.98) 100%);
    transform: translateX(-50%) translateY(-4px) scale(1.05);
    
    box-shadow: 
        0 12px 48px rgba(212, 163, 115, 0.6),
        0 8px 24px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    
    border-color: rgba(255, 255, 255, 0.5);
    letter-spacing: 1px;
}

.accordion-close-btn:active {
    /* クリック時の繊細なフィードバック */
    transform: translateX(-50%) translateY(-2px) scale(1.02);
    transition: all 0.1s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-close-btn i {
    margin-right: 8px;
    font-size: 1rem;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.accordion-close-btn:hover i {
    opacity: 1;
    transform: rotate(-90deg);
}

/* 🎯 美しいフェードイン表示 */
.accordion-close-btn {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease, all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-item.active .accordion-close-btn {
    opacity: 1;
    visibility: visible;
}

/* 🎯 モバイル最適化 */
@media screen and (max-width: 768px) {
    .accordion-close-btn {
        bottom: 15px;
        padding: 10px 20px;
        font-size: 0.85rem;
        margin: 20px auto 0;
        
        /* モバイル用の控えめな影 */
        box-shadow: 
            0 6px 24px rgba(212, 163, 115, 0.3),
            0 3px 12px rgba(0, 0, 0, 0.08);
    }
    
    .accordion-close-btn:hover {
        transform: translateX(-50%) translateY(-2px) scale(1.02);
        
        box-shadow: 
            0 8px 32px rgba(212, 163, 115, 0.4),
            0 4px 16px rgba(0, 0, 0, 0.12);
    }
}

@media screen and (max-width: 480px) {
    .accordion-close-btn {
        bottom: 10px;
        padding: 8px 16px;
        font-size: 0.8rem;
        margin: 15px auto 0;
        border-radius: 40px;
    }
}

/* 🎯 アクセシビリティ対応 */
.accordion-close-btn:focus {
    outline: 3px solid rgba(212, 163, 115, 0.5);
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
    .accordion-close-btn {
        animation: none;
        transition: none;
    }
}

/* 🎯 美しいクロージングアニメーション */
.accordion-content.closing {
    transition: max-height 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

/* 🎯 モバイル版美しい固定「閉じる」ボタン - 最高優先度 */
@media screen and (max-width: 768px) {
    .accordion-close-btn {
        position: sticky !important;
        bottom: 15px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        z-index: 1000 !important;
        margin: 20px auto 0 !important;
        width: fit-content !important;
        
        /* 美しいグラデーションボタン */
        background: linear-gradient(135deg, rgba(212, 163, 115, 0.95) 0%, rgba(233, 196, 106, 0.95) 100%) !important;
        backdrop-filter: blur(20px) !important;
        -webkit-backdrop-filter: blur(20px) !important;
        
        /* エレガントなデザイン */
        border: 2px solid rgba(255, 255, 255, 0.3) !important;
        border-radius: 40px !important;
        padding: 12px 24px !important;
        
        /* タイポグラフィ */
        color: white !important;
        font-size: 0.9rem !important;
        font-weight: 600 !important;
        letter-spacing: 0.5px !important;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3) !important;
        text-decoration: none !important;
        
        /* 影とエフェクト */
        box-shadow: 
            0 8px 32px rgba(212, 163, 115, 0.4),
            0 4px 16px rgba(0, 0, 0, 0.1),
            inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
        
        /* スムーズなトランジション */
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
        cursor: pointer !important;
        outline: none !important;
        
        /* フレックスボックス設定 */
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 8px !important;
        
        /* 微細なアニメーション */
        animation: gentleFloat 4s ease-in-out infinite !important;
    }
    
    .accordion-close-btn:hover {
        background: linear-gradient(135deg, rgba(201, 147, 98, 0.98) 0%, rgba(212, 163, 115, 0.98) 100%) !important;
        transform: translateX(-50%) translateY(-2px) scale(1.02) !important;
        
        box-shadow: 
            0 12px 48px rgba(212, 163, 115, 0.6),
            0 8px 24px rgba(0, 0, 0, 0.15),
            inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
        
        border-color: rgba(255, 255, 255, 0.5) !important;
        letter-spacing: 1px !important;
    }
    
    .accordion-close-btn:active {
        transform: translateX(-50%) translateY(-1px) scale(1.01) !important;
        transition: all 0.1s cubic-bezier(0.4, 0, 0.2, 1) !important;
    }
    
    .accordion-close-btn i {
        margin-right: 6px !important;
        font-size: 0.9rem !important;
        opacity: 0.9 !important;
        transition: all 0.3s ease !important;
        color: white !important;
    }
    
    .accordion-close-btn:hover i {
        opacity: 1 !important;
        transform: rotate(-90deg) !important;
    }
    
    .accordion-close-btn span {
        color: white !important;
        font-weight: 600 !important;
    }
    
    /* 🎯 美しいフェードイン表示 - モバイル版 */
    .accordion-close-btn {
        opacity: 0 !important;
        visibility: hidden !important;
        transition: opacity 0.4s ease, visibility 0.4s ease, all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    }
    
    .accordion-item.active .accordion-close-btn {
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    /* 🎯 アクセシビリティ対応 */
    .accordion-close-btn:focus {
        outline: 3px solid rgba(212, 163, 115, 0.5) !important;
        outline-offset: 3px !important;
    }
}

/* さらに小さな画面対応（480px以下） */
@media screen and (max-width: 480px) {
    .accordion-close-btn {
        bottom: 10px !important;
        padding: 10px 20px !important;
        font-size: 0.85rem !important;
        margin: 15px auto 0 !important;
        border-radius: 35px !important;
    }
    
    .accordion-close-btn i {
        font-size: 0.8rem !important;
        margin-right: 5px !important;
    }
}

/* 🎯 浮遊アニメーション定義（念のため再定義） */
@keyframes gentleFloat {
    0%, 100% { transform: translateX(-50%) translateY(0px); }
    50% { transform: translateX(-50%) translateY(-2px); }
}

/* 🎯 安全性重視項目の特別スタイル */
.safety-priority-item {
    padding: 15px 20px 15px 40px !important;
    margin-bottom: 12px !important;
    font-size: 0.95rem !important;
    line-height: 1.4 !important;
    background: linear-gradient(135deg, #f0f4f8 0%, #e8f2f7 100%) !important;
    border-radius: 15px !important;
    border-left: 4px solid #4a90e2 !important;
    border: 2px solid rgba(74, 144, 226, 0.1) !important;
    box-shadow: 0 3px 12px rgba(74, 144, 226, 0.08) !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    overflow: hidden !important;
}

.safety-priority-item::before {
    content: '🛡️' !important;
    position: absolute !important;
    left: 8px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 24px !important;
    height: 24px !important;
    background: #4a90e2 !important;
    color: white !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 0.7rem !important;
    font-weight: bold !important;
}

.safety-priority-item:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.15) !important;
    background: linear-gradient(135deg, #e8f2f7 0%, #ddeef6 100%) !important;
    border-color: rgba(74, 144, 226, 0.2) !important;
}

.safety-main-text {
    display: block !important;
    font-weight: 600 !important;
    color: #2c5282 !important;
    margin-bottom: 6px !important;
    line-height: 1.3 !important;
}

.safety-sub-text {
    display: block !important;
    font-weight: 400 !important;
    color: #4a90e2 !important;
    font-style: italic !important;
    font-size: 0.9rem !important;
    margin-top: 5px !important;
    padding-left: 10px !important;
    position: relative !important;
}

.safety-sub-text::before {
    content: '' !important;
    position: absolute !important;
    left: 0 !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 6px !important;
    height: 1px !important;
    background: #4a90e2 !important;
}

/* モバイル対応 */
@media screen and (max-width: 768px) {
    .safety-priority-item {
        padding: 12px 15px 12px 35px !important;
        font-size: 0.9rem !important;
        margin-bottom: 10px !important;
    }
    
    .safety-priority-item::before {
        left: 6px !important;
        width: 22px !important;
        height: 22px !important;
        font-size: 0.65rem !important;
    }
    
    .safety-main-text {
        font-size: 0.9rem !important;
        line-height: 1.25 !important;
        margin-bottom: 5px !important;
    }
    
    .safety-sub-text {
        font-size: 0.85rem !important;
        padding-left: 8px !important;
    }
    
    .safety-sub-text::before {
        width: 5px !important;
    }
}

@media screen and (max-width: 480px) {
    .safety-priority-item {
        padding: 10px 12px 10px 32px !important;
        font-size: 0.85rem !important;
    }
    
    .safety-priority-item::before {
        width: 20px !important;
        height: 20px !important;
        font-size: 0.6rem !important;
    }
    
    .safety-main-text {
        font-size: 0.85rem !important;
    }
    
    .safety-sub-text {
        font-size: 0.8rem !important;
    }
}
/* 🎯 モバイル版フッター中央寄せ調整 */
@media screen and (max-width: 768px) {
    .footer-content {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        padding: 0 20px !important;
    }
    
    .footer-logo,
    .footer-contact,
    .footer-nav {
        max-width: 100% !important;
        margin-bottom: 30px !important;
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }
    
    .footer-contact p,
    .footer-nav ul li {
        text-align: center !important;
        justify-content: center !important;
    }
    
    .social-links {
        justify-content: center !important;
        display: flex !important;
        margin: 0 auto !important;
    }
}

@media screen and (max-width: 480px) {
    .footer-content {
        padding: 0 15px !important;
    }
}

/* 🎯 モバイル版テキスト配置統一 - タイトルは中央、本文は左詰め */
@media screen and (max-width: 768px) {
    
    /* ヒーローセクション本文を左詰め */
    .concept-description p,
    .concept-additional p,
    .concept-brief p {
        text-align: left !important;
        margin-left: auto !important;
        margin-right: auto !important;
        max-width: 100% !important;
        padding: 0 10px !important;
    }
    
    /* アコーディオン内の本文を左詰め */
    .accordion-content-inner p,
    .value-content p,
    .gentle-content p,
    .app-description,
    .experience-description-enhanced,
    .experience-insight-enhanced,
    .menu-item p,
    .trip-details,
    .testimonial-content p {
        text-align: left !important;
    }
    
    /* プロフィール本文を左詰め */
    .profile-tagline-enhanced,
    .profile-mission-enhanced {
        text-align: left !important;
    }
    
    /* フッター本文を左詰め */
    .footer-logo p,
    .footer-contact p,
    .footer-nav ul li {
        text-align: left !important;
    }
    
    /* リスト項目を左詰め */
    .gentle-list li,
    .service-features li,
    .app-features li,
    .evidence-item {
        text-align: left !important;
    }
    
    /* 画像セクション説明文を左詰め */
    .slide-caption p {
        text-align: left !important;
    }
    
    /* 各種説明文を左詰め */
    .reservation-intro,
    .final-message p,
    .conclusion-text,
    .prevention-message p {
        text-align: left !important;
    }
    
    /* タイトル類は中央揃えを維持 */
    h1, h2, h3, h4, h5, h6,
    .section-header h2,
    .section-header p,
    .accordion-header h2,
    .accordion-header p,
    .concept-title,
    .gentle-title,
    .profile-name-enhanced,
    .experience-title-enhanced {
        text-align: center !important;
    }
}

/* 🎯 安全性重視項目を赤色に変更（より目立つように） */
.safety-priority-item {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%) !important;
    border-left: 4px solid #dc2626 !important;
    border: 2px solid rgba(220, 38, 38, 0.1) !important;
    box-shadow: 0 3px 12px rgba(220, 38, 38, 0.08) !important;
}

.safety-priority-item::before {
    background: #dc2626 !important;
    content: '⚠️' !important;
}

.safety-priority-item:hover {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%) !important;
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.15) !important;
    border-color: rgba(220, 38, 38, 0.2) !important;
}

.safety-main-text {
    color: #991b1b !important;
}

.safety-sub-text {
    color: #dc2626 !important;
}

.safety-sub-text::before {
    background: #dc2626 !important;
}

/* 🎯 FAQアコーディオンの灰色演出を削除 */
.faq-item {
    background: white !important;
    border-left: 4px solid #e9c46a !important;
    border-radius: 15px !important;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05) !important;
    border: 1px solid #f3f4f6 !important;
}

.faq-question {
    background: white !important;
    color: #333 !important;
}

.faq-question:hover {
    background: white !important;
    color: #d4a373 !important;
}

.faq-question.active {
    background: white !important;
    border-bottom: none !important;
}

.faq-answer {
    background: white !important;
}

.faq-answer.active {
    background: white !important;
}

/* モバイル対応 */
@media screen and (max-width: 768px) {
    .faq-item {
        background: white !important;
        border-left: 4px solid #e9c46a !important;
    }
    
    .faq-question {
        background: white !important;
    }
    
    .faq-question:hover {
        background: white !important;
    }
    
    .faq-answer {
        background: white !important;
    }
}

/* 🎯 FAQアコーディオンの四角い枠を削除 */
.faq-item {
    background: transparent !important;
    border: none !important;
    border-left: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    margin-bottom: 20px !important;
    overflow: visible !important;
}

.faq-question {
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 15px 0 !important;
    color: #333 !important;
    font-weight: 600 !important;
    position: relative !important;
    border-bottom: 1px solid #e5e7eb !important;
}

.faq-question:hover {
    background: transparent !important;
    color: #d4a373 !important;
}

.faq-question.active {
    background: transparent !important;
    border-bottom: 1px solid #d4a373 !important;
    color: #d4a373 !important;
}

.faq-question::after {
    color: #d4a373 !important;
}

.faq-answer {
    background: transparent !important;
    border: none !important;
    color: #666 !important;
    line-height: 1.7 !important;
    margin-bottom: 0 !important;
    padding: 15px 0 0 0 !important;
}

.faq-answer.active {
    background: transparent !important;
    padding: 15px 0 0 0 !important;
}

/* モバイル対応 */
@media screen and (max-width: 768px) {
    .faq-item {
        background: transparent !important;
        border: none !important;
        margin-bottom: 15px !important;
    }
    
    .faq-question {
        background: transparent !important;
        padding: 12px 0 !important;
        font-size: 1rem !important;
    }
    
    .faq-answer {
        background: transparent !important;
        padding: 12px 0 0 0 !important;
        font-size: 0.95rem !important;
    }
    
    .faq-answer.active {
        padding: 12px 0 0 0 !important;
    }
}

/* 🎯 プレミアムメニュー表示スタイル - 整体・野球動作指導用 */
.premium-service {
    background: linear-gradient(135deg, #f4ead5, #f8f3e8) !important;
    border: 1px solid #e8dcc6;
    border-radius: 15px;
    margin-bottom: 30px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(212, 163, 115, 0.15);
    transition: all 0.3s ease;
}

.premium-service:hover {
    background: linear-gradient(135deg, #f0e6d1, #f4ead5) !important;
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(212, 163, 115, 0.25);
}

.premium-service .menu-name {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    border-bottom: 2px solid rgba(212, 163, 115, 0.2);
    padding-bottom: 15px;
}

.premium-service .menu-name h4 {
    margin-bottom: 0;
    font-size: 1.4rem;
    color: #2c1810;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.premium-service .menu-name h4 i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.premium-service .price {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.3rem;
    background: white;
    padding: 8px 20px;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(212, 163, 115, 0.3);
    border: 2px solid rgba(212, 163, 115, 0.2);
}

.service-details {
    margin-top: 20px;
    padding-top: 15px;
}

.detail-row {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 8px 0;
}

.detail-label {
    color: var(--primary-color);
    min-width: 100px;
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.detail-value {
    color: #555;
    line-height: 1.6;
    font-size: 1rem;
}

.service-description {
    background: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 10px;
    margin-top: 15px;
    border-left: 4px solid var(--primary-color);
}

.service-description p {
    margin: 0;
    color: #444;
    line-height: 1.7;
    font-size: 1rem;
}

/* モバイル対応 */
@media screen and (max-width: 768px) {
    .premium-service {
        padding: 25px 20px;
        margin-bottom: 25px;
    }
    
    .premium-service .menu-name {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .premium-service .menu-name h4 {
        font-size: 1.3rem;
    }
    
    .premium-service .price {
        align-self: flex-end;
        font-size: 1.2rem;
    }
    
    .detail-row {
        flex-direction: column;
        gap: 5px;
    }
    
    .detail-label {
        min-width: auto;
        font-size: 0.95rem;
    }
    
    .detail-value {
        font-size: 0.95rem;
    }
}

@media screen and (max-width: 480px) {
    .premium-service {
        padding: 20px 15px;
    }
    
    .premium-service .menu-name h4 {
        font-size: 1.2rem;
    }
    
    .premium-service .price {
        font-size: 1.1rem;
        padding: 6px 15px;
    }
}

/* 🎯 モバイル版プレミアムメニュー完全高級化 */
@media screen and (max-width: 768px) {
    /* プレミアムサービスカード - モバイル特化高級デザイン */
    .premium-service {
        background: linear-gradient(135deg, #ffffff 0%, #f8f3e8 100%) !important;
        border: 2px solid rgba(212, 163, 115, 0.3) !important;
        border-radius: 20px !important;
        margin: 0 5px 25px 5px !important;
        padding: 25px 20px !important;
        box-shadow: 0 12px 40px rgba(212, 163, 115, 0.2) !important;
        position: relative !important;
        overflow: hidden !important;
        transition: all 0.4s ease !important;
    }
    
    /* 🎯 上部装飾ライン */
    .premium-service::before {
        content: '' !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        height: 4px !important;
        background: linear-gradient(90deg, #d4a373, #e9c46a, #f4d46b) !important;
    }
    
    /* ホバー効果 */
    .premium-service:active {
        transform: translateY(-3px) scale(1.02) !important;
        box-shadow: 0 18px 60px rgba(212, 163, 115, 0.3) !important;
        background: linear-gradient(135deg, #f8f3e8 0%, #f4ead5 100%) !important;
    }
    
    /* メニュー名とアイコン */
    .premium-service .menu-name {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 15px !important;
        margin-bottom: 20px !important;
        border-bottom: 2px solid rgba(212, 163, 115, 0.2) !important;
        padding-bottom: 20px !important;
    }
    
    .premium-service .menu-name h4 {
        font-size: 1.4rem !important;
        color: #2c1810 !important;
        font-weight: 700 !important;
        margin: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 10px !important;
        text-align: center !important;
        line-height: 1.3 !important;
    }
    
    .premium-service .menu-name h4 i {
        color: #d4a373 !important;
        font-size: 1.3rem !important;
        text-shadow: 0 2px 8px rgba(212, 163, 115, 0.3) !important;
    }
    
    /* 価格表示 - 豪華に */
    .premium-service .price {
        font-weight: 700 !important;
        color: white !important;
        font-size: 1.3rem !important;
        background: linear-gradient(135deg, #d4a373, #e9c46a) !important;
        padding: 12px 25px !important;
        border-radius: 25px !important;
        box-shadow: 0 8px 25px rgba(212, 163, 115, 0.4) !important;
        border: 2px solid rgba(255, 255, 255, 0.2) !important;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3) !important;
        letter-spacing: 1px !important;
    }
    
    /* サービス詳細 */
    .service-details {
        margin-top: 20px !important;
        padding: 20px !important;
        background: rgba(255, 255, 255, 0.8) !important;
        border-radius: 15px !important;
        border: 1px solid rgba(212, 163, 115, 0.1) !important;
    }
    
    .detail-row {
        margin-bottom: 15px !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 8px !important;
        padding: 12px 0 !important;
        border-bottom: 1px solid rgba(212, 163, 115, 0.1) !important;
    }
    
    .detail-row:last-child {
        border-bottom: none !important;
        margin-bottom: 0 !important;
    }
    
    .detail-label {
        color: #d4a373 !important;
        font-weight: 700 !important;
        font-size: 1rem !important;
        text-align: center !important;
        background: linear-gradient(135deg, #faedcd, #e9edc9) !important;
        padding: 8px 15px !important;
        border-radius: 20px !important;
        border: 1px solid rgba(212, 163, 115, 0.2) !important;
        box-shadow: 0 3px 10px rgba(212, 163, 115, 0.15) !important;
    }
    
    .detail-value {
        color: #444 !important;
        line-height: 1.6 !important;
        font-size: 1rem !important;
        text-align: center !important;
        font-weight: 500 !important;
        padding: 0 10px !important;
    }
    
    /* サービス説明 */
    .service-description {
        background: linear-gradient(135deg, #f0f8ff, #e6f3ff) !important;
        padding: 20px !important;
        border-radius: 15px !important;
        margin-top: 20px !important;
        border-left: 4px solid #4a90e2 !important;
        border: 2px solid rgba(74, 144, 226, 0.1) !important;
        box-shadow: 0 5px 20px rgba(74, 144, 226, 0.1) !important;
    }
    
    .service-description p {
        margin: 0 !important;
        color: #2c5282 !important;
        line-height: 1.7 !important;
        font-size: 1rem !important;
        text-align: center !important;
        font-weight: 500 !important;
        font-style: italic !important;
    }
    
    /* 🎯 スペシャルエフェクト */
    .premium-service {
        animation: premiumGlow 3s ease-in-out infinite !important;
    }
    
    @keyframes premiumGlow {
        0%, 100% { 
            box-shadow: 0 12px 40px rgba(212, 163, 115, 0.2) !important;
        }
        50% { 
            box-shadow: 0 15px 50px rgba(212, 163, 115, 0.3) !important;
        }
    }
    
    /* 🎯 メニューコンテンツ全体の調整 */
    .menu-content.active {
        display: block !important;
        padding: 10px 0 !important;
        background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%) !important;
        border-radius: 15px !important;
        margin-top: 20px !important;
    }
    
    /* 🎯 メニュータブスタイルも強化 */
    .menu-tab {
        background: linear-gradient(135deg, #d4a373, #e9c46a) !important;
        color: white !important;
        padding: 12px 20px !important;
        border-radius: 25px !important;
        font-weight: 700 !important;
        font-size: 0.95rem !important;
        border: 2px solid rgba(255, 255, 255, 0.2) !important;
        box-shadow: 0 6px 20px rgba(212, 163, 115, 0.3) !important;
        letter-spacing: 0.5px !important;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2) !important;
    }
    
    .menu-tab.active {
        background: linear-gradient(135deg, #b8854f, #c99362) !important;
        transform: translateY(-2px) scale(1.05) !important;
        box-shadow: 0 8px 30px rgba(212, 163, 115, 0.5) !important;
        border-color: rgba(255, 255, 255, 0.4) !important;
    }
    
    .menu-tab:not(.active) {
        background: linear-gradient(135deg, #e8e8e8, #f0f0f0) !important;
        color: #666 !important;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1) !important;
        text-shadow: none !important;
    }
}

/* 🎯 さらに小さな画面対応（480px以下） */
@media screen and (max-width: 480px) {
    .premium-service {
        margin: 0 2px 20px 2px !important;
        padding: 20px 15px !important;
    }
    
    .premium-service .menu-name h4 {
        font-size: 1.3rem !important;
    }
    
    .premium-service .price {
        font-size: 1.2rem !important;
        padding: 10px 20px !important;
    }
    
    .detail-label {
        font-size: 0.95rem !important;
        padding: 6px 12px !important;
    }
    
    .detail-value {
        font-size: 0.95rem !important;
    }
    
    .service-description {
        padding: 15px !important;
    }
    
    .service-description p {
        font-size: 0.95rem !important;
    }
}

/* 🎯 モバイル版プレミアムメニュー - 余白最適化＆美しいデザイン */
@media screen and (max-width: 768px) {
    /* メニューコンテンツ全体の最適化 */
    .menu-content.active {
        display: block !important;
        padding: 5px !important;
        background: transparent !important;
        margin-top: 10px !important;
    }
    
    /* プレミアムサービスカード - コンパクト美化版 */
    .premium-service {
        background: linear-gradient(135deg, #ffffff 0%, #f8f3e8 100%) !important;
        border: 1px solid rgba(212, 163, 115, 0.2) !important;
        border-radius: 15px !important;
        margin: 0 2px 15px 2px !important;
        padding: 15px 12px !important;
        box-shadow: 0 8px 25px rgba(212, 163, 115, 0.15) !important;
        position: relative !important;
        overflow: hidden !important;
        transition: all 0.3s ease !important;
    }
    
    /* 上部装飾ライン */
    .premium-service::before {
        content: '' !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        height: 3px !important;
        background: linear-gradient(90deg, #d4a373, #e9c46a, #f4d46b) !important;
    }
    
    /* メニュー名とアイコン - コンパクト化 */
    .premium-service .menu-name {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        margin-bottom: 12px !important;
        border-bottom: 1px solid rgba(212, 163, 115, 0.15) !important;
        padding-bottom: 12px !important;
    }
    
    .premium-service .menu-name h4 {
        font-size: 1.2rem !important;
        color: #2c1810 !important;
        font-weight: 700 !important;
        margin: 0 !important;
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
        line-height: 1.2 !important;
        flex: 1 !important;
    }
    
    .premium-service .menu-name h4 i {
        color: #d4a373 !important;
        font-size: 1.1rem !important;
        flex-shrink: 0 !important;
    }
    
    /* 価格表示 - コンパクト高級版 */
    .premium-service .price {
        font-weight: 700 !important;
        color: white !important;
        font-size: 1.1rem !important;
        background: linear-gradient(135deg, #d4a373, #e9c46a) !important;
        padding: 8px 16px !important;
        border-radius: 20px !important;
        box-shadow: 0 4px 15px rgba(212, 163, 115, 0.3) !important;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2) !important;
        letter-spacing: 0.5px !important;
        flex-shrink: 0 !important;
    }
    
    /* サービス詳細 - コンパクト化 */
    .service-details {
        margin: 15px 0 !important;
        padding: 0 !important;
        background: transparent !important;
        border: none !important;
    }
    
    .detail-row {
        margin-bottom: 10px !important;
        display: flex !important;
        align-items: flex-start !important;
        gap: 10px !important;
        padding: 0 !important;
        border: none !important;
    }
    
    .detail-row:last-child {
        margin-bottom: 0 !important;
    }
    
    .detail-label {
        color: white !important;
        background: linear-gradient(135deg, #d4a373, #e9c46a) !important;
        font-weight: 600 !important;
        font-size: 0.85rem !important;
        padding: 6px 12px !important;
        border-radius: 15px !important;
        box-shadow: 0 2px 8px rgba(212, 163, 115, 0.3) !important;
        flex-shrink: 0 !important;
        min-width: 80px !important;
        text-align: center !important;
    }
    
    .detail-value {
        color: #444 !important;
        line-height: 1.4 !important;
        font-size: 0.95rem !important;
        font-weight: 500 !important;
        flex: 1 !important;
        margin-top: 2px !important;
    }
    
    /* サービス説明 - コンパクト化 */
    .service-description {
        background: linear-gradient(135deg, #f0f8ff, #e6f3ff) !important;
        padding: 12px !important;
        border-radius: 10px !important;
        margin-top: 12px !important;
        border-left: 3px solid #4a90e2 !important;
        box-shadow: 0 3px 12px rgba(74, 144, 226, 0.1) !important;
    }
    
    .service-description p {
        margin: 0 !important;
        color: #2c5282 !important;
        line-height: 1.5 !important;
        font-size: 0.9rem !important;
        font-weight: 500 !important;
        font-style: italic !important;
    }
    
    /* メニュータブの調整 */
    .menu-tabs {
        gap: 8px !important;
        margin-bottom: 15px !important;
        justify-content: center !important;
        flex-wrap: wrap !important;
    }
    
    .menu-tab {
        background: linear-gradient(135deg, #d4a373, #e9c46a) !important;
        color: white !important;
        padding: 10px 16px !important;
        border-radius: 20px !important;
        font-weight: 600 !important;
        font-size: 0.9rem !important;
        border: none !important;
        box-shadow: 0 4px 15px rgba(212, 163, 115, 0.3) !important;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2) !important;
        transition: all 0.3s ease !important;
    }
    
    .menu-tab.active {
        background: linear-gradient(135deg, #b8854f, #c99362) !important;
        transform: translateY(-1px) scale(1.02) !important;
        box-shadow: 0 6px 20px rgba(212, 163, 115, 0.4) !important;
    }
    
    .menu-tab:not(.active) {
        background: linear-gradient(135deg, #e8e8e8, #f0f0f0) !important;
        color: #666 !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
        text-shadow: none !important;
    }
    
    /* メニューセクション全体の調整 */
    .service-menu {
        padding: 25px 15px !important;
        margin-bottom: 30px !important;
    }
    
    .service-menu h3 {
        font-size: 1.4rem !important;
        margin-bottom: 20px !important;
        text-align: center !important;
    }
}

/* 🎯 さらに小さな画面対応（480px以下） */
@media screen and (max-width: 480px) {
    .premium-service {
        margin: 0 1px 12px 1px !important;
        padding: 12px 10px !important;
    }
    
    .premium-service .menu-name h4 {
        font-size: 1.1rem !important;
    }
    
    .premium-service .price {
        font-size: 1rem !important;
        padding: 6px 14px !important;
    }
    
    .detail-label {
        font-size: 0.8rem !important;
        padding: 5px 10px !important;
        min-width: 75px !important;
    }
    
    .detail-value {
        font-size: 0.9rem !important;
    }
    
    .service-description {
        padding: 10px !important;
    }
    
    .service-description p {
        font-size: 0.85rem !important;
    }
    
    .menu-tab {
        padding: 8px 14px !important;
        font-size: 0.85rem !important;
    }
    
    .service-menu {
        padding: 20px 10px !important;
    }
}

/* 🎯 極小画面対応（360px以下） */
@media screen and (max-width: 360px) {
    .premium-service {
        padding: 10px 8px !important;
    }
    
    .premium-service .menu-name h4 {
        font-size: 1rem !important;
    }
    
    .premium-service .price {
        font-size: 0.95rem !important;
        padding: 5px 12px !important;
    }
    
    .detail-label {
        font-size: 0.75rem !important;
        min-width: 70px !important;
    }
    
    .detail-value {
        font-size: 0.85rem !important;
    }
}

/* 🎯 モバイル版プレミアムメニュー - 時間＋料金ボタン横並び＋左詰め表示 */
@media screen and (max-width: 768px) {
    /* メニューコンテンツ全体の最適化 */
    .menu-content.active {
        display: block !important;
        padding: 5px !important;
        background: transparent !important;
        margin-top: 10px !important;
    }
    
    /* プレミアムサービスカード - コンパクト美化版 */
    .premium-service {
        background: linear-gradient(135deg, #ffffff 0%, #f8f3e8 100%) !important;
        border: 1px solid rgba(212, 163, 115, 0.2) !important;
        border-radius: 15px !important;
        margin: 0 2px 15px 2px !important;
        padding: 15px 12px !important;
        box-shadow: 0 8px 25px rgba(212, 163, 115, 0.15) !important;
        position: relative !important;
        overflow: hidden !important;
        transition: all 0.3s ease !important;
    }
    
    /* 上部装飾ライン */
    .premium-service::before {
        content: '' !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        height: 3px !important;
        background: linear-gradient(90deg, #d4a373, #e9c46a, #f4d46b) !important;
    }
    
    /* メニュー名とアイコン - タイトルのみ */
    .premium-service .menu-name {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        margin-bottom: 15px !important;
        border-bottom: 1px solid rgba(212, 163, 115, 0.15) !important;
        padding-bottom: 12px !important;
    }
    
    .premium-service .menu-name h4 {
        font-size: 1.2rem !important;
        color: #2c1810 !important;
        font-weight: 700 !important;
        margin: 0 !important;
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
        line-height: 1.2 !important;
        text-align: center !important;
    }
    
    .premium-service .menu-name h4 i {
        color: #d4a373 !important;
        font-size: 1.1rem !important;
    }
    
    /* 🎯 料金ボタンを非表示（下に移動するため） */
    .premium-service .menu-name .price {
        display: none !important;
    }
    
    /* 🎯 時間＋料金ボタンの横並び表示 */
    .time-price-row {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 15px !important;
        margin-bottom: 15px !important;
    }
    
    /* 時間ボタン */
    .time-badge {
        background: linear-gradient(135deg, #4a90e2, #357abd) !important;
        color: white !important;
        font-weight: 600 !important;
        font-size: 1rem !important;
        padding: 10px 18px !important;
        border-radius: 25px !important;
        box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3) !important;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2) !important;
        letter-spacing: 0.5px !important;
        flex-shrink: 0 !important;
    }
    
    /* 料金ボタン（移動後） */
    .price-badge {
        background: linear-gradient(135deg, #d4a373, #e9c46a) !important;
        color: white !important;
        font-weight: 700 !important;
        font-size: 1.1rem !important;
        padding: 10px 18px !important;
        border-radius: 25px !important;
        box-shadow: 0 4px 15px rgba(212, 163, 115, 0.3) !important;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2) !important;
        letter-spacing: 0.5px !important;
        flex-shrink: 0 !important;
    }
    
    /* 🎯 サービス詳細 - 非表示（内容として統合） */
    .service-details {
        display: none !important;
    }
    
    /* 🎯 内容セクション - 左詰め表示 */
    .content-section {
        margin: 15px 0 !important;
        text-align: left !important;
    }
    
    .content-label {
        color: white !important;
        background: linear-gradient(135deg, #d4a373, #e9c46a) !important;
        font-weight: 600 !important;
        font-size: 0.9rem !important;
        padding: 6px 15px !important;
        border-radius: 15px !important;
        box-shadow: 0 2px 8px rgba(212, 163, 115, 0.3) !important;
        display: inline-block !important;
        margin-bottom: 10px !important;
    }
    
    .content-text {
        color: #444 !important;
        line-height: 1.5 !important;
        font-size: 0.95rem !important;
        font-weight: 500 !important;
        text-align: left !important;
        margin-bottom: 0 !important;
    }
    
    /* サービス説明 - 左詰め */
    .service-description {
        background: linear-gradient(135deg, #f0f8ff, #e6f3ff) !important;
        padding: 12px !important;
        border-radius: 10px !important;
        margin-top: 12px !important;
        border-left: 3px solid #4a90e2 !important;
        box-shadow: 0 3px 12px rgba(74, 144, 226, 0.1) !important;
        text-align: left !important;
    }
    
    .service-description p {
        margin: 0 !important;
        color: #2c5282 !important;
        line-height: 1.5 !important;
        font-size: 0.9rem !important;
        font-weight: 500 !important;
        font-style: italic !important;
        text-align: left !important;
    }
    
    /* メニュータブの調整 */
    .menu-tabs {
        gap: 8px !important;
        margin-bottom: 15px !important;
        justify-content: center !important;
        flex-wrap: wrap !important;
    }
    
    .menu-tab {
        background: linear-gradient(135deg, #d4a373, #e9c46a) !important;
        color: white !important;
        padding: 10px 16px !important;
        border-radius: 20px !important;
        font-weight: 600 !important;
        font-size: 0.9rem !important;
        border: none !important;
        box-shadow: 0 4px 15px rgba(212, 163, 115, 0.3) !important;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2) !important;
        transition: all 0.3s ease !important;
    }
    
    .menu-tab.active {
        background: linear-gradient(135deg, #b8854f, #c99362) !important;
        transform: translateY(-1px) scale(1.02) !important;
        box-shadow: 0 6px 20px rgba(212, 163, 115, 0.4) !important;
    }
    
    .menu-tab:not(.active) {
        background: linear-gradient(135deg, #e8e8e8, #f0f0f0) !important;
        color: #666 !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
        text-shadow: none !important;
    }
    
    /* メニューセクション全体の調整 */
    .service-menu {
        padding: 25px 15px !important;
        margin-bottom: 30px !important;
    }
    
    .service-menu h3 {
        font-size: 1.4rem !important;
        margin-bottom: 20px !important;
        text-align: center !important;
    }
}

/* 🎯 さらに小さな画面対応（480px以下） */
@media screen and (max-width: 480px) {
    .premium-service {
        margin: 0 1px 12px 1px !important;
        padding: 12px 10px !important;
    }
    
    .premium-service .menu-name h4 {
        font-size: 1.1rem !important;
    }
    
    .time-price-row {
        gap: 12px !important;
    }
    
    .time-badge,
    .price-badge {
        font-size: 0.9rem !important;
        padding: 8px 15px !important;
    }
    
    .content-label {
        font-size: 0.85rem !important;
        padding: 5px 12px !important;
    }
    
    .content-text {
        font-size: 0.9rem !important;
    }
    
    .service-description {
        padding: 10px !important;
    }
    
    .service-description p {
        font-size: 0.85rem !important;
    }
    
    .menu-tab {
        padding: 8px 14px !important;
        font-size: 0.85rem !important;
    }
    
    .service-menu {
        padding: 20px 10px !important;
    }
}

/* 🎯 PC版：重複要素非表示＋時間の強調表示 */
@media screen and (min-width: 769px) {
    /* 重複する詳細情報を非表示 */
    .premium-service .time-price-row,
    .premium-service .content-section {
        display: none !important;
    }
    
    /* PC版：時間部分を強調表示 */
    .premium-service .detail-value {
        font-weight: 700 !important;
        color: #d4a373 !important;
        font-size: 1.1rem !important;
        background: linear-gradient(135deg, #faedcd, #e9edc9) !important;
        padding: 4px 12px !important;
        border-radius: 15px !important;
        display: inline-block !important;
        border: 1px solid rgba(212, 163, 115, 0.3) !important;
        box-shadow: 0 2px 8px rgba(212, 163, 115, 0.2) !important;
    }
    
    /* PC版：ラベル部分も調整 */
    .premium-service .detail-label {
        font-weight: 600 !important;
        color: #d4a373 !important;
    }
}

/* 🎯 モバイル版：時間ボタンの色を料金と同系色に変更 */
@media screen and (max-width: 768px) {
    /* 時間ボタンを料金と同系色の薄い版に変更 */
    .time-badge {
        background: linear-gradient(135deg, #e8d4c0, #f0e2d3) !important;
        color: #8b5a3c !important;
        font-weight: 700 !important;
        font-size: 1rem !important;
        padding: 10px 18px !important;
        border-radius: 25px !important;
        box-shadow: 0 4px 15px rgba(184, 133, 79, 0.3) !important;
        text-shadow: none !important;
        letter-spacing: 0.5px !important;
        flex-shrink: 0 !important;
        border: 1px solid rgba(212, 163, 115, 0.2) !important;
    }
    
    /* 料金ボタンはそのまま維持 */
    .price-badge {
        background: linear-gradient(135deg, #d4a373, #e9c46a) !important;
        color: white !important;
        font-weight: 700 !important;
        font-size: 1.1rem !important;
        padding: 10px 18px !important;
        border-radius: 25px !important;
        box-shadow: 0 4px 15px rgba(212, 163, 115, 0.3) !important;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2) !important;
        letter-spacing: 0.5px !important;
        flex-shrink: 0 !important;
    }
    
    /* 内容ラベルも同系色に調整 */
    .content-label {
        color: white !important;
        background: linear-gradient(135deg, #c99362, #d4a373) !important;
        font-weight: 600 !important;
        font-size: 0.9rem !important;
        padding: 6px 15px !important;
        border-radius: 15px !important;
        box-shadow: 0 2px 8px rgba(212, 163, 115, 0.3) !important;
        display: inline-block !important;
        margin-bottom: 10px !important;
    }
}

/* 🎯 さらに小さな画面でも同様の調整 */
@media screen and (max-width: 480px) {
    .time-badge {
        font-size: 0.9rem !important;
        padding: 8px 15px !important;
        background: linear-gradient(135deg, #e8d4c0, #f0e2d3) !important;
        color: #8b5a3c !important;
    }
    
    .price-badge {
        font-size: 0.9rem !important;
        padding: 8px 15px !important;
    }
}

/* 🎯 PC版：全メニュー統一デザイン（白ボタン＋オレンジ文字） */
@media screen and (min-width: 769px) {
    /* 重複する詳細情報を非表示 */
    .premium-service .time-price-row,
    .premium-service .content-section {
        display: none !important;
    }
    
    /* 🎯 統一デザイン：時間ボタン（PC版全メニュー共通） */
    .premium-service .detail-value,
    .trip-service .detail-item span,
    .premium-service .price {
        font-weight: 700 !important;
        color: var(--primary-color) !important;
        font-size: 1.2rem !important;
        background: white !important;
        padding: 8px 20px !important;
        border-radius: 25px !important;
        display: inline-block !important;
        border: 2px solid rgba(212, 163, 115, 0.2) !important;
        box-shadow: 0 4px 15px rgba(212, 163, 115, 0.3) !important;
        letter-spacing: 0.5px !important;
    }
    
    /* PC版：ラベル部分は普通の黒字 */
    .premium-service .detail-label,
    .trip-service .detail-item strong {
        font-weight: 600 !important;
        color: #333 !important;
        background: transparent !important;
        padding: 0 !important;
        border: none !important;
        box-shadow: none !important;
    }
    
    /* 🎯 出張整体の統一デザイン適用 */
    .trip-service .detail-item {
        display: flex !important;
        align-items: center !important;
        gap: 15px !important;
        margin-bottom: 15px !important;
    }
    
    .trip-service .detail-item strong {
        color: #333 !important;
        min-width: 100px !important;
        font-weight: 600 !important;
        font-size: 1rem !important;
    }
    
    .trip-service .detail-item span {
        font-weight: 700 !important;
        color: var(--primary-color) !important;
        font-size: 1.2rem !important;
        background: white !important;
        padding: 8px 20px !important;
        border-radius: 25px !important;
        border: 2px solid rgba(212, 163, 115, 0.2) !important;
        box-shadow: 0 4px 15px rgba(212, 163, 115, 0.3) !important;
        letter-spacing: 0.5px !important;
    }
    
    /* 🎯 出張整体の価格ボタンも統一 */
    .trip-service .price {
        font-weight: 700 !important;
        color: var(--primary-color) !important;
        font-size: 1.3rem !important;
        background: white !important;
        padding: 8px 20px !important;
        border-radius: 25px !important;
        box-shadow: 0 4px 15px rgba(212, 163, 115, 0.3) !important;
        border: 2px solid rgba(212, 163, 115, 0.2) !important;
        letter-spacing: 0.5px !important;
    }
    
    /* 🎯 プレミアムサービスの価格ボタンも統一 */
    .premium-service .menu-name .price {
        font-weight: 700 !important;
        color: var(--primary-color) !important;
        font-size: 1.3rem !important;
        background: white !important;
        padding: 8px 20px !important;
        border-radius: 25px !important;
        box-shadow: 0 4px 15px rgba(212, 163, 115, 0.3) !important;
        border: 2px solid rgba(212, 163, 115, 0.2) !important;
        letter-spacing: 0.5px !important;
    }
    
    /* 🎯 メニュー名の位置調整 */
    .premium-service .menu-name,
    .trip-service .menu-name {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        margin-bottom: 20px !important;
        border-bottom: 2px solid rgba(212, 163, 115, 0.2) !important;
        padding-bottom: 15px !important;
    }
    
    .premium-service .menu-name h4,
    .trip-service .menu-name h4 {
        margin-bottom: 0 !important;
        font-size: 1.4rem !important;
        color: #2c1810 !important;
        font-weight: 700 !important;
        display: flex !important;
        align-items: center !important;
        gap: 10px !important;
    }
    
    .premium-service .menu-name h4 i,
    .trip-service .menu-name h4 i {
        color: var(--primary-color) !important;
        font-size: 1.2rem !important;
    }
}

/* 🎯 モバイル版は既存の設定を維持 */
@media screen and (max-width: 768px) {
    /* 時間ボタンを料金と同系色の薄い版に維持 */
    .time-badge {
        background: linear-gradient(135deg, #e8d4c0, #f0e2d3) !important;
        color: #8b5a3c !important;
        font-weight: 700 !important;
        font-size: 1rem !important;
        padding: 10px 18px !important;
        border-radius: 25px !important;
        box-shadow: 0 4px 15px rgba(184, 133, 79, 0.3) !important;
        text-shadow: none !important;
        letter-spacing: 0.5px !important;
        flex-shrink: 0 !important;
        border: 1px solid rgba(212, 163, 115, 0.2) !important;
    }
    
    /* 料金ボタンはそのまま維持 */
    .price-badge {
        background: linear-gradient(135deg, #d4a373, #e9c46a) !important;
        color: white !important;
        font-weight: 700 !important;
        font-size: 1.1rem !important;
        padding: 10px 18px !important;
        border-radius: 25px !important;
        box-shadow: 0 4px 15px rgba(212, 163, 115, 0.3) !important;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2) !important;
        letter-spacing: 0.5px !important;
        flex-shrink: 0 !important;
    }
    
    /* 🎯 内容ラベルを普通の黒字に変更 */
    .content-label {
        color: #333 !important;
        background: transparent !important;
        font-weight: 600 !important;
        font-size: 0.9rem !important;
        padding: 0 !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        display: inline !important;
        margin-bottom: 5px !important;
        border: none !important;
    }
    
    .content-text {
        color: #444 !important;
        line-height: 1.5 !important;
        font-size: 0.95rem !important;
        font-weight: 400 !important;
        text-align: left !important;
        margin-bottom: 0 !important;
        margin-top: 5px !important;
    }
}

/* 🎯 モバイル版ヒーローセクション：想いの部分を中央揃えに修正 */
@media screen and (max-width: 768px) {
    /* ヒーローセクションの想い部分のみ中央揃え */
    .concept-description p,
    .concept-additional p,
    .concept-brief p {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
        max-width: 100% !important;
        padding: 0 10px !important;
    }
}

/* 🎯 PC版：内容ボタンを削除してシンプルな黒字テキストに */
@media screen and (min-width: 769px) {
    /* 重複する詳細情報を非表示 */
    .premium-service .time-price-row,
    .premium-service .content-section {
        display: none !important;
    }
    
    /* 🎯 統一デザイン：時間と値段のボタン（白＋オレンジ） */
    .premium-service .detail-value,
    .trip-service .detail-item span,
    .premium-service .price {
        font-weight: 700 !important;
        color: var(--primary-color) !important;
        font-size: 1.2rem !important;
        background: white !important;
        padding: 8px 20px !important;
        border-radius: 25px !important;
        display: inline-block !important;
        border: 2px solid rgba(212, 163, 115, 0.2) !important;
        box-shadow: 0 4px 15px rgba(212, 163, 115, 0.3) !important;
        letter-spacing: 0.5px !important;
    }
    
    /* 🎯 PC版：ラベル部分をシンプルな黒字に */
    .premium-service .detail-label,
    .trip-service .detail-item strong {
        font-weight: 600 !important;
        color: #333 !important;
        background: transparent !important;
        padding: 0 !important;
        border: none !important;
        box-shadow: none !important;
        font-size: 1rem !important;
    }
    
    /* 🎯 内容行の2つ目（内容詳細）をシンプルな黒字テキストに */
    .premium-service .detail-row:nth-child(2) .detail-value,
    .trip-service .detail-item:nth-child(3) span {
        font-weight: 400 !important;
        color: #444 !important;
        font-size: 1rem !important;
        background: transparent !important;
        padding: 0 !important;
        border-radius: 0 !important;
        border: none !important;
        box-shadow: none !important;
        letter-spacing: normal !important;
        line-height: 1.6 !important;
    }
    
    /* 🎯 出張整体の統一デザイン適用 */
    .trip-service .detail-item {
        display: flex !important;
        align-items: flex-start !important;
        gap: 15px !important;
        margin-bottom: 15px !important;
    }
    
    .trip-service .detail-item strong {
        color: #333 !important;
        min-width: 100px !important;
        font-weight: 600 !important;
        font-size: 1rem !important;
        flex-shrink: 0 !important;
    }
    
    /* 🎯 出張整体の内容詳細もシンプルに */
    .trip-service .detail-item:last-child span {
        font-weight: 400 !important;
        color: #444 !important;
        font-size: 1rem !important;
        background: transparent !important;
        padding: 0 !important;
        border: none !important;
        box-shadow: none !important;
        border-radius: 0 !important;
        letter-spacing: normal !important;
        line-height: 1.6 !important;
    }
    
    /* 🎯 出張整体の価格ボタンは統一デザイン維持 */
    .trip-service .price {
        font-weight: 700 !important;
        color: var(--primary-color) !important;
        font-size: 1.3rem !important;
        background: white !important;
        padding: 8px 20px !important;
        border-radius: 25px !important;
        box-shadow: 0 4px 15px rgba(212, 163, 115, 0.3) !important;
        border: 2px solid rgba(212, 163, 115, 0.2) !important;
        letter-spacing: 0.5px !important;
    }
    
    /* 🎯 プレミアムサービスの価格ボタンも統一 */
    .premium-service .menu-name .price {
        font-weight: 700 !important;
        color: var(--primary-color) !important;
        font-size: 1.3rem !important;
        background: white !important;
        padding: 8px 20px !important;
        border-radius: 25px !important;
        box-shadow: 0 4px 15px rgba(212, 163, 115, 0.3) !important;
        border: 2px solid rgba(212, 163, 115, 0.2) !important;
        letter-spacing: 0.5px !important;
    }
    
    /* 🎯 メニュー名の位置調整 */
    .premium-service .menu-name,
    .trip-service .menu-name {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        margin-bottom: 20px !important;
        border-bottom: 2px solid rgba(212, 163, 115, 0.2) !important;
        padding-bottom: 15px !important;
    }
    
    .premium-service .menu-name h4,
    .trip-service .menu-name h4 {
        margin-bottom: 0 !important;
        font-size: 1.4rem !important;
        color: #2c1810 !important;
        font-weight: 700 !important;
        display: flex !important;
        align-items: center !important;
        gap: 10px !important;
    }
    
    .premium-service .menu-name h4 i,
    .trip-service .menu-name h4 i {
        color: var(--primary-color) !important;
        font-size: 1.2rem !important;
    }
}

/* 🎯 モバイル版：美しい統一デザイン */
@media screen and (max-width: 768px) {
    /* 時間ボタンを料金と同系色の薄い版に維持 */
    .time-badge {
        background: linear-gradient(135deg, #e8d4c0, #f0e2d3) !important;
        color: #8b5a3c !important;
        font-weight: 700 !important;
        font-size: 1rem !important;
        padding: 10px 18px !important;
        border-radius: 25px !important;
        box-shadow: 0 4px 15px rgba(184, 133, 79, 0.3) !important;
        text-shadow: none !important;
        letter-spacing: 0.5px !important;
        flex-shrink: 0 !important;
        border: 1px solid rgba(212, 163, 115, 0.2) !important;
    }
    
    /* 料金ボタンはそのまま維持 */
    .price-badge {
        background: linear-gradient(135deg, #d4a373, #e9c46a) !important;
        color: white !important;
        font-weight: 700 !important;
        font-size: 1.1rem !important;
        padding: 10px 18px !important;
        border-radius: 25px !important;
        box-shadow: 0 4px 15px rgba(212, 163, 115, 0.3) !important;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2) !important;
        letter-spacing: 0.5px !important;
        flex-shrink: 0 !important;
    }
    
    /* 🎯 内容ラベルを普通の黒字に変更 */
    .content-label {
        color: #333 !important;
        background: transparent !important;
        font-weight: 600 !important;
        font-size: 0.9rem !important;
        padding: 0 !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        display: inline !important;
        margin-bottom: 5px !important;
        border: none !important;
    }
    
    .content-text {
        color: #444 !important;
        line-height: 1.5 !important;
        font-size: 0.95rem !important;
        font-weight: 400 !important;
        text-align: left !important;
        margin-bottom: 0 !important;
        margin-top: 5px !important;
    }
    
    /* 🎯 出張整体のモバイル版も統一 */
    .trip-service .detail-item span {
        font-weight: 400 !important;
        color: #444 !important;
        font-size: 0.95rem !important;
        background: transparent !important;
        padding: 0 !important;
        border: none !important;
        box-shadow: none !important;
        border-radius: 0 !important;
        line-height: 1.5 !important;
    }
    
    /* 出張整体の時間と価格は白ボタン維持（PCと同様） */
    .trip-service .detail-item:nth-child(1) span,
    .trip-service .detail-item:nth-child(2) span {
        font-weight: 700 !important;
        color: var(--primary-color) !important;
        font-size: 1rem !important;
        background: white !important;
        padding: 6px 15px !important;
        border-radius: 20px !important;
        border: 1px solid rgba(212, 163, 115, 0.2) !important;
        box-shadow: 0 3px 12px rgba(212, 163, 115, 0.2) !important;
        letter-spacing: 0.5px !important;
        display: inline-block !important;
    }
}

/* 🎯 さらに小さな画面対応 */
@media screen and (max-width: 480px) {
    .time-badge,
    .price-badge {
        font-size: 0.9rem !important;
        padding: 8px 15px !important;
    }
    
    .content-label {
        font-size: 0.85rem !important;
    }
    
    .content-text {
        font-size: 0.9rem !important;
    }
}

/* 🎯 モバイル版：出張整体の時間・値段ボタンを統一デザインに */
@media screen and (max-width: 768px) {
    /* 🎯 出張整体の時間ボタンを統一（薄いベージュ系） */
    .trip-service .detail-item:nth-child(1) span,
    .trip-service .detail-item:nth-child(2) span {
        background: linear-gradient(135deg, #e8d4c0, #f0e2d3) !important;
        color: #8b5a3c !important;
        font-weight: 700 !important;
        font-size: 1rem !important;
        padding: 8px 16px !important;
        border-radius: 25px !important;
        box-shadow: 0 4px 15px rgba(184, 133, 79, 0.3) !important;
        border: 1px solid rgba(212, 163, 115, 0.2) !important;
        letter-spacing: 0.5px !important;
        display: inline-block !important;
        text-shadow: none !important;
    }
    
    /* 🎯 出張整体の価格ボタンを統一（オレンジグラデーション） */
    .trip-service .price {
        background: linear-gradient(135deg, #d4a373, #e9c46a) !important;
        color: white !important;
        font-weight: 700 !important;
        font-size: 1.1rem !important;
        padding: 8px 16px !important;
        border-radius: 25px !important;
        box-shadow: 0 4px 15px rgba(212, 163, 115, 0.3) !important;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2) !important;
        letter-spacing: 0.5px !important;
        border: none !important;
    }
    
    /* 🎯 出張整体の内容部分はシンプルな黒字のまま維持 */
    .trip-service .detail-item:last-child span {
        font-weight: 400 !important;
        color: #444 !important;
        font-size: 0.95rem !important;
        background: transparent !important;
        padding: 0 !important;
        border: none !important;
        box-shadow: none !important;
        border-radius: 0 !important;
        line-height: 1.5 !important;
        letter-spacing: normal !important;
        text-shadow: none !important;
    }
    
    /* 🎯 出張整体のメニュー名部分の価格ボタンも統一 */
    .trip-service .menu-name .price {
        background: linear-gradient(135deg, #d4a373, #e9c46a) !important;
        color: white !important;
        font-weight: 700 !important;
        font-size: 1.1rem !important;
        padding: 8px 16px !important;
        border-radius: 25px !important;
        box-shadow: 0 4px 15px rgba(212, 163, 115, 0.3) !important;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2) !important;
        letter-spacing: 0.5px !important;
        border: none !important;
    }
}

/* 🎯 さらに小さな画面でも同様の統一 */
@media screen and (max-width: 480px) {
    .trip-service .detail-item:nth-child(1) span,
    .trip-service .detail-item:nth-child(2) span {
        font-size: 0.9rem !important;
        padding: 6px 14px !important;
    }
    
    .trip-service .price,
    .trip-service .menu-name .price {
        font-size: 1rem !important;
        padding: 6px 14px !important;
    }
}

/* 🎯 モバイル対応（768px以下） */
@media screen and (max-width: 768px) {
    .cbt-evidence h5 {
        font-size: 1.3rem !important;
        color: #2c5282 !important;
        margin-bottom: 20px !important;
        text-align: center !important;
    }
    
    /* 🎯 モバイル版：CBT理論ベースの改行修正 */
    .cbt-evidence h5 {
        line-height: 1.4 !important;
    }
    
    .cbt-evidence h5::after {
        content: "認知行動療法（CBT）\A理論ベース" !important;
        white-space: pre-line !important;
        display: block !important;
        font-size: 1.3rem !important;
        color: #2c5282 !important;
        text-align: center !important;
        margin-bottom: 20px !important;
    }
    
    .cbt-evidence h5 {
        font-size: 0 !important; /* 元テキストを非表示 */
    }