/* ========================================
   CSS Variables
======================================== */
:root {
    /* Colors */
    --color-primary: #CA952D;
    --color-secondary: #E6E6E6;
    --color-black: #2A2A2A;
    --color-white: #FFFFFF;
    --color-green: #00B900;
    
    /* Fonts */
    --font-english: 'Cormorant Garamond', serif;
    --font-japanese-sans: 'Noto Sans JP', sans-serif;
    --font-japanese-serif: 'Noto Serif JP', serif;
    
    /* Body Text */
    --text-size: 16px;
    --text-line-height: 1.4; /* 40%増し = 140% */
    --text-letter-spacing: 0;
    
    /* Desktop Title */
    --title-size-desktop: 80px;
    --subtitle-size-desktop: 24px;
    
    /* Mobile Title */
    --title-size-mobile: 40px;
    --subtitle-size-mobile: 14px;
    
    /* Title Margin Bottom */
    --title-margin-desktop: 32px;
    --title-margin-mobile: 24px;
    
    /* SP Section Title & Text */
    --section-title-sp: 24px;
    --section-title-line-height-sp: 1.6;
    --section-text-sp: 14px;
    --section-text-line-height-sp: 1.8;
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    overflow-x: hidden;
    background-color: #fff;
}

body {
    font-family: var(--font-japanese-sans);
    font-size: var(--text-size);
    line-height: var(--text-line-height);
    letter-spacing: var(--text-letter-spacing);
    color: var(--color-black);
    background-color: var(--color-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

a:hover {
    opacity: 0.7;
}

ul, ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ========================================
   Typography
======================================== */
/* 英語見出し */
.title-en {
    font-family: var(--font-english);
    font-size: var(--title-size-mobile);
    color: var(--color-primary);
    font-weight: 600;
    line-height: 1.2;
}

/* 日本語小見出し */
.title-ja {
    font-family: var(--font-japanese-serif);
    font-size: var(--subtitle-size-mobile);
    color: var(--color-primary);
    font-weight: 500;
    line-height: 1.5;
}

/* ========================================
   Container & Layout
======================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Spacing - Removed to connect backgrounds */
section {
    margin-bottom: 0;
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
}

section:last-of-type {
    margin-bottom: 0;
}

/* Title Container */
.section-title {
    text-align: center;
    margin-bottom: var(--title-margin-mobile);
}

.section-title .title-en {
    display: block;
    margin-bottom: -24px;
}

/* SP用 */
@media screen and (max-width: 767px) {
    .section-title .title-en {
        margin-bottom: -4px;
    }
}

.section-title .title-ja {
    display: block;
}

/* ========================================
   Buttons
======================================== */
.btn {
    display: inline-block;
    padding: 16px 48px;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.btn-primary:hover {
    opacity: 0.8;
}

.btn-green {
    background-color: var(--color-green);
    color: var(--color-white);
}

.btn-green:hover {
    opacity: 0.8;
}

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

.btn-outline:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

/* ========================================
   Menu Section
======================================== */
#menu {
    background-color: var(--color-white);
    position: relative;
    overflow: hidden;
    padding: 60px 0 140px;
}

/* Background Image */
.menu-bg {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 2000px;
    height: auto;
    z-index: 0;
    pointer-events: none;
}

.menu-bg-image {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0.5;
}

#menu .container {
    position: relative;
    z-index: 1;
}

#menu .section-title {
    text-align: center;
    margin-bottom: 48px;
}

/* Tab Buttons */
.menu-tabs {
    display: flex;
    gap: 24px;
    max-width: 600px;
    margin: 0 auto 40px;
}

.menu-tab {
    flex: 1;
    padding: 12px 24px;
    font-family: var(--font-japanese-serif);
    font-size: 16px;
    font-weight: 500;
    background-color: var(--color-white);
    color: var(--color-primary);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.menu-tab.active {
    background-color: var(--color-primary);
    color: var(--color-white);
    box-shadow: 0 4px 12px rgba(202, 149, 45, 0.3);
}

.menu-tab:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

/* Tab Content */
.menu-content {
    display: none;
}

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

/* Menu Panel */
.menu-panel {
    position: relative;
    display: flex;
    align-items: stretch;
    max-width: 900px;
    height: 400px;
    margin: 0 auto;
    background-color: var(--color-white);
    border-radius: 0 120px 0 120px;
    box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.25);
    overflow: visible;
}

.menu-image {
    width: 40%;
    height: 100%;
    flex-shrink: 0;
    z-index: 1;
    border-radius: 0 0 0 120px;
    overflow: hidden;
}

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

.menu-panel-content {
    width: 60%;
    padding: 36px 48px;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    overflow: visible;
}

/* Panel Title */
.panel-title {
    font-family: var(--font-english);
    font-size: 48px;
    font-weight: 600;
    color: var(--color-primary);
    line-height: 1.2;
    margin-bottom: 4px;
}

.panel-subtitle {
    font-family: var(--font-japanese-serif);
    font-size: 16px;
    color: var(--color-primary);
    margin-bottom: 24px;
}

/* Menu Buttons Grid */
.menu-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.menu-btn {
    width: 140px;
    height: 40px;
    padding: 0;
    font-family: var(--font-japanese-sans);
    font-size: 13px;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    background-color: var(--color-white);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 1;
}

/* Double border effect for all buttons */
.menu-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 0.5px solid var(--color-primary);
    border-radius: 4px;
    pointer-events: none;
    z-index: -1;
}

.menu-btn::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border: 0.5px solid var(--color-primary);
    border-radius: 4px;
    pointer-events: none;
    z-index: -2;
}

/* Hover state */
.menu-btn:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(202, 149, 45, 0.3);
}

.menu-btn:hover::before {
    border-color: var(--color-white);
    background-color: var(--color-primary);
}

.menu-btn:hover::after {
    border-color: var(--color-white);
    background-color: var(--color-primary);
}

/* ========================================
   Doctor & Cosume Background
======================================== */
.doctor-cosume-bg {
    position: relative;
    background-image: url('assets/images/Doctor_bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* ========================================
   Doctor Section
======================================== */
#doctor {
    padding: 60px 0 80px;
}

.doctor-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 900px;
    margin: 0 auto;
}

.doctor-content {
    flex: 0 0 60%;
}

.doctor-title {
    font-family: var(--font-japanese-serif);
    font-size: 28px;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.doctor-text {
    font-family: var(--font-japanese-sans);
    font-size: 15px;
    line-height: var(--text-line-height);
    color: var(--color-black);
    margin-bottom: 28px;
}

.doctor-image {
    flex: 0 0 40%;
}

.doctor-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ========================================
   Cosume Section
======================================== */
#cosume {
    position: relative;
    padding: 60px 0 60px;
    overflow: visible;
}

.cosume-bg-panel {
    position: absolute;
    top: 80px;
    right: 0;
    left: 120px;
    width: auto;
    max-width: 1270px;
    height: calc(100% - 100px);
    background-color: rgba(202, 149, 45, 0.25);
    border-radius: 0 120px 0 120px;
    margin-left: auto;
    z-index: 0;
}

.cosume-content {
    position: relative;
    max-width: 1390px;
    margin: 0 0 0 auto;
    padding: 0;
    z-index: 1;
}

#cosume .section-title {
    text-align: left;
    margin-bottom: 50px;
    margin-top: -48px;
    padding-left: 200px;
}

.cosume-cards {
    display: flex;
    gap: 32px;
    justify-content: center;
    max-width: 1150px;
    margin: 0 auto 32px;
    padding: 0 60px;
}

.cosume-card {
    flex: 0 0 280px;
    background-color: var(--color-white);
    border-radius: 0 24px 0 24px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cosume-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.card-image {
    width: 100%;
    height: 240px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.card-title {
    font-family: var(--font-japanese-sans);
    font-size: 15px;
    font-weight: 500;
    color: var(--color-black);
    margin-bottom: 6px;
    text-align: center;
}

.card-price {
    font-family: var(--font-japanese-sans);
    font-size: 13px;
    color: var(--color-black);
    text-align: center;
}

/* Cosume View More用のコンテナ */
.cosume-view-more-container {
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 60px;
    text-align: right;
}

/* View More Button - 白い丸バージョン */
.view-more-btn .arrow-circle-white {
    background-color: #fff;
}

.view-more-btn .arrow-circle-white::after {
    border-color: transparent transparent transparent var(--color-primary);
}

.view-more-btn:hover .arrow-circle-white {
    background-color: var(--color-primary);
}

.view-more-btn:hover .arrow-circle-white::after {
    border-color: transparent transparent transparent var(--color-white);
}

/* ========================================
   Case Section
======================================== */
#case {
    background-color: var(--color-white);
    padding: 40px 0 120px;
}

#case .section-title {
    text-align: center;
    margin-bottom: 40px;
}

/* Case Cards Container */
.case-cards {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 0 60px;
}

/* Case Card */
.case-card {
    width: 300px;
    min-height: 470px;
    background-color: var(--color-white);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.case-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

/* Case Image */
.case-image {
    width: 100%;
    max-width: 252px;
    height: auto;
    margin: 0 auto 12px;
    overflow: hidden;
}

.case-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

/* Case Tags */
.case-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.case-tag {
    display: inline-block;
    font-family: var(--font-japanese-sans);
    font-size: 14px;
    font-weight: 500;
    color: var(--color-primary);
    background-color: transparent;
    border: 0.5px solid var(--color-primary);
    border-radius: 4px;
    padding: 6px 8px;
    line-height: 1;
}

/* Case Treatment Text */
.case-treatment {
    font-family: var(--font-japanese-sans);
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-black);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Case Price Text */
.case-price {
    font-family: var(--font-japanese-sans);
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-black);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Case Risk */
.case-risk {
    margin-top: 12px;              /* 施術内容との間隔 */
    padding-top: 12px;             /* 上の余白 */
    border-top: 1px solid rgba(0, 0, 0, 0.08);  /* 区切り線（控えめ） */
}

.case-risk-title {
    font-family: var(--font-japanese-sans);
    font-size: 14px;
    line-height: 1.4;
    color: var(--color-black);
    margin: 0 0 6px;
}

.case-risk-text {
    font-family: var(--font-japanese-sans);
    font-size: 13px;
    line-height: 1.6;
    color: rgba(42, 42, 42, 0.8);  /* 黒より少し薄くして注意書き感 */
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Case View More Container */
.case-view-more-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
    text-align: right;
}

/* ========================================
   Gallery Slider Section
======================================== */
#gallery-slider {
    background-color: var(--color-white);
    padding: 0 0 80px;
    overflow: hidden;
    max-width: 2000px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-swiper {
    width: 100%;
    height: 215px;
}

.gallery-swiper .swiper-wrapper {
    transition-timing-function: linear;
/*     display: flex;
    gap: 8px; */
}

.gallery-swiper .swiper-slide {
    width: auto;
    height: 215px;
}

.gallery-swiper .swiper-slide img {
    height: 215px;
    width: auto;
    display: block;
    object-fit: cover;
}

/* ========================================
   Access Section
======================================== */
#access {
    background-color: var(--color-white);
    padding: 0 0 120px;
}

#access .container {
    max-width: 900px;
}

#access .section-title {
    text-align: center;
    margin-bottom: 64px;
}

/* Access Content */
.access-content {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

/* Access Map */
.access-map {
    flex-shrink: 0;
}

.access-map iframe {
    width: 420px;
    height: 360px;
    border-radius: 8px;
}

/* Access Info */
.access-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.info-title {
    font-family: var(--font-japanese-serif);
    font-size: 20px;
    font-weight: 600;
    color: var(--color-black);
    line-height: 1.5;
}

.info-text {
    font-family: var(--font-japanese-serif);
    font-size: 16px;
    font-weight: 400;
    color: var(--color-black);
    line-height: 1.8;
}

/* ========================================
   CTA Section
======================================== */
#cta {
    background-image: url('/wp-content/themes/viaura-theme/assets/images/CTA_bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0 80px;
    margin-bottom: 80px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 560px;
    max-width: 2000px;
}

/* CTA Panel */
.cta-panel {
    max-width: 800px;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 0 80px 0 80px;
    padding: 60px 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* CTA Title */
.cta-title {
    font-family: var(--font-japanese-serif);
    font-size: 32px;
    font-weight: 500;
    color: var(--color-primary);
    margin-bottom: 32px;
    line-height: 1.5;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 32px;
}

.cta-button {
    width: 340px;
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    border-radius: 9px;
    font-family: var(--font-japanese-sans);
    font-size: 28px;
    font-weight: 500;
    color: var(--color-white);
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    z-index: 1;
    /* 背景なし - beforeとafterで背景を作成 */
    background-color: transparent;
}

/* Double border effect - 外側の線まで背景を拡張 */
.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid var(--color-white);
    border-radius: 9px;
    pointer-events: none;
    z-index: -1;
    /* 背景色を継承 */
    background-color: inherit;
}

.cta-button::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 1px solid var(--color-white);
    border-radius: 9px;
    pointer-events: none;
    z-index: -2;
    /* 背景色を継承 */
    background-color: inherit;
}

/* WEB予約ボタン */
.cta-web {
    background-color: var(--color-primary);
}

/* LINE問合せボタン */
.cta-line {
    background-color: var(--color-green);
}

/* CTA Icon */
.cta-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

/* LINE Icon */
.cta-line .cta-icon {
    width: 40px;
    height: 40px;
}

/* CTA Text */
.cta-text {
    display: block;
    font-family: var(--font-japanese-serif);
    position: relative;
    z-index: 2;
}

/* Hover Effect */
.cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    opacity: 1;
}

.cta-button:hover::before {
    border-color: var(--color-white);
    background-color: inherit;
}

.cta-button:hover::after {
    border-color: var(--color-white);
    background-color: inherit;
}

/* CTA Contact */
.cta-contact {
    text-align: center;
}

.cta-phone {
    font-family: var(--font-japanese-serif);
    font-size: 24px;
    font-weight: 500;
    color: var(--color-primary);
    margin-bottom: 0;
    line-height: 1.5;
}

.cta-hours {
    font-family: var(--font-japanese-serif);
    font-size: 24px;
    font-weight: 500;
    color: var(--color-primary);
    line-height: 1.5;
}

/* ========================================
   News Section
======================================== */
#news {
    background-color: var(--color-white);
    padding: 0 0 100px;
}

#news .container {
    max-width: 1000px;
}

/* News Layout */
.news-layout {
    display: flex;
    gap: 80px;
    align-items: flex-start;
    margin: 0 auto;
    max-width: fit-content;
}

/* News Header */
.news-header {
    flex-shrink: 0;
}

.news-title {
    font-family: var(--font-english);
    font-size: 48px;
    font-weight: 500;
    color: var(--color-primary);
    margin-bottom: 8px;
    line-height: 1.2;
}

.news-subtitle {
    font-family: var(--font-japanese-serif);
    font-size: 16px;
    font-weight: 400;
    color: var(--color-primary);
    line-height: 1.5;
    display: none;
}

/* News View More - PC版（headerの中） */
.news-view-more-pc {
    display: block;
}

/* News View More - SP版（headerの外） */
.news-view-more-sp {
    display: none;
}

/* News List */
.news-list {
    width: 580px;
    flex-shrink: 0;
}

/* News Item */
.news-item {
    display: flex;
    gap: 16px;
    padding: 24px 0;
    border-bottom: 1px dotted var(--color-primary);
}

.news-item:first-child {
    border-top: 1px dotted var(--color-primary);
}

/* News Date */
.news-date {
    font-family: var(--font-japanese-serif);
    font-size: 14px;
    font-weight: 400;
    color: #737373;
    flex-shrink: 0;
    line-height: 1.8;
}

/* News Text */
.news-text {
    font-family: var(--font-japanese-serif);
    font-size: 14px;
    font-weight: 400;
    color: var(--color-black);
    line-height: 1.8;
    flex: 1;
}

/* ========================================
   Footer Section
======================================== */
#footer {
    background-color: var(--color-primary);
    width: 100%;
    padding: 24px 0 8px;
}

/* Footer Container */
.footer-container {
    width: 100%;
}

/* Footer Content */
.footer-content {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    align-items: center;
    padding: 0 40px 8px;
}

/* Footer Logo */
.footer-logo {
    flex-shrink: 0;
}

.logo-white {
    width: 180px;
    height: auto;
}

/* Footer Navigation */
.footer-nav {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Footer Links */
.footer-links {
    display: flex;
    flex-direction: column;
}

.footer-links-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    line-height: 2;
    row-gap: 4px;
}

.footer-links-row a {
    font-family: var(--font-japanese-serif);
    font-size: 16px;
    font-weight: 400;
    color: var(--color-white);
    text-decoration: none;
    transition: opacity 0.3s ease;
    white-space: nowrap;
}

.footer-links-row a:hover {
    opacity: 0.7;
}

.separator {
    color: var(--color-white);
    margin: 0 8px;
    white-space: nowrap;
}

/* Footer Bottom Links */
.footer-bottom-links {
    display: flex;
    gap: 12px;
    margin-top: 32px;
}

.footer-bottom-links a {
    font-family: var(--font-japanese-serif);
    font-size: 12px;
    font-weight: 400;
    color: var(--color-white);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-bottom-links a:hover {
    opacity: 0.7;
}

/* Footer Copyright */
.footer-copyright {
    text-align: center;
    margin-top: 40px;
}

.footer-copyright p {
    font-family: var(--font-japanese-serif);
    font-size: 12px;
    font-weight: 400;
    color: var(--color-white);
    line-height: 1.5;
}

/* ========================================
   Mobile Menu Styles (~ 767px)
======================================== */
@media screen and (max-width: 767px) {
    /* Doctor & Cosume Background - SP用 */
    .doctor-cosume-bg {
        background-image: url('assets/images/Doctor_bg_SP.webp');
    }
    
    #menu {
        padding: 48px 0 80px;
        overflow: visible;
    }
    
    /* Background Image - SP用 */
    .menu-bg {
        left: 0;
        transform: none;
        width: 100%;
        max-width: 100%;
        height: 100%;
        min-height: 100%;
    }
    
    .menu-bg-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top center;
    }
    
    #menu .section-title {
        margin-bottom: 32px;
    }
    
    /* Tab Buttons - 縦並び */
    .menu-tabs {
        flex-direction: column;
        gap: 16px;
        max-width: 343px;
        width: 100%;
        margin: 0 auto 32px;
        padding: 0 16px;
    }
    
    #menu .menu-tab {
        width: 100%;
        min-height: 64px;
        height: 64px;
        padding: 0;
        font-size: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        line-height: 1;
    }
    
    /* Menu Panel - 縦レイアウト */
    .menu-panel {
        flex-direction: column;
        max-width: 343px;
        width: 100%;
        height: auto;
        border-radius: 80px 0 80px 0;
        overflow: hidden;
        margin: 0 auto;
    }
    
    #menu .container {
        padding: 0 16px;
    }
    
    .menu-image {
        width: 100%;
        height: 343px;
        border-radius: 80px 0 0 0;
    }
    
    .menu-panel-content {
        width: 100%;
        padding: 8px 16px 40px;
    }
    
    .panel-title {
        font-size: 32px;
        margin-bottom: 0;
    }
    
    .panel-subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    /* Menu Buttons - 縦一列 */
    .menu-buttons {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 16px;
    }
    
    .menu-btn {
        width: 100%;
        max-width: 311px;
        height: 50px;
        margin: 0 auto;
        font-size: 14px;
    }
    
    /* SPではホバー効果を無効化 */
    .menu-btn:hover {
        background-color: var(--color-white);
        color: var(--color-primary);
        transform: none;
        box-shadow: none;
    }
    
    .menu-btn:hover::before {
        border-color: var(--color-primary);
        background-color: transparent;
    }
    
    .menu-btn:hover::after {
        border-color: var(--color-primary);
        background-color: transparent;
    }
    
    /* タップ時の視覚的フィードバック */
    .menu-btn:active {
        opacity: 0.7;
    }
    
    /* ========================================
       Doctor Section - SP
    ======================================== */
    #doctor {
        padding: 24px 0 80px;
    }
    
    .doctor-wrapper {
        flex-direction: column;
        gap: 32px;
        text-align: center;
    }
    
    .doctor-image {
        order: -1;
        width: 270px;
        margin: 0 auto;
    }
    
    .doctor-content {
        flex: none;
        width: 100%;
        padding: 0 16px;
    }
    
    .doctor-title {
        font-family: var(--font-japanese-serif);
        font-size: var(--section-title-sp);
        font-weight: 500;
        line-height: var(--section-title-line-height-sp);
        margin-bottom: 12px;
    }
    
    .doctor-text {
        font-size: var(--section-text-sp);
        line-height: var(--section-text-line-height-sp);
        margin-bottom: 40px;
        text-align: left;
    }
    
    
    /* ========================================
       Cosume Section - SP
    ======================================== */
    .doctor-cosume-bg {
        padding-bottom: 64px;
    }
    
    #cosume {
        padding: 0 0 60px;
        overflow: visible;
    }
    
    .cosume-bg-panel {
        top: 30px;
        left: 24px;
        right: 0;
        width: auto;
        max-width: none;
        height: 460px;
        background-color: rgba(202, 149, 45, 0.25);
        border-radius: 0 0 0 80px;
    }
    
    .cosume-content {
        max-width: 100%;
        margin: 0;
        padding: 0;
    }
    
    #cosume .section-title {
        text-align: left;
        margin-top: 0;
        margin-bottom: 24px;
        padding-left: 24px;
    }
    
    #cosume .section-title .title-ja {
        font-size: var(--subtitle-size-mobile);
    }
    
    /* Slick Slider Container */
    .cosume-cards {
        display: block;
        max-width: 100%;
        margin: 0 0 16px 0;
        padding: 0 24px;
    }
    
    .cosume-card {
        width: 215px;
        height: 258px;
        flex: none;
        border-radius: 0 16px 0 16px;
        padding: 32px 24px;
        margin-right: 32px;
    }
    
    .card-image {
        width: 126px;
        height: auto;
        margin: 0 auto 8px;
    }
    
    .card-image img {
        width: 126px;
        height: auto;
    }
    
    .card-title {
        font-size: 14px;
        margin-bottom: 0;
    }
    
    .card-price {
        font-size: 14px;
    }
    
    /* Slick Dots */
    .cosume-cards .slick-dots {
        position: static;
        margin-top: 16px;
        text-align: center;
    }
    
    .cosume-cards .slick-dots li {
        width: 8px;
        height: 8px;
        margin: 0 6px;
    }
    
    .cosume-cards .slick-dots li button {
        width: 8px;
        height: 8px;
        padding: 0;
    }
    
    .cosume-cards .slick-dots li button:before {
        width: 8px;
        height: 8px;
        line-height: 8px;
        font-size: 8px;
        color: var(--color-white);
        opacity: 1;
    }
    
    .cosume-cards .slick-dots li.slick-active button:before {
        color: var(--color-primary);
        opacity: 1;
    }
    
    /* View More Button Container */
    .cosume-view-more-container {
        max-width: 100%;
        margin-top: 16px;
        padding: 0 16px 0 0;
        text-align: right;
    }
    
    /* ========================================
       Case Section - SP
    ======================================== */
    #case {
        padding: 40px 0;
    }
    
    #case .section-title {
        text-align: center;
        margin-bottom: 24px;
    }
    
    #case .section-title .title-en {
        font-size: var(--title-size-mobile);
    }
    
    #case .section-title .title-ja {
        font-size: var(--subtitle-size-mobile);
    }
    
    /* Case Cards - スライダー化 */
    .case-cards {
        display: block;
        max-width: 100%;
        margin: 0 0 24px 0;
        padding: 0 16px;
        overflow: hidden;
    }
    
    .case-cards .slick-list {
        overflow: visible;
    }
    
    .case-cards .slick-track {
        display: flex;
        gap: 32px;
    }
    
    .case-card {
        width: 216px;
        min-height: 290px;
        border-radius: 10px;
        padding: 15px;
    }
    
    .case-image {
        width: 186px;
        max-width: 186px;
        margin: 0 auto 8px;
    }
    
    .case-image img {
        width: 186px;
        height: auto;
    }
    
    /* Case Tags - SP */
    .case-tags {
        margin-bottom: 8px;
    }
    
    .case-tag {
        font-size: 10px;
        padding: 4px 5px;
    }
    
    /* Case Treatment - SP */
    .case-treatment {
        font-size: 14px;
    }
	
	/* Case Risk - SP */
.case-risk {
    margin-top: 8px;
    padding-top: 8px;
}

.case-risk-title {
    font-size: 11px;
    margin-bottom: 4px;
}

.case-risk-text {
    font-size: 10px;
    line-height: 1.5;
}
    
    /* Case Slider Dots - SP */
    .case-cards .slick-dots {
        position: static;
        margin-top: 16px;
        text-align: center;
    }
    
    .case-cards .slick-dots li {
        width: 8px;
        height: 8px;
        margin: 0 6px;
    }
    
    .case-cards .slick-dots li button {
        width: 8px;
        height: 8px;
        padding: 0;
    }
    
    .case-cards .slick-dots li button:before {
        width: 8px;
        height: 8px;
        line-height: 8px;
        font-size: 8px;
        color: var(--color-secondary);
        opacity: 1;
    }
    
    .case-cards .slick-dots li.slick-active button:before {
        color: var(--color-primary);
        opacity: 1;
    }
    
    /* Case View More Container - SP */
    .case-view-more-container {
        max-width: 100%;
        margin-top: 24px;
        padding: 0 16px 0 0;
        text-align: right;
    }
    
    /* ========================================
       Gallery Slider - SP
    ======================================== */
    #gallery-slider {
        padding: 0 0 40px;
    }
    
    .gallery-swiper {
        height: 90px;
    }
    
/*     .gallery-swiper .swiper-wrapper {
        gap: 4px;
    } */
    
    .gallery-swiper .swiper-slide {
        height: 90px;
    }
    
    .gallery-swiper .swiper-slide img {
        height: 90px;
    }
    
    /* ========================================
       Access Section - SP
    ======================================== */
    #access {
        padding-bottom: 40px;
    }
    
    #access .section-title {
        margin-bottom: 32px;
    }
    
    #access .section-title .title-ja {
        font-size: var(--subtitle-size-mobile);
    }
    
    /* Access Content - 縦並び */
    .access-content {
        flex-direction: column;
        gap: 24px;
        align-items: center;
        max-width: 350px;
        margin: 0 auto;
    }
    
    /* Access Map - SP */
    .access-map {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .access-map iframe {
        width: 100%;
        height: auto;
        aspect-ratio: 305 / 260;
        border-radius: 8px;
    }
    
    /* Access Info - SP */
    .access-info {
        gap: 24px;
        width: 100%;
    }
    
    .info-item {
        gap: 2px;
    }
    
    .info-title {
        font-size: 20px;
        font-weight: 500;
    }
    
    .info-text {
        font-size: 16px;
    }
    
    /* ========================================
       CTA Section - SP
    ======================================== */
    #cta {
        background-image: url('/wp-content/themes/viaura-theme/assets/images/CTA_bg_SP.webp');
        min-height: 540px;
        padding: 40px 0;
    }
    
    .cta-panel {
        max-width: calc(100% - 32px);
        margin: 0 16px;
        padding: 40px 16px;
        border-radius: 0 80px 0 80px;
    }
    
    .cta-title {
        font-size: 24px;
        margin-bottom: 32px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 24px;
        margin-bottom: 24px;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 310px;
        height: auto;
        padding: 16px 0;
        gap: 8px;
        border-radius: 6px;
        font-size: 20px;
    }
    
    /* SP用二重線 - 間隔4px */
    .cta-button::before {
        border-radius: 6px;
    }
    
    .cta-button::after {
        top: -4px;
        left: -4px;
        right: -4px;
        bottom: -4px;
        border-radius: 6px;
    }
    
    .cta-icon {
        width: 24px;
        height: 24px;
    }
    
    .cta-line .cta-icon {
        width: 26px;
        height: 26px;
    }
    
    .cta-phone {
        font-size: 16px;
        margin-bottom: 4px;
    }
    
    .cta-hours {
        font-size: 16px;
    }
    
    /* SPではホバー効果を無効化 */
    .cta-button:hover {
        transform: none;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    }
    
    /* タップ時の視覚的フィードバック */
    .cta-button:active {
        opacity: 0.8;
    }
    
    /* ========================================
       News Section - SP
    ======================================== */
    #news {
        padding: 0 0 80px;
    }
    
    #news .container {
        padding: 0 16px;
    }
    
    #news .section-title {
        text-align: center;
        margin-bottom: 24px;
    }
    
    /* News Layout - 縦並び */
    .news-layout {
        flex-direction: column;
        gap: 0;
        max-width: 100%;
        margin: 0;
    }
    
    /* News Header - 中央配置 */
    .news-header {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 24px;
    }
    
    .news-title {
        font-size: var(--title-size-mobile);
        margin-bottom: 8px;
        text-align: center;
    }
    
    .news-subtitle {
        font-size: var(--subtitle-size-mobile);
        text-align: center;
        display: block;
    }
    
    /* News View More - PC版を非表示 */
    .news-view-more-pc {
        display: none;
    }
    
    /* News View More - SP版を表示 */
    .news-view-more-sp {
        display: block;
        width: 100%;
        text-align: right;
    }
    
    /* News List - SP */
    .news-list {
        width: 100%;
        margin-bottom: 24px;
    }
    
    /* News Item - SP */
    .news-item {
        flex-direction: column;
        gap: 4px;
        padding: 12px 0;
        align-items: flex-start;
    }
    
    .news-date {
        font-size: 14px;
    }
    
    .news-text {
        font-size: 14px;
    }
    
    /* ========================================
       Footer Section - SP
    ======================================== */
    #footer {
        padding: 24px 24px 100px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
        padding: 0;
        max-width: 100%;
    }
    
    .footer-logo {
        width: 100%;
    }
    
    .logo-white {
        width: 160px;
    }
    
    /* Footer Navigation - 2列レイアウト */
    .footer-nav {
        width: 100%;
    }
    
    .footer-links {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px 40px;
    }
    
    .footer-links-row {
        display: flex;
        flex-direction: column;
        gap: 16px;
        line-height: 2.0;
        row-gap: 0;
        align-items: flex-start;
    }
    
    .footer-links-row a {
        font-size: 16px;
        white-space: normal;
    }
    
    .separator {
        display: none;
    }
    
    /* Footer Bottom Links - SP */
    .footer-bottom-links {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 16px 12px;
        margin-top: 24px;
    }
    
    .footer-bottom-links a {
        font-size: 14px;
    }
    
    /* Footer Copyright - SP */
    .footer-copyright {
        margin-top: 40px;
    }
    
    .footer-copyright p {
        font-size: 12px;
    }
}

/* ========================================
   Responsive Breakpoints
======================================== */

/* Tablet: 768px ~ 1023px */
@media screen and (min-width: 768px) {
    .container {
        padding: 0 40px;
    }
    
    /* タブレット用の調整 */
    .title-en {
        font-size: 60px;
    }
    
    .title-ja {
        font-size: 18px;
    }
    
    .btn {
        padding: 18px 56px;
        font-size: 18px;
    }
}

/* Desktop: 1024px ~ */
@media screen and (min-width: 1024px) {
    .container {
        padding:  0 60px;
    }
    
    /* デスクトップ用タイポグラフィ */
    .title-en {
        font-size: var(--title-size-desktop);
    }
    
    .title-ja {
        font-size: var(--subtitle-size-desktop);
    }
    
    /* Section Spacing - Removed to connect backgrounds */
    section {
        margin-bottom: 0;
    }
    
    /* Title Margin */
    .section-title {
        margin-bottom: var(--title-margin-desktop);
    }
    
    .section-title .title-en {
        margin-bottom: -16px;
    }
    
    .btn {
        padding: 20px 64px;
        font-size: 18px;
    }
}

/* ========================================
   Utility Classes
======================================== */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mb-small {
    margin-bottom: 16px;
}

.mb-medium {
    margin-bottom: 32px;
}

.mb-large {
    margin-bottom: 48px;
}

.mt-small {
    margin-top: 16px;
}

.mt-medium {
    margin-top: 32px;
}

.mt-large {
    margin-top: 48px;
}

/* Visibility */
.sp-only {
    display: block;
}

.pc-only {
    display: none;
}

@media screen and (min-width: 1024px) {
    .sp-only {
        display: none;
    }
    
    .pc-only {
        display: block;
    }
}

/* ========================================
   Header Padding Fix
======================================== */
body {
    padding-top: 48px; /* モバイル用 */
}

@media (min-width: 1024px) {
    body {
        padding-top: 54px; /* PC用 */
    }
}

/* ========================================
   Loading & Transitions
======================================== */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ========================================
   Header
======================================== */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

#header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 12px;
    max-width: 100%;
}

/* Logo */
.header-logo .logo {
    height: 40px;
    width: auto;
    display: block;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.menu-bar {
    width: 100%;
    height: 2px;
    background-color: var(--color-primary);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.menu-toggle.active .menu-bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active .menu-bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .menu-bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Menu Modal */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--color-primary);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 999;
    overflow-y: auto;
    padding-top: 80px;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    color: var(--color-white);
    font-size: 40px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.mobile-nav-list {
    padding: 40px 20px;
}

.mobile-nav-list li {
    margin-bottom: 32px;
}

.mobile-nav-list a {
    font-family: var(--font-japanese-serif);
    font-size: 24px;
    color: var(--color-white);
    font-weight: 400;
    display: block;
    transition: opacity 0.3s ease;
}

.mobile-nav-list a:hover {
    opacity: 0.7;
}

/* Desktop Navigation - Hidden on Mobile */
.header-nav,
.header-cta {
    display: none;
}

/* ========================================
   Fixed Bottom CTA (Mobile)
======================================== */
.fixed-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    gap: 4px;
    background-color: transparent;
    z-index: 100;
    padding: 4px;
}

.fixed-cta-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px 6px;
    font-family: var(--font-japanese-serif);
    font-size: 13px;
    text-decoration: none;
    position: relative;
    border-radius: 8px;
}

/* Double white border effect */
.fixed-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid var(--color-white);
    border-radius: 8px;
    pointer-events: none;
}

.fixed-cta-btn::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    right: 3px;
    bottom: 3px;
    border: 1px solid var(--color-white);
    border-radius: 5px;
    pointer-events: none;
}

.fixed-cta-web {
    background-color: #CAA969;
    color: var(--color-white);
}

.fixed-cta-line {
    background-color: var(--color-green);
    color: var(--color-white);
}

.fixed-cta-phone {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.fixed-cta-btn .cta-icon {
    width: 24px;
    height: 24px;
    margin-bottom: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.fixed-cta-btn .cta-icon .icon-svg {
    width: 100%;
    height: 100%;
    display: block;
}

.fixed-cta-btn .cta-text {
    display: block;
    line-height: 1.2;
    position: relative;
    z-index: 1;
    font-weight: 400;
}

/* ========================================
   Hero Section
======================================== */
#hero {
    max-width: 2000px;
    position: relative;
    width: 100vw;
    height: 75vh;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    overflow: hidden;
    margin-bottom: 0;
}

.hero-media {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-image {
    width: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: none;
}

.hero-video.loaded {
    display: block;
}

/* Desktop Hero adjustments */
@media screen and (min-width: 1024px) {
    #hero {
        height: 80vh; 
        max-height: 800px;
    }
}

@media screen and (max-width: 767px) {
    #hero {
        height: 75vh;   /* 好きな高さに調整 */
    }

    .hero-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

/* ========================================
   Desktop: 1440px ~
======================================== */
@media screen and (min-width: 1440px) {
    #hero {
        width: 100vw;
        max-width: 2000px;    /* FVのみ2000pxまで広げる */
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
    }
}

/* ========================================
   Wide Desktop: 2000px ~
======================================== */
@media screen and (min-width: 2000px) {
    #hero {
        width: 2000px;
        margin-left: auto;
        margin-right: auto;
    }
}


/* ========================================
   Tablet: 768px ~ 1023px
======================================== */
@media screen and (min-width: 768px) {
    /* Fixed CTA adjustments for tablet */
    .fixed-cta-btn {
        padding: 14px 12px;
        font-size: 16px;
    }
    
    .fixed-cta-btn .cta-icon {
        width: 32px;
        height: 32px;
        margin-bottom: 6px;
    }
}

/* ========================================
   Desktop: 1024px ~
======================================== */
@media screen and (min-width: 1024px) {
    /* Header Desktop */
    .header-container {
        padding: 0 0 0 32px;
        max-width: 100%;
    }
    
    .header-logo .logo {
        height: 54px;
    }
    
    /* Desktop Navigation */
    .header-nav {
        display: block;
        flex: 1;
        margin: 0 20px;
    }
    
    .nav-list {
        display: flex;
        align-items: center;
        gap: 16px;
        flex-wrap: nowrap;
    }
    
    .nav-item {
        position: relative;
        flex-shrink: 0;
    }
    
    .nav-link {
        font-size: 13px;
        color: var(--color-black);
        font-weight: 500;
        padding: 8px 4px;
        display: block;
        white-space: nowrap;
    }
    
    /* Dropdown Menu */
    .has-dropdown {
        position: relative;
    }
    
    .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        background-color: var(--color-white);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        min-width: 200px;
        padding: 12px 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        z-index: 100;
    }
    
    .has-dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .dropdown-menu li {
        padding: 0;
    }
    
    .dropdown-menu a {
        display: block;
        padding: 10px 20px;
        font-size: 13px;
        color: var(--color-black);
        transition: background-color 0.2s ease;
    }
    
    .dropdown-menu a:hover {
        background-color: var(--color-secondary);
    }
    
    /* Desktop CTA Buttons */
    .header-cta {
        display: flex;
        gap: 0;
        flex-shrink: 0;
    }
    
    .cta-btn {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 10px 20px;
        font-family: var(--font-japanese-serif);
        font-size: 12px;
        min-width: 90px;
        text-decoration: none;
        transition: opacity 0.3s ease;
    }
    
    /* Header CTA Button Colors */
    .header-cta-web {
        background-color: #CAA969;
        color: var(--color-white);
    }
    
    .header-cta-line {
        background-color: var(--color-green);
        color: var(--color-white);
    }
    
    .header-cta-phone {
        background-color: var(--color-primary);
        color: var(--color-white);
    }
    
    .cta-btn .cta-icon {
        width: 18px;
        height: 18px;
        margin-bottom: 4px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .cta-btn .cta-icon .icon-svg {
        width: 100%;
        height: 100%;
        display: block;
    }
    
    .cta-btn .cta-text {
        display: block;
        line-height: 1;
    }
    
    /* Hide mobile elements on desktop */
    .fixed-cta {
        display: none;
    }
    
    .menu-toggle {
        display: none;
    }
}

/* ========================================
   Banner Section
======================================== */
/* #banner {
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

.banner-container {
    width: 100%;
    max-width: 100%;
    padding: 0;
}

.banner-image {
    width: 100%;
    height: auto;
    display: block;
} */

/* ========================================
   About Section
======================================== */
#about {
    position: relative;
    padding: 60px 0 80px;
    overflow: hidden;
    overflow-x: hidden;
}

#about .section-title {
    text-align: left;
    margin-bottom: var(--title-margin-mobile);
    padding-left: 20px;
}

#about .container {
    overflow: visible;
}

/* Background Image */
.about-bg {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1440px;
    height: auto;
    z-index: -1;
    pointer-events: none;
}

.about-bg-image {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0.5;
}

/* About Items */
.about-item {
    margin-bottom: 80px;
}

.about-item:last-child {
    margin-bottom: 0;
}

/* Image Wrapper with Marble */
.about-image-wrapper {
    position: relative;
    margin-bottom: 24px;
    overflow: visible;
}

.about-marble {
    position: absolute;
    z-index: 0;
    pointer-events: none;
}

.about-item-left .about-marble {
    top: 8px;
    left: -5%;
}

.about-item-right .about-marble {
    top: 8px;
    right: -5%;
}

.marble-bg {
    width: 100%;
    height: auto;
    display: block;
}

.about-image {
    position: relative;
    z-index: 1;
}

.about-item-left .about-image {
    margin-left: 0;
    max-width: 75%;
}

.about-item-right .about-image {
    margin-left: auto;
    max-width: 75%;
}

.about-image img {
    /* width: 80%; */
    height: auto;
    display: block;
}

/* About Content */
.about-content {
    text-align: center;
}

.about-title {
    font-family: var(--font-japanese-serif);
    font-size: 20px;
    font-weight: 500;
    color: var(--color-primary);
    margin-bottom: 16px;
    line-height: 1.6;
}

/* SP用 */
@media screen and (max-width: 767px) {
    .about-title {
        font-size: var(--section-title-sp);
    }
}

.about-text {
    font-size: 14px;
    line-height: 1.8;
    color: var(--color-black);
    margin-bottom: 24px;
    text-align: left;
}

/* View More Button */
.view-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-english);
    font-size: 16px;
    font-weight: 700;
    color: var(--color-primary);
    text-decoration: none;
    position: relative;
    padding-bottom: 4px;
    transition: all 0.3s ease;
}

.view-more-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background-color: var(--color-primary);
    transition: all 0.3s ease;
}

.btn-text {
    display: block;
    position: relative;
}

/* 日本語ボタン（Doctor & Case & News）- PC/SP共通 */
/* .btn-jp .btn-text {
    font-size: 20px;
} */

.btn-arrow {
    display: flex;
    align-items: center;
    position: relative;
}

.arrow-line {
    width: 50px;
    height: 1px;
    background-color: var(--color-primary);
    display: block;
    transition: all 0.3s ease;
}

.arrow-circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--color-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -12px;
    transition: all 0.3s ease;
    position: relative;
}

.arrow-circle::after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 4px 0 4px 6px;
    border-color: transparent transparent transparent var(--color-primary);
}

/* Hover Effect */
.view-more-btn:hover {
    opacity: 1;
    transform: translateX(5px);
}

.view-more-btn:hover .arrow-circle {
    background-color: var(--color-primary);
}

.view-more-btn:hover .arrow-circle::after {
    border-color: transparent transparent transparent var(--color-white);
}

/* ========================================
   Tablet: 768px ~ 1023px
======================================== */
@media screen and (min-width: 768px) {
    /* Banner */
    #banner {
        margin-bottom: 0;
    }
    
    /* About */
    #about {
        padding: 80px 0 100px;
    }
    
    #about .section-title {
        padding-left: 40px;
        margin-bottom: 60px;
    }
    
    .about-item {
        display: flex;
        align-items: center;
        gap: 40px;
        margin-bottom: 100px;
    }
    
    .about-item-left {
        flex-direction: row;
    }
    
    .about-item-right {
        flex-direction: row-reverse;
    }
    
    .about-image-wrapper {
        flex: 0 0 45%;
        margin-bottom: 0;
    }
    
    .about-content {
        flex: 1;
        text-align: left;
    }
    
    .about-title {
        font-size: 26px;
        margin-bottom: 20px;
    }
    
    .about-text {
        font-size: 15px;
        margin-bottom: 28px;
    }
}

/* ========================================
   Mobile & Tablet: ~ 1023px (大理石サイズ)
======================================== */
@media screen and (max-width: 1023px) {
    /* Item 1: 画像の約108%のサイズ */
    .about-item:nth-child(2) .about-marble {
        width: 104%;
		left: -20px;
    }
    
    /* Item 2: アンチエイジングの専門性 - 大理石を小さく */
    .about-item:nth-child(3) .about-marble {
        max-width: 350px;
    }
    
    /* Item 3: 画像の約108%のサイズ */
    .about-item:nth-child(4) .about-marble {
        width: 104%;
		left: -20px;
    }
    
    /* Item 2の大理石背景の位置を下に調整 */
    .about-item:nth-child(3) .about-marble {
        top: 20px;
		right: -20px;
    }
    
    /* Item 2の画像の高さを制限 */
    .about-item:nth-child(3) .about-image img {
        height: 270px;
        object-fit: cover;
    }
}

/* ========================================
   Desktop: 1024px ~
======================================== */
@media screen and (min-width: 1024px) {
    /* Header CTA Button Colors */
    .header-cta-web {
        background-color: #CAA969;
        color: var(--color-white);
    }
    
    .header-cta-line {
        background-color: var(--color-green);
        color: var(--color-white);
    }
    
    .header-cta-phone {
        background-color: var(--color-primary);
        color: var(--color-white);
    }
    
    /* Banner */
    .banner-image {
        max-height: 200px;
        object-fit: cover;
    }
    
    /* About */
    #about {
        padding: 80px 0 140px;
    }
    
    #about .section-title {
        position: relative;
        padding-left: 60px;
        margin-bottom: 8px;
        z-index: 2;
    }
    
    .about-bg {
        top: -200px;
    }
    
    .about-item {
        gap: 60px;
        margin-bottom: 140px;
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
        position: relative;
    }
    
    .about-item:nth-child(2) {
        margin-top: -40px;
    }
    
    .about-image-wrapper {
        flex: 0 0 480px;
        overflow: visible;
        position: relative;
        z-index: 1;
    }
    
    .about-item:nth-child(3) .about-image-wrapper {
        flex: 0 0 410px;
    }
    
    .about-item:nth-child(4) .about-image-wrapper {
        flex: 0 0 520px;
    }
    
    .about-item:nth-child(2) .about-marble {
        max-width: 100%;
        position: absolute;
        height: auto;
    }
    
    .about-item:nth-child(3) .about-marble {
        max-width: 130%;
    }
    
    .about-item:nth-child(4) .about-marble {
        max-width: 100%;
    }
    
    .marble-bg {
        width: 100%;
        height: auto;
        display: block;
        max-width: 100%;
    }
    
    .about-item-left .about-marble {
        top: 30px;
        left: -20vw;
        right: auto;
    }
    
    .about-item-right .about-marble {
        top: 72px;
        right: -20vw;
        left: auto;
    }
    
    .about-content {
        max-width: 500px;
    }
    
    .about-title {
        font-size: 32px;
        margin-bottom: 24px;
    }
    
    .about-text {
        font-size: 16px;
        margin-bottom: 32px;
    }
}

@media screen and (min-width: 1200px) {
    .nav-list {
        gap: 20px;
    }
    
    .nav-link {
        font-size: 14px;
    }
    
    .cta-btn {
        padding: 9px 12px;
        font-size: 13px;
        min-width: 100px;
    }
    
    .cta-btn .cta-icon {
        width: 20px;
        height: 20px;
        margin-bottom: 4px;
    }
}

/* ========================================
   下層ページ用 h1 スタイル
======================================== */
/* TOPページ以外のh1に適用 */
body:not(.home) h1 {
    font-family: var(--font-japanese-serif);
    font-size: 48px;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.4;
	margin: 24px 0 32px;
    text-align: center;
}

/* モバイル対応 */
@media (max-width: 767px) {
    body:not(.home) h1 {
        font-size: 32px;
        margin: 40px 0 32px;
    }
}

/* ヘッダーとFVの間の余白を一旦ゼロにする */
body,
main,
.site-main,
#hero {
  margin-top: 10px;
  padding-top: 0 !important;
}

/* ブロックテーマの場合：最初のブロックの上マージンを消す */
.wp-site-blocks > *:first-child {
  margin-block-start: 0 !important;
  padding-block-start: 0 !important;
}

/* ヘッダー側に変な余白が付いているパターンも潰す */
header,
.site-header {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}


