/* Luna Beauty Clinic - Custom Block Styles */

/* ========================================
   Elementor Compatibility Overrides
   ======================================== */

/* Force visibility for Elementor animated elements (no Elementor JS to trigger) */
.elementor-invisible {
    visibility: visible !important;
    opacity: 1 !important;
}

/* Elementor column layout fix */
.elementor-section .elementor-container {
    display: flex;
    flex-wrap: wrap;
}
.elementor-column {
    position: relative;
}
.elementor-col-50 {
    width: 50%;
}
.elementor-col-33 {
    width: 33.333%;
}
.elementor-col-100 {
    width: 100%;
}

/* Elementor image responsive */
.elementor-widget-image img {
    max-width: 100%;
    height: auto;
}

/* Table styles (price pages — Elementor + wp-block-table) */
table {
    width: 100% !important;
    border-collapse: collapse !important;
    margin-bottom: 1em;
}
th {
    background-color: #d4d5d8 !important;
    color: #334155 !important;
    padding: 12px 16px !important;
    text-align: center !important;
    font-weight: 600 !important;
}
td {
    padding: 12px 16px !important;
    border: 1px solid #e5e7eb !important;
    text-align: center;
}

/* ========================================
   Astra CSS Variables (for Elementor inline styles)
   ======================================== */
:root {
    --ast-global-color-0: #046bd2;
    --ast-global-color-1: #045cb4;
    --ast-global-color-2: #1e293b;
    --ast-global-color-3: #334155;
    --ast-global-color-4: #f9fafb;
    --ast-global-color-5: #FFFFFF;
    --ast-global-color-6: #e2e8f0;
    --ast-global-color-7: #cbd5e1;
    --ast-global-color-8: #94a3b8;
}

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

/* Scroll animation classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Override WordPress block gap on front-page and custom sections */
.luna-front-page.is-layout-flow > * {
    margin-block-start: 0 !important;
}
.luna-front-page.is-layout-flow > :first-child {
    margin-block-start: 0 !important;
}
.wp-site-blocks > .luna-header-wrapper {
    margin-block-start: 0 !important;
}
.wp-site-blocks > * + * {
    margin-block-start: 0 !important;
}

.skip-link {
    position: absolute;
    left: -9999px;
    z-index: 999999;
}
.skip-link:focus {
    left: 6px;
    top: 7px;
    z-index: 999999;
}

/* ========================================
   Header
   ======================================== */
.luna-header-wrapper {
    padding-top: 100px;
}

.luna-header {
    width: 100vw;
    margin-left: 0;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.luna-header-container {
    max-width: 100%;
    width: 100%;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    height: 100px;
    box-sizing: border-box;
}

/* Logo */
.luna-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
    flex-shrink: 0;
}
.luna-logo:hover .luna-logo-img {
    opacity: 0.8;
}
.luna-logo-img {
    height: 70px !important;
    max-height: 70px !important;
    width: auto !important;
    max-width: 217px;
    display: block;
    transition: opacity 0.3s;
    object-fit: contain;
}

/* Right group */
.luna-right-group {
    display: flex;
    align-items: center;
    gap: 40px;
}

/* Navigation - visible on desktop */
.luna-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}
.luna-nav-item {
    position: relative;
    cursor: pointer;
    color: #2F211B;
}
.luna-nav-item.has-dropdown .luna-nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
}
.luna-dropdown-arrow {
    width: 12px;
    height: 12px;
    transition: transform 0.3s ease;
    display: inline-block;
}
.luna-nav-item.has-dropdown:hover .luna-dropdown-arrow {
    transform: rotate(180deg);
}
.luna-nav-link {
    text-decoration: none;
    color: #2F211B;
    font-family: 'YuMincho', '游明朝', 'Noto Serif JP', serif;
    font-size: 1.125rem;
    font-weight: 600;
    padding: 10px 5px;
    display: block;
    transition: color 0.3s;
    white-space: nowrap;
}
.luna-nav-link.has-dropdown-trigger {
    cursor: default;
}
.luna-nav-link:hover {
    color: #CD6335;
}

/* Dropdown */
.luna-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 80%;
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-radius: 4px;
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
    margin-top: 30px;
    z-index: 1001;
}
.luna-nav-item:hover .luna-dropdown {
    opacity: 1;
    visibility: visible;
}
.luna-dropdown-item {
    display: block;
    padding: 10px 25px;
    text-decoration: none;
    color: #333;
    font-family: 'YuMincho', '游明朝', 'Noto Serif JP', serif;
    font-size: 0.875rem;
    font-weight: 600;
    transition: background-color 0.3s, color 0.3s;
    white-space: nowrap;
}
.luna-dropdown-item:hover {
    background-color: #fce4ec;
    color: #CD6335;
}

/* Booking button */
.luna-booking-btn {
    background-color: #CF2476;
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-family: 'YuMincho', '游明朝', 'Noto Serif JP', serif;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    display: flex !important;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
}
.luna-booking-btn,
.luna-booking-btn:link,
.luna-booking-btn:visited,
.luna-booking-btn:hover,
.luna-booking-btn:active,
.luna-booking-btn:focus {
    color: #fff !important;
    text-decoration: none;
}
.luna-booking-btn:hover {
    transform: translateY(-2px);
}
.luna-booking-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    stroke: #fff;
}

/* Hamburger button - hidden on desktop, shown on mobile */
.luna-hamburger {
    display: none;
    width: 40px;
    height: 40px;
    background: transparent !important;
    border: none;
    cursor: pointer;
    padding: 8px 4px;
    margin-left: 15px;
    z-index: 1002;
    position: relative;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
}
.luna-hamburger:hover,
.luna-hamburger:focus,
.luna-hamburger:active {
    background: transparent !important;
    outline: none;
}
.luna-hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #2F211B;
    transition: transform 0.3s, opacity 0.3s;
}
.luna-hamburger.active .luna-hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.luna-hamburger.active .luna-hamburger-line:nth-child(2) {
    opacity: 0;
}
.luna-hamburger.active .luna-hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ========================================
   Mobile Overlay
   ======================================== */
.luna-mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.98);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}
.luna-mobile-overlay.active {
    display: block;
    opacity: 1;
    visibility: visible;
}
.luna-mobile-menu {
    padding: 120px 30px 80px;
    height: 100%;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.luna-mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.luna-mobile-nav-item {
    margin: 0 -30px;
    position: relative;
}
.luna-mobile-nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 30px;
    right: 30px;
    height: 1px;
    background-color: #E0E0E0;
}
.luna-mobile-nav-link {
    text-decoration: none;
    color: #2F211B;
    font-family: 'YuMincho', '游明朝', 'Noto Serif JP', serif;
    font-size: 1.125rem;
    font-weight: 600;
    display: block;
    transition: color 0.3s;
    padding: 15px 30px;
}
.luna-mobile-nav-link.section-title {
    cursor: default;
}
.luna-mobile-nav-link:active {
    color: #CD6335;
}
.luna-mobile-submenu {
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.luna-mobile-submenu-item {
    text-decoration: none;
    color: #2F211B;
    font-family: 'YuMincho', '游明朝', 'Noto Serif JP', serif;
    font-size: 1.125rem;
    font-weight: 500;
    padding: 10px 30px 10px 0;
    transition: color 0.3s;
    display: block;
}
.luna-mobile-submenu-item:active {
    color: #CD6335;
}

/* Mobile booking area */
.luna-mobile-booking-area {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: transparent;
    display: none;
    z-index: 1000;
}
.luna-mobile-overlay.active .luna-mobile-booking-area {
    display: flex;
}
.luna-mobile-booking-btn {
    flex: none;
    padding: 5px 15px;
    border: none;
    font-family: 'YuMincho', '游明朝', 'Noto Serif JP', serif;
    cursor: pointer;
    transition: opacity 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    position: relative;
    box-sizing: border-box;
}
.luna-mobile-booking-btn,
.luna-mobile-booking-btn:link,
.luna-mobile-booking-btn:visited,
.luna-mobile-booking-btn:hover,
.luna-mobile-booking-btn:active,
.luna-mobile-booking-btn:focus {
    text-decoration: none;
}
.luna-mobile-booking-btn.tel {
    justify-content: flex-start;
    width: 30%;
    background-color: #000;
    color: #fff;
}
.luna-mobile-booking-btn.tel:hover,
.luna-mobile-booking-btn.tel:active {
    opacity: 0.9;
    color: #fff;
}
.luna-mobile-booking-btn.web {
    width: 70%;
    background-color: #CF2476;
    color: #fff;
}
.luna-mobile-booking-btn.web:hover,
.luna-mobile-booking-btn.web:active {
    opacity: 0.9;
    color: #fff;
}
.booking-icon-tel {
    font-size: 28px;
    margin: 8px 0;
    color: #fff;
}
.booking-icon-web {
    width: 32px;
    height: 32px;
    margin: 8px 0;
    stroke: #fff;
}
.booking-title {
    font-family: 'YuMincho', '游明朝', 'Noto Serif JP', serif;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.2;
    margin-top: 6px;
    color: #fff;
}
.luna-mobile-booking-btn.web .booking-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: #CF2476;
    background-color: #fff;
    border-radius: 25px;
    padding: 6px 40px;
    display: inline-block;
}
.booking-time {
    font-family: 'YuMincho', '游明朝', 'Noto Serif JP', serif;
    font-size: 0.8rem;
    font-weight: 400;
    opacity: 0.9;
    margin-top: 6px;
    line-height: 1.2;
    color: #fff;
}
.booking-subtitle {
    font-family: 'YuMincho', '游明朝', 'Noto Serif JP', serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #fff;
    opacity: 0.95;
    margin-top: 4px;
}

/* Mobile fixed booking CTA — 常時追従の下部エリア（モバイルのみ、782px以下で表示）
   構成: キャンペーンバナー(任意リンク) + WEB予約ボタン の2段。 */
.luna-fixed-mobile-cta-wrap {
    display: none;
    flex-direction: column;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 950;
    padding-bottom: env(safe-area-inset-bottom, 0px);
    box-shadow: 0 -2px 8px rgba(0,0,0,0.15);
}
.luna-fixed-mobile-banner {
    display: block;
    width: 100%;
    line-height: 0;
}
.luna-fixed-mobile-banner img {
    display: block;
    width: 100%;
    height: auto;
}
.luna-fixed-mobile-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 56px;
    background-color: #CF2476;
    font-family: 'YuMincho', '游明朝', 'Noto Serif JP', serif;
    font-size: 1rem;
    font-weight: 700;
}
.luna-fixed-mobile-cta,
.luna-fixed-mobile-cta:link,
.luna-fixed-mobile-cta:visited,
.luna-fixed-mobile-cta:hover,
.luna-fixed-mobile-cta:active,
.luna-fixed-mobile-cta:focus {
    color: #fff !important;
    text-decoration: none;
}
.luna-fixed-mobile-cta-icon {
    width: 22px;
    height: 22px;
    stroke: #fff;
    flex-shrink: 0;
}

/* ========================================
   Footer
   ======================================== */
.luna-footer {
    background: #323639;
    color: #fff;
    padding: 80px 0 40px;
    position: relative;
}
.luna-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}
.luna-footer-logo {
    margin-bottom: 40px;
}
.luna-footer-logo-img {
    width: 198px;
    height: auto;
    filter: brightness(0) invert(1);
}
.luna-footer-contact {
    margin-bottom: 40px;
}
.luna-footer-contact-btn {
    display: inline-block;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    border: 1px solid #fff;
    border-radius: 20px;
    padding: 10px 30px;
    transition: background-color 0.3s, color 0.3s;
}
.luna-footer-contact-btn:hover {
    background-color: #fff;
    color: #323639;
}
.luna-footer-nav {
    margin-bottom: 40px;
}
.luna-footer-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 24px;
    padding: 0;
    margin: 0;
}
.luna-footer-nav ul + ul {
    margin-top: 8px;
}
.luna-footer-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-family: var(--wp--preset--font-family--serif, "Noto Serif JP", serif);
    font-weight: 400;
    transition: opacity 0.3s;
}
.luna-footer-nav a:hover {
    opacity: 0.7;
    color: #fff;
}
.luna-footer-bottom {
    text-align: center;
    padding-top: 20px;
    color: rgba(255, 255, 255, 0.26);
}
.luna-footer-bottom p {
    margin: 0;
    font-size: 14px;
}
.scroll-top {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: #CF2476;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 24px;
    transition: all 0.3s;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}
.scroll-top:hover {
    background: #b01e65;
    transform: translateY(-5px);
    color: #fff;
}

/* ========================================
   CTA Booking Section
   ======================================== */
.luna-cta-section {
    padding: 80px 0;
    background: #fff;
    text-align: center;
}
.luna-cta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.luna-cta-heading {
    font-family: 'Noto Serif JP', serif;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 30px;
    color: #323639;
    padding-bottom: 30px;
}
.luna-cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}
.luna-cta-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 370px;
    height: 175px;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s;
    color: #fff;
}
a.luna-cta-card,
a.luna-cta-card:visited {
    color: #fff;
}
.luna-cta-card:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    color: #fff;
}
.luna-cta-icon {
    margin-bottom: 12px;
    color: inherit;
}
.luna-cta-icon svg {
    width: 50px;
    height: 50px;
}
.luna-cta-card-title {
    font-size: 16px;
    font-weight: 500;
    margin: 0;
    color: #fff;
}
.luna-cta-card.phone {
    background: #a88c20;
}
.luna-cta-card.web {
    background: #323639;
}
.luna-cta-card.line {
    background: #06c755;
}
.luna-cta-social {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
}
.luna-cta-social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #69727d;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}
.luna-cta-social-link:hover {
    color: #323639;
}
.luna-cta-social-link svg {
    color: inherit;
}

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

/* ========================================
   Hero Section
   ======================================== */
.hero-section {
    position: relative;
    width: 100%;
}
.hero-background-wrapper {
    position: relative;
    width: 100%;
    min-height: 100vh;
}
.hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/wp-content/themes/luna-theme/assets/images/hero/img-mv-pc.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.hero-content-overlay {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    padding: 100px 5% 50px;
}
.hero-headline {
    margin-bottom: 30px;
}
.hero-headline-img {
    max-width: 500px;
    width: 100%;
    height: auto;
}
.hero-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 44px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    text-decoration: none;
    border: 1px solid #fff;
    border-radius: 2px;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Noto Serif JP', serif;
    transition: all 0.3s;
    backdrop-filter: blur(4px);
    margin-bottom: 0;
}
.hero-cta-btn:hover {
    background: rgba(255, 255, 255, 0.35);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.hero-news {
    position: absolute;
    bottom: 50px;
    left: 5%;
}
.hero-news-link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}
.hero-news-title {
    font-family: 'YuMincho', '游明朝', 'Noto Serif JP', serif;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    text-decoration: underline;
}
.hero-news-date {
    font-size: 14px;
    opacity: 0.9;
}

/* ========================================
   Concept Intro Section
   ======================================== */
.concept-intro-section {
    position: relative;
    padding: 120px 0 120px;
    background: #fff url('/wp-content/themes/luna-theme/assets/images/bg/bg-navi.svg') center center / cover no-repeat;
    overflow: hidden;
}
.concept-intro-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Cormorant Garamond', serif;
    font-size: 64px;
    font-weight: 300;
    color: rgba(168, 140, 32, 0.07);
    white-space: nowrap;
    pointer-events: none;
    z-index: 1;
    line-height: 1.3;
    text-align: center;
}
.concept-intro-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.concept-intro-text {
    padding-right: 40px;
}
.concept-intro-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 32px;
    font-weight: 600;
    color: #323639;
    line-height: 1.8;
    margin-bottom: 30px;
}
.concept-intro-description {
    font-size: 16px;
    line-height: 2;
    color: #334155;
}

/* Concept Intro Cards (Menu/Price) */
.concept-intro-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: center;
}
.concept-card {
    background: rgba(255, 255, 255, 0.85);
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.concept-card-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 600;
    color: #a88c20;
    margin-bottom: 15px;
    letter-spacing: 1px;
}
.concept-card-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    color: #323639;
    font-family: 'Noto Serif JP', serif;
    font-size: 16px;
    font-weight: 500;
    padding: 12px 24px;
    border: 1px solid #d4c896;
    border-radius: 4px;
    transition: all 0.3s;
    background: #fff;
}
.concept-card-link:hover {
    background: #a88c20;
    color: #fff;
    border-color: #a88c20;
}
.concept-card-arrow {
    font-size: 18px;
}

/* ========================================
   Section Common
   ======================================== */
.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 60px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
    color: #a88c20;
    letter-spacing: 1.5px;
}
.section-subtitle {
    font-family: 'Noto Serif JP', serif;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 50px;
    color: #323639;
}

/* ========================================
   Menu Section (Tabs)
   ======================================== */
.menu-section {
    padding: 80px 0;
    background: #fff url('/wp-content/themes/luna-theme/assets/images/bg/bg-menu.svg') center center / cover no-repeat;
}
.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}
.tab-btn {
    padding: 14px 36px;
    background: #fff;
    border: none;
    border-radius: 0;
    cursor: pointer;
    font-family: 'Noto Serif JP', serif;
    font-size: 20px;
    font-weight: 600;
    color: #323639;
    transition: all 0.3s;
}
.tab-btn:hover {
    background: #f5f5f0;
}
.tab-btn.active {
    background: #a88c20;
    color: #fff;
}
.tab-content {
    display: none;
}
.tab-content.active {
    display: block;
}
.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 30px;
}
.menu-item {
    padding: 18px 12px;
    background: #f8f8f8;
    border-radius: 8px;
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s;
    cursor: pointer;
    text-decoration: none;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #eee;
}
.menu-item:hover {
    background: #a88c20;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(168, 140, 32, 0.3);
}
.treatment-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}
.category {
    background: #f8f8f8;
    padding: 25px;
    border-radius: 8px;
}
.category h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #323639;
    border-bottom: 2px solid #a88c20;
    padding-bottom: 10px;
}
.category ul {
    list-style: none;
}
.category li {
    padding: 8px 0;
    border-bottom: 1px solid #e0e0e0;
}
.category li:last-child {
    border-bottom: none;
}
.category li a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s;
}
.category li a:hover {
    color: #a88c20;
}
.subscription-note {
    font-size: 14px;
    color: #666;
    text-align: center;
    margin-top: 20px;
}
.subscription-note a {
    color: #a88c20;
    text-decoration: underline;
}

/* ========================================
   Gallery + Concept Combined Section
   ======================================== */
.gallery-section {
    padding: 80px 0 64px;
    background: #fff url('/wp-content/themes/luna-theme/assets/images/bg/bg-symbol-logo-sp.svg') left center / auto 100% no-repeat;
    position: relative;
}
.gallery-header-row {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 40px;
    margin-bottom: 50px;
    align-items: start;
}
.gallery-header-left {
    text-align: left;
}
.gallery-title-left {
    text-align: left;
}
.gallery-subtitle-left {
    text-align: left;
}
.gallery-header-right {
    padding-top: 10px;
}
.concept-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #323639;
    text-align: left;
}
.concept-description {
    font-size: 16px;
    line-height: 2;
    color: #334155;
    text-align: left;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: #f0f0f0;
}
.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}
.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

/* ========================================
   Information Section
   ======================================== */
.info-section {
    padding: 80px 0 94px;
    background: linear-gradient(90deg, #fff 0%, #fff 41.6%, #f5f5f5 41.6%, #f5f5f5 100%);
}
/* Information 見出しは左寄せ（ライブ準拠） */
.info-section .section-title,
.info-section .section-subtitle {
    text-align: left;
}
/* Information は定義テーブル（ラベル｜値 の行を縦積み・区切り線）＝ライブ準拠 */
.info-grid {
    display: block;
    max-width: 820px;
}
.info-item {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 0 32px;
    align-items: start;
    padding: 22px 4px;
    border-bottom: 1px solid #ded8c7;
}
.info-item:first-child {
    border-top: 1px solid #ded8c7;
}
.info-item h4 {
    font-family: 'Noto Serif JP', serif;
    font-size: 17px;
    font-weight: 600;
    color: #323639;
    margin: 0;
    padding: 0;
    border: none;
}
.info-item p {
    font-size: 15px;
    line-height: 1.9;
    color: #555;
    margin: 0;
}
.info-item a {
    color: #cf2476;
    text-decoration: none;
}
.info-item a:hover {
    text-decoration: underline;
}
.link-map {
    display: inline-block;
    margin-top: 6px;
    color: #cf2476;
    font-size: 14px;
    text-decoration: underline;
    background: none;
    padding: 0;
    border-radius: 0;
}
.link-map:hover {
    color: #b01e65;
    background: none;
    text-decoration: underline;
}

/* ========================================
   Doctors Section
   ======================================== */
.doctors-section {
    padding: 64px 0;
    background: #fff;
}
/* 医師カード: 写真LEFT（縦長）＋ 役職/氏名/経歴/所属/資格を右に積む（ライブ準拠・カード枠なし） */
.doctor-card {
    display: grid;
    grid-template-columns: 210px 1fr;
    grid-template-areas: "photo header" "photo content";
    column-gap: 36px;
    row-gap: 16px;
    align-items: start;
    background: transparent;
    box-shadow: none;
    padding: 0;
    border-radius: 0;
    margin-bottom: 56px;
}
.doctor-header {
    display: contents;
}
.doctor-info-header {
    grid-area: header;
    padding-bottom: 14px;
    border-bottom: 1px solid #ddd;
}
.doctor-photo {
    grid-area: photo;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
}
/* Hide broken images gracefully */
.doctor-photo[src]:not([src=""]) {
    min-height: 0;
}
img:not([src]), img[src=""] {
    display: none;
}
.doctor-header h3 {
    font-size: 18px;
    color: #666;
    margin-bottom: 10px;
}
.doctor-header h4 {
    font-size: 28px;
    color: #2c3e50;
}
.doctor-header h4 span {
    display: block;
    font-size: 18px;
    color: #666;
    margin-top: 5px;
    font-weight: normal;
}
.doctor-content {
    grid-area: content;
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}
.doctor-info h5 {
    font-size: 18px;
    color: #a88c20;
    margin-bottom: 15px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 8px;
}
.doctor-info p {
    line-height: 1.8;
    color: #555;
}

/* ========================================
   Awards Section
   ======================================== */
.awards-section {
    padding: 40px 0;
    background: #fff;
}
.award-row {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: center;
    max-width: 900px;
}
/* 複数受賞時の行間（旧: 受賞ごとに別セクション40px上下=80px相当を再現） */
.award-row + .award-row {
    margin-top: 80px;
}
.award-image {
    overflow: hidden;
    border-radius: 8px;
}
.award-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}
.award-text h3 {
    font-size: 28px;
    color: #1e293b;
    font-weight: 600;
    margin-bottom: 20px;
}
.award-text p {
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

/* ========================================
   YouTube Section
   ======================================== */
.youtube-section {
    padding: 64px 0;
    background: #323639;
    text-align: center;
}
.youtube-section h3 {
    font-family: 'Noto Serif JP', serif;
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 30px;
    color: #a88c20;
}
.youtube-wrapper {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    aspect-ratio: 16 / 9; /* 親幅基準のpadding-bottomハックは max-width と崩れるため自要素基準のaspect-ratioで16:9固定 */
    overflow: hidden;
}
.youtube-wrapper iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 8px;
}

/* ========================================
   News Section
   ======================================== */
.news-section {
    padding: 80px 0 104px;
    background: #f5f5f5;
}
.news-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}
.news-header-left .section-title {
    text-align: left;
}
.news-header-left .section-subtitle {
    text-align: left;
}
.news-list {
    margin-bottom: 0;
}
.news-item {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s;
    cursor: pointer;
}
.news-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.news-date {
    font-size: 14px;
    color: #666;
    min-width: 100px;
}
.news-category {
    font-size: 12px;
    background: #a88c20;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    min-width: 80px;
    text-align: center;
}
.news-item h4 {
    font-size: 16px;
    color: #323639;
    flex: 1;
    font-weight: 500;
}
.news-item h4 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}
.news-item h4 a:hover {
    color: var(--luna-clinic-accent, #a88c20);
}
.btn-view-more {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: transparent;
    color: #323639;
    text-decoration: none;
    border: none;
    padding: 0;
    transition: color 0.3s;
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    letter-spacing: 2px;
    white-space: nowrap;
}
.btn-view-more::after {
    content: '\2192'; /* → 丸枠の矢印アイコン（ライブ準拠） */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border: 1px solid #d8d3c4;
    border-radius: 50%;
    color: var(--luna-clinic-accent, #a88c20);
    font-size: 18px;
    line-height: 1;
    transition: all 0.3s;
}
.btn-view-more:hover {
    color: var(--luna-clinic-accent, #a88c20);
}
.btn-view-more:hover::after {
    background: var(--luna-clinic-accent, #a88c20);
    border-color: var(--luna-clinic-accent, #a88c20);
    color: #fff;
}

/* ========================================
   Single Menu (施術メニュー個別)
   ======================================== */
.luna-breadcrumb {
    background: #f8f8f8;
    padding: 15px 0;
    font-size: 13px;
    color: #888;
}
.luna-breadcrumb a {
    color: #666;
    text-decoration: none;
}
.luna-breadcrumb a:hover {
    color: #CF2476;
}
.luna-breadcrumb .separator {
    margin: 0 8px;
    color: #ccc;
}
.luna-breadcrumb .current {
    color: #333;
}
.treatment-hero {
    background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 50%, #f5f5f5 100%);
    padding: 60px 0 40px;
}
.treatment-hero-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #CF2476;
}
.treatment-content-area {
    padding: 40px 20px 80px;
}
.treatment-title {
    font-size: 32px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #CF2476;
}
.treatment-featured-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 40px;
}
.treatment-body h2 {
    font-size: 24px;
    color: #1e293b;
    margin: 50px 0 20px;
    padding-left: 15px;
    border-left: 4px solid #CF2476;
}
.treatment-body h3 {
    font-size: 20px;
    color: #333;
    margin: 30px 0 15px;
}
.treatment-body p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}
.treatment-body ul,
.treatment-body ol {
    margin: 15px 0 25px 20px;
    line-height: 1.8;
}
.treatment-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

/* Treatment Features Pattern */
.treatment-features {
    margin: 50px 0;
}
.treatment-features h2 {
    border-left: none;
    text-align: center;
    padding-left: 0;
}
.treatment-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 30px;
}
.feature-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 30px 25px;
    text-align: center;
    transition: box-shadow 0.3s;
}
.feature-card:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}
.feature-icon {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    color: #CF2476;
    margin-bottom: 15px;
    font-weight: 600;
}
.feature-card h3 {
    font-size: 18px;
    color: #1e293b;
    margin-bottom: 12px;
}
.feature-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

/* Price Table Pattern */
.price-table-section {
    margin: 50px 0;
}
.price-table-section h2 {
    border-left: none;
    text-align: center;
    padding-left: 0;
}
.price-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 25px;
}
.price-table th {
    background: #1e293b;
    color: #fff;
    padding: 14px 20px;
    text-align: left;
    font-size: 14px;
    font-weight: 500;
}
.price-table td {
    padding: 14px 20px;
    border-bottom: 1px solid #eee;
    font-size: 15px;
    color: #333;
}
.price-table tr:hover td {
    background: #fdf2f8;
}
.price-table td:last-child {
    font-weight: 600;
    color: #CF2476;
    text-align: right;
}
.price-table th:last-child {
    text-align: right;
}
.price-note {
    font-size: 13px;
    color: #888;
    margin-top: 15px;
}

/* Related Treatments */
.related-treatments {
    background: #f8f8f8;
    padding: 60px 0;
}
.related-note {
    text-align: center;
    color: #999;
    font-size: 14px;
    margin-top: 20px;
}

/* ========================================
   Single Trouble (肌悩み個別)
   ======================================== */
.luna-single-trouble .treatment-hero {
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 50%, #f5f5f5 100%);
}
.luna-single-trouble .treatment-hero-label {
    color: #059669;
}
.recommended-treatments {
    background: #fdf2f8;
    padding: 40px;
    border-radius: 12px;
    margin: 40px 0;
}
.recommended-treatments h2 {
    text-align: center;
    border-left: none;
    padding-left: 0;
    color: #CF2476;
}
.recommended-treatments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 25px;
}
.recommended-item {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    text-decoration: none;
    color: #333;
    transition: transform 0.3s, box-shadow 0.3s;
    display: block;
}
.recommended-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(207, 36, 118, 0.15);
}
.recommended-item h3 {
    font-size: 16px;
    margin-bottom: 8px;
    color: #1e293b;
}
.recommended-item p {
    font-size: 13px;
    color: #666;
}

/* ========================================
   Static Pages Common
   ======================================== */
.luna-page .treatment-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}
.luna-page .treatment-content-area {
    padding: 40px 20px 80px;
}
.luna-page .treatment-body h2 {
    font-size: 24px;
    color: #1e293b;
    margin: 50px 0 20px;
    padding-left: 15px;
    border-left: 4px solid #CF2476;
}

/* Flow Steps */
.flow-steps {
    counter-reset: step;
    margin: 30px 0;
}
.flow-step {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    padding: 25px 0;
    border-bottom: 1px solid #eee;
}
.flow-step::before {
    counter-increment: step;
    content: "STEP " counter(step);
    font-family: 'Cormorant Garamond', serif;
    font-size: 13px;
    letter-spacing: 2px;
    color: #CF2476;
    background: #fdf2f8;
    padding: 8px 16px;
    border-radius: 20px;
    white-space: nowrap;
    font-weight: 600;
}
.flow-step-content h3 {
    font-size: 18px;
    color: #1e293b;
    margin-bottom: 10px;
}
.flow-step-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

/* Clinic Info Page */
.clinic-map {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 12px;
    margin: 30px 0;
}

/* Contact Form */
.contact-form {
    max-width: 700px;
    margin: 0 auto;
}
.form-group {
    margin-bottom: 25px;
}
.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}
.form-group label .required {
    color: #CF2476;
    font-size: 12px;
    margin-left: 5px;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    transition: border-color 0.3s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #CF2476;
}
.form-submit-btn {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 30px auto 0;
    padding: 16px;
    background: #CF2476;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}
.form-submit-btn:hover {
    background: #b01e65;
}

/* Privacy Policy */
.privacy-body h2 {
    font-size: 20px;
}
.privacy-body h3 {
    font-size: 17px;
    margin: 20px 0 10px;
    color: #333;
}
.privacy-body p,
.privacy-body li {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
}

/* ========================================
   Archive (News / Column)
   ======================================== */
.archive-content-area {
    padding: 40px 20px 80px;
}
.archive-title {
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 40px;
    padding-bottom: 15px;
    border-bottom: 2px solid #CF2476;
}

/* Archive List */
.archive-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.archive-item {
    padding: 25px 0;
    border-bottom: 1px solid #eee;
    gap: 25px !important;
    align-items: flex-start !important;
}
.archive-item:first-child {
    padding-top: 0;
}
.archive-item-thumb img {
    width: 200px;
    height: 140px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}
.archive-item-body {
    flex: 1;
}
.archive-item-date {
    font-size: 13px;
    color: #888;
    margin-bottom: 6px;
}
.archive-item-title {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
    line-height: 1.5;
}
.archive-item-title a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}
.archive-item-title a:hover {
    color: #CF2476;
}
.archive-item-excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}
.archive-item-excerpt .wp-block-post-excerpt__more-link {
    color: #CF2476;
    text-decoration: none;
    font-weight: 500;
}
.archive-item-excerpt .wp-block-post-excerpt__more-link:hover {
    text-decoration: underline;
}

/* Pagination */
.archive-pagination {
    margin-top: 50px;
    gap: 8px;
}
.archive-pagination a,
.archive-pagination span {
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
}
.archive-pagination a {
    color: #333;
    background: #f5f5f5;
}
.archive-pagination a:hover {
    background: #CF2476;
    color: #fff;
}
.archive-pagination .current {
    background: #CF2476;
    color: #fff;
}
.archive-no-results {
    text-align: center;
    color: #999;
    font-size: 15px;
    padding: 60px 0;
}

/* Column archive hero override */
.archive-hero-column {
    background: linear-gradient(135deg, #fefce8 0%, #fef9c3 50%, #f5f5f5 100%) !important;
}
.archive-hero-column .treatment-hero-label {
    color: #b45309 !important;
}

/* ========================================
   Single News / Column (Article)
   ======================================== */
.article-date {
    font-size: 14px;
    color: #888;
    margin-bottom: 10px;
}
.article-back-link {
    padding: 30px 0;
    background: #f8f8f8;
}
.btn-back-to-archive {
    display: inline-block;
    padding: 12px 30px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid #ddd;
    border-radius: 6px;
    transition: all 0.3s;
}
.btn-back-to-archive:hover {
    background: #CF2476;
    color: #fff;
    border-color: #CF2476;
}

/* Search Form Inline */
.search-form-inline {
    margin: 30px 0 40px;
}
.search-form-inline .wp-block-search__inside-wrapper {
    display: flex;
    gap: 0;
}
.search-form-inline .wp-block-search__input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-right: none;
    border-radius: 6px 0 0 6px;
    font-size: 15px;
}
.search-form-inline .wp-block-search__input:focus {
    outline: none;
    border-color: #CF2476;
}
.search-form-inline .wp-block-search__button {
    padding: 12px 24px;
    background: #CF2476;
    color: #fff;
    border: none;
    border-radius: 0 6px 6px 0;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.3s;
}
.search-form-inline .wp-block-search__button:hover {
    background: #b01e65;
}

/* ========================================
   404 Page
   ======================================== */
.error-404-section {
    padding: 100px 0 40px;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}
.error-404-code {
    font-family: 'Cormorant Garamond', serif;
    font-size: 120px;
    font-weight: 300;
    color: rgba(207, 36, 118, 0.15);
    line-height: 1;
    margin-bottom: 10px;
}
.error-404-title {
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
}
.error-404-description {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
}
.error-404-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 40px;
}
.error-404-btn {
    display: inline-block;
    padding: 14px 35px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}
.error-404-btn.primary {
    background: #CF2476;
    color: #fff;
}
.error-404-btn.primary:hover {
    background: #b01e65;
    transform: translateY(-2px);
    color: #fff;
}
.error-404-btn.secondary {
    background: #fff;
    color: #333;
    border: 1px solid #ddd;
}
.error-404-btn.secondary:hover {
    border-color: #CF2476;
    color: #CF2476;
    transform: translateY(-2px);
}
.error-404-search-label {
    font-size: 14px;
    color: #888;
    margin-bottom: 10px;
}
.error-404-search-area {
    padding: 0 20px 60px;
    text-align: center;
}

/* Column single hero override */
.luna-single-column .treatment-hero {
    background: linear-gradient(135deg, #fefce8 0%, #fef9c3 50%, #f5f5f5 100%);
}
.luna-single-column .treatment-hero-label {
    color: #b45309;
}

/* ========================================
   FAQ Accordion
   ======================================== */
.luna-faq {
    margin: 40px 0;
}
.luna-faq-item {
    border-bottom: 1px solid #eee;
}
.luna-faq-question {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px 0;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.6;
}
.luna-faq-question::before {
    content: "Q";
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    background: #a88c20;
    color: #fff;
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 600;
}
.luna-faq-question::after {
    content: "+";
    margin-left: auto;
    font-size: 20px;
    color: #999;
    transition: transform 0.3s;
    min-width: 20px;
    text-align: center;
}
.luna-faq-item.open .luna-faq-question::after {
    content: "−";
}
.luna-faq-answer {
    display: none;
    align-items: flex-start;
    gap: 15px;
    padding: 0 0 20px;
    font-size: 15px;
    color: #555;
    line-height: 1.8;
}
.luna-faq-item.open .luna-faq-answer {
    display: flex;
}
.luna-faq-answer::before {
    content: "A";
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    background: #e5e7eb;
    color: #555;
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 600;
}

/* ========================================
   Recommend Box
   ======================================== */
.luna-recommend-box {
    background: #fdf2f8;
    border: 1px solid #fce7f3;
    border-radius: 12px;
    padding: 30px;
    margin: 30px 0;
}
.luna-recommend-box-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
    color: #CF2476;
    margin-bottom: 15px;
}
.luna-recommend-box-title::before {
    content: "✦";
    font-size: 16px;
}
.luna-recommend-box ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.luna-recommend-box li {
    padding: 8px 0;
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    padding-left: 20px;
    position: relative;
}
.luna-recommend-box li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #CF2476;
    font-weight: 700;
}

/* ========================================
   Table of Contents
   ======================================== */
.luna-toc {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 25px 30px;
    margin: 30px 0;
}
.luna-toc-title {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #CF2476;
}
.luna-toc ol {
    list-style: none;
    counter-reset: toc;
    margin: 0;
    padding: 0;
}
.luna-toc li {
    counter-increment: toc;
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
}
.luna-toc li:last-child {
    border-bottom: none;
}
.luna-toc a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}
.luna-toc a::before {
    content: counter(toc) ".";
    color: #CF2476;
    font-weight: 600;
    min-width: 20px;
}
.luna-toc a:hover {
    color: #CF2476;
}

/* ========================================
   Treatment Specification Table
   ======================================== */
.luna-treatment-spec {
    margin: 30px 0;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
}
.luna-treatment-spec table {
    width: 100%;
    border-collapse: collapse;
}
.luna-treatment-spec th {
    background: #f8f9fa;
    padding: 14px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #555;
    text-align: left;
    width: 160px;
    border-bottom: 1px solid #eee;
    vertical-align: top;
}
.luna-treatment-spec td {
    padding: 14px 20px;
    font-size: 15px;
    color: #333;
    border-bottom: 1px solid #eee;
    line-height: 1.6;
}
.luna-treatment-spec tr:last-child th,
.luna-treatment-spec tr:last-child td {
    border-bottom: none;
}

/* ========================================
   Before / After Comparison
   ======================================== */
.luna-before-after {
    margin: 40px 0;
}
.luna-before-after-title {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    text-align: center;
    margin-bottom: 25px;
}
.luna-before-after-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: start;
}
.luna-before-after-item {
    text-align: center;
}
.luna-before-after-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    border: 1px solid #eee;
}
.luna-before-after-label {
    display: inline-block;
    margin-top: 10px;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
}
.luna-before-after-label.before {
    background: #f1f5f9;
    color: #64748b;
}
.luna-before-after-label.after {
    background: #fdf2f8;
    color: #CF2476;
}

/* ========================================
   Inline Price Display
   ======================================== */
.luna-price-inline {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin: 15px 0;
}
.luna-price-inline .label {
    font-size: 14px;
    color: #555;
}
.luna-price-inline .price {
    font-size: 28px;
    font-weight: 700;
    color: #CF2476;
    font-family: 'Cormorant Garamond', serif;
}
.luna-price-inline .unit {
    font-size: 14px;
    color: #555;
}
.luna-price-inline .note {
    font-size: 12px;
    color: #999;
}

/* ========================================
   Price Page (4-Column)
   ======================================== */
.price-page-section {
    margin: 40px 0 60px;
}
.price-page-section h2 {
    font-family: 'Noto Serif JP', serif;
    font-size: 22px;
    font-weight: 600;
    color: #1e293b;
    padding: 15px 20px;
    background: #f8f9fa;
    border-left: 4px solid #a88c20;
    margin-bottom: 0;
}
.price-table-4col {
    width: 100%;
    border-collapse: collapse;
}
.price-table-4col th {
    background: #323639;
    color: #fff;
    padding: 12px 16px;
    text-align: left;
    font-size: 13px;
    font-weight: 500;
}
.price-table-4col th:nth-child(2),
.price-table-4col th:nth-child(3) {
    text-align: right;
}
.price-table-4col th:nth-child(4) {
    text-align: center;
}
.price-table-4col td {
    padding: 12px 16px;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    color: #333;
}
.price-table-4col td:nth-child(2),
.price-table-4col td:nth-child(3) {
    text-align: right;
    white-space: nowrap;
}
.price-table-4col td:nth-child(3) {
    color: #CF2476;
    font-weight: 600;
}
.price-table-4col td:nth-child(4) {
    text-align: center;
    color: #a88c20;
}
.price-table-4col tr:hover td {
    background: #fdf2f8;
}
.price-page-note {
    font-size: 13px;
    color: #888;
    margin-top: 10px;
    padding: 0 5px;
}

/* ========================================
   Sitemap Page
   ======================================== */
.sitemap-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 30px 0;
}
.sitemap-category h3 {
    font-family: 'Noto Serif JP', serif;
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #a88c20;
}
.sitemap-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.sitemap-category li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}
.sitemap-category li:last-child {
    border-bottom: none;
}
.sitemap-category a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}
.sitemap-category a::before {
    content: "›";
    color: #CF2476;
    font-size: 18px;
    font-weight: 700;
}
.sitemap-category a:hover {
    color: #CF2476;
}

/* ========================================
   Recruit Page
   ======================================== */
.recruit-section {
    margin: 40px 0;
}
.recruit-section h2 {
    font-family: 'Noto Serif JP', serif;
    font-size: 22px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #a88c20;
}
.recruit-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}
.recruit-table th {
    background: #f8f9fa;
    padding: 14px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #555;
    text-align: left;
    width: 150px;
    border-bottom: 1px solid #eee;
    vertical-align: top;
}
.recruit-table td {
    padding: 14px 20px;
    font-size: 15px;
    color: #333;
    border-bottom: 1px solid #eee;
    line-height: 1.7;
}
.recruit-message {
    background: #fdf2f8;
    padding: 30px;
    border-radius: 12px;
    margin: 30px 0;
    text-align: center;
}
.recruit-message p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

/* ========================================
   First Visit Page
   ======================================== */
.first-visit-intro {
    font-family: 'Noto Serif JP', serif;
    font-size: 18px;
    line-height: 2;
    color: #334155;
    text-align: center;
    margin: 30px 0 50px;
    padding: 0 20px;
}
.first-visit-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 40px 0;
}
.first-visit-feature {
    text-align: center;
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 12px;
}
.first-visit-feature-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 600;
    color: #a88c20;
    margin-bottom: 15px;
}
.first-visit-feature h3 {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
}
.first-visit-feature p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

/* Clinic Info Table */
.clinic-info-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}
.clinic-info-table th {
    background: #f8f9fa;
    padding: 14px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #555;
    text-align: left;
    width: 130px;
    border-bottom: 1px solid #eee;
    vertical-align: top;
}
.clinic-info-table td {
    padding: 14px 20px;
    font-size: 15px;
    color: #333;
    border-bottom: 1px solid #eee;
    line-height: 1.6;
}

/* Archive grid layout (menu & trouble) */
.archive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.archive-card {
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    transition: box-shadow 0.3s, transform 0.3s;
}
.archive-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}
.archive-card-thumb img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}
.archive-card-body {
    padding: 18px;
}
.archive-card-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.5;
}
.archive-card-title a {
    color: #333;
    text-decoration: none;
}
.archive-card-title a:hover {
    color: #CF2476;
}
.archive-card-excerpt {
    font-size: 13px;
    color: #888;
    line-height: 1.6;
}

/* Trouble archive hero override */
.archive-hero-trouble {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 50%, #f5f5f5 100%);
}
.archive-hero-trouble .treatment-hero-label {
    color: #059669;
}

/* ========================================
   Clinic Card (multi-clinic layout)
   ======================================== */
.clinic-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 30px;
    margin: 30px 0;
    transition: box-shadow 0.3s;
}
.clinic-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}
.clinic-card h2 {
    font-family: 'Noto Serif JP', serif;
    font-size: 20px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 2px solid #a88c20;
}
.clinic-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* ========================================
   Recruit Page Enhancements
   ======================================== */
.recruit-role {
    font-size: 13px;
    font-weight: 600;
    color: #a88c20;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}
.recruit-section h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid #eee;
}

/* ========================================
   Flow Step Number
   ======================================== */
.flow-step-number {
    display: inline-block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 700;
    color: #a88c20;
    margin-right: 8px;
}
.flow-note {
    font-size: 13px;
    color: #999;
    margin-top: 8px;
}

/* ========================================
   Price Page Notes & Section Notes
   ======================================== */
.price-page-notes {
    background: #fef9c3;
    border: 1px solid #fde68a;
    border-radius: 8px;
    padding: 20px 25px;
    margin-bottom: 40px;
}
.price-page-notes p {
    font-size: 13px;
    color: #713f12;
    line-height: 1.8;
    margin: 0;
}
.price-section-note {
    font-size: 13px;
    color: #888;
    margin: 5px 0 0;
    padding: 0 5px;
}
.price-page-section h3 {
    font-size: 17px;
    font-weight: 600;
    color: #475569;
    margin: 30px 0 0;
    padding: 12px 20px;
    background: #f1f5f9;
    border-left: 3px solid #94a3b8;
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 1024px) {
    .concept-intro-bg-text {
        font-size: 48px;
    }
    .concept-intro-title {
        font-size: 24px;
    }
    .luna-header-container {
        padding: 0 20px;
    }
    .luna-nav {
        gap: 20px;
    }
    .luna-nav-link {
        font-size: 1rem;
    }
}

@media (max-width: 1024px) {
    .luna-nav {
        display: none;
    }
    .luna-hamburger {
        display: flex;
    }
}

/* モバイル(782px以下): ヘッダー内WEB予約ボタンを隠し、下部固定CTAバーに置き換える。
   非表示にする理由 = 大きなボタンが .luna-right-group の flex 幅を圧迫し、
   ハンバーガーが画面右端外へ押し出されて不可視になっていたため（実機検証で確認）。 */
@media (max-width: 782px) {
    .luna-booking-btn {
        display: none !important;
    }
    .luna-fixed-mobile-cta-wrap {
        display: flex;
    }
}

@media (max-width: 768px) {
    .luna-header-wrapper {
        padding-top: 60px;
    }
    .luna-header-container {
        height: 60px;
        padding: 0 20px;
    }
    .luna-logo-img {
        height: 50px !important;
        max-height: 50px !important;
    }
    .luna-mobile-overlay.active {
        display: block;
    }
    .luna-footer-nav ul {
        flex-direction: column;
        gap: 12px;
    }
    .concept-intro-grid {
        grid-template-columns: 1fr;
    }
    .concept-intro-cards {
        flex-direction: column;
        gap: 15px;
    }
    .gallery-header-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .gallery-title-left,
    .gallery-subtitle-left {
        text-align: center;
    }
    .concept-title {
        text-align: center;
    }
    .concept-description {
        text-align: center;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .award-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    /* SP: 医師カードは縦積み（写真上→役職氏名→経歴/所属/資格） */
    .doctor-card {
        grid-template-columns: 1fr;
        grid-template-areas: "photo" "header" "content";
        column-gap: 0;
        row-gap: 14px;
    }
    .doctor-photo {
        max-width: 200px;
    }
    /* SP: Information はラベル上→値下に積む */
    .info-item {
        grid-template-columns: 1fr;
        gap: 4px;
    }
    /* SP: メニューグリッドは2カラム */
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    /* SP: News見出しとVIEW MOREを縦積み */
    .news-header-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .section-title {
        font-size: 40px;
    }
    .treatment-features-grid {
        grid-template-columns: 1fr;
    }
    .treatment-title {
        font-size: 24px;
    }
    .flow-step {
        flex-direction: column;
        gap: 12px;
    }
    .recommended-treatments {
        padding: 25px 20px;
    }
    /* New pattern responsive - 768px */
    .luna-faq-question {
        font-size: 15px;
    }
    .luna-before-after-grid {
        gap: 12px;
    }
    .luna-treatment-spec th {
        width: 120px;
        padding: 12px 15px;
    }
    .luna-treatment-spec td {
        padding: 12px 15px;
    }
    .price-table-4col th,
    .price-table-4col td {
        padding: 10px 12px;
        font-size: 13px;
    }
    .sitemap-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .first-visit-features {
        grid-template-columns: 1fr;
    }
    .recruit-table th {
        width: 120px;
    }
    .clinic-info-table th {
        width: 100px;
    }
    .clinic-card {
        padding: 20px;
    }
    .clinic-card h2 {
        font-size: 18px;
    }
    .price-page-section h3 {
        font-size: 15px;
    }
    .archive-item {
        flex-direction: column !important;
    }
    .archive-item-thumb img {
        width: 100%;
        height: 200px;
    }
    .archive-title {
        font-size: 22px;
    }
    .archive-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .error-404-code {
        font-size: 80px;
    }
    .error-404-title {
        font-size: 22px;
    }
    .error-404-actions {
        flex-direction: column;
        align-items: center;
    }
    .error-404-btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
    .luna-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .luna-cta-card {
        width: 100%;
        max-width: 370px;
        height: 140px;
    }
    .luna-cta-heading {
        font-size: 18px;
    }
    .luna-footer-nav ul {
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .luna-header-container {
        padding: 0 15px;
    }
    .archive-grid {
        grid-template-columns: 1fr;
    }
    /* New pattern responsive - 480px */
    .luna-faq-question::before,
    .luna-faq-answer::before {
        width: 28px;
        height: 28px;
        min-width: 28px;
        font-size: 16px;
    }
    .luna-recommend-box {
        padding: 20px 15px;
    }
    .luna-toc {
        padding: 20px;
    }
    .luna-treatment-spec th,
    .luna-treatment-spec td {
        display: block;
        width: 100%;
        padding: 10px 15px;
    }
    .luna-treatment-spec th {
        border-bottom: none;
        padding-bottom: 2px;
        font-size: 12px;
    }
    .luna-treatment-spec td {
        padding-top: 2px;
    }
    .price-table-4col {
        font-size: 12px;
    }
    .price-table-4col th,
    .price-table-4col td {
        padding: 8px 8px;
    }
    .recruit-table th,
    .recruit-table td {
        display: block;
        width: 100%;
    }
    .recruit-table th {
        border-bottom: none;
        padding-bottom: 4px;
    }
    .clinic-info-table th,
    .clinic-info-table td {
        display: block;
        width: 100%;
    }
    .clinic-info-table th {
        border-bottom: none;
        padding-bottom: 4px;
    }
}

/* ========================================
   P1-1: Elementor Heading Widget (金色装飾)
   ======================================== */
.elementor-widget-heading .elementor-heading-title {
    font-family: "Noto Serif JP", sans-serif;
    font-weight: 600;
    color: #323639;
}
/* Page/section titles (Cormorant Garamond) */
.elementor-section-full_width > .elementor-container .elementor-widget-heading h2.elementor-heading-title,
.elementor-top-section > .elementor-container .elementor-widget-heading h2.elementor-heading-title.elementor-size-default {
    font-family: "Cormorant Garamond", "Noto Serif JP", serif;
    font-size: 40px;
    letter-spacing: 1.5px;
    color: #A88C20;
}
/* Sub-headings */
.elementor-widget-heading h3.elementor-heading-title {
    font-family: "Noto Serif JP", sans-serif;
    font-size: 18px;
    color: #323639;
}

/* ========================================
   P1-2: Elementor Button Widget
   ======================================== */
.elementor-button-wrapper .elementor-button {
    display: inline-block;
    padding: 15px 40px;
    font-family: "Noto Serif JP", sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: opacity 0.3s, background 0.3s;
    text-align: center;
    cursor: pointer;
}
.elementor-button-wrapper .elementor-button:hover {
    opacity: 0.8;
}
/* Gold style buttons */
.elementor-button-wrapper .elementor-button[style*="background-color"],
.elementor-widget-button .elementor-button {
    color: #fff;
}
/* Outline buttons (recruit Contact etc.) */
.elementor-button-wrapper .elementor-button[style*="border"] {
    font-family: "Cormorant Garamond", sans-serif;
    border-radius: 20px;
}

/* ========================================
   P1-3: Elementor Section Backgrounds
   ======================================== */
.elementor-section {
    position: relative;
}
.elementor-section > .elementor-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* ========================================
   P1-4: Elementor Section/Column Spacing
   ======================================== */
.elementor-section-boxed > .elementor-container {
    max-width: 1140px;
    margin: 0 auto;
}
.elementor-section-full_width > .elementor-container {
    max-width: 100%;
}
.elementor-widget-wrap > .elementor-element {
    margin-bottom: 20px;
}
.elementor-widget-wrap > .elementor-element:last-child {
    margin-bottom: 0;
}
/* Elementor inner section spacing */
.elementor-inner-section {
    margin-bottom: 20px;
}
/* Widget container spacing */
.elementor-widget-container {
    /* Preserve natural spacing */
}
.elementor-widget-divider .elementor-divider {
    padding: 10px 0;
}
.elementor-widget-divider .elementor-divider-separator {
    display: block;
    border-top: 1px solid #e5e7eb;
}

/* ========================================
   P2-5: Tabs — Gold (from live: #A88C20)
   ======================================== */
.elementor-tabs-wrapper {
    display: flex;
    border-bottom: none;
}
.elementor-tab-title {
    padding: 20px 25px;
    cursor: pointer;
    font-weight: 700;
    font-size: 18px;
    color: #323639;
    background: #fff;
    border: none;
    transition: color 0.3s, background 0.3s;
    user-select: none;
    white-space: nowrap;
    flex: 1;
    text-align: center;
}
.elementor-tab-title.elementor-active {
    color: #fff;
    background: #A88C20;
}
.elementor-tab-title:hover:not(.elementor-active) {
    background: #f5f5f5;
}
.elementor-tab-content {
    display: none;
    padding: 20px 0;
}
.elementor-tab-content.elementor-active {
    display: block;
}
.elementor-tab-mobile-title { display: none; }
@media (max-width: 767px) {
    .elementor-tabs-wrapper { flex-direction: column; }
    .elementor-tab-title.elementor-tab-desktop-title { display: none; }
    .elementor-tab-mobile-title {
        display: block;
        padding: 15px 16px;
        cursor: pointer;
        font-weight: 700;
        color: #323639;
        background: #fff;
        border: 1px solid #e5e7eb;
    }
    .elementor-tab-mobile-title.elementor-active {
        color: #fff;
        background: #A88C20;
        border-color: #A88C20;
    }
}

/* ========================================
   P2-6: Elementor Image Gallery
   ======================================== */
.elementor-image-gallery .gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.elementor-image-gallery .gallery-item {
    margin: 0 !important;
    width: 100% !important;
}
.elementor-image-gallery .gallery-item img {
    width: 100%;
    height: auto;
    aspect-ratio: 3/2;
    object-fit: cover;
}

/* ========================================
   P2-7: Tab Menu Links (trouble/menu category buttons)
   ======================================== */
.tab-menu-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
}
.tab-menu {
    flex: 0 0 auto;
    width: 33.333%;
    padding: 8px;
    box-sizing: border-box;
}
.tab-menu a {
    display: block;
    text-align: center;
    padding: 10px 8px;
    color: #323639;
    text-decoration: none;
    font-size: 15px;
    border-bottom: 1px solid #e5e7eb;
    transition: color 0.3s;
}
.tab-menu a:hover {
    color: #A88C20;
}
@media (max-width: 767px) {
    .tab-menu {
        width: 50%;
    }
}

/* ========================================
   P2-8: Table of Contents (TOC Plus plugin compat)
   ======================================== */
#toc_container {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    padding: 20px 30px;
    margin: 20px 0 30px;
    border-radius: 4px;
    width: auto !important;
}
#toc_container .toc_title {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 12px;
    color: #323639;
}
#toc_container ul {
    list-style: none;
    padding-left: 0;
}
#toc_container ul li {
    padding: 4px 0;
}
#toc_container ul li a {
    color: #323639;
    text-decoration: none;
    font-size: 14px;
}
#toc_container ul li a:hover {
    color: #A88C20;
}

/* ========================================
   P2-9: Elementor full-width section fix
   ======================================== */
/* Full-width sections — JS (elementor-compat.js) handles dynamic width/margin calculation */
/* CSS fallback for no-JS */
.elementor > .elementor-section-full_width {
    width: 100vw;
    max-width: none;
    margin-left: calc(-50vw + 50%);
}
.elementor-section-boxed > .elementor-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}
/* Ensure the page content area allows overflow for full-width */
.luna-page--migrated,
.luna-page--migrated > .wp-block-post-content,
.luna-page > .wp-block-post-content {
    overflow: visible;
}
.wp-block-post-content > .elementor {
    overflow: visible;
}

/* ========================================
   Elementor images — fix invisible (width=1/height=1 attrs)
   ======================================== */
.elementor-widget-image img[width="1"],
.elementor-widget-image img[height="1"] {
    width: auto !important;
    height: auto !important;
    max-width: 100%;
}
/* SVG icons/buttons that are tiny */
.elementor-widget-image img[src$=".svg"] {
    min-width: 40px;
    height: auto !important;
}
/* Ensure Elementor animated images that have no class are visible */
.elementor-element img {
    max-width: 100%;
    height: auto;
}

/* ========================================
   Elementor empty sections — hide gracefully
   ======================================== */
.elementor-section:empty {
    display: none;
}
/* Collapse inner sections with no visible content (spacers/dividers) */
.elementor-inner-section {
    min-height: 0;
}
/* Hidden on mobile/desktop classes from Elementor */
.elementor-hidden-desktop {
    display: none !important;
}
@media (max-width: 767px) {
    .elementor-hidden-mobile {
        display: none !important;
    }
    .elementor-hidden-desktop {
        display: block !important;
    }
}

/* ========================================
   Column Sidebar (injected via PHP)
   ======================================== */
.column-layout-wrapper {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}
.column-sidebar {
    position: sticky;
    top: 120px;
    align-self: start;
}
.column-sidebar-section { margin-bottom: 30px; }
.column-sidebar-title {
    font-family: 'YuMincho', '游明朝', 'Noto Serif JP', serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #CD6335;
}
.popular-posts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.popular-post-item {
    text-decoration: none;
    color: #333;
}
.popular-post-item:hover { opacity: 0.8; }
.popular-post-thumb {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 6px;
}
.popular-post-title {
    font-size: 0.75rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.sidebar-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.sidebar-tag-link {
    display: inline-block;
    padding: 4px 12px;
    background: #f5f5f5;
    color: #666;
    text-decoration: none;
    font-size: 0.8125rem;
    border-radius: 3px;
    transition: background 0.2s;
}
.sidebar-tag-link:hover { background: #CD6335; color: #fff; }
@media (max-width: 767px) {
    .column-layout-wrapper { grid-template-columns: 1fr; gap: 30px; }
    .column-sidebar { position: static; }
    .popular-posts-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ========================================
   Column Detail — Hide duplicate H1
   ======================================== */
.luna-single-column .article-body h1.elementor-heading-title,
.luna-single-column .treatment-body h1.elementor-heading-title {
    display: none !important;
}

/* ========================================
   VIEW MORE SVG image fix
   ======================================== */
.elementor-widget-image a img[src*="btn-"],
.elementor-widget-image a img[src*="view-more"],
img[src*="btn-view-more"] {
    width: 180px !important;
    height: auto !important;
    max-width: 100%;
}
.elementor-widget-image a:hover img { opacity: 0.7; }

/* ========================================
   P3-11: SP Mobile adjustments
   ======================================== */
@media (max-width: 767px) {
    /* Elementor section padding on mobile */
    .elementor-section {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    .elementor-section-full_width {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    .elementor-section-full_width > .elementor-container {
        padding: 0 15px;
    }
    /* Prevent table overflow on mobile */
    .elementor table,
    .elementor-widget-container table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        max-width: 100%;
    }
    /* 2-column layout → stack on mobile */
    .elementor-col-50,
    .elementor-col-33 {
        width: 100% !important;
    }
    /* Heading size reduction */
    .elementor-widget-heading h2.elementor-heading-title {
        font-size: 24px !important;
    }
    .elementor-widget-heading h3.elementor-heading-title {
        font-size: 16px !important;
    }
    /* Full-width sections on mobile */
    .elementor > .elementor-section-full_width,
    .elementor > section.elementor-section-full_width {
        width: 100%;
        margin-left: 0;
    }
    /* Image boxes stack */
    .elementor-widget-image-box .elementor-image-box-wrapper {
        flex-direction: column !important;
    }
    /* Archive grid 2 columns on mobile */
    .archive-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* ============================================================
   luna-privacy — 本文エリア（セクション1〜10）の薄グレー背景ボックス
   本番は intro 段落の直後から末尾まで、1枚の #F5F5F5 ボックスで包む
   （実測: 本番スクショの背景RGBが#F5F5F5で全セクション共通）
   ============================================================ */
.luna-privacy__body {
    background: #F5F5F5;
    padding: 32px clamp(16px, 4vw, 48px);
}

/* ============================================================
   luna-recruit — カウンセラー/看護師メッセージの本人＋マネージャー2カラム、
   エントリー導線バナー（本番同様にピンク地イラスト画像を概要直後／看護師メッセージ直後に配置）
   ============================================================ */
.luna-recruit__msg-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}
.luna-recruit__msg-col p {
    font-size: 14px;
    line-height: 1.95;
    color: #555;
    margin: 0 0 12px;
}
.luna-recruit__role {
    font-size: 15px;
    font-weight: 600;
    color: #323639;
    margin: 0 0 12px;
}
.luna-recruit__entry-banner {
    display: block;
    max-width: 980px;
    margin: 0 auto 56px;
}
.luna-recruit__entry-banner img {
    width: 100%;
    height: auto;
    display: block;
}

/* ============================================================
   luna-recruit__accordion — 求人概要のアコーディオン化（本番踏襲）
   初期表示は先頭の求人のみ展開（page-recruit/render.php で is-open 付与）
   ============================================================ */
.luna-recruit__accordion {
    max-width: 880px;
    margin: 0 auto 24px;
}
.luna-recruit__job {
    border: 1px solid #e6e1d6;
}
.luna-recruit__job + .luna-recruit__job {
    border-top: none;
}
.luna-recruit__job-toggle {
    display: block;
    width: 100%;
    position: relative;
    background: #fff;
    border: none;
    margin: 0;
    padding: 14px 20px 14px 44px;
    font-size: 15px;
    font-weight: 600;
    color: #323639;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-align: center;
    cursor: pointer;
    transition: background .2s ease, color .2s ease;
}
.luna-recruit__job-toggle::before {
    content: "+";
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
}
.luna-recruit__job.is-open .luna-recruit__job-toggle {
    background: var(--luna-clinic-accent, #a88c20);
    color: #fff;
}
.luna-recruit__job.is-open .luna-recruit__job-toggle::before {
    content: "\2212";
}
.luna-recruit__job-panel {
    display: none;
    padding: 24px 20px;
}
.luna-recruit__job.is-open .luna-recruit__job-panel {
    display: block;
}
.luna-recruit__job .luna-recruit__table {
    margin: 0;
}
/* 既存のグローバル th{ !important } リセット（本ファイル冒頭）が
   thead見出し行にも及んで灰色化するため、この表内のthに限定して上書きする */
.luna-recruit__table th {
    background: #faf8f3 !important;
    color: #323639 !important;
    font-weight: 600 !important;
    text-align: left !important;
    padding: 12px 14px !important;
}
.luna-recruit__table thead th:last-child {
    width: auto;
}

/* ============================================================
   luna-recruit__h — 見出し色は本番同様に黒系（clinic.cssの
   var(--luna-clinic-accent)金色指定をこのスコープに限り上書き）
   ============================================================ */
.luna-recruit__h {
    color: #1e293b !important;
}

/* ============================================================
   luna-recruit__overview — 「概要」の箇条書き（本番の改行構造）
   ============================================================ */
.luna-recruit__info {
    font-size: 14px;
    line-height: 1.9;
    color: #555;
    margin: 16px 0 0;
}
.luna-recruit__info-sub {
    display: inline-block;
    margin-left: 1.2em;
}

/* ============================================================
   luna-recruit__msg — 見出し直下に全幅バナー写真→その下にテキスト
   （本番構造。clinic.cssの2カラムgridをこのスコープに限り解除）
   ============================================================ */
.luna-recruit__msg {
    display: block !important;
}
.luna-recruit__msg-img {
    margin: 0 0 24px;
}

/* ============================================================
   luna-sitemap — 本番型ページ一覧（グレー帯＋縦1カラムリンク一覧）
   グレー帯は親のis-layout-constrainedを外へ逃がす100vwブリードトリック
   ============================================================ */
.luna-sitemap__band {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    background: #F5F5F5;
    padding: 56px 0;
}
.luna-sitemap__block + .luna-sitemap__block {
    margin-top: 48px;
}
.luna-sitemap__block-title {
    display: inline-block;
    margin: 0 0 20px;
    padding-bottom: 6px;
    border-bottom: 1px solid #323639;
    font-size: 17px;
    font-weight: 600;
    color: #323639;
}
.luna-sitemap__links {
    list-style: none;
    margin: 0;
    padding: 0;
}
.luna-sitemap__links li {
    margin: 0 0 10px 40px;
}
.luna-sitemap__links a {
    color: var(--luna-clinic-accent, #a88c20);
    text-decoration: underline;
    font-size: 15px;
}
.luna-sitemap__links a:hover {
    opacity: .75;
}

@media (max-width: 782px) {
    .luna-recruit__msg-cols {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .luna-recruit__job-toggle {
        font-size: 14px;
        padding: 12px 16px 12px 38px;
    }
    .luna-recruit__job-panel {
        padding: 16px 12px;
    }
    .luna-sitemap__band {
        padding: 40px 0;
    }
    .luna-sitemap__links li {
        margin-left: 20px;
    }
}

/* ========================================
   Brand Homepage (luna/brand-homepage) — TOP専用
   ======================================== */
.luna-brand-hero {
    position: relative;
    width: 100%;
}
.luna-brand-hero__bg {
    position: relative;
    width: 100%;
    min-height: 53vw;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
}
.luna-brand-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    /* 本番は max-width:1074px の中央寄せコンテナ内にHero文言を配置している
       （実測: 1440px幅で左端183px = (1440-1074)/2）。viewport変動時も
       同じ中央寄せの見た目になるよう、固定pxの左パディングでなくcalc()で再現する。 */
    padding-left: max(24px, calc((100% - 1074px) / 2));
    padding-right: max(24px, calc((100% - 1074px) / 2));
}
.luna-brand-hero__headline {
    margin-bottom: 28px;
}
.luna-brand-hero__headline-img {
    max-width: 480px;
    width: 100%;
    height: auto;
}
.luna-brand-hero__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 44px;
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    text-decoration: none;
    border: 1px solid #fff;
    border-radius: 2px;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Noto Serif JP', serif;
    transition: all 0.3s;
    backdrop-filter: blur(4px);
}
.luna-brand-hero__cta:hover {
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    transform: translateY(-2px);
}

/* 理念 */
.luna-brand-concept {
    position: relative;
    padding: 100px 0;
    background: #fff;
    overflow: hidden;
}
.luna-brand-concept__watermark {
    position: absolute;
    top: 8%;
    left: 4%;
    font-family: 'Cormorant Garamond', serif;
    font-size: 64px;
    font-weight: 300;
    color: rgba(168, 140, 32, 0.08);
    white-space: nowrap;
    line-height: 1.3;
    pointer-events: none;
    z-index: 1;
}
.luna-brand-concept__grid {
    /* このsectionは共有 .container(max-width:1120px) と併用されているが、
       本番は max-width:880px の中央寄せコンテナ（実測: 1440px幅で左端282px、
       右カラム開始722px）のため、より詳細度の高い本セレクタで上書きする。 */
    max-width: 880px;
    margin: 0 auto;
    padding: 0; /* 同要素に併用されている .container の padding:0 20px を打ち消す */
    box-sizing: border-box;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 60px;
    align-items: start;
}
.luna-brand-concept__title {
    font-family: 'Noto Serif JP', serif;
    font-size: 30px;
    font-weight: 600;
    color: #323639;
    line-height: 1.8;
    margin: 0 0 24px;
}
.luna-brand-concept__lead {
    font-size: 15px;
    line-height: 2;
    color: #334155;
    margin: 0;
}
.luna-brand-concept__links {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-top: 8px;
}
.luna-brand-concept__link-row {
    border-bottom: 1px solid #d9d3bd;
    padding-bottom: 14px;
}
.luna-brand-concept__link-label {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 13px;
    color: #a88c20;
    letter-spacing: 1px;
    margin-bottom: 4px;
}
.luna-brand-concept__link {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px;
    text-decoration: none;
    color: #323639;
    font-family: 'Noto Serif JP', serif;
    font-size: 18px;
    font-weight: 600;
}
.luna-brand-concept__link:hover {
    color: #a88c20;
}
.luna-brand-concept__link-arrow {
    font-size: 18px;
}

/* Column */
.luna-brand-column {
    position: relative;
    padding: 90px 0 100px;
    background: #f2f2f0;
    overflow: hidden;
}
.luna-brand-column__arc {
    position: absolute;
    top: -60px;
    left: -80px;
    width: 252px;
    height: 394px;
    background: url('../images/bg/mask-effect1.svg') no-repeat center / contain;
    opacity: 0.6;
    pointer-events: none;
    z-index: 1;
}
.luna-brand-column__head {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 40px;
}
.luna-brand-column__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 600;
    color: #a88c20;
    margin: 0;
    letter-spacing: 1px;
}
.luna-brand-column__subtitle {
    font-family: 'Noto Serif JP', serif;
    font-size: 16px;
    font-weight: 600;
    color: #323639;
    margin: 4px 0 0;
}
.luna-brand-column__viewmore img {
    display: block;
    width: 150px;
    height: auto;
}
.luna-brand-column__popular {
    position: relative;
    z-index: 2;
    font-family: 'Noto Serif JP', serif;
    font-size: 18px;
    font-weight: 600;
    color: #323639;
    margin: 0 0 24px;
}
.luna-brand-column__grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.luna-brand-column__card {
    display: block;
    text-decoration: none;
    color: #323639;
}
.luna-brand-column__thumb {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 4px;
    background: #e2e2de;
}
.luna-brand-column__thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.luna-brand-column__card-title {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6;
    margin: 12px 0 0;
}

/* Clinic List */
.luna-brand-clinic-list {
    padding: 100px 0 120px;
    background: #fff;
}
.luna-brand-clinic-list__head {
    text-align: center;
    margin-bottom: 50px;
}
.luna-brand-clinic-list__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 600;
    color: #a88c20;
    margin: 0 0 8px;
    letter-spacing: 1px;
}
.luna-brand-clinic-list__subtitle {
    font-family: 'Noto Serif JP', serif;
    font-size: 16px;
    font-weight: 600;
    color: #323639;
    margin: 0;
}
.luna-brand-clinic-list__card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    border-top: 1px solid #e5e0d0;
    padding: 50px 0;
}
.luna-brand-clinic-list__photo img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 2px;
}
.luna-brand-clinic-list__name {
    font-family: 'Noto Serif JP', serif;
    font-size: 22px;
    font-weight: 600;
    color: #323639;
    line-height: 1.5;
    margin: 0 0 16px;
}
.luna-brand-clinic-list__intro {
    font-size: 14px;
    line-height: 1.9;
    color: #334155;
    margin: 0 0 24px;
}
.luna-brand-clinic-list__viewmore {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #323639;
    font-size: 14px;
    font-weight: 600;
}
.luna-brand-clinic-list__viewmore-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #d8dade;
}

@media (max-width: 782px) {
    .luna-brand-hero__bg {
        min-height: 120vw;
    }
    .luna-brand-hero__overlay {
        padding: 0 6%;
    }
    .luna-brand-concept__grid {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 0 20px;
    }
    .luna-brand-concept__watermark {
        font-size: 40px;
    }
    .luna-brand-column__head {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .luna-brand-column__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .luna-brand-clinic-list__card {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* ============================================================
   コラム（luna_column）本文ブロック — build-column-content.py が生成する
   ネイティブブロック用のスタイル。旧Elementorの目次/医師コメント/アイコンBOX/
   SNSシェアを機能置換したもの。すべて .luna-single-column 配下にスコープする。
   ============================================================ */

/* 目次（本文h2から自動生成） */
.luna-single-column .luna-column-toc {
    background: #f8f8f8;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 24px 28px;
    margin: 0 0 40px;
}
.luna-single-column .luna-column-toc__title {
    font-size: 1.15rem;
    margin: 0 0 12px;
    padding-left: 12px;
    border-left: 4px solid #a88c20;
    color: #323639;
}
.luna-single-column .luna-column-toc__list {
    margin: 0;
    padding-left: 1.2em;
    list-style: decimal;
}
.luna-single-column .luna-column-toc__list li {
    margin: 6px 0;
}
.luna-single-column .luna-column-toc__list a {
    color: #334155;
    text-decoration: none;
}
.luna-single-column .luna-column-toc__list a:hover {
    color: #a88c20;
    text-decoration: underline;
}

/* 医師コメント（旧 testimonial-carousel を静的スタック化） */
.luna-single-column .luna-column-testimonials {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 32px 0;
}
.luna-single-column .luna-column-testimonial {
    display: block;
    background: #fbfaf7;
    border: 1px solid #ece7d8;
    border-left: 4px solid #a88c20;
    border-radius: 8px;
    padding: 24px 28px;
}
.luna-single-column .luna-column-testimonial__avatar {
    float: left;
    margin: 0 16px 8px 0;
}
.luna-single-column .luna-column-testimonial__avatar img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
}
.luna-single-column .luna-column-testimonial p {
    margin: 0 0 8px;
}
.luna-single-column .luna-column-testimonial__by {
    clear: both;
    text-align: right;
    font-size: 0.9rem;
    color: #6b7280;
    margin: 8px 0 0;
}

/* アイコンBOX（旧 icon-box をカード化） */
.luna-single-column .luna-column-iconbox {
    background: #f5f5f5;
    border-radius: 8px;
    padding: 20px 24px;
    margin: 16px 0;
}
.luna-single-column .luna-column-iconbox__title {
    margin: 0 0 8px;
    font-size: 1.05rem;
    color: #a88c20;
}
.luna-single-column .luna-column-iconbox p {
    margin: 0;
}

/* SNSシェア（テンプレート single-luna_column.html から出力） */
.luna-single-column .luna-column-share {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 48px 0 8px;
    padding-top: 24px;
    border-top: 1px solid #e5e7eb;
}
.luna-single-column .luna-column-share__label {
    font-weight: 600;
    color: #323639;
    letter-spacing: 0.08em;
}
.luna-single-column .luna-column-share__list {
    display: flex;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.luna-single-column .luna-column-share__item a {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 0.85rem;
    text-decoration: none;
    color: #fff;
    background: #323639;
}
.luna-single-column .luna-column-share__item--x a { background: #000; }
.luna-single-column .luna-column-share__item--facebook a { background: #1877f2; }
.luna-single-column .luna-column-share__item--line a { background: #06c755; }
.luna-single-column .luna-column-share__item a:hover { opacity: 0.85; }

@media (max-width: 600px) {
    .luna-single-column .luna-column-share {
        flex-direction: column;
        align-items: flex-start;
    }
}
