/* ============================================
   リセット & ベーススタイル
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* カラーパレット */
    --primary-color: #E8A0BF;
    --primary-dark: #D98BA8;
    --secondary-color: #FFF4F0;
    --accent-color: #FF6B9D;
    --text-color: #333333;
    --text-light: #666666;
    --text-lighter: #999999;
    --bg-color: #FFFFFF;
    --bg-light: #FFF9F7;
    --border-color: #E5E5E5;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.12);
    
    /* タイポグラフィ */
    --font-main: 'Noto Sans JP', sans-serif;
    --font-accent: 'Crimson Pro', serif;
    
    /* スペーシング */
    --section-padding: 80px 0;
    --container-padding: 0 20px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    line-height: 1.8;
    background-image: url('../images/bg-salon-new.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

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

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

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

/* すべてのデバイスで600px固定 */
@media (max-width: 768px) {
    .container {
        max-width: 100%;
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
}

/* ============================================
   固定ヘッダー
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    height: 70px;
}

.header-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* H1ロゴ */
.h1 {
    flex-shrink: 1;
    flex-grow: 0;
    margin: 0;
    padding: 0;
    line-height: 1;
    max-width: calc(100% - 200px);
    margin-right: auto;
}

.h1 a {
    display: inline-block;
    transition: opacity 0.3s ease;
}

.h1 a:hover {
    opacity: 0.8;
}

.h1-logo {
    height: 35px;
    width: auto;
    display: block;
    max-width: 100%;
}

@media (max-width: 768px) {
    .header-container {
        max-width: 100%;
        padding: 0 15px;
        gap: 12px;
    }
    
    .h1 {
        max-width: calc(100% - 180px);
    }
    
    .h1-logo {
        height: 24px;
    }
}

@media (max-width: 480px) {
    .header-container {
        max-width: 100%;
        padding: 0 10px;
        gap: 6px;
    }
    
    .h1 {
        max-width: calc(100% - 120px);
        flex-grow: 0;
    }
    
    .h1-logo {
        height: 18px;
    }
    
    .btn-header-reserve {
        padding: 6px 8px;
        font-size: 0.75rem;
        gap: 4px;
    }
    
    .btn-header-reserve i {
        font-size: 0.85rem;
    }
    
    .hamburger {
        width: 26px;
        height: 19px;
        margin-left: 5px;
    }
    
    .hamburger span {
        height: 2.5px;
    }
}

/* iPhone SE, iPhone 12 mini などの小型デバイス */
@media (max-width: 375px) {
    .header-container {
        max-width: 100%;
        padding: 0 8px;
        gap: 5px;
    }
    
    .h1 {
        max-width: calc(100% - 110px);
    }
    
    .h1-logo {
        height: 16px;
    }
    
    .btn-header-reserve {
        padding: 5px 7px;
        font-size: 0.7rem;
        gap: 3px;
    }
    
    .btn-header-reserve i {
        font-size: 0.8rem;
    }
    
    .hamburger {
        width: 24px;
        height: 18px;
    }
}



/* WEB予約ボタン */
.header-cta {
    flex-shrink: 0;
}

.btn-header-reserve {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(232, 160, 191, 0.3);
}

.btn-header-reserve:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(232, 160, 191, 0.4);
}

/* ハンバーガーメニューボタン */
.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    flex-shrink: 0;
    position: relative;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--text-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(9.5px) rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
    transform: translateY(-9.5px) rotate(-45deg);
}

/* モバイルメニューオーバーレイ */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(232, 160, 191, 0.98), rgba(255, 244, 240, 0.98));
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 10000;
    pointer-events: auto;
}

.close-menu:hover {
    transform: rotate(90deg);
    background-color: var(--primary-color);
    color: white;
}

.mobile-nav {
    text-align: center;
    padding: 20px;
    max-width: 500px;
    width: 100%;
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.mobile-nav li {
    margin: 0 0 10px 0;
}

.mobile-menu-link {
    display: block;
    padding: 18px 20px;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-color);
    background: white;
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.mobile-menu-link:hover {
    transform: translateX(5px);
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
}

.mobile-menu-cta {
    margin-top: 30px;
}

/* ============================================
   ヒーローセクション
   ============================================ */
.hero-banner {
    position: relative;
    width: 100%;
    margin-top: 60px; /* ヘッダー分のスペース */
    padding: 0;
    background-color: transparent;
    line-height: 0; /* 画像下の余白を完全に削除 */
}

.hero-banner-container {
    width: 100%;
    max-width: 550px;
    margin: 0 auto;
    padding: 0;
    overflow: visible;
    line-height: 0;
}

.hero-banner-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain; /* 画像全体を表示 */
    margin: 0;
    padding: 0;
    vertical-align: bottom; /* 画像下の余白を完全に削除 */
    vertical-align: top; /* 画像下の余白を完全に削除 */
}

/* レスポンシブ調整 */
@media (max-width: 1024px) {
    .hero-banner {
        margin-top: 0;
        padding-top: 60px;
    }
    
    .hero-banner-container {
        max-width: 100%;
        padding: 0;
        overflow: visible;
    }
    
    .hero-banner-image {
        object-fit: contain;
    }
}

@media (max-width: 768px) {
    .hero-banner {
        margin-top: 0;
        padding-top: 70px;
    }
    
    .hero-banner-container {
        max-width: 100%;
        padding: 0;
        overflow: visible;
    }
    
    .hero-banner-image {
        object-fit: contain;
    }
}

@media (max-width: 480px) {
    .hero-banner {
        margin-top: 0;
        padding-top: 70px;
    }
    
    .hero-banner-container {
        max-width: 100%;
        padding: 0;
        overflow: visible;
    }
    
    .hero-banner-image {
        object-fit: contain;
    }
}

/* ============================================
   ボタンスタイル
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, #06C755 0%, #05A847 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(6, 199, 85, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(6, 199, 85, 0.4);
}

.btn-large {
    padding: 18px 50px;
    font-size: 1.2rem;
}

/* ============================================
   メインコンテンツ
   ============================================ */
.main-content {
    background-color: transparent;
    padding-top: 0;
    margin-top: 0;
}

/* ============================================
   ページヘッダーセクション（H1・パンくずリスト）
   ============================================ */
.page-header-section {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 40px 30px 15px;
    text-align: left;
}

/* パンくずリスト */
.breadcrumb {
    margin-bottom: 30px;
}

.breadcrumb-list {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.9rem;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: '>';
    margin-right: 10px;
    color: var(--text-lighter);
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: var(--text-light);
}

/* H2タイトル */
.single__ttl {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 20px 0;
    line-height: 1.3;
    font-family: var(--font-accent);
}

/* ページヘッダーセクション内の画像 */
.page-header-section .intro-image {
    margin-top: 20px;
}

.page-header-section .intro-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: var(--shadow);
    display: block;
}

@media (max-width: 768px) {
    .page-header-section {
        padding: 30px 20px 12px;
    }
    
    .breadcrumb-list {
        font-size: 0.85rem;
        gap: 8px;
        flex-wrap: wrap;
    }
    
    .breadcrumb-item + .breadcrumb-item::before {
        margin-right: 8px;
    }
    
    .single__ttl {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .page-header-section .intro-image {
        margin-top: 15px;
    }
    
    .page-header-section .intro-image img {
        border-radius: 12px;
    }
}

@media (max-width: 480px) {
    .page-header-section {
        padding: 25px 15px 10px;
    }
    
    .breadcrumb-list {
        font-size: 0.8rem;
        gap: 6px;
    }
    
    .breadcrumb-item + .breadcrumb-item::before {
        margin-right: 6px;
    }
    
    .single__ttl {
        font-size: 1.7rem;
        margin-bottom: 12px;
    }
    
    .page-header-section .intro-image {
        margin-top: 12px;
    }
    
    .page-header-section .intro-image img {
        border-radius: 10px;
    }
}

/* セクションアンカーのオフセット調整 */
#reasons, #recommend, #force-cutter, #popotore, #pricing, #faq, #testimonials, #access {
    position: relative;
    top: -70px;
    visibility: hidden;
}

/* ============================================
   セクション共通スタイル
   ============================================ */
section {
    padding: 60px 0;
    background-color: rgba(255, 255, 255, 0.92);
    margin-bottom: 0;
    margin-top: 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
    section {
        padding: 50px 0;
    }
}

@media (max-width: 480px) {
    section {
        padding: 40px 0;
    }
}

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

.section-label {
    display: inline-block;
    font-family: var(--font-accent);
    font-size: 0.9rem;
    color: var(--primary-color);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.4;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.section-subtitle2 {
    font-size: 1.5rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 0 10px 0;
}

.section-subtitle3 {
    font-size: 2.0rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}
/* ============================================
   イントロダクションセクション
   ============================================ */
.intro-section {
    background-color: rgba(255, 255, 255, 0.95);
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: center;
    margin: 40px;
}

.intro-text p {
    margin-bottom: 20px;
}

.intro-image img {
    border-radius: 20px;
    box-shadow: var(--shadow);
}

/* 初回お試しキャンペーンバナー */
.intro-campaign-banner {
    margin: 40px auto 0;
    max-width: 700px;
    text-align: center;
}

.intro-campaign-banner a {
    display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 20px;
    overflow: hidden;
}

.intro-campaign-banner a:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(232, 160, 191, 0.4);
}

.intro-campaign-banner .campaign-banner-image {
    width: 100%;
    height: auto;
    display: block;
}

.highlight-box {
    background: rgba(255, 229, 236, 0.6);
    padding: 40px 35px;
    border-radius: 20px;
    border-left: 5px solid var(--primary-color);
    margin: 0px 40px 0px 40px;
}

@media (max-width: 768px) {
    .intro-campaign-banner {
        margin: 30px auto 0;
        max-width: 600px;
    }
    
    .intro-campaign-banner a {
        border-radius: 15px;
    }
    
    .highlight-box {
        padding: 30px 25px;
    }
}

@media (max-width: 480px) {
    .intro-campaign-banner {
        margin: 25px auto 0;
    }
    
    .intro-campaign-banner a {
        border-radius: 12px;
    }
    
    .highlight-box {
        padding: 25px 20px;
    }
}

.highlight-box p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin: 0;
}

/* ============================================
   理由セクション
   ============================================ */
.reasons-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin: 30px;
}

.reason-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .reason-card {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .reason-card {
        padding: 25px 20px;
    }
}

.reason-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.reason-card:hover::before {
    transform: scaleX(1);
}

.reason-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.reason-number {
    font-family: var(--font-accent);
    font-size: 3rem;
    font-weight: 600;
    color: var(--primary-color);
    opacity: 0.3;
    margin-bottom: 20px;
}

.reason-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-color);
}

.reason-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* 選ばれる理由の画像 */
.reason-features-image {
    max-width: 800px;
    margin: 50px auto 0;
    padding: 0 30px;
}

.reason-features-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

@media (max-width: 768px) {
    .reason-features-image {
        max-width: 100%;
        margin: 40px auto 0;
        padding: 0 20px;
    }
    
    .reason-features-image img {
        border-radius: 15px;
    }
}

@media (max-width: 480px) {
    .reason-features-image {
        margin: 30px auto 0;
        padding: 0 15px;
    }
    
    .reason-features-image img {
        border-radius: 10px;
    }
}

/* 選ばれる理由の詳細説明 */
.reason-features-text {
    max-width: 800px;
    margin: 40px auto 0;
    padding: 0 30px;
}

.reason-features-text p {
    color: var(--text-light);
    line-height: 2;
    font-size: 1rem;
    margin-bottom: 25px;
    text-align: justify;
}

.reason-features-text p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .reason-features-text {
        max-width: 100%;
        margin: 30px auto 0;
        padding: 0 20px;
    }
    
    .reason-features-text p {
        font-size: 0.95rem;
        margin-bottom: 20px;
        line-height: 1.9;
    }
}

@media (max-width: 480px) {
    .reason-features-text {
        margin: 25px auto 0;
        padding: 0 15px;
    }
    
    .reason-features-text p {
        font-size: 0.9rem;
        margin-bottom: 18px;
        line-height: 1.85;
    }
}

/* ============================================
   おすすめセクション
   ============================================ */
.recommend-section {
    background-color: rgba(255, 249, 247, 0.95);
}

.recommend-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.recommend-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
 margin: 0px 30px 0px 30px;
}

@media (max-width: 768px) {
    .recommend-card {
        padding: 30px 25px;
    }
}

@media (max-width: 480px) {
    .recommend-card {
        padding: 25px 20px;
    }
}

.recommend-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.recommend-icon {
    width: 100%;
    height: 180px;
    margin: 0 auto 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.recommend-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .recommend-icon {
        height: 150px;
    }
}

@media (max-width: 480px) {
    .recommend-icon {
        height: 120px;
    }
}

.recommend-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
}

.cta-box {
    background: rgba(255, 229, 236, 0.6);
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
 margin: 0px 30px 0px 30px;
}

@media (max-width: 768px) {
    .cta-box {
        padding: 40px 30px;
    }
}

@media (max-width: 480px) {
    .cta-box {
        padding: 30px 25px;
    }
}

.cta-box p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text-color);
}

/* ============================================
   フォースカッターセクション
   ============================================ */
.force-intro {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: center;
    margin: 0px 30px 60px 30px;
}

.force-intro-image img {
    border-radius: 20px;
    box-shadow: var(--shadow);

}

.force-intro-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

.force-intro-text p {
    margin-bottom: 15px;
    color: var(--text-light);
}

.custom-treatment {
    background: rgba(255, 249, 247, 0.8);
    padding: 50px 40px;
    border-radius: 20px;
    margin-bottom: 60px;
}

@media (max-width: 768px) {
    .custom-treatment {
        padding: 40px 30px;
    }
}

@media (max-width: 480px) {
    .custom-treatment {
        padding: 30px 25px;
    }
}

.custom-treatment h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-align: center;
}

.custom-treatment p {
    margin-bottom: 30px;
    text-align: center;
    color: var(--text-light);
}

.custom-treatment img {
    border-radius: 15px;
    margin: 0 auto;
    box-shadow: var(--shadow);
}

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

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.feature-item {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
 margin: 0px 30px 0px 30px;
}

@media (max-width: 768px) {
    .feature-item {
        padding: 30px 25px;
    }
}

@media (max-width: 480px) {
    .feature-item {
        padding: 25px 20px;
    }
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    width: 100%;
    height: 180px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .feature-icon {
        height: 150px;
    }
}

@media (max-width: 480px) {
    .feature-icon {
        height: 120px;
    }
}

.feature-item h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.feature-item p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ============================================
   ポポトレセクション
   ============================================ */
.popotore-section {
    background-color: rgba(255, 249, 247, 0.95);
}

.popotore-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: center;
 margin: 0px 30px 0px 30px;
}

.popotore-image img {
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.popotore-text h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

.popotore-text p {
    margin-bottom: 15px;
    color: var(--text-light);
}

.highlight-badge {
    background: linear-gradient(135deg, var(--accent-color), #FF8FB4);
    color: white;
    padding: 20px 30px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
    margin: 20px 0;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}

.highlight-badge i {
    font-size: 1.5rem;
}

/* ============================================
   栄養サポートセクション
   ============================================ */
.nutrition-content p {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.1rem;
 margin: 0px 30px 0px 30px;
}

.supplement-box {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: center;
    background: rgba(255, 249, 247, 0.8);
    padding: 50px 40px;
    border-radius: 20px;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .supplement-box {
        padding: 40px 30px;
    }
}

@media (max-width: 480px) {
    .supplement-box {
        padding: 30px 25px;
    }
}

.supplement-box img {
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.supplement-text h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

.supplement-text p {
    color: var(--text-light);
    margin-bottom: 15px;
    text-align: left;
}

/* ============================================
   料金セクション
   ============================================ */
.pricing-section {
    background: linear-gradient(135deg, #FFE5EC 0%, #FFF4F0 100%);
    padding: 60px 30px 30px 30px;
    margin-top: 0;
}

.campaign-banner-link {
    display: block;
    max-width: 700px;
    margin: 0 auto;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.campaign-banner-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(232, 160, 191, 0.4);
}

.campaign-banner-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

@media (max-width: 768px) {
    .campaign-banner-link {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .campaign-banner-link {
        border-radius: 15px;
    }
    
    .campaign-banner-image {
        border-radius: 15px;
    }
}

/* 初回体験プラン */
.trial-plan-box {
    max-width: 700px;
    margin: 40px auto 0;
    background: white;
    padding: 40px 50px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.trial-plan-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 30px;
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(232, 160, 191, 0.3);
}

.trial-plan-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.trial-plan-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.trial-plan-item:last-child {
    border-bottom: none;
}

.plan-name {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-color);
}

.plan-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

.trial-plan-link {
    text-align: center;
    padding-top: 20px;
    border-top: 2px solid rgba(232, 160, 191, 0.3);
}

.trial-plan-link span {
    display: block;
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 15px;
    font-weight: 500;
}

/* メニュー価格表 */
.menu-price-section {
    max-width: 700px;
    margin: 40px auto 0;
    text-align: center;
}

.menu-price-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow);
    display: block;
    margin-bottom: 30px;
}

.menu-price-link {
    text-align: center;
    padding-top: 20px;
}

.menu-price-link span {
    display: block;
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 15px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .trial-plan-box {
        padding: 35px 30px;
        margin: 30px 20px 0;
    }
    
    .trial-plan-title {
        font-size: 1.5rem;
    }
    
    .plan-name {
        font-size: 1rem;
    }
    
    .plan-price {
        font-size: 1.3rem;
    }
    
    .menu-price-section {
        margin: 30px 20px 0;
    }
    
    .menu-price-image {
        border-radius: 15px;
        margin-bottom: 25px;
    }
    
    .menu-price-link span {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .trial-plan-box {
        padding: 30px 20px;
        margin: 30px 15px 0;
        border-radius: 15px;
    }
    
    .menu-price-section {
        margin: 25px 15px 0;
    }
    
    .menu-price-image {
        border-radius: 12px;
        margin-bottom: 20px;
    }
    
    .menu-price-link span {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }
    
    .trial-plan-title {
        font-size: 1.3rem;
        margin-bottom: 25px;
        padding-bottom: 15px;
    }
    
    .trial-plan-item {
        padding: 15px 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .plan-name {
        font-size: 0.95rem;
    }
    
    .plan-price {
        font-size: 1.4rem;
    }
}

/* ============================================
   Q&Aセクション
   ============================================ */
.faq-section {
    background-color: rgba(255, 249, 247, 0.95);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
    overflow: hidden;
    margin: 0px 30px 20px 30px;
    transition: all 0.3s ease;
}

.faq-item.active {
    box-shadow: var(--shadow-hover);
}

.faq-question {
    padding: 30px 35px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-weight: 600;
    font-size: 1.1rem;
    background: linear-gradient(135deg, #FFE5EC 0%, #FFF4F0 100%);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question::after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 35px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: translateY(-50%) rotate(180deg);
}

@media (max-width: 768px) {
    .faq-question {
        padding: 25px 30px;
        padding-right: 60px;
    }
    
    .faq-question::after {
        right: 30px;
    }
}

@media (max-width: 480px) {
    .faq-question {
        padding: 20px 25px;
        padding-right: 50px;
        font-size: 1rem;
    }
    
    .faq-question::after {
        right: 25px;
    }
}

.faq-question:hover {
    background: linear-gradient(135deg, #FFD5E2 0%, #FFE9E0 100%);
}

.faq-question i {
    color: var(--primary-color);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.faq-question span {
    padding-right: 30px;
}

.faq-answer {
    padding: 0 35px;
    color: var(--text-light);
    border-top: 1px solid var(--border-color);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

@media (max-width: 768px) {
    .faq-answer {
        padding: 0 30px;
    }
}

@media (max-width: 480px) {
    .faq-answer {
        padding: 0 25px;
    }
}

.faq-answer p {
    line-height: 1.8;
}

/* ============================================
   お客様の声セクション
   ============================================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
 margin: 0px 30px 0px 30px;
}

@media (max-width: 768px) {
    .testimonial-card {
        padding: 30px 25px;
    }
}

@media (max-width: 480px) {
    .testimonial-card {
        padding: 25px 20px;
    }
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--bg-light);
}

.customer-age {
    font-weight: 600;
    color: var(--text-color);
}

.stars {
    color: #FFB800;
}

.testimonial-text {
    color: var(--text-light);
    line-height: 1.8;
}

/* ============================================
   執筆者情報セクション
   ============================================ */
.author-section {
    background: linear-gradient(135deg, #FFF9F7 0%, #FFE5EC 100%);
    padding: 60px 30px 30px 30px;
    margin-top: 0;
}

.author-card {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

@media (max-width: 768px) {
    .author-card {
        padding: 40px 30px;
    }
}

@media (max-width: 480px) {
    .author-card {
        padding: 30px 20px;
    }
}

.author-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
}

.author-title h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 8px;
}

.author-position {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 500;
}

.author-name {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
    padding: 20px 0;
    border-top: 2px solid rgba(232, 160, 191, 0.2);
    border-bottom: 2px solid rgba(232, 160, 191, 0.2);
}

@media (max-width: 480px) {
    .author-name {
        font-size: 1.6rem;
    }
}

.author-link {
    margin-top: 10px;
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

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

.btn-outline i {
    font-size: 1.2rem;
}

/* ============================================
   アクセスセクション
   ============================================ */
.access-section {
    background-color: rgba(255, 249, 247, 0.95);
}

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

.access-info h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--text-color);
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.info-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 5px;
    flex-shrink: 0;
}

.info-item span {
    color: var(--text-light);
    font-size: 1rem;
}

.access-note {
    margin-top: 30px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    color: var(--text-light);
}

.access-map {
    width: 100%;
    overflow: hidden;
}

.access-map iframe {
    width: 100%;
    max-width: 100%;
    height: 400px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

@media (max-width: 768px) {
    .access-map iframe {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .access-map iframe {
        height: 300px;
    }
}

/* ============================================
   最終CTAセクション
   ============================================ */
.final-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    padding: 50px 30px 50px 30px;
}

.cta-content {
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content > p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-note {
    margin-top: 20px;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* ============================================
   フッター
   ============================================ */
.footer {
    background-color: #2C2C2C;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer-content p {
    margin-bottom: 10px;
}

.footer-content a {
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.footer-content a:hover {
    color: var(--accent-color);
}

/* ============================================
   モバイル固定予約ボタン
   ============================================ */
.mobile-fixed-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: none;
    gap: 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
}

.mobile-btn {
    flex: 1;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    color: white;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
}

.mobile-btn:active {
    transform: scale(0.98);
}

.mobile-btn i {
    font-size: 1.3rem;
}

.mobile-btn-phone {
    background: linear-gradient(135deg, #4CAF50, #45A049);
}

.mobile-btn-phone:hover {
    background: linear-gradient(135deg, #45A049, #3D8B40);
}

.mobile-btn-phone i {
    animation: phoneRing 1.5s infinite;
}

.mobile-btn-line {
    background: linear-gradient(135deg, #06C755, #05B04B);
}

.mobile-btn-line:hover {
    background: linear-gradient(135deg, #05B04B, #049A40);
}

@keyframes phoneRing {
    0%, 100% { transform: rotate(0deg); }
    10%, 30% { transform: rotate(-15deg); }
    20%, 40% { transform: rotate(15deg); }
}

/* ============================================
   レスポンシブデザイン
   ============================================ */

/* タブレット（1024px以下） */
@media (max-width: 1024px) {
    :root {
        --section-padding: 60px 0;
        --container-padding: 0 20px;
    }
    
    /* ヘッダー調整 */
    .header-container {
        padding: 0 20px;
    }
    
    .btn-header-reserve {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    /* すでに1カラムなので不要 */
    
    /* モバイル固定予約ボタン表示 */
    .mobile-fixed-buttons {
        display: flex;
    }
    
    /* ボタン分のスペース確保 */
    body {
        padding-bottom: 70px;
    }
}

/* スマートフォン（768px以下） */
@media (max-width: 768px) {
    :root {
        --section-padding: 50px 0;
        --container-padding: 0 15px;
    }
    
    /* ヘッダー調整 */
    .header {
        height: 60px;
    }
    
    .header-container {
        padding: 0 15px;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .main-content {
        padding-top: 0px;
    }
    
    #reasons, #recommend, #force-cutter, #popotore, #pricing, #faq, #testimonials, #access {
        top: -60px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .btn {
        padding: 12px 30px;
        font-size: 0.95rem;
    }
    
    .btn-large {
        padding: 15px 35px;
        font-size: 1.05rem;
    }
    
    .reason-card,
    .recommend-card,
    .feature-item,
    .testimonial-card {
        padding: 30px 20px;
    }
    
    .cta-box,
    .custom-treatment,
    .supplement-box {
        padding: 30px 20px;
    }
    
    .highlight-box {
        padding: 25px 20px;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    /* セクション内のコンテンツ幅制限 */
    .intro-content,
    .force-intro,
    .popotore-content,
    .supplement-box,
    .access-content,
    .nutrition-content,
    .faq-list {
        max-width: 100%;
    }
    
    /* すでに1カラムなので不要 */
}

/* 小型スマートフォン（480px以下） */
@media (max-width: 480px) {
    :root {
        --container-padding: 0 12px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .header-container {
        padding: 0 12px;
    }
}

/* プリント用スタイル */
@media print {
    .mobile-phone-btn,
    .scroll-indicator,
    .btn {
        display: none;
    }
}