:root {
    --color-bg: #F8F8F8;
    --color-text: #2C2C2C;
    --color-text-light: #666666;
    --color-primary: #C49A45; /* Elegant Gold */
    --color-primary-dark: #9E7A31;
    --color-line: #06C755;
    --color-line-hover: #05A346;
    --color-white: #FFFFFF;
    
    --font-sans: 'Noto Sans JP', sans-serif;
    --font-serif: 'Shippori Mincho', serif;
    --font-en: 'Cinzel', serif;
    
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 48px;
    --spacing-xl: 80px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    top: 0 !important; /* Prevent Google Translate shift */
}

/* Hide Google Translate Banner */
.skiptranslate iframe {
    display: none !important;
}
.VIpgJd-ZVi9od-ORHb-OEVmcd {
    display: none !important;
}

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

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 500;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 100;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
}

.header-nav {
    display: flex;
    gap: 30px;
}

.header-nav a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.header-nav a:hover {
    color: var(--color-primary);
}

.header-social {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 15px;
    border-left: 1px solid #ddd;
    padding-left: 20px;
}

.header-social a {
    display: inline-block;
    width: 20px;
    height: 20px;
    transition: transform 0.3s;
}

.header-social a svg {
    width: 100%;
    height: 100%;
    transition: opacity 0.3s;
}

.header-social a[aria-label="Instagram"] svg { fill: #E1306C; }
.header-social a[aria-label="X"] svg { fill: #ffffff; }
.header-social a[aria-label="YouTube"] svg { fill: #FF0000; }

.header-social a:hover {
    transform: translateY(-2px);
}

.header-social a:hover svg {
    opacity: 0.7;
}

.logo-img {
    height: 55px; /* 高さを指定 */
    width: auto;  /* 横幅は自動調整（横長対応） */
    object-fit: contain;
}

/* Header Right Actions & Language Switcher */
.header-right-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.lang-switcher {
    position: relative;
}

.lang-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #ffffff;
    transition: background-color 0.3s;
    padding: 0;
}

.lang-btn:hover {
    background-color: rgba(0,0,0,0.05);
}

.lang-menu {
    position: absolute;
    top: 110%;
    right: 0;
    background: var(--color-white);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    list-style: none;
    padding: 8px 0;
    min-width: 130px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.lang-switcher.active .lang-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-menu li a {
    display: block;
    padding: 10px 20px;
    color: var(--color-text);
    text-decoration: none;
    font-size: 0.95rem;
    transition: background-color 0.2s;
}

.lang-menu li a:hover {
    background-color: rgba(0,0,0,0.03);
    color: var(--color-primary);
}

.header-btn {
    background-color: var(--color-line);
    color: var(--color-white);
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background 0.3s, transform 0.3s;
    box-shadow: 0 4px 15px rgba(6, 199, 85, 0.2);
}

.header-btn:hover {
    background-color: var(--color-line-hover);
    transform: translateY(-2px);
}

/* Floating CTA Banner */
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--color-line);
    color: var(--color-white);
    text-decoration: none;
    border-radius: 50%;
    width: 85px;
    height: 85px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 25px rgba(0, 195, 0, 0.4);
    z-index: 1000;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    text-align: center;
    animation: bounce 2s infinite ease-in-out;
}

.floating-cta:hover {
    animation-play-state: paused;
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 195, 0, 0.5);
    color: var(--color-white);
}

.floating-text {
    font-size: 0.95rem;
    font-weight: bold;
    line-height: 1.3;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 5%;
    overflow: hidden;
}

.hero-award-badge {
    display: inline-block;
    background: linear-gradient(135deg, #DFB967 0%, #C49A45 100%);
    color: #fff;
    padding: 8px 24px;
    border-radius: 30px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(196, 154, 69, 0.4);
    text-align: center;
    border: 1px solid rgba(255,255,255,0.4);
}

.award-year {
    display: block;
    font-size: 0.85rem;
    font-weight: bold;
    letter-spacing: 1px;
    opacity: 0.9;
}

.award-title {
    display: block;
    font-size: 1.15rem;
    font-weight: bold;
    letter-spacing: 0.5px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: right 30%; /* 女性の顔が綺麗に見えるように位置を調整 */
    background-repeat: no-repeat;
    z-index: -2;
    animation: zoomInOut 20s infinite alternate linear;
}

@keyframes zoomInOut {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
}

/* 
画像の上に被せていた白いグラデーションマスクを削除しました
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(250,249,246,0.95) 0%, rgba(250,249,246,0.7) 40%, rgba(250,249,246,0.1) 100%);
    z-index: -1;
}
*/

.hero-content {
    max-width: 600px;
    padding-top: 80px; /* offset header */
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-catch {
    display: flex;
    flex-direction: column;
    margin-bottom: var(--spacing-md);
}

.catch-small {
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 1.1rem;
    color: var(--color-primary);
    margin-bottom: 12px;
    letter-spacing: 0.1em;
}

.catch-main {
    font-size: 2.4rem;
    line-height: 1.4;
    color: var(--color-text);
    letter-spacing: 0.05em;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    padding: 15px 25px;
    margin-top: 40px;
    gap: 20px;
    width: fit-content;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stat-icon {
    font-size: 1.5rem;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--color-text-light);
    font-weight: 500;
    margin-bottom: 2px;
}

.stat-value {
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--color-primary);
    font-family: var(--font-en);
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.stat-unit {
    font-size: 1.8rem;
    font-family: var(--font-sans);
    color: var(--color-text);
    font-weight: bold;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background-color: rgba(0,0,0,0.1);
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.btn-line {
    background-color: var(--color-line);
    color: var(--color-white);
    box-shadow: 0 10px 25px rgba(6, 199, 85, 0.3);
}

.btn-line:hover {
    background-color: var(--color-line-hover);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(6, 199, 85, 0.4);
}

.btn-large {
    font-size: 1.1rem;
    padding: 20px 60px;
}

/* Scroll Down */
.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: var(--font-en);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    color: var(--color-primary);
}

.scroll-down::after {
    content: '';
    width: 1px;
    height: 60px;
    background-color: var(--color-primary);
    margin-top: 10px;
    animation: scrollLine 2s infinite cubic-bezier(0.77, 0, 0.175, 1);
    transform-origin: top;
}

@keyframes scrollLine {
    0% { transform: scaleY(0); }
    50% { transform: scaleY(1); }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-family: var(--font-en);
    font-size: 2.5rem;
    color: var(--color-primary);
    letter-spacing: 0.15em;
    margin-bottom: 12px;
}

.section-title p {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--color-text);
    letter-spacing: 0.1em;
}

/* Promotions Section */
.promotions {
    width: 100%;
    background-color: var(--color-bg);
    padding: 60px 0 80px 0;
}

.promo-slider-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    background-color: var(--color-white);
    overflow: hidden;
    border: 1px solid var(--color-primary);
}

.promo-slider {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.promo-slide {
    min-width: 100%;
    display: flex;
    align-items: stretch;
}

.promo-image {
    flex: 1;
    min-height: 450px;
    position: relative;
}

.promo-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
}

.promo-content {
    flex: 1;
    padding: 60px 50px;
    background-color: var(--color-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.promo-badge {
    display: inline-block;
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    letter-spacing: 0.05em;
    margin-bottom: 15px;
}

.promo-treatment-name {
    font-size: 1.8rem;
    color: var(--color-primary-dark);
    margin-bottom: 15px;
    line-height: 1.4;
    font-weight: bold;
    border-bottom: 2px solid var(--color-primary);
    display: inline-block;
    padding-bottom: 5px;
}

.promo-treatment-desc {
    font-size: 0.95rem;
    color: var(--color-text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.promo-discount-huge {
    font-size: 4.5rem;
    font-weight: bold;
    color: #e53e3e;
    line-height: 1;
    margin-bottom: 20px;
    text-align: center;
    font-family: var(--font-en);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.promo-discount-huge span {
    font-size: 1.8rem;
    font-weight: bold;
    vertical-align: text-bottom;
    margin-left: 5px;
}

.campaign-details h4 {
    color: var(--color-primary);
    font-size: 1.1rem;
    margin-top: 25px;
    margin-bottom: 10px;
    font-weight: bold;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding-bottom: 5px;
}

.campaign-details ul {
    list-style: none;
    margin-left: 5px;
}

.campaign-details ul li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 5px;
    font-size: 0.95rem;
}

.campaign-details ul li::before {
    content: '・';
    position: absolute;
    left: 0;
    color: var(--color-primary);
}

.campaign-details p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.highlight-text {
    font-size: 1.1rem !important;
    color: var(--color-text);
}

.highlight-text strong {
    color: var(--color-primary);
    font-size: 1.6rem;
}

.campaign-pricing {
    background: #fdfcf7;
    padding: 20px;
    border-radius: 12px;
    margin-top: 30px;
    border: 1px solid rgba(196, 154, 69, 0.2);
}

.campaign-pricing h4 {
    margin-top: 0;
    border-bottom: none;
    color: var(--color-text);
}

.price-example {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #ddd;
}
.price-example:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.p-name {
    font-weight: bold;
    width: 90px;
    font-size: 0.95rem;
}

.p-old {
    color: #999;
    text-decoration: line-through;
    font-size: 0.85rem;
}

.p-new {
    color: var(--color-primary);
    font-size: 1.1rem;
}
.p-new span {
    font-size: 1.5rem;
    font-weight: bold;
    font-family: var(--font-en);
}

.promo-controls {
    position: absolute;
    bottom: 30px;
    right: 50px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.promo-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background-color: var(--color-primary);
    width: 30px;
    border-radius: 5px;
}

.promo-prev, .promo-next {
    background: none;
    border: none;
    color: var(--color-text-light);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
    font-weight: bold;
    transition: color 0.3s;
}

.promo-prev:hover, .promo-next:hover {
    color: var(--color-primary);
}

/* Worries Section - Elegant Magazine Style */
.worries {
    padding: 120px 0;
    background-color: #F9F6F0; /* ほんのり温かみのあるアイボリー/グレージュ */
}

.worries-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.worries-layout {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 60px;
}

.worries-image {
    flex: 1;
    margin-bottom: 0;
    text-align: left;
}

.worries-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

.worries-content {
    flex: 1;
}

.worries-catch {
    font-family: var(--font-serif);
    font-size: 38px;
    color: #333333;
    font-weight: normal;
    line-height: 1.6;
    margin-bottom: 30px;
    letter-spacing: 0.1em;
}

.worries-divider {
    width: 60px;
    height: 1px;
    background-color: #C1A063; /* 繊細なゴールド */
    margin-bottom: 40px;
}

.worries-list-elegant {
    list-style: none;
    padding: 0;
}

.worries-list-elegant li {
    font-family: var(--font-serif);
    font-size: 18px;
    color: #333333;
    margin-bottom: 30px;
    letter-spacing: 0.15em;
    line-height: 1.8;
    position: relative;
    padding-left: 20px;
}

.worries-list-elegant li:last-child {
    margin-bottom: 0;
}

.worries-list-elegant li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 6px;
    height: 6px;
    background-color: #C1A063;
    border-radius: 50%;
}

.worries-list-elegant li .kw {
    font-weight: 500;
    border-bottom: 1px solid #C1A063;
    padding-bottom: 2px;
}

/* Mechanism Section */
.mechanism {
    padding: 120px 0;
    background-color: #ffffff;
}

.mechanism-layout {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1100px;
    margin: 0 auto;
}

.mechanism-image {
    flex: 1;
}

.mechanism-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.mechanism-text {
    flex: 1.2;
}

.mechanism-catch {
    font-family: var(--font-serif);
    font-size: 32px;
    color: #1a2332; /* クラシックネイビー風の色味 */
    line-height: 1.6;
    margin-bottom: 40px;
}

.mechanism-desc {
    font-family: var(--font-serif);
    font-size: 16px;
    color: #333333;
    line-height: 2.0;
}

.kw-gold {
    color: #C5A880;
    font-weight: bold;
}

.mt-3 {
    margin-top: 30px;
}

/* Reasons Section - Elegant Style */
.reasons {
    padding: 120px 0;
    background-color: #ffffff;
}

.elegant-reason {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 120px;
    position: relative;
    padding: 40px 0;
}

.elegant-reason.reverse {
    flex-direction: row-reverse;
}

.elegant-reason:last-child {
    margin-bottom: 0;
}

.elegant-reason.has-bg {
    padding: 60px 40px;
    border-radius: 12px;
    overflow: hidden;
}

.reason-bg-image {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 0;
}

.reason-image-box {
    flex: 1;
    position: relative;
    z-index: 1;
}

.reason-image-box img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.reason-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.reason-num-elegant {
    font-family: var(--font-en);
    font-size: 16px;
    color: #C5A880;
    letter-spacing: 0.2em;
    display: block;
    margin-bottom: 20px;
}

.reason-badge-gold {
    display: inline-block;
    padding: 8px 16px;
    background-color: #C5A880;
    color: #ffffff;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    border-radius: 20px;
}

.elegant-reason h3 {
    font-family: var(--font-serif);
    font-size: 32px;
    color: #333333;
    line-height: 1.5;
    margin-bottom: 30px;
}

.elegant-reason h3 span {
    color: #C5A880;
    display: block;
    margin-top: 10px;
}

.elegant-reason p {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 300;
    font-size: 15px;
    color: #555555;
    line-height: 2.0;
}

/* Director Video Section */
.director-video {
    padding: 120px 0;
    background-color: #ffffff;
}

.video-header {
    text-align: center;
    margin-bottom: 50px;
}

.video-subtitle {
    display: inline-block;
    font-family: var(--font-en);
    font-size: 14px;
    color: #C5A880;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.video-title {
    font-family: var(--font-serif);
    font-size: 30px;
    line-height: 1.6;
    color: #333333;
}

.video-wrapper {
    max-width: 800px;
    margin: 0 auto 40px;
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border: 1px solid rgba(197, 168, 128, 0.3);
    background-color: #000;
}

.video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    z-index: 2;
    transition: transform 0.3s ease;
}

.video-thumbnail:hover {
    transform: scale(1.02);
}

.thumb-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.6) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    text-align: center;
}

.play-btn {
    width: 80px;
    height: 80px;
    background-color: rgba(197, 168, 128, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.video-thumbnail:hover .play-btn {
    background-color: rgba(197, 168, 128, 1);
    transform: scale(1.1);
}

.thumb-text {
    font-family: var(--font-serif);
    color: #ffffff;
    font-size: 22px;
    line-height: 1.5;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.video-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.video-footer {
    max-width: 800px;
    margin: 0 auto;
}

.video-message {
    text-align: center;
    font-size: 16px;
    color: #555555;
    line-height: 1.8;
    margin-bottom: 40px;
    font-style: italic;
}

.video-summary {
    background-color: #f9fafb;
    border: 1px solid #eeeeee;
    border-radius: 8px;
    padding: 30px;
}

.video-summary h4 {
    font-size: 16px;
    color: #333333;
    margin-bottom: 20px;
    text-align: center;
}

.video-summary ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.video-summary li {
    font-size: 14px;
    color: #555555;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.video-summary li:last-child {
    margin-bottom: 0;
}

.video-summary li span {
    display: inline-block;
    background-color: #C5A880;
    color: #ffffff;
    font-size: 11px;
    font-weight: bold;
    padding: 4px 8px;
    border-radius: 4px;
    margin-right: 12px;
}

/* Elegant Treatments Section */
.elegant-treatments {
    padding: 120px 0;
    background-color: #ffffff;
}

.elegant-section-title {
    text-align: center;
    margin-bottom: 80px;
}

.elegant-section-title h2 {
    font-family: var(--font-serif);
    font-size: 32px;
    color: #333333;
    font-weight: normal;
    letter-spacing: 0.1em;
}

.treatment-cards {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.t-card {
    display: flex;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.treatment-item-wrap:nth-child(even) .t-card {
    flex-direction: row-reverse;
}

.t-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
}

.t-card-image {
    flex: 0 0 45%;
}

.t-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 350px;
}

.t-card-content {
    flex: 1;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.t-catch {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    color: #666666;
    margin-bottom: 12px;
    letter-spacing: 0.1em;
}

.t-name {
    font-family: var(--font-serif);
    font-size: 22px;
    color: #1a2332; /* Navy */
    font-weight: bold;
    margin-bottom: 24px;
    line-height: 1.4;
    border-bottom: 1px solid #eeeeee;
    padding-bottom: 20px;
}

.t-name span {
    font-size: 15px;
    color: #999999;
    font-weight: normal;
    margin-left: 8px;
    display: inline-block;
}

.t-desc {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 15px;
    color: #555555;
    line-height: 1.8;
    margin-bottom: 30px;
    flex-grow: 1;
}

.t-btn {
    display: inline-block;
    align-self: flex-start;
    padding: 10px 24px;
    border: 1px solid #C5A880;
    color: #C5A880;
    text-decoration: none;
    font-size: 14px;
    border-radius: 4px;
    transition: all 0.3s ease;
    letter-spacing: 0.1em;
}

.t-btn span {
    margin-left: 8px;
    transition: margin-left 0.3s ease;
}

.t-btn:hover {
    background-color: #C5A880;
    color: #ffffff;
}

.t-btn:hover span {
    margin-left: 12px;
}

/* Before & After Section */
/* Elegant Before & After Section */
.elegant-cases {
    padding: 120px 0;
    background-color: #f9fafb; /* Very light gray */
}

.cases-layout {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.elegant-case {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.04);
    overflow: hidden;
    padding: 40px;
}

.ec-images {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.ec-img-box {
    flex: 1;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.ec-img-box img {
    width: 100%;
    height: 100%;
    display: block;
    aspect-ratio: 4 / 3;
    object-fit: contain;
    background-color: #f4f4f4;
}

.ec-label {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.ec-label i {
    font-family: var(--font-en);
    font-style: italic;
    font-weight: normal;
    letter-spacing: 0.05em;
}

.ec-details {
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.ec-details p {
    font-size: 13px;
    color: #666666;
    margin-bottom: 6px;
    line-height: 1.6;
}

.ec-t-name {
    font-weight: bold;
    color: #333 !important;
    margin-bottom: 20px;
}

.real-selfie {
    padding: var(--spacing-xl) 0 0 0;
    background-color: var(--color-bg);
    overflow: hidden;
}

.real-selfie .section-title {
    margin-bottom: var(--spacing-lg);
}

.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    line-height: 0;
    font-size: 0;
    margin-bottom: -5%; /* Reduce gap below image proportionally */
}

/* 途切れないように画像を横並びにして右へスクロール */
.marquee-track {
    display: flex;
    width: fit-content;
    /* 右へ流れるアニメーション（-50%の位置から0%へ） */
    animation: marqueeRight 35s linear infinite;
}

@keyframes marqueeRight {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0%); }
}

.marquee-track img {
    width: 1920px;
    max-width: none;
    height: auto;
    object-fit: contain;
    flex-shrink: 0;
    pointer-events: none;
    margin-right: 0; /* シームレスにつなげるため余白をなくす */
    display: block; /* 画像下の余白を消す */
}

/* Support Banner */
.support-banner {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 80px 0;
    color: var(--color-white);
    text-align: center;
}

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

.banner-content {
    position: relative;
    z-index: 1;
}

.banner-content h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    letter-spacing: 0.1em;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.support-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.badge {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 2px solid var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 1.1rem;
    font-weight: bold;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, background 0.3s ease;
}

.badge:hover {
    transform: translateY(-10px);
    background: rgba(199, 30, 33, 0.8);
}

/* Doctor Section */
.doctor {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-white);
}

.doctor-inner {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.doctor-image {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    position: relative;
}

.doctor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    aspect-ratio: 1 / 1;
}

.doctor-text {
    flex: 1.2;
}

.doctor-philosophy-elegant {
    margin: 30px 0;
    padding: 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    text-align: center;
    border: 1px solid rgba(0,0,0,0.05);
}

.philo-top {
    font-size: 1.3rem;
    color: #999;
    letter-spacing: 0.1em;
    margin-bottom: 15px;
    font-weight: 500;
}

.philo-top span {
    font-family: var(--font-en);
    font-weight: bold;
    color: #ccc;
    margin-right: 10px;
}

.philo-bottom {
    font-size: 1.8rem;
    color: var(--color-primary);
    font-weight: bold;
    letter-spacing: 0.05em;
}

.philo-bottom span {
    font-family: var(--font-en);
    color: var(--color-primary-dark);
    margin-right: 10px;
}

.doctor-history {
    background: var(--color-bg);
    padding: 24px;
    border-radius: 10px;
    font-size: 0.95rem;
    color: var(--color-text-light);
    border-left: 4px solid var(--color-primary);
}

.doctor-history p {
    margin-bottom: 8px;
}
.doctor-history p:last-child {
    margin-bottom: 0;
}

/* Flow Section */
/* Elegant Flow Section */
.elegant-flow {
    padding: 120px 0;
    background-color: #fcfbfa; /* Pale beige / nuance white */
}

.timeline-container {
    max-width: 800px;
    margin: 0 auto 60px;
    position: relative;
    padding-left: 50px;
}

.timeline-line {
    position: absolute;
    left: 20px;
    top: 10px;
    bottom: 10px;
    width: 1px;
    background-color: #C5A880; /* Gold */
}

.timeline-step {
    position: relative;
    margin-bottom: 50px;
}

.timeline-step:last-child {
    margin-bottom: 0;
}

.ts-num {
    position: absolute;
    left: -50px;
    top: 0;
    width: 40px;
    height: 40px;
    background-color: #ffffff;
    border: 1px solid #C5A880;
    color: #C5A880;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-en);
    font-size: 16px;
    font-weight: bold;
    z-index: 2;
}

.ts-content {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.02);
    display: flex;
    gap: 20px;
    border: 1px solid rgba(0,0,0,0.02);
}

.ts-icon {
    flex: 0 0 40px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.ts-text {
    flex: 1;
}

.ts-text h3 {
    font-size: 18px;
    color: #333333;
    margin-bottom: 12px;
}

.ts-text p {
    font-size: 14px;
    color: #666666;
    line-height: 1.8;
}

.support-box {
    max-width: 800px;
    margin: 0 auto;
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    padding: 30px;
    text-align: center;
    border-radius: 8px;
}

.support-box h4 {
    font-size: 16px;
    color: #1a2332;
    margin-bottom: 12px;
}

.support-box p {
    font-size: 14px;
    color: #555555;
    line-height: 1.6;
}

/* Reviews Section */
.reviews {
    padding: var(--spacing-xl) 0;
    background-color: #fcfcfc;
    overflow: hidden;
}

.review-slider-wrapper {
    margin-top: 40px;
    width: 100%;
}

.review-slider {
    display: flex;
    gap: 20px;
    padding: 20px 5%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}
.review-slider::-webkit-scrollbar {
    display: none;
}

.review-card {
    flex: 0 0 350px;
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.06);
    scroll-snap-align: center;
    border: 1px solid #eee;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    transform: translateY(-5px);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.review-stars-date {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.review-stars {
    color: #FFB300;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.review-date {
    font-size: 0.8rem;
    color: #999;
}

.review-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: #666;
    font-weight: 500;
    background: #f0f0f0;
    padding: 4px 10px;
    border-radius: 20px;
}

.review-text-container {
    flex: 1;
    overflow-y: auto;
    max-height: 280px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}
.review-text-container::-webkit-scrollbar {
    display: none;
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-text-light);
}

/* Clinic Gallery Section */
.clinic-gallery {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-bg);
    overflow: hidden;
}

.clinic-slider-container {
    position: relative;
    width: 100%;
    margin-top: 40px;
    padding-bottom: 20px;
}

.clinic-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 20px;
    padding: 0 10%;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}
.clinic-slider::-webkit-scrollbar {
    display: none;
}

.clinic-slide {
    flex: 0 0 45%;
    scroll-snap-align: start;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    background-color: #e9ecef; /* Placeholder color */
    aspect-ratio: 3 / 2;
}

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

.clinic-prev, .clinic-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.9);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    color: var(--color-primary);
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 10;
    transition: transform 0.3s, background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.clinic-prev:hover, .clinic-next:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.1);
}

.clinic-prev { left: 3%; }
.clinic-next { right: 3%; }

/* FAQ Section */
/* Elegant FAQ Section */
.elegant-faq {
    padding: 120px 0;
    background-color: #ffffff;
}

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

.faq-item {
    border-bottom: 1px solid #eeeeee;
}

.faq-q {
    padding: 24px 0;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    color: #333333;
    position: relative;
    transition: color 0.3s ease;
}

.faq-q:hover {
    color: #C5A880;
}

.q-label {
    font-family: var(--font-serif);
    color: #C5A880;
    font-size: 20px;
    line-height: 1.2;
}

.q-text {
    flex: 1;
    line-height: 1.6;
}

.faq-toggle {
    width: 20px;
    height: 20px;
    position: relative;
    margin-top: 4px;
}

.faq-toggle::before, .faq-toggle::after {
    content: '';
    position: absolute;
    background-color: #999999;
    transition: transform 0.3s ease;
}

.faq-toggle::before {
    top: 9px;
    left: 0;
    width: 20px;
    height: 1px;
}

.faq-toggle::after {
    top: 0;
    left: 9px;
    width: 1px;
    height: 20px;
}

.faq-item.active .faq-toggle::after {
    transform: rotate(90deg);
    opacity: 0;
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease, padding 0.4s ease;
    opacity: 0;
    background-color: #fcfbfa;
}

.faq-item.active .faq-a {
    max-height: 500px;
    opacity: 1;
}

.a-inner {
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.a-label {
    font-family: var(--font-serif);
    color: #999999;
    font-size: 20px;
    line-height: 1.2;
}

.a-text {
    font-size: 14px;
    color: #555555;
    line-height: 1.8;
}

/* Elegant Closing CTA Section */
.closing-cta {
    padding: 100px 0;
    background-color: #1a2332; /* Classic Navy */
    color: #ffffff;
    text-align: center;
}

.cta-message {
    margin-bottom: 60px;
}

.cta-catch {
    font-family: var(--font-serif);
    font-size: 32px;
    line-height: 1.5;
    margin-bottom: 40px;
    color: #C5A880; /* Gold */
}

.t-desc {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.t-btn-expand {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: 1px solid #C5A880;
    color: #C5A880;
    padding: 12px 24px;
    font-size: 14px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-bottom: 10px;
}

.t-btn-expand:hover {
    background-color: rgba(197, 168, 128, 0.05);
}

.t-btn-expand .toggle-icon {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.t-btn-expand.open .toggle-icon {
    transform: rotate(45deg);
}

.t-details-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.4s ease;
    opacity: 0;
}

.t-details-panel.active {
    max-height: 8000px;
    opacity: 1;
}

.t-details-inner {
    background-color: #fcfbf9;
    padding: 20px;
    border-radius: 8px;
    margin-top: 10px;
    margin-bottom: 15px;
    text-align: left;
}

.t-details-inner h4 {
    font-size: 15px;
    color: #333;
    margin-bottom: 10px;
    border-bottom: 1px solid #e0d8c8;
    padding-bottom: 8px;
}

.t-details-inner p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 16px;
}

.treatment-info-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.treatment-info-list li {
    display: flex;
    align-items: center;
    border-bottom: 1px dashed #e0d8c8;
    padding: 12px 0;
}

.treatment-info-list li:last-child {
    border-bottom: none;
}

.info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background-color: rgba(197, 168, 128, 0.1);
    border-radius: 50%;
    color: #C5A880;
    margin-right: 12px;
}

.info-label {
    width: 110px;
    font-size: 13px;
    color: #666;
    font-weight: bold;
}

.info-value {
    flex: 1;
    font-size: 13px;
    color: #333;
    text-align: right;
    font-weight: 500;
}

.treatment-steps {
    margin-top: 24px;
    border-top: 1px solid #e0d8c8;
    padding-top: 20px;
}

.t-step {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.t-step:last-child {
    margin-bottom: 0;
}

.t-step img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.t-step-text h5 {
    font-size: 14px;
    color: #C5A880;
    margin-bottom: 6px;
    margin-top: 0;
}

.t-step-text p {
    font-size: 13px;
    line-height: 1.5;
    color: #666;
    margin-bottom: 0;
}

.t-details-inner .t-btn {
    width: 100%;
    display: block;
    text-align: center;
    background-color: #06C755;
    color: #ffffff;
    border: none;
    padding: 15px 24px;
    font-size: 15px;
    font-weight: bold;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(6, 199, 85, 0.2);
}

.t-details-inner .t-btn:hover {
    background-color: #05b34c;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(6, 199, 85, 0.4);
}


.cta-desc {
    font-size: 15px;
    line-height: 2.0;
    opacity: 0.9;
}

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

.cta-scarcity {
    font-size: 13px;
    color: #C5A880;
    margin-bottom: 24px;
    line-height: 1.5;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.btn-elegant-line {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    background-color: #06C755;
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
    border-radius: 30px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(6, 199, 85, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(6, 199, 85, 0); }
    100% { box-shadow: 0 0 0 0 rgba(6, 199, 85, 0); }
}

.btn-elegant-line:hover {
    transform: translateY(-2px);
}

.icon-line {
    display: inline-block;
    width: 24px;
    height: 24px;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path fill="%23FFF" d="M24 10.3c0-4.3-4.3-8.3-10.4-8.3-6 0-10.4 4-10.4 8.3 0 3.7 2.4 7 6.1 8 1 .3 1.1 1.1 1 1.7l-.4 2.2c-.1.3-.2.4.2.6.4.2 1.3.1 3-1.6 1.3-1.3 3.6-3.4 3.6-3.4 4.5-.4 7.3-3.7 7.3-7.5zm-14.7 2.1c-.2.2-.5.2-.7 0L6.7 10.5c-.2-.2-.2-.5 0-.7.2-.2.5-.2.7 0l1.9 1.9c.2.2.2.5 0 .7zm3.1 0c-.2.2-.5.2-.7 0L10.5 10.5c-.2-.2-.2-.5 0-.7.2-.2.5-.2.7 0l1.9 1.9c.2.2.2.5 0 .7zm3.1 0c-.2.2-.5.2-.7 0L14.3 10.5c-.2-.2-.2-.5 0-.7.2-.2.5-.2.7 0l1.9 1.9c.2.2.2.5 0 .7z"/></svg>') no-repeat center center;
    margin-right: 10px;
}

.btn-elegant-web {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    background: linear-gradient(135deg, #E6D0A9 0%, #C5A880 100%);
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
    border-radius: 30px;
    text-decoration: none;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.btn-elegant-web:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

/* Elegant Footer */
.elegant-footer {
    background-color: #000;
    padding: 80px 0 40px;
    font-size: 13px;
    color: #cccccc;
}

.footer-top {
    display: flex;
    gap: 60px;
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid #333333;
}

.f-clinic-info {
    flex: 1;
}

.f-logo {
    height: 40px;
    margin-bottom: 24px;
}

.f-address {
    line-height: 1.6;
    margin-bottom: 30px;
}

.f-access {
    color: #C5A880;
    font-weight: bold;
}

.f-hours p {
    margin-bottom: 12px;
}

.f-hours ul {
    list-style: none;
    padding: 0;
}

.f-hours li {
    display: flex;
    margin-bottom: 8px;
    border-bottom: 1px dashed #333333;
    padding-bottom: 8px;
}

.f-hours li span {
    width: 80px;
    font-weight: bold;
}

.f-map {
    flex: 1;
    height: 250px;
}

.f-map iframe {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.f-disclaimer {
    margin-bottom: 40px;
    line-height: 1.8;
    color: #999999;
    font-size: 12px;
}

.f-copyright {
    text-align: center;
    color: #aaaaaa;
}

/* Diagnosis Section */
.diagnosis {
    padding: var(--spacing-xl) 0;
    background-color: #fafafa;
}
.diagnosis-box {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    padding: 40px;
    position: relative;
    overflow: hidden;
}
.step-header {
    text-align: center;
    margin-bottom: 30px;
}
.step-badge {
    display: inline-block;
    background: var(--color-primary);
    color: #fff;
    font-family: var(--font-en);
    font-weight: bold;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 15px;
}
.step-header h3 {
    font-size: 1.6rem;
    color: var(--color-text);
}
.options-grid-image {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.step1-option {
    border: 2px solid #eee;
    border-radius: 16px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    background: #fff;
}
.step1-option:hover, .step1-option.selected {
    border-color: var(--color-primary);
    box-shadow: 0 10px 20px rgba(199, 30, 33, 0.1);
    transform: translateY(-5px);
}
.step1-option .opt-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 15px;
}
.step1-option strong {
    display: block;
    font-size: 1.1rem;
    color: var(--color-primary);
    margin-bottom: 10px;
}
.step1-option p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}
.options-grid-text {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
}
.step2-option {
    border: 2px solid #eee;
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    background: #fff;
    font-size: 1.1rem;
    color: var(--color-text);
}
.step2-option:hover, .step2-option.selected {
    border-color: var(--color-primary);
    background: rgba(199, 30, 33, 0.05);
    color: var(--color-primary);
    transform: translateX(10px);
}

.result-box {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, rgba(199,30,33,0.05) 0%, rgba(199,30,33,0.15) 100%);
    border-radius: 16px;
    border: 2px solid rgba(199,30,33,0.2);
    margin-bottom: 30px;
    animation: fadeUp 0.6s ease;
}
.result-combination {
    display: inline-block;
    font-family: var(--font-en);
    font-weight: bold;
    color: var(--color-primary);
    letter-spacing: 0.1em;
    margin-bottom: 15px;
}
#result-title {
    font-size: 2.2rem;
    color: var(--color-primary-dark);
    margin-bottom: 25px;
}
#result-desc {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text);
    text-align: left;
    display: inline-block;
    max-width: 600px;
}
.result-cta {
    text-align: center;
}
.doctor-comment-bubble {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 30px;
    text-align: left;
}
.doctor-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    min-width: 60px;
    min-height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--color-primary);
    aspect-ratio: 1/1;
}
.doctor-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.bubble-text {
    position: relative;
    background: #f9f9f9;
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid #eee;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text);
}
.bubble-text p {
    margin: 0;
}
.bubble-text::before {
    content: '';
    position: absolute;
    top: 20px;
    left: -8px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 8px 8px 0;
    border-color: transparent #eee transparent transparent;
}
.bubble-text::after {
    content: '';
    position: absolute;
    top: 21px;
    left: -6px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 7px 7px 7px 0;
    border-color: transparent #f9f9f9 transparent transparent;
}
.btn-restart {
    display: block;
    margin: 20px auto 0;
    background: none;
    border: none;
    color: #999;
    text-decoration: underline;
    cursor: pointer;
    font-size: 0.95rem;
    padding: 10px;
}
.btn-restart:hover {
    color: var(--color-primary);
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

/* ==========================================================================
   Korea Trend Section
   ========================================================================== */
.korea-trend-section {
    padding: 100px 0;
    background-color: #fcfbf9;
}

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

.trend-subtitle {
    display: inline-block;
    color: #C5A880;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
}

.trend-title {
    font-size: 28px;
    color: #333;
    line-height: 1.5;
    margin-bottom: 25px;
}

.trend-lead {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

.trend-ranking {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    max-width: 800px;
    margin: 0 auto 40px;
}

.trend-ranking h3 {
    text-align: center;
    font-size: 22px;
    color: #333;
    margin-bottom: 30px;
    border-bottom: 2px solid #C5A880;
    display: inline-block;
    padding-bottom: 10px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.ranking-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.rank-item {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    background: #fcfbf9;
    border-radius: 8px;
    border: 1px solid #f0ebe1;
    transition: transform 0.3s ease;
}

.rank-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.rank-badge {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: #333;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
    margin-right: 20px;
}

.rank-badge.rank-1 { background: #d4af37; } /* Gold */
.rank-badge.rank-2 { background: #c0c0c0; } /* Silver */
.rank-badge.rank-3 { background: #cd7f32; } /* Bronze */
.rank-badge.rank-4, .rank-badge.rank-5 { background: #C5A880; }

.rank-content h4 {
    font-size: 18px;
    color: #333;
    margin-bottom: 5px;
}

.rank-content h4 span {
    font-size: 13px;
    color: #888;
    font-weight: normal;
    margin-left: 8px;
}

.rank-stars {
    color: #d4af37;
    font-size: 16px;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.rank-content p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

.trend-combo {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, #C5A880 0%, #b3956d 100%);
    border-radius: 12px;
    padding: 30px;
    display: flex;
    align-items: center;
    color: #fff;
    box-shadow: 0 10px 20px rgba(197, 168, 128, 0.3);
}

.combo-icon {
    font-size: 40px;
    margin-right: 25px;
}

.combo-text h4 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: bold;
}

.combo-text p {
    font-size: 14px;
    line-height: 1.7;
    opacity: 0.95;
}

.combo-text strong {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 5px 10px;
    border-radius: 4px;
    margin: 10px 0;
}

/* Hotel Support */
.hotel-support-box {
    margin-top: 30px;
    background: #fff;
    border: 1px solid #e0d8c8;
    border-radius: 12px;
    padding: 30px;
    display: flex;
    align-items: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.02);
}

.hotel-icon {
    font-size: 50px;
    margin-right: 25px;
}

.hotel-text h4 {
    font-size: 18px;
    color: #C5A880;
    margin-bottom: 10px;
    font-weight: bold;
}

.hotel-text p {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
}

.hotel-text strong {
    color: #d4af37;
    font-weight: bold;
}

/* Treatment Charts */
.treatment-charts {
    margin-top: 40px;
    margin-bottom: 20px;
    padding-top: 30px;
    border-top: 1px dashed #e0d8c8;
}
.tc-title {
    text-align: center;
    font-size: 20px;
    color: #C5A880;
    margin-bottom: 25px;
    font-weight: bold;
}
.tc-container {
    display: flex;
    justify-content: center;
    gap: 40px;
}
.tc-box {
    background: #fdfbf7;
    border-radius: 12px;
    padding: 25px;
    width: 45%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    text-align: center;
}
.tc-box h5 {
    font-size: 15px;
    color: #333;
    margin-bottom: 20px;
    border-bottom: 2px solid #e0d8c8;
    padding-bottom: 10px;
    display: inline-block;
}
.tc-donut-wrap {
    position: relative;
    width: 140px;
    height: 140px;
    margin: 0 auto 20px;
}
.tc-donut {
    width: 100%;
    height: 100%;
    transform: rotate(0deg);
}
.tc-donut-segment {
    stroke-dasharray: 0 100;
    transition: stroke-dasharray 1.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.t-details-panel.active .tc-donut-segment {
    stroke-dasharray: var(--val) var(--rem);
}
.tc-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
}
.tc-main {
    display: block;
    font-size: 18px;
    font-weight: bold;
    color: #d4af37;
    line-height: 1.2;
}
.tc-sub {
    display: block;
    font-size: 11px;
    color: #666;
    margin-top: 2px;
}
.tc-legend {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    font-size: 13px;
    color: #555;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}
.tc-legend li {
    display: flex;
    align-items: center;
}
.tc-legend-color {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 6px;
    flex-shrink: 0;
}
@media (max-width: 768px) {
    /* Reduce global section padding on mobile */
    section {
        padding: 40px 0 !important;
    }
    
    .reasons {
        padding: 40px 20px !important;
    }
    
    /* Elegant section title bottom margin */
    .elegant-section-title {
        margin-bottom: 40px !important;
    }
    
    /* Medical Director Video section */
    .medical-director-video {
        padding: 40px 0 !important;
    }
    
    /* Treatments section */
    .treatments {
        padding: 40px 0 !important;
    }
    
    /* Cases / REVIEWS section */
    .cases {
        padding: 40px 0 !important;
    }
    
    /* DOCTOR section */
    .doctor {
        padding: 40px 0 !important;
    }
    
    /* Reason items margin bottom */
    .reason-item, .reason-item.reverse {
        margin-bottom: 40px !important;
    }
    
    /* If some sections have 20px horizontal padding required */
    section.container-padded {
        padding: 40px 20px !important;
    }
    
    /* FAQ padding */
    .faq {
        padding: 40px 0 !important;
    }

    .worries-catch,
    .mechanism-catch,
    .elegant-section-title h2,
    .video-title,
    .section-title h2 {
        font-size: 24px !important;
        text-align: left !important;
        line-height: 1.4 !important;
    }
    .elegant-section-title {
        text-align: left !important;
    }

    .tc-container {
        flex-direction: column;
        gap: 20px;
    }
    .tc-box {
        width: 100%;
    }
}

/* Doctor Comment in Charts */
.tc-doctor-comment {
    display: flex;
    align-items: flex-start;
    margin-top: 35px;
    background: transparent;
}
.tc-doctor-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    margin-right: 20px;
    border: 2px solid #d4af37;
}
.tc-doctor-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.tc-doctor-balloon {
    position: relative;
    background: #fdfbf7;
    border: 1px solid #e0d8c8;
    border-radius: 12px;
    padding: 15px 20px;
    font-size: 14px;
    line-height: 1.6;
    color: #444;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
    text-align: left;
}
.tc-doctor-balloon::before {
    content: '';
    position: absolute;
    top: 25px;
    left: -10px;
    transform: translateY(-50%);
    border-width: 10px 10px 10px 0;
    border-style: solid;
    border-color: transparent #e0d8c8 transparent transparent;
}
.tc-doctor-balloon::after {
    content: '';
    position: absolute;
    top: 25px;
    left: -8px;
    transform: translateY(-50%);
    border-width: 9px 9px 9px 0;
    border-style: solid;
    border-color: transparent #fdfbf7 transparent transparent;
}
@media (max-width: 768px) {
    .tc-doctor-comment {
        margin-top: 25px;
    }
}

/* Non-Surgical Section */
.non-surgical {
    padding: 80px 0;
    background-color: #fff;
}
.ns-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}
.ns-card {
    background: #fdfbf7;
    border-radius: 12px;
    border: 1px solid #e0d8c8;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
}
.ns-image {
    width: 100%;
    height: 250px;
}
.ns-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ns-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.ns-content h3 {
    font-size: 22px;
    color: #C5A880;
    margin-bottom: 20px;
    font-weight: bold;
    border-bottom: 2px solid #e0d8c8;
    padding-bottom: 10px;
}
.ns-desc {
    margin-bottom: 25px;
    color: #444;
    line-height: 1.6;
    font-size: 15px;
}
.ns-desc p {
    margin-bottom: 15px;
}
.ns-desc p:last-child {
    margin-bottom: 0;
}
.ns-recommend {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    border: 1px dashed #e0d8c8;
    margin-bottom: auto; /* Pushes button to bottom */
}
.ns-recommend h4 {
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
    text-align: center;
}
.ns-recommend ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.ns-recommend ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #555;
    font-size: 14px;
    line-height: 1.5;
}
.ns-recommend ul li:last-child {
    margin-bottom: 0;
}
.ns-recommend ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #d4af37;
    font-weight: bold;
}
@media (max-width: 768px) {
    .ns-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .ns-image {
        height: 200px;
    }
}


/* Cases Slider */
.cases-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-bottom: 20px;
}
.cases-slider {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    /* Gap is managed in JS calculation, but we can set flex gap instead if JS is updated. Let's stick to JS calc. */
    gap: 30px;
}
.cases-slide {
    flex: 0 0 calc(100% - 20px);
    max-width: 800px; /* On PC it won't stretch too wide */
    margin: 0 auto;
}
@media (min-width: 850px) {
    .cases-slide {
        flex: 0 0 800px;
    }
}
.cases-prev, .cases-next {
    position: absolute;
    top: 35%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    color: #C5A880;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid #e0d8c8;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cases-prev:hover, .cases-next:hover {
    background: #C5A880;
    color: #fff;
}
.cases-prev { left: 10px; }
.cases-next { right: 10px; }
@media (min-width: 768px) {
    .cases-prev { left: calc(50% - 430px); }
    .cases-next { right: calc(50% - 430px); }
}

/* Review Box */
.ec-review-box {
    margin-top: 15px;
    position: relative;
}
.ec-review-text {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
    max-height: 100px;
    overflow: hidden;
    position: relative;
    transition: max-height 0.4s ease;
}
.ec-review-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,1));
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.ec-review-text.expanded {
    max-height: 1500px;
}
.ec-review-text.expanded::after {
    opacity: 0;
}
.ec-read-more {
    display: block;
    margin: 10px auto 0;
    background: none;
    border: none;
    color: #C5A880;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    padding: 5px 15px;
    transition: color 0.3s;
}
.ec-read-more:hover {
    color: #a38965;
}

/* Specific Cases in Treatments */
.t-specific-cases {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px dashed #e0d8c8;
}
.t-sc-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 25px;
}
.t-sc-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e0d8c8;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    padding: 30px;
}

/* Responsive */
.mobile-sticky-footer {
    display: none; /* PCでは非表示 */
}

@media (max-width: 768px) {
    .worries {
        padding: 80px 20px;
    }
    .worries-inner {
        padding: 0;
    }
    .worries-layout {
        flex-direction: column;
        gap: 40px;
    }
    .worries-image img {
        max-width: 100%;
        border-radius: 4px;
    }
    .worries-catch {
        font-size: 26px;
        text-align: center;
        margin-bottom: 20px;
    }
    .worries-divider {
        margin: 0 auto 30px;
    }
    .worries-list-elegant li {
        font-size: 15px;
        margin-bottom: 20px;
    }
    
    .mechanism {
        padding: 60px 20px;
    }
    .mechanism-layout {
        flex-direction: column;
        gap: 30px;
    }
    .mechanism-catch {
        font-size: 24px;
        text-align: center;
        margin-bottom: 20px;
    }
    .mechanism-desc {
        font-size: 15px;
    }
    .reasons {
        padding: 60px 20px;
    }
    .elegant-reason, .elegant-reason.reverse {
        flex-direction: column;
        gap: 30px;
        padding: 0;
        margin-bottom: 60px;
    }
    .elegant-reason.has-bg {
        padding: 40px 20px;
    }
    .reason-image-box img {
        height: 250px;
    }
    .elegant-reason h3 {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .header-right-actions {
        gap: 10px;
    }
    .lang-btn {
        width: 35px;
        height: 35px;
    }
    .lang-menu {
        min-width: 120px;
    }
    .worries-message strong {
        font-size: 1.5rem;
    }
    .hero {
        height: auto;
        min-height: 100vh;
        padding-bottom: 80px;
        justify-content: flex-end;
        align-items: flex-start;
    }
    .catch-main { font-size: 1.35rem; }
    .catch-small { font-size: 0.95rem; }
    .hero-desc { display: none; }
    .hero-content { margin-top: 0; padding-top: 0; }
    
    .concept-message-inner {
        flex-direction: column;
    }
    .concept-image {
        width: 100%;
        height: 250px;
        flex: auto;
    }
    .concept-text {
        padding: 30px 20px;
    }
    
    .philo-top {
        font-size: 1.1rem;
    }
    .philo-bottom {
        font-size: 1.4rem;
    }
    
    .hero-stats {
        position: absolute;
        top: 80px;
        right: 5%;
        flex-direction: column;
        align-items: flex-start;
        padding: 15px;
        gap: 10px;
        width: auto;
        margin-top: 0;
        transform: scale(0.95);
        transform-origin: top right;
        background: rgba(255, 255, 255, 0.85);
        backdrop-filter: blur(4px);
        border: 1px solid rgba(255, 255, 255, 0.5);
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    }
    .stat-value {
        font-size: 1.6rem;
    }
    .stat-unit {
        font-size: 1.3rem;
    }
    .stat-divider {
        width: 100%;
        height: 1px;
        margin: 5px 0;
    }

    /* Buttons Mobile */
    .diagnosis-box {
        padding: 20px;
    }
    .options-grid-image {
        grid-template-columns: 1fr;
    }
    .step1-option .opt-img img {
        height: 200px;
    }
    .step-header h3 {
        font-size: 1.3rem;
    }
    #result-title {
        font-size: 1.5rem;
    }
    .result-box {
        padding: 20px;
    }
    .bubble-text {
        font-size: 0.95rem;
    }
    
    /* ヘッダーロゴのモバイル対応 */
    .logo-img { height: 44px; width: auto; }
    .header-btn { padding: 8px 16px; font-size: 0.8rem; }
    
    .header { position: absolute; }
    
    /* Hamburger */
    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        width: 24px;
        height: 20px;
        cursor: pointer;
        z-index: 1001;
    }
    .hamburger span {
        display: block;
        width: 100%;
        height: 2px;
        background: #ffffff;
        transition: all 0.3s;
    }
    .hamburger.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    
    /* Mobile Nav */
    .header-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background: rgba(0,0,0,0.98);
        box-shadow: -5px 0 15px rgba(255,255,255,0.05);
        display: flex;
        flex-direction: column;
        padding: 80px 30px 30px;
        gap: 20px;
        transition: right 0.3s ease;
        z-index: 1000;
    }
    .header-nav.active {
        right: 0;
    }
    .header-social {
        border-left: none;
        padding-left: 0;
        margin-left: 0;
        margin-top: 20px;
        justify-content: flex-start;
    }

    /* Mobile Sticky Footer */
    .mobile-sticky-footer {
        display: flex;
        position: fixed;
        bottom: 0; left: 0; width: 100%;
        background: #fff;
        z-index: 999;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
        align-items: stretch;
        height: 60px;
    }
    .m-socials {
        flex: 0 0 110px; /* Limit width for the 2 icons */
        display: flex;
        align-items: stretch;
        justify-content: space-around;
        padding: 0;
    }
    .m-socials a { 
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        border-right: 1px solid #eee;
    }
    .m-socials a svg { width: 24px; height: 24px; transition: opacity 0.3s; }
    .m-socials a[aria-label="Instagram"] svg { fill: #E1306C; }
    .m-socials a[aria-label="X"] svg { fill: #000000; }
    .m-socials a[aria-label="YouTube"] svg { fill: #FF0000; }
    .m-line-btn {
        flex: 1; /* Expand to fill remaining space */
        background: var(--color-line);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 20px;
        font-weight: bold;
        font-size: 1rem;
        text-decoration: none;
    }
    .floating-cta { display: none !important; }

    /* Hero / FV Mobile Layout */
    .hero {
        align-items: flex-end;
        padding-bottom: 120px;
    }
    .scroll-down {
        display: none;
    }
    .hero-bg {
        background-image: url('../img/hero_sp.webp') !important;
        background-position: center;
    }
    .hero-content {
        text-align: left;
        margin: 0 20px;
        width: calc(100% - 40px);
        background: rgba(255, 255, 255, 0.7);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
        padding: 25px 20px;
        border-radius: 12px;
        box-sizing: border-box;
    }
    .hero-cta {
        display: none; /* スマホではFV内のLINEボタンを非表示 */
    }

    .impact-text .doctor-msg {
        text-align: left;
    }

    .case-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .feature-item, .feature-item.reverse {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
    .feature-text { padding-right: 0; }
    .feature-item.reverse .feature-text { padding-left: 0; }
    
    .treatment-cards {
        gap: 30px;
    }
    .t-card, .treatment-item-wrap:nth-child(even) .t-card {
        flex-direction: column;
    }
    .t-card-image {
        flex: auto;
    }
    .t-card-image img {
        height: 250px;
        min-height: auto;
    }
    .t-card-content {
        padding: 30px 20px;
    }
    .t-name {
        font-size: 20px;
    }
    .t-desc {
        margin-bottom: 24px;
    }
    .feature-image img, .img-wrap { height: 300px; }
    .section-title h2 { font-size: 2rem; }
    .step-info h4 { font-size: 1.1rem; }
    
    .step-photo-guide {
        gap: 8px;
        margin-top: 15px;
    }
    .guide-item span {
        font-size: 0.7rem;
    }
    .guide-item img {
        border-radius: 6px;
        margin-bottom: 5px;
    }
    .btn-large {
        padding: 16px 30px;
        font-size: 1rem;
        width: 100%;
    }

    .container {
        padding: 0 12px;
    }

    .case-images-3 {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        padding: 0;
        gap: 0;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .case-images-3::-webkit-scrollbar {
        display: none;
    }
    .c-img-box {
        flex: 0 0 100%;
        scroll-snap-align: center;
    }
    
    .c-label {
        font-size: 0.8rem;
        padding: 6px 0;
    }
    
    .ec-label {
        top: 0;
        left: 0;
        border-radius: 0 0 10px 0;
        font-size: 11px;
        padding: 4px 12px;
    }

    .mobile-slider-wrap {
        position: relative;
    }
    
    .slider-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 32px;
        height: 32px;
        background: rgba(255, 255, 255, 0.8);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--color-primary);
        font-size: 14px;
        z-index: 10;
        cursor: pointer;
        box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    }
    
    .slider-prev {
        left: 5px;
    }
    
    .slider-next {
        right: 5px;
    }

    /* 新セクション対応 */
    .impact-doctor-banner {
        flex-direction: column;
        padding: 30px 20px 0 20px;
        text-align: center;
        background: #ffffff; /* 白に変更 */
        margin-top: 30px;
    }
    
    .impact-image {
        position: relative;
        width: 85%;
        right: 0;
        margin-top: 30px;
    }
    
    .impact-text .main-title {
        font-size: 1.6rem;
    }
    
    .impact-text .main-title strong {
        font-size: 2.2rem;
    }

    .doctor-inner {
        flex-direction: column;
        gap: 40px;
    }
    
    /* Elegant Before After */
    .elegant-case {
        padding: 24px;
    }
    .ec-images {
        gap: 10px;
        margin-bottom: 20px;
    }
    
    /* Elegant Flow */
    .timeline-container {
        padding-left: 30px;
        margin-bottom: 40px;
    }
    .timeline-line {
        left: 0;
    }
    .ts-num {
        left: -20px;
        width: 34px;
        height: 34px;
        font-size: 14px;
    }
    .ts-content {
        flex-direction: column;
        padding: 24px 20px;
        gap: 16px;
    }
    .ts-icon {
        flex: 0 0 auto;
        align-items: center;
        justify-content: flex-start;
    }
    .banner-content h2 { font-size: 1.8rem; }
    .support-badges { gap: 15px; }
    .badge { width: 100px; height: 100px; font-size: 0.9rem; }
    /* Elegant FAQ Mobile */
    .elegant-faq {
        padding: 60px 0;
    }
    .faq-q {
        font-size: 15px;
        padding: 20px 0;
    }
    .q-label, .a-label {
        font-size: 18px;
    }
    .a-inner {
        padding: 20px 0;
    }
    
    /* Elegant CTA Mobile */
    .closing-cta {
        padding: 60px 0;
    }
    .cta-catch {
        font-size: 24px;
        margin-bottom: 30px;
    }
    .cta-desc {
        font-size: 14px;
    }
    .btn-elegant-line, .btn-elegant-web {
        height: 55px;
        font-size: 15px;
    }
    
    /* Elegant Footer Mobile */
    .elegant-footer {
        padding: 60px 0 30px;
    }
    .footer-top {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 40px;
        padding-bottom: 40px;
    }
    .f-map {
        height: 250px;
    }

    /* Tabs, Precautions & Reasons */
    .reason-item, .reason-item.reverse { flex-direction: column; gap: 30px; margin-bottom: 60px; }
    .reason-image { width: 100%; }
    .reason-image img, .img-wrap { height: 280px; }
    .tab-buttons { display: none; } /* タブボタン非表示 */
    .tab-pane {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        position: relative !important;
        margin-bottom: 40px;
    }
    .tab-inner { padding: 24px; flex-direction: column; gap: 24px; }
    .tab-image { width: 100%; }
    .tab-image img { height: 200px; }

    /* Promo Slider Mobile */
    .promotions { padding-top: 40px; }
    .promo-slide { flex-direction: column; }
    .promo-image { height: 250px; min-height: 250px; width: 100%; }
    .promo-content { padding: 30px; padding-bottom: 70px; }
    .promo-treatment-name { font-size: 1.4rem; }
    .promo-discount-huge { font-size: 3rem; }
    .promo-discount-huge span { font-size: 1.2rem; }
    .promo-controls { 
        right: 50%; 
        transform: translateX(50%); 
        bottom: 20px; 
    }
    
    /* REAL SELFIE スマホ高さ調整 */
    .marquee-track img {
        height: 360px;
        width: auto;
    }
    .real-selfie {
        padding-bottom: 0;
    }

    /* Floating CTA Mobile */
    .floating-cta {
        bottom: 20px;
        right: 20px;
        left: auto;
        width: 70px;
        height: 70px;
    }
    .floating-cta .icon-line {
        width: 20px;
        height: 20px;
        margin-bottom: 2px;
    }
    .floating-text {
        font-size: 0.85rem;
    }

    /* Clinic Gallery Mobile */
    .clinic-slide {
        flex: 0 0 85%;
    }
    .clinic-slider {
        padding: 0 20px;
        gap: 15px;
    }
    .clinic-prev, .clinic-next {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    .clinic-prev { left: 10px; }
    .clinic-next { right: 10px; }
    .review-card {
        flex: 0 0 85%;
        padding: 25px;
    }

    /* Director Video Mobile */
    .director-video {
        padding: 80px 0;
    }
    .video-title {
        font-size: 22px;
    }
    .play-btn {
        width: 60px;
        height: 60px;
    }
    .play-btn svg {
        width: 30px;
        height: 30px;
    }
    .thumb-text {
        font-size: 16px;
    }
    .video-message {
        font-size: 14px;
        text-align: left;
    }
    .video-summary {
        padding: 20px;
    }
    .video-summary li {
        font-size: 13px;
        align-items: flex-start;
    }
    .video-summary li span {
        margin-top: 2px;
        white-space: nowrap;
    }

    /* Hotel Support Mobile */
    .hotel-support-box {
        flex-direction: column;
        text-align: center;
    }
    .hotel-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
}
