/* ======================================
   Beyond Clinic - TCD082 Faithful Replica
   ====================================== */

:root {
    /* TCD082 Original Teal → Beige/Gold replacement */
    --teal: #B8A88A;
    --teal-dark: #9A8A6C;
    --teal-light: #D4C8B0;
    
    /* Neutrals */
    --white: #ffffff;
    --gray-bg: #f5f5f5;
    --gray-light: #eeeeee;
    --gray: #999999;
    --gray-dark: #666666;
    --text: #333333;
    --black: #222222;
    
    /* Accent */
    --line: #06c755;
    
    /* Typography */
    --ff-en: 'Cormorant Garamond', serif;
    --ff-jp: 'Noto Sans JP', sans-serif;
    --ff-jp-serif: 'Noto Serif JP', serif;
}

/* ========== RESET ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--ff-jp);
    font-size: 15px;
    line-height: 1.8;
    color: var(--text);
    background: var(--white);
}
img { max-width: 100%; height: auto; vertical-align: bottom; }
a { color: inherit; text-decoration: none; transition: .3s; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font: inherit; }
table { border-collapse: collapse; }

/* ========================================
   HEADER - TCD082 Style
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
}

/* Header Top (40px height, teal background) */
.header-top {
    height: 40px;
    background: var(--teal);
    color: var(--white);
}

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

.header-top-left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.header-top-link,
.header-top-hours {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--white);
}

.header-top-link i,
.header-top-hours i {
    font-size: 14px;
}

.header-top-link:hover { opacity: .8; }

.header-top-right {
    display: flex;
    gap: 16px;
}

.header-top-sns {
    font-size: 16px;
    color: var(--white);
}

.header-top-sns:hover { opacity: .8; }

/* Header Main (80px height) */
.header-main {
    height: 80px;
    border-bottom: 1px solid var(--gray-light);
}

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

/* Logo */
.header-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-logo-icon {
    font-size: 32px;
    color: var(--teal);
}

.header-logo-text {
    display: flex;
    flex-direction: column;
}

.header-logo-name {
    font-family: var(--ff-en);
    font-size: 26px;
    font-weight: 500;
    letter-spacing: .02em;
    color: var(--text);
}

.header-logo-sub {
    font-size: 11px;
    color: var(--gray);
    letter-spacing: .08em;
}

/* Navigation */
.header-nav-list {
    display: flex;
}

.header-nav-list li a {
    display: block;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .05em;
    color: var(--text);
}

.header-nav-list li a:hover {
    color: var(--teal);
}

/* Reserve Button (100x36px, 4px radius) */
.header-reserve-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 36px;
    background: var(--teal);
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .1em;
    border-radius: 4px;
}

.header-reserve-btn:hover {
    background: var(--teal-dark);
}

/* Mobile Menu Button */
.header-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 28px;
    height: 28px;
}

.header-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text);
}

/* ========================================
   HERO - TCD082 Style (600px height)
   ======================================== */
.hero {
    position: relative;
    height: 600px;
    margin-top: 120px; /* header-top(40) + header-main(80) */
}

.hero-image {
    position: absolute;
    inset: 0;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.35);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
    text-align: center;
    color: var(--white);
    z-index: 10;
}

.hero-en {
    font-family: var(--ff-en);
    font-size: 16px;
    letter-spacing: .25em;
    margin-bottom: 16px;
}

.hero-title {
    font-family: var(--ff-en);
    font-size: 48px;
    font-weight: 400;
    letter-spacing: .08em;
    line-height: 1.3;
    margin-bottom: 24px;
}

.hero-lead {
    font-size: 15px;
    letter-spacing: .08em;
    line-height: 2;
}

/* Hero Feature Boxes (150px height) */
.hero-boxes {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    z-index: 20;
}

.hero-box {
    flex: 1;
    height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(184, 168, 138, .92);
    color: var(--white);
    text-align: center;
    border-right: 1px solid rgba(255,255,255,.15);
}

.hero-box:last-child { border-right: none; }

.hero-box-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.hero-box-title {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 4px;
}

.hero-box-text {
    font-size: 12px;
    opacity: .85;
}

/* ========================================
   SECTION COMMON - TCD082 Style
   ======================================== */
.sec {
    padding: 80px 0;
}

.sec-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 30px;
}

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

.sec-header-en {
    font-family: var(--ff-en);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .2em;
    color: var(--teal);
    margin-bottom: 12px;
}

.sec-header-title {
    font-family: var(--ff-jp-serif);
    font-size: 28px;
    font-weight: 500;
    letter-spacing: .08em;
    color: var(--text);
}

.sec-header-lead {
    margin-top: 20px;
    font-size: 14px;
    line-height: 2;
    color: var(--gray-dark);
}

/* White header for teal sections */
.sec-header-white .sec-header-en {
    color: rgba(255,255,255,.7);
}

.sec-header-white .sec-header-title {
    color: var(--white);
}

.sec-header-white .sec-header-lead {
    color: rgba(255,255,255,.85);
}

/* Section button wrap */
.sec-btn-wrap {
    text-align: center;
    margin-top: 50px;
}

/* VIEW MORE Button (140x48px) */
.btn-viewmore {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    height: 48px;
    padding: 0 32px;
    border: 1px solid var(--teal);
    color: var(--teal);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .15em;
}

.btn-viewmore:hover {
    background: var(--teal);
    color: var(--white);
}

.btn-viewmore-white {
    border-color: var(--white);
    color: var(--white);
}

.btn-viewmore-white:hover {
    background: var(--white);
    color: var(--teal);
}

/* Gray background section */
.sec-gray {
    background: var(--gray-bg);
}

/* Teal background section */
.sec-teal {
    position: relative;
    background: var(--teal);
}

.sec-bg-image {
    position: absolute;
    inset: 0;
    opacity: .15;
}

.sec-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sec-teal .sec-container {
    position: relative;
    z-index: 10;
}

/* ========================================
   CONCEPT SECTION
   ======================================== */
.concept-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.concept-block {
    margin-bottom: 32px;
}

.concept-block:last-child { margin-bottom: 0; }

.concept-block-title {
    font-family: var(--ff-en);
    font-size: 20px;
    font-weight: 500;
    color: var(--teal);
    margin-bottom: 12px;
    letter-spacing: .03em;
}

.concept-block-text {
    font-size: 14px;
    line-height: 2;
    color: var(--gray-dark);
}

.concept-right img {
    width: 100%;
    border-radius: 4px;
}

/* ========================================
   MENU SECTION (Grid 4 columns)
   ======================================== */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.menu-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 160px;
    background: rgba(255,255,255,.95);
    border-radius: 4px;
    text-align: center;
    transition: .3s;
}

.menu-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,.1);
}

.menu-card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--teal);
    border-radius: 50%;
    margin-bottom: 14px;
}

.menu-card-icon i {
    font-size: 24px;
    color: var(--white);
}

.menu-card-title {
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
}

/* ========================================
   FEATURE SECTION
   ======================================== */
.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.feature-image img {
    width: 100%;
    border-radius: 4px;
}

.feature-lead {
    font-family: var(--ff-jp-serif);
    font-size: 24px;
    font-weight: 500;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 24px;
}

.feature-text {
    font-size: 14px;
    line-height: 2;
    color: var(--gray-dark);
    margin-bottom: 16px;
}

.feature-list {
    margin-top: 24px;
}

.feature-list li {
    position: relative;
    padding-left: 20px;
    font-size: 14px;
    margin-bottom: 8px;
}

.feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: var(--teal);
    border-radius: 50%;
}

/* ========================================
   DOCTOR SECTION
   ======================================== */
.doctor-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 50px;
    align-items: start;
}

.doctor-photo img {
    width: 100%;
    border-radius: 4px;
}

.doctor-position {
    font-size: 13px;
    color: var(--teal);
    margin-bottom: 8px;
}

.doctor-name {
    font-family: var(--ff-jp-serif);
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 28px;
}

.doctor-name span {
    display: block;
    font-family: var(--ff-en);
    font-size: 14px;
    font-weight: 400;
    color: var(--gray);
    margin-top: 6px;
    letter-spacing: .08em;
}

.doctor-section {
    margin-bottom: 28px;
}

.doctor-section h4 {
    font-size: 14px;
    font-weight: 500;
    color: var(--teal);
    margin-bottom: 12px;
    padding-left: 14px;
    border-left: 3px solid var(--teal);
}

.doctor-section p {
    font-size: 14px;
    line-height: 2;
    color: var(--gray-dark);
}

.doctor-career {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 8px 16px;
    font-size: 14px;
}

.doctor-career dt {
    color: var(--gray);
}

.doctor-career dd {
    color: var(--gray-dark);
}

/* ========================================
   CLINIC GALLERY
   ======================================== */
.clinic-gallery-main {
    margin-bottom: 16px;
}

.clinic-gallery-main img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 4px;
}

.clinic-gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.clinic-thumb {
    padding: 0;
    border: 2px solid transparent;
    border-radius: 4px;
    overflow: hidden;
    transition: .3s;
}

.clinic-thumb.active {
    border-color: var(--teal);
}

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

.clinic-thumb:hover {
    opacity: .8;
}

/* ========================================
   NEWS SECTION
   ======================================== */
.news-list {
    max-width: 800px;
    margin: 0 auto;
}

.news-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--gray-light);
}

.news-item:hover { opacity: .7; }

.news-date {
    font-family: var(--ff-en);
    font-size: 14px;
    color: var(--gray);
    min-width: 100px;
}

.news-cat {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 90px;
    height: 24px;
    padding: 0 12px;
    background: var(--teal);
    color: var(--white);
    font-size: 11px;
    border-radius: 12px;
}

.news-title {
    flex: 1;
    font-size: 14px;
}

/* ========================================
   ACCESS SECTION
   ======================================== */
.sec-access {
    padding: 80px 0;
}

.access-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 50px;
    margin-top: 50px;
}

.access-info {
    color: var(--white);
}

.access-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
}

.access-logo-icon {
    font-size: 32px;
}

.access-logo-name {
    font-family: var(--ff-en);
    font-size: 26px;
    font-weight: 500;
}

.access-table {
    width: 100%;
    margin-bottom: 28px;
}

.access-table th,
.access-table td {
    padding: 12px 0;
    font-size: 14px;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid rgba(255,255,255,.2);
}

.access-table th {
    width: 90px;
    font-weight: 400;
    opacity: .8;
}

.access-table td {
    line-height: 1.7;
}

.access-line-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    height: 52px;
    background: var(--line);
    color: var(--white);
    font-size: 15px;
    font-weight: 500;
    border-radius: 4px;
}

.access-line-btn:hover { opacity: .9; }

.access-map {
    border-radius: 4px;
    overflow: hidden;
    height: 340px;
}

.access-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ========================================
   CTA SECTION
   ======================================== */
.sec-cta {
    background: var(--black);
    padding: 50px 0;
}

.sec-cta .sec-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 30px;
    text-align: center;
}

.cta-text {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 28px;
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 180px;
    height: 52px;
    padding: 0 28px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 4px;
}

.cta-btn-line { background: var(--line); color: var(--white); }
.cta-btn-web { background: var(--teal); color: var(--white); }
.cta-btn-tel { background: var(--white); color: var(--text); }

.cta-btn:hover { opacity: .9; transform: translateY(-2px); }

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--black);
    color: var(--white);
}

.footer-main {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 30px;
}

.footer-main .footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
}

/* Footer Brand */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo-icon {
    font-size: 28px;
    color: var(--teal-light);
}

.footer-logo-name {
    font-family: var(--ff-en);
    font-size: 22px;
    font-weight: 500;
}

.footer-logo-sub {
    font-size: 10px;
    color: rgba(255,255,255,.5);
    display: block;
}

.footer-address,
.footer-tel {
    font-size: 13px;
    line-height: 1.8;
    color: rgba(255,255,255,.6);
}

.footer-tel { margin-top: 12px; }

/* Footer Nav */
.footer-nav ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav a {
    font-size: 13px;
    color: rgba(255,255,255,.6);
}

.footer-nav a:hover { color: var(--teal-light); }

/* Footer Right */
.footer-right {
    text-align: right;
}

.footer-sns {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-sns a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.1);
    border-radius: 50%;
    font-size: 16px;
    color: var(--white);
}

.footer-sns a:hover { background: var(--teal); }

.footer-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 44px;
    padding: 0 20px;
    font-size: 13px;
    border-radius: 4px;
}

.footer-btn-line { background: var(--line); color: var(--white); }
.footer-btn-contact { border: 1px solid rgba(255,255,255,.3); color: var(--white); }
.footer-btn-contact:hover { background: var(--teal); border-color: var(--teal); }

/* Footer Bottom */
.footer-bottom {
    padding: 20px 0;
}

.footer-bottom .footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copy {
    font-size: 12px;
    color: rgba(255,255,255,.4);
}

.footer-privacy {
    font-size: 12px;
    color: rgba(255,255,255,.4);
}

.footer-privacy:hover { color: var(--teal-light); }

/* ========================================
   FIXED SIDE BUTTONS
   ======================================== */
.fixed-side {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
}

.fixed-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 80px;
    color: var(--white);
    font-size: 10px;
}

.fixed-btn i {
    font-size: 22px;
    margin-bottom: 6px;
}

.fixed-btn-line {
    background: var(--line);
    border-radius: 8px 0 0 0;
}

.fixed-btn-mail {
    background: var(--teal);
    border-radius: 0 0 0 8px;
}

.fixed-btn:hover { opacity: .9; }

/* ========================================
   BACK TO TOP
   ======================================== */
.btn-top {
    position: fixed;
    bottom: 30px;
    right: 80px;
    width: 48px;
    height: 48px;
    background: var(--teal);
    color: var(--white);
    border-radius: 50%;
    font-size: 16px;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    z-index: 998;
}

.btn-top.visible {
    opacity: 1;
    visibility: visible;
}

.btn-top:hover {
    background: var(--teal-dark);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .header-nav { display: none; }
    .header-reserve-btn { display: none; }
    .header-menu-btn { display: flex; }
    
    .menu-grid { grid-template-columns: repeat(2, 1fr); }
    
    .concept-grid,
    .feature-grid,
    .doctor-grid,
    .access-grid {
        grid-template-columns: 1fr;
    }
    
    .concept-right { order: -1; }
    
    .footer-main .footer-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-right { text-align: left; }
    .footer-sns { justify-content: flex-start; }
}

@media (max-width: 768px) {
    .header-top { display: none; }
    .header-main { height: 60px; }
    .hero { margin-top: 60px; height: 100vh; min-height: 600px; }
    
    .hero-title { font-size: 32px; }
    
    .hero-boxes { flex-direction: column; }
    .hero-box {
        height: auto;
        padding: 20px;
        flex-direction: row;
        gap: 16px;
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,.15);
    }
    .hero-box:last-child { border-bottom: none; }
    .hero-box-icon { margin-bottom: 0; font-size: 24px; }
    
    .sec { padding: 60px 0; }
    .sec-container { padding: 0 20px; }
    .sec-header-title { font-size: 22px; }
    
    .menu-grid { gap: 12px; }
    .menu-card { height: 140px; }
    .menu-card-icon { width: 48px; height: 48px; }
    .menu-card-icon i { font-size: 20px; }
    
    .feature-lead { font-size: 20px; }
    
    .doctor-name { font-size: 22px; }
    
    .clinic-gallery-main img { height: 240px; }
    .clinic-gallery-thumbs { grid-template-columns: repeat(2, 1fr); }
    .clinic-thumb img { height: 100px; }
    
    .news-item { flex-wrap: wrap; }
    .news-title { width: 100%; margin-top: 8px; }
    
    .access-map { height: 280px; }
    
    .cta-btns { flex-direction: column; align-items: center; }
    .cta-btn { width: 100%; max-width: 280px; }
    
    .fixed-side {
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        transform: none;
        flex-direction: row;
    }
    
    .fixed-btn {
        flex: 1;
        flex-direction: row;
        height: 56px;
        gap: 8px;
        border-radius: 0;
    }
    
    .fixed-btn i { margin-bottom: 0; }
    
    .btn-top { bottom: 70px; right: 16px; }
    
    .footer-bottom .footer-container {
        flex-direction: column;
        gap: 8px;
    }
    
    body { padding-bottom: 56px; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 28px; }
    .hero-lead { font-size: 13px; }
    .menu-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .menu-card { height: 120px; }
    .menu-card-title { font-size: 12px; }
}

/* ========================================
   PAGE HEADER (下層ページ共通)
   ======================================== */
.page-header {
    position: relative;
    height: 280px;
    margin-top: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-header-bg {
    position: absolute;
    inset: 0;
}

.page-header-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-header-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.45);
}

.page-header-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--white);
}

.page-header-en {
    font-family: var(--ff-en);
    font-size: 14px;
    letter-spacing: .25em;
    margin-bottom: 12px;
    opacity: .8;
}

.page-header-title {
    font-family: var(--ff-jp-serif);
    font-size: 32px;
    font-weight: 500;
    letter-spacing: .1em;
}

/* ========================================
   BREADCRUMB
   ======================================== */
.breadcrumb {
    background: var(--gray-bg);
    padding: 14px 0;
}

.breadcrumb-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 30px;
    font-size: 12px;
    color: var(--gray);
}

.breadcrumb a {
    color: var(--gray-dark);
}

.breadcrumb a:hover {
    color: var(--teal);
}

.breadcrumb span::before {
    content: '>';
    margin: 0 10px;
    color: var(--gray);
}

/* ========================================
   MENU LIST PAGE
   ======================================== */
.menu-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.menu-list-item {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 40px;
    padding: 32px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 16px rgba(0,0,0,.06);
    transition: .3s;
}

.menu-list-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0,0,0,.1);
}

.menu-list-image {
    border-radius: 6px;
    overflow: hidden;
}

.menu-list-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: .3s;
}

.menu-list-item:hover .menu-list-image img {
    transform: scale(1.05);
}

.menu-list-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.menu-list-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--teal);
    border-radius: 50%;
    margin-bottom: 16px;
}

.menu-list-icon i {
    font-size: 20px;
    color: var(--white);
}

.menu-list-title {
    font-family: var(--ff-jp-serif);
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 12px;
    color: var(--text);
}

.menu-list-text {
    font-size: 14px;
    line-height: 1.9;
    color: var(--gray-dark);
    margin-bottom: 20px;
}

.menu-list-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--teal);
    letter-spacing: .1em;
}

.menu-list-more::after {
    content: '→';
}

/* ========================================
   MENU DETAIL PAGE
   ======================================== */
.menu-detail-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
    align-items: center;
}

.menu-detail-intro-image img {
    width: 100%;
    border-radius: 8px;
}

.menu-detail-intro-title {
    font-family: var(--ff-jp-serif);
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 24px;
    color: var(--text);
}

.menu-detail-intro-text {
    font-size: 14px;
    line-height: 2;
    color: var(--gray-dark);
}

/* Menu Service List */
.menu-service-list {
    margin-top: 60px;
}

.menu-service-item {
    padding: 40px 0;
    border-bottom: 1px solid var(--gray-light);
}

.menu-service-item:first-child {
    border-top: 1px solid var(--gray-light);
}

.menu-service-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.menu-service-num {
    font-family: var(--ff-en);
    font-size: 32px;
    font-weight: 400;
    color: var(--teal);
    min-width: 60px;
}

.menu-service-title {
    font-family: var(--ff-jp-serif);
    font-size: 20px;
    font-weight: 500;
}

.menu-service-content {
    padding-left: 80px;
}

.menu-service-text {
    font-size: 14px;
    line-height: 2;
    color: var(--gray-dark);
    margin-bottom: 20px;
}

.menu-service-price {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 16px 24px;
    background: var(--gray-bg);
    border-radius: 6px;
    font-size: 14px;
}

.menu-service-price strong {
    font-family: var(--ff-en);
    font-size: 24px;
    font-weight: 500;
    color: var(--teal);
}

/* ========================================
   PRICE PAGE
   ======================================== */
.price-category {
    margin-bottom: 60px;
}

.price-category:last-child {
    margin-bottom: 0;
}

.price-category-title {
    font-family: var(--ff-jp-serif);
    font-size: 22px;
    font-weight: 500;
    padding-bottom: 16px;
    margin-bottom: 24px;
    border-bottom: 2px solid var(--teal);
    color: var(--text);
}

.price-table {
    width: 100%;
    font-size: 14px;
}

.price-table th,
.price-table td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid var(--gray-light);
}

.price-table th {
    background: var(--gray-bg);
    font-weight: 500;
    color: var(--text);
}

.price-table td {
    color: var(--gray-dark);
}

.price-table .price-amount {
    font-family: var(--ff-en);
    font-size: 16px;
    font-weight: 500;
    color: var(--teal);
    text-align: right;
    white-space: nowrap;
}

/* Price Section */
.price-section {
    margin-bottom: 50px;
}

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

.price-section-title {
    font-family: var(--ff-jp-serif);
    font-size: 20px;
    font-weight: 500;
    padding: 12px 20px;
    background: var(--teal);
    color: var(--white);
    border-radius: 4px;
    margin-bottom: 20px;
}

.price-section .price-table td:last-child {
    text-align: right;
    font-weight: 500;
    color: var(--teal);
    white-space: nowrap;
}

.price-note {
    margin-top: 20px;
    padding: 20px;
    background: var(--gray-bg);
    border-radius: 6px;
    font-size: 13px;
    color: var(--gray-dark);
    line-height: 1.8;
}

/* ========================================
   DOCTOR PAGE
   ======================================== */
.doctor-detail {
    max-width: 900px;
    margin: 0 auto;
}

.doctor-main {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.doctor-main-photo img {
    width: 100%;
    border-radius: 8px;
}

.doctor-main-info .doctor-position {
    margin-bottom: 12px;
}

.doctor-main-info .doctor-name {
    margin-bottom: 32px;
}

.doctor-message {
    padding: 40px;
    background: var(--gray-bg);
    border-radius: 8px;
    margin-bottom: 60px;
}

.doctor-message-title {
    font-family: var(--ff-en);
    font-size: 16px;
    color: var(--teal);
    margin-bottom: 16px;
    letter-spacing: .1em;
}

.doctor-message-text {
    font-size: 15px;
    line-height: 2.2;
    color: var(--gray-dark);
}

.doctor-career-box {
    padding: 40px;
    border: 1px solid var(--gray-light);
    border-radius: 8px;
}

.doctor-career-title {
    font-family: var(--ff-jp-serif);
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 24px;
    padding-left: 16px;
    border-left: 3px solid var(--teal);
}

.doctor-career-list {
    font-size: 14px;
    line-height: 2;
}

.doctor-career-list dt {
    color: var(--gray);
    margin-top: 16px;
}

.doctor-career-list dt:first-child {
    margin-top: 0;
}

.doctor-career-list dd {
    color: var(--gray-dark);
    padding-left: 16px;
}

/* ========================================
   CLINIC PAGE
   ======================================== */
.clinic-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.clinic-intro-lead {
    font-family: var(--ff-jp-serif);
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 24px;
    color: var(--text);
}

.clinic-intro-text {
    font-size: 14px;
    line-height: 2;
    color: var(--gray-dark);
}

.clinic-gallery-page {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.clinic-gallery-item {
    overflow: hidden;
    border-radius: 8px;
}

.clinic-gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: .3s;
}

.clinic-gallery-item:hover img {
    transform: scale(1.05);
}

.clinic-gallery-caption {
    padding: 16px;
    background: var(--white);
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}

/* ========================================
   NEWS / COLUMN PAGE
   ======================================== */
.news-page-list {
    max-width: 900px;
    margin: 0 auto;
}

.news-page-item {
    display: flex;
    gap: 24px;
    padding: 28px 0;
    border-bottom: 1px solid var(--gray-light);
}

.news-page-item:first-child {
    border-top: 1px solid var(--gray-light);
}

.news-page-thumb {
    width: 180px;
    height: 120px;
    flex-shrink: 0;
    border-radius: 6px;
    overflow: hidden;
}

.news-page-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .3s;
}

.news-page-item:hover .news-page-thumb img {
    transform: scale(1.05);
}

.news-page-content {
    flex: 1;
}

.news-page-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.news-page-date {
    font-family: var(--ff-en);
    font-size: 13px;
    color: var(--gray);
}

.news-page-cat {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 12px;
    background: var(--teal);
    color: var(--white);
    font-size: 11px;
    border-radius: 12px;
}

.news-page-title {
    font-size: 16px;
    font-weight: 500;
    color: var(--text);
    line-height: 1.6;
}

.news-page-item:hover .news-page-title {
    color: var(--teal);
}

/* News/Column Single */
.article-single {
    max-width: 800px;
    margin: 0 auto;
}

.article-header {
    margin-bottom: 40px;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.article-date {
    font-family: var(--ff-en);
    font-size: 14px;
    color: var(--gray);
}

.article-cat {
    display: inline-flex;
    align-items: center;
    padding: 4px 14px;
    background: var(--teal);
    color: var(--white);
    font-size: 12px;
    border-radius: 12px;
}

.article-title {
    font-family: var(--ff-jp-serif);
    font-size: 28px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--text);
}

.article-thumb {
    margin-bottom: 40px;
    border-radius: 8px;
    overflow: hidden;
}

.article-thumb img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.article-content {
    font-size: 15px;
    line-height: 2.2;
    color: var(--gray-dark);
}

.article-content h2 {
    font-size: 22px;
    font-weight: 500;
    margin: 48px 0 24px;
    padding-left: 16px;
    border-left: 4px solid var(--teal);
    color: var(--text);
}

.article-content h3 {
    font-size: 18px;
    font-weight: 500;
    margin: 36px 0 16px;
    color: var(--text);
}

.article-content p {
    margin-bottom: 24px;
}

.article-content ul,
.article-content ol {
    margin: 24px 0;
    padding-left: 24px;
}

.article-content li {
    margin-bottom: 8px;
    list-style: disc;
}

.article-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--gray-light);
}

.article-nav a {
    font-size: 14px;
    color: var(--gray-dark);
}

.article-nav a:hover {
    color: var(--teal);
}

/* ========================================
   ACCESS PAGE
   ======================================== */
.access-detail {
    max-width: 900px;
    margin: 0 auto;
}

.access-detail-map {
    height: 450px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 50px;
}

.access-detail-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.access-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.access-detail-info h3 {
    font-family: var(--ff-jp-serif);
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 24px;
    padding-left: 16px;
    border-left: 3px solid var(--teal);
}

.access-detail-table {
    width: 100%;
    font-size: 14px;
}

.access-detail-table th,
.access-detail-table td {
    padding: 14px 0;
    border-bottom: 1px solid var(--gray-light);
    text-align: left;
    vertical-align: top;
}

.access-detail-table th {
    width: 100px;
    color: var(--gray);
    font-weight: 400;
}

.access-detail-table td {
    color: var(--text);
    line-height: 1.7;
}

.access-directions h3 {
    font-family: var(--ff-jp-serif);
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 24px;
    padding-left: 16px;
    border-left: 3px solid var(--teal);
}

.access-directions-list {
    counter-reset: step;
}

.access-directions-item {
    position: relative;
    padding-left: 48px;
    padding-bottom: 24px;
    font-size: 14px;
    line-height: 1.8;
    color: var(--gray-dark);
}

.access-directions-item::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    left: 0;
    top: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--teal);
    color: var(--white);
    font-family: var(--ff-en);
    font-size: 14px;
    border-radius: 50%;
}

.access-directions-item::after {
    content: '';
    position: absolute;
    left: 15px;
    top: 36px;
    width: 2px;
    height: calc(100% - 36px);
    background: var(--gray-light);
}

.access-directions-item:last-child::after {
    display: none;
}

/* ========================================
   RESERVE PAGE
   ======================================== */
.reserve-intro {
    max-width: 700px;
    margin: 0 auto 50px;
    text-align: center;
}

.reserve-intro-text {
    font-size: 15px;
    line-height: 2;
    color: var(--gray-dark);
}

.reserve-methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.reserve-method {
    padding: 48px 40px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,.08);
    text-align: center;
}

.reserve-method-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    border-radius: 50%;
    font-size: 32px;
}

.reserve-method-icon.line {
    background: var(--line);
    color: var(--white);
}

.reserve-method-icon.web {
    background: var(--teal);
    color: var(--white);
}

.reserve-method-title {
    font-family: var(--ff-jp-serif);
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 16px;
}

.reserve-method-text {
    font-size: 14px;
    line-height: 1.8;
    color: var(--gray-dark);
    margin-bottom: 28px;
}

.reserve-method-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    max-width: 280px;
    height: 56px;
    font-size: 15px;
    font-weight: 500;
    border-radius: 6px;
    color: var(--white);
}

.reserve-method-btn.line {
    background: var(--line);
}

.reserve-method-btn.web {
    background: var(--teal);
}

.reserve-method-btn:hover {
    opacity: .9;
    transform: translateY(-2px);
}

.reserve-note {
    max-width: 700px;
    margin: 50px auto 0;
    padding: 32px;
    background: var(--gray-bg);
    border-radius: 8px;
}

.reserve-note-title {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 16px;
    color: var(--text);
}

.reserve-note-list {
    font-size: 13px;
    color: var(--gray-dark);
    line-height: 1.8;
}

.reserve-note-list li {
    position: relative;
    padding-left: 16px;
    margin-bottom: 6px;
}

.reserve-note-list li::before {
    content: '・';
    position: absolute;
    left: 0;
}

/* ========================================
   CONTACT PAGE
   ======================================== */
.contact-intro {
    max-width: 700px;
    margin: 0 auto 50px;
    text-align: center;
}

.contact-intro-text {
    font-size: 15px;
    line-height: 2;
    color: var(--gray-dark);
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    padding: 48px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,.06);
}

.form-group {
    margin-bottom: 28px;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
}

.form-required {
    display: inline-flex;
    align-items: center;
    padding: 2px 8px;
    background: #e74c3c;
    color: var(--white);
    font-size: 10px;
    border-radius: 3px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--gray-light);
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: .3s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--teal);
}

.form-textarea {
    min-height: 180px;
    resize: vertical;
}

.form-privacy {
    margin-bottom: 32px;
    text-align: center;
}

.form-privacy-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--gray-dark);
    cursor: pointer;
}

.form-privacy-label input {
    width: 18px;
    height: 18px;
}

.form-privacy-label a {
    color: var(--teal);
    text-decoration: underline;
}

.form-submit {
    display: flex;
    justify-content: center;
}

.form-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 280px;
    height: 56px;
    background: var(--teal);
    color: var(--white);
    font-size: 15px;
    font-weight: 500;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: .3s;
}

.form-submit-btn:hover {
    background: var(--teal-dark);
    transform: translateY(-2px);
}

/* ========================================
   PRIVACY POLICY PAGE
   ======================================== */
.privacy-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 2;
    color: var(--gray-dark);
}

.privacy-content h2 {
    font-family: var(--ff-jp-serif);
    font-size: 20px;
    font-weight: 500;
    margin: 48px 0 20px;
    padding-left: 16px;
    border-left: 3px solid var(--teal);
    color: var(--text);
}

.privacy-content h2:first-child {
    margin-top: 0;
}

.privacy-content p {
    margin-bottom: 20px;
}

.privacy-content ul {
    margin: 16px 0;
    padding-left: 24px;
}

.privacy-content li {
    margin-bottom: 8px;
    list-style: disc;
}

/* ========================================
   MOBILE MENU OVERLAY
   ======================================== */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 1001;
    padding: 100px 30px 40px;
    transform: translateX(100%);
    transition: .3s;
    overflow-y: auto;
}

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

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

.mobile-nav-list li {
    border-bottom: 1px solid var(--gray-light);
}

.mobile-nav-list a {
    display: block;
    padding: 18px 0;
    font-size: 15px;
    font-weight: 500;
}

.mobile-nav-btns {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 52px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
}

.mobile-nav-btn.line {
    background: var(--line);
}

.mobile-nav-btn.reserve {
    background: var(--teal);
}

/* ========================================
   RESPONSIVE - PAGE STYLES
   ======================================== */
@media (max-width: 768px) {
    .page-header {
        margin-top: 60px;
        height: 200px;
    }
    
    .page-header-title {
        font-size: 24px;
    }
    
    .menu-list-item {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 24px;
    }
    
    .menu-list-image img {
        height: 180px;
    }
    
    .menu-detail-intro {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .menu-service-content {
        padding-left: 0;
    }
    
    .menu-service-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .doctor-main {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .doctor-main-photo {
        max-width: 280px;
        margin: 0 auto;
    }
    
    .clinic-gallery-page {
        grid-template-columns: 1fr;
    }
    
    .clinic-gallery-item img {
        height: 220px;
    }
    
    .news-page-item {
        flex-direction: column;
        gap: 16px;
    }
    
    .news-page-thumb {
        width: 100%;
        height: 180px;
    }
    
    .article-title {
        font-size: 22px;
    }
    
    .article-thumb img {
        height: 240px;
    }
    
    .access-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .access-detail-map {
        height: 300px;
    }
    
    .reserve-methods {
        grid-template-columns: 1fr;
    }
    
    .reserve-method {
        padding: 36px 28px;
    }
    
    .contact-form {
        padding: 32px 24px;
    }
}

/* ========================================
   COLUMN SECTION (TOP PAGE)
   ======================================== */
.column-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.column-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0,0,0,.06);
    transition: .3s;
}

.column-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0,0,0,.1);
}

.column-card-image {
    height: 180px;
    overflow: hidden;
}

.column-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .3s;
}

.column-card:hover .column-card-image img {
    transform: scale(1.05);
}

.column-card-content {
    padding: 20px;
}

.column-card-cat {
    display: inline-block;
    padding: 4px 12px;
    background: var(--teal);
    color: var(--white);
    font-size: 11px;
    border-radius: 12px;
    margin-bottom: 10px;
}

.column-card-title {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.6;
    color: var(--text);
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.column-card-date {
    font-family: var(--ff-en);
    font-size: 12px;
    color: var(--gray);
}

@media (max-width: 768px) {
    .column-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .column-card-image {
        height: 160px;
    }
}

/* ========================================
   PHILOSOPHY SECTION
   ======================================== */
.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.philosophy-card {
    padding: 40px 32px;
    background: var(--white);
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 16px rgba(0,0,0,.04);
}

.philosophy-card-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--teal);
    border-radius: 50%;
    margin: 0 auto 24px;
}

.philosophy-card-icon i {
    font-size: 28px;
    color: var(--white);
}

.philosophy-card-title-en {
    font-family: var(--ff-en);
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--teal);
}

.philosophy-card-title-jp {
    font-family: var(--ff-jp-serif);
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--text);
}

.philosophy-card-text {
    font-size: 14px;
    line-height: 1.9;
    color: var(--gray-dark);
}

@media (max-width: 768px) {
    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .philosophy-card {
        padding: 32px 24px;
    }
}

/* ========================================
   BRAND STATEMENT SECTION
   ======================================== */
.brand-statement {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
}

.brand-statement-en {
    font-family: var(--ff-en);
    font-size: 14px;
    letter-spacing: .2em;
    margin-bottom: 20px;
    opacity: .8;
}

.brand-statement-title {
    font-family: var(--ff-jp-serif);
    font-size: 28px;
    font-weight: 500;
    line-height: 1.8;
    margin-bottom: 32px;
}

.brand-statement-text {
    font-size: 15px;
    line-height: 2.2;
    opacity: .9;
}

@media (max-width: 768px) {
    .brand-statement-title {
        font-size: 22px;
    }
}
