/* Components CSS */

/* Page Tabs */
.page-tabs {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    background: #333;
    display: flex;
    justify-content: center;
    gap: 0;
}
.page-tab {
    padding: 15px 40px;
    color: white;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
}
.page-tab:hover {
    background: #555;
}
.page-tab.active {
    background: #C9A96E;
}
.page-tab.gyn.active {
    background: #D4A5A5;
}
.page-tab.beauty.active {
    background: #C9A96E;
}
@media (max-width: 768px) {
    .page-tab {
        padding: 12px 20px;
        font-size: 12px;
    }
}

/* Header */
.header {
    position: fixed;
    top: 50px;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 40px;
}
.header .logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    color: #C9A96E;
    letter-spacing: 0.1em;
    text-decoration: none;
    margin: 0;
    padding: 0;
    font-weight: normal;
    line-height: 1;
}
.header .logo a {
    color: inherit;
    text-decoration: none;
}
.header-nav {
    display: flex;
    gap: 30px;
}
.header-nav-item {
    font-size: 12px;
    color: #666;
    text-decoration: none;
    letter-spacing: 0.1em;
    transition: color 0.3s;
}
.header-nav-item:hover {
    color: #C9A96E;
}
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}
.header-reserve {
    padding: 10px 25px;
    background: #C9A96E;
    color: white;
    font-size: 12px;
    text-decoration: none;
    letter-spacing: 0.1em;
    border-radius: 4px;
    transition: all 0.3s;
}
.header-reserve:hover {
    background: #B8954F;
}
.header-menu-btn {
    display: none;
}

/* Logo image */
.header .logo img {
    width: 150px;
    height: auto;
    display: block;
}

/* PC/SP display toggle */
@media (min-width: 769px) {
    .sp-only {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .pc-only {
        display: none !important;
    }

    .header .logo img {
        width: 120px;
    }
    .header-inner {
        padding: 12px 20px;
    }
    .header-menu-btn {
        display: block;
        width: 30px;
        height: 24px;
        background: none;
        border: none;
        position: relative;
        cursor: pointer;
    }
    .header-menu-btn span {
        display: block;
        width: 100%;
        height: 2px;
        background: #333;
        position: absolute;
        left: 0;
        transition: all 0.3s;
    }
    .header-menu-btn span:nth-child(1) {
        top: 0;
    }
    .header-menu-btn span:nth-child(2) {
        top: 50%;
        transform: translateY(-50%);
    }
    .header-menu-btn span:nth-child(3) {
        bottom: 0;
    }
    .header-nav {
        display: none;
    }
    .header-menu-btn.active span:nth-child(1) {
        top: 50%;
        transform: translateY(-50%) rotate(45deg);
    }
    .header-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    .header-menu-btn.active span:nth-child(3) {
        bottom: 50%;
        transform: translateY(50%) rotate(-45deg);
    }
}
body.menu-open {
    overflow: hidden;
}

/* Footer */
.footer {
    background: var(--black);
    color: white;
    padding: 60px 0 0;
}
.footer-inner {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
}
.copyright {
    font-size: 11px;
    color: var(--gray);
    text-align: center;
    padding: 25px 0;
}

/* Breadcrumb */
.breadcrumb {
    padding: 120px 40px 20px;
    max-width: var(--container-width);
    margin: 0 auto;
}
.breadcrumb-list {
    display: flex;
    align-items: center;
    font-size: 12px;
    flex-wrap: wrap;
}
.breadcrumb-separator {
    margin: 0 10px;
    color: var(--gray);
}
.breadcrumb-item a {
    color: var(--gray);
}
.breadcrumb-item a:hover {
    color: var(--gold);
}
@media (max-width: 768px) {
    .breadcrumb { padding: 100px 20px 15px;
    };
}

/* Pagination */
.pagination {
    margin-top: 60px;
}
.pagination-list {
    display: flex;
    justify-content: center;
    gap: 8px;
}
.pagination-item a, .pagination-item span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border: 1px solid var(--beige);
    border-radius: 4px;
}
.pagination-item a:hover {
    background: var(--gold);
    color: white;
    border-color: var(--gold);
}
.pagination-item.current span {
    background: var(--gold);
    color: white;
    border-color: var(--gold);
}

/* Forms */
.kt-form {
    max-width: 600px;
    margin: 0 auto;
}
.kt-form-group {
    margin-bottom: 25px;
}
.kt-form-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
}
.kt-form-label .required {
    color: var(--red);
}
.kt-form-input, .kt-form-select, .kt-form-textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--beige);
    border-radius: 4px;
    font-size: 14px;
}
.kt-form-input:focus, .kt-form-select:focus, .kt-form-textarea:focus {
    outline: none;
    border-color: var(--gold);
}
.kt-form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 4px;
    text-align: center;
}
.kt-form-message.success {
    background: #E8F5E9;
    color: #2E7D32;
}
.kt-form-message.error {
    background: #FFEBEE;
    color: #C62828;
}

/* Archive Header */
.archive-header {
    padding: 100px 0 40px;
    text-align: center;
    background: var(--gold-light);
}
@media (max-width: 768px) {
    .archive-header { padding: 80px 0 30px;
    };
}

/* Category Tabs */
.category-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
    justify-content: center;
}
.category-tab {
    padding: 10px 25px;
    font-size: 13px;
    border: 1px solid var(--beige);
    border-radius: 30px;
    transition: all 0.3s;
}
.category-tab:hover, .category-tab.active {
    background: var(--gold);
    color: white;
    border-color: var(--gold);
}

/* Treatment Grid */
.treatment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
@media (max-width: 900px) {
    .treatment-grid { grid-template-columns: repeat(2, 1fr);
    };
}
@media (max-width: 600px) {
    .treatment-grid { grid-template-columns: 1fr;
    };
}

.treatment-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}
.treatment-card:hover {
    transform: translateY(-5px);
}
.treatment-card-img {
    position: relative;
    aspect-ratio: 16/10;
    background: var(--gray-light);
}
.treatment-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.treatment-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 12px;
    font-size: 10px;
    font-weight: 500;
    border-radius: 3px;
}
.badge-recommend {
    background: var(--gold);
    color: white;
}
.badge-new {
    background: var(--red);
    color: white;
}
.treatment-card-body {
    padding: 20px;
}
.treatment-card-title {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 8px;
}
.treatment-card-desc {
    font-size: 12px;
    color: var(--gray);
    margin-bottom: 10px;
}
.treatment-card-price {
    font-size: 14px;
    font-weight: 500;
    color: var(--gold-dark);
}

/* Treatment Single */
.treatment-hero-image {
    width: 100%;
    height: 400px;
    background: var(--gold-light);
}
.treatment-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.treatment-hero-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
}
@media (max-width: 768px) {
    .treatment-hero-image { height: 250px;
    };
}

.treatment-layout {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 40px 80px;
}
@media (max-width: 1000px) {
    .treatment-layout { grid-template-columns: 1fr;
    };
}
@media (max-width: 768px) {
    .treatment-layout { padding: 30px 20px 60px;
    };
}

.treatment-hero-content {
    margin-bottom: 60px;
}
.treatment-category-label {
    display: inline-block;
    font-size: 11px;
    color: var(--gold);
    letter-spacing: 0.15em;
    padding: 6px 15px;
    background: var(--gold-light);
    border-radius: 3px;
    margin-bottom: 15px;
}
.treatment-title {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 20px;
}
.treatment-catchcopy {
    font-size: 15px;
    color: var(--gray-dark);
    line-height: 2;
}

.treatment-section {
    margin-bottom: 50px;
}
.treatment-section h2 {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 500;
    padding-left: 16px;
    margin-bottom: 20px;
    border-left: 3px solid var(--gold, #C9A96E);
    line-height: 1.4;
}
.treatment-section-bg {
    background: var(--gold-light);
    padding: 32px 28px;
    border-radius: 12px;
}
.treatment-content {
    font-size: 14px;
    line-height: 2.2;
}
.treatment-content h3 {
    font-family: var(--font-serif);
    font-size: 17px;
    margin: 35px 0 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--gold-pale);
    color: var(--gold-dark);
}
.treatment-content h3:first-child {
    margin-top: 0;
}
.treatment-content p {
    margin-bottom: 20px;
}
.treatment-content ul, .treatment-content ol {
    margin: 15px 0 20px 20px;
}
.treatment-content li {
    margin-bottom: 8px;
}

/* Price Table */
.price-table {
    width: 100%;
    border-collapse: collapse;
}
.price-table th, .price-table td {
    padding: 18px 15px;
    text-align: left;
    border-bottom: 1px solid var(--beige);
    font-size: 14px;
}
.price-table th {
    font-weight: 500;
}
.price-table td:last-child {
    text-align: right;
    font-weight: 500;
}
.price-note {
    display: block;
    font-size: 11px;
    color: var(--gray);
    margin-top: 4px;
    font-weight: normal;
}
.price-campaign {
    color: var(--red);
}

/* Campaign Price Display */
.price-has-campaign {
    line-height: 1.6;
}
.price-original {
    text-decoration: line-through;
    color: #999;
    font-size: 0.9em;
}
.price-campaign-arrow {
    color: #999;
    margin: 0 4px;
    font-size: 0.85em;
}
.price-campaign {
    color: var(--red, #c00);
    font-weight: bold;
}
.price-campaign-label {
    display: inline-block;
    background: var(--red, #c00);
    color: #fff;
    font-size: 0.7em;
    padding: 1px 6px;
    border-radius: 3px;
    margin-right: 4px;
    vertical-align: middle;
    font-weight: normal;
}

/* Price List Page - Campaign */
.price-original-strike {
    text-decoration: line-through;
    color: #999;
    font-size: 0.9em;
    display: block;
}
.price-campaign-value {
    color: var(--red, #c00);
    font-weight: bold;
    display: block;
}

/* Campaign Genre Label */
.campaign-genre-label {
    display: inline-block;
    font-size: 0.75em;
    color: var(--gold, #C9A96E);
    border: 1px solid var(--gold, #C9A96E);
    padding: 2px 10px;
    border-radius: 3px;
    margin-bottom: 6px;
}

/* Info List */
.info-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.info-box {
    background: white;
    border-radius: 8px;
    padding: 25px;
    border: 1px solid var(--beige);
}
.info-box h3 {
    font-family: var(--font-serif);
    font-size: 15px;
    color: var(--gold-dark);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--gold-pale);
}
.info-box ul {
    list-style: none;
}
.info-box li {
    font-size: 13px;
    line-height: 2;
    padding-left: 18px;
    position: relative;
}
.info-box li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--gold);
}
.info-box.caution {
    background: var(--gray-light);
    border-color: var(--gray-light);
}
.info-box.caution h3 {
    color: var(--red);
}
.info-box.caution li::before {
    content: "!";
    color: var(--red);
    font-weight: 600;
}

/* Flow Steps */
.flow-steps {
    display: flex;
    flex-direction: column;
}
.flow-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px 0;
    position: relative;
}
.flow-step:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 24px;
    top: 70px;
    bottom: 0;
    width: 2px;
    background: var(--gold-pale);
}
.flow-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: var(--font-display);
    font-size: 20px;
    flex-shrink: 0;
    z-index: 1;
}
.flow-step-content {
    flex: 1;
    padding-top: 5px;
}
.flow-step h4 {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 8px;
}
.flow-step p {
    font-size: 13px;
    color: var(--gray-dark);
}

/* Related Grid */
.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
@media (max-width: 768px) {
    .related-grid { grid-template-columns: 1fr;
    };
}
.related-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--beige);
    transition: transform 0.3s;
}
.related-card:hover {
    transform: translateY(-5px);
}
.related-card-img {
    aspect-ratio: 16/10;
    background: var(--gray-light);
}
.related-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.related-card-body {
    padding: 15px;
}
.related-card h4 {
    font-size: 14px;
    font-weight: 500;
}

/* Sidebar */
.treatment-sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
}
.sidebar-box {
    background: var(--gray-light);
    border-radius: 8px;
    padding: 25px;
}
.sidebar-title {
    font-family: var(--font-serif);
    font-size: 14px;
    color: var(--gold-dark);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--beige);
}
.sidebar-category {
    border-bottom: 1px solid var(--beige);
}
.sidebar-category:last-child {
    border-bottom: none;
}
.sidebar-category-title {
    font-size: 13px;
    font-weight: 500;
    padding: 12px 0;
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    position: relative;
}
.sidebar-category-title::before {
    content: "";
    width: 4px;
    height: 14px;
    background: var(--gold);
    border-radius: 2px;
}
.sidebar-category-title::after {
    content: "+";
    position: absolute;
    right: 0;
    font-size: 16px;
    color: var(--gold);
}
.sidebar-category.active .sidebar-category-title::after {
    content: "−";
}
.sidebar-menu {
    list-style: none;
    padding-left: 12px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
}
.sidebar-category.active .sidebar-menu {
    max-height: 500px;
    padding-bottom: 15px;
}
.sidebar-menu li {
    margin-bottom: 8px;
}
.sidebar-menu a {
    font-size: 12px;
    color: var(--gray-dark);
    display: block;
    padding: 4px 0;
}
.sidebar-menu a:hover {
    color: var(--gold);
}
.sidebar-menu a.current {
    color: var(--gold-dark);
    font-weight: 500;
}

/* Recommend List */
.recommend-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 24px;
}
.recommend-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    line-height: 1.6;
}
.recommend-item::before {
    content: "";
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 2px;
    border-radius: 50%;
    background: var(--gold, #C9A96E) url("data:image/svg+xml,%3Csvg viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 6l3 3 5-5' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/11px no-repeat;
}
@media (max-width: 768px) {
    .recommend-list { grid-template-columns: 1fr;
    };
}

/* CTA */
.cta-section {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    padding: 70px 40px;
    text-align: center;
}
.cta-section h2 {
    font-family: var(--font-serif);
    font-size: 24px;
    color: white;
    margin-bottom: 15px;
}
.cta-section p {
    font-size: 14px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
}
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.treatment-cta {
    border-radius: 8px;
    margin-top: 20px;
}
@media (max-width: 768px) {
    .cta-section {
        padding: 50px 20px;
    }
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
}

/* Single Post */
.single-header {
    padding: 100px 0 40px;
    background: var(--gold-light);
}
.single-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}
.single-date {
    font-size: 13px;
    color: var(--gray);
}
.single-cat {
    font-size: 11px;
    padding: 4px 12px;
    background: var(--gold);
    color: white;
    border-radius: 3px;
}
.single-title {
    font-family: var(--font-serif);
    font-size: 26px;
    font-weight: 500;
    line-height: 1.6;
}
.single-body {
    padding: 50px 0;
}
.single-thumbnail {
    margin-bottom: 40px;
}
.single-thumbnail img {
    width: 100%;
    border-radius: 8px;
}
.single-content {
    font-size: 15px;
    line-height: 2;
}
.single-content p {
    margin-bottom: 25px;
}
.single-content h2 {
    font-size: 20px;
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gold);
}
.single-content h3 {
    font-size: 18px;
    margin: 35px 0 15px;
}
.single-footer {
    padding: 50px 0;
    border-top: 1px solid var(--beige);
}
.single-nav {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 40px;
}
.single-nav-prev, .single-nav-next {
    flex: 1;
}
.single-nav-next {
    text-align: right;
}
.nav-label {
    font-size: 12px;
    color: var(--gray);
    display: block;
    margin-bottom: 5px;
}
.nav-title {
    font-size: 14px;
}
.single-back {
    text-align: center;
}

/* News Archive */
.news-archive-list {
    border-top: 1px solid var(--beige);
}
.news-archive-item {
    border-bottom: 1px solid var(--beige);
}
.news-archive-item a {
    display: block;
    padding: 25px 0;
}
.news-archive-item:hover {
    background: var(--gold-light);
}
.news-archive-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}
.news-archive-meta time {
    font-size: 13px;
    color: var(--gray);
}
.news-archive-cat {
    font-size: 10px;
    padding: 3px 10px;
    background: var(--gold-light);
    color: var(--gold-dark);
    border-radius: 3px;
}
.news-archive-title {
    font-size: 15px;
    font-weight: 500;
}

/* Column Grid */
.column-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
@media (max-width: 900px) {
    .column-grid { grid-template-columns: repeat(2, 1fr);
    };
}
@media (max-width: 600px) {
    .column-grid { grid-template-columns: 1fr;
    };
}
.column-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}
.column-card:hover {
    transform: translateY(-5px);
}
.column-card-img {
    aspect-ratio: 16/10;
    background: var(--gray-light);
}
.column-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.column-card-body {
    padding: 20px;
}
.column-card-body time {
    font-size: 12px;
    color: var(--gray);
}
.column-card-cat {
    font-size: 10px;
    color: var(--gold-dark);
    margin-left: 10px;
}
.column-card-title {
    font-size: 15px;
    font-weight: 500;
    margin: 10px 0;
}
.column-card-excerpt {
    font-size: 13px;
    color: var(--gray-dark);
}

/* News Section (Top) */
.news-list {
    border-top: 1px solid var(--beige);
}
.news-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--beige);
}
.news-item-date {
    font-size: 13px;
    color: var(--gray);
    flex-shrink: 0;
}
.news-item-cat {
    font-size: 10px;
    padding: 3px 10px;
    background: white;
    border: 1px solid var(--beige);
    border-radius: 3px;
    flex-shrink: 0;
}
.news-item-title {
    font-size: 14px;
}
.news-item-title a:hover {
    color: var(--gold);
}
@media (max-width: 768px) {
    .news-item {
        flex-wrap: wrap;
        gap: 10px;
    }
}

/* Site Select (Top) */
.site-select-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
@media (max-width: 768px) {
    .site-select-grid { grid-template-columns: 1fr;
    };
}
.site-select-card {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}
.site-select-card-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    transition: transform 0.5s;
}
.site-select-card:hover .site-select-card-bg {
    transform: scale(1.05);
}
.site-select-card-content {
    position: relative;
    z-index: 1;
}
.site-select-card-en {
    font-family: var(--font-display);
    font-size: 12px;
    letter-spacing: 0.2em;
    opacity: 0.8;
    margin-bottom: 10px;
}
.site-select-card-title {
    font-family: var(--font-serif);
    font-size: 32px;
    margin-bottom: 15px;
}
.site-select-card-desc {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
}
.site-select-card-btn {
    font-size: 13px;
    padding: 10px 30px;
    border: 1px solid white;
    border-radius: 4px;
    transition: all 0.3s;
}
.site-select-card:hover .site-select-card-btn {
    background: white;
    color: var(--gold-dark);
}

/* Hero (Top) */
.hero {
    height: 100vh;
    min-height: 600px;
    position: relative;
}
.hero-slide {
    position: relative;
    height: 100%;
}
.hero-slide-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gold-light), var(--beige));
    background-size: cover;
    background-position: center;
}
.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--black);
}
.hero-en {
    font-family: var(--font-display);
    font-size: 14px;
    letter-spacing: 0.3em;
    color: var(--gold);
    margin-bottom: 20px;
}
.hero-title {
    font-family: var(--font-serif);
    font-size: 42px;
    line-height: 1.5;
    margin-bottom: 20px;
}
.hero-lead {
    font-size: 16px;
    color: var(--gray-dark);
}
@media (max-width: 768px) {
    .hero-title { font-size: 28px;
    };
}

/* Calendar */
.kt-calendar {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}
.kt-calendar-header {
    padding: 20px;
    text-align: center;
    background: var(--gold-light);
}
.kt-calendar-month {
    font-size: 18px;
    font-weight: 500;
}
.kt-calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
}
.kt-calendar-day-header {
    padding: 12px 5px;
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    background: var(--gold-light);
    color: var(--gray-dark);
}
.kt-calendar-day-header.sun {
    color: var(--red);
}
.kt-calendar-day-header.sat {
    color: var(--blue);
}
.kt-calendar-cell {
    min-height: 90px;
    padding: 8px;
    border-top: 1px solid var(--beige);
    border-right: 1px solid var(--beige);
}
.kt-calendar-cell:nth-child(7n) {
    border-right: none;
}
.kt-calendar-cell.sun {
    background: #FFF5F5;
}
.kt-calendar-cell.sat {
    background: #F5F5FF;
}
.kt-calendar-cell.other-month {
    background: var(--gray-light);
}
.kt-calendar-cell.closed {
    background: #FAFAFA;
}
.kt-calendar-date {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 5px;
}
.kt-calendar-cell.sun .kt-calendar-date {
    color: var(--red);
}
.kt-calendar-cell.sat .kt-calendar-date {
    color: var(--blue);
}
.kt-calendar-content {
    font-size: 10px;
}
.kt-calendar-slot {
    display: flex;
    align-items: center;
    gap: 3px;
    margin-bottom: 3px;
}
.kt-calendar-time {
    font-size: 9px;
    color: var(--gray);
    min-width: 18px;
}
.kt-calendar-doctor {
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 10px;
    font-weight: 500;
}
.kt-calendar-closed {
    display: inline-block;
    background: var(--gray-light);
    color: var(--gray);
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 10px;
}
.kt-calendar-legend {
    display: flex;
    gap: 20px;
    padding: 15px 20px;
    background: var(--gold-light);
    flex-wrap: wrap;
}
.kt-calendar-legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
}
.kt-calendar-legend-color {
    width: 12px;
    height: 12px;
    border-radius: 3px;
}
@media (max-width: 600px) {
    .kt-calendar-cell {
        min-height: 70px;
        padding: 5px;
    }
    .kt-calendar-date {
        font-size: 11px;
    }
    .kt-calendar-time {
        display: none;
    }
}

/* Subpage Hero */
.subpage-hero {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}
.subpage-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}
.beauty-hero .subpage-hero-bg {
    background: linear-gradient(135deg, #C9A96E, #8B6914);
}
.gynecology-hero .subpage-hero-bg {
    background: linear-gradient(135deg, #A6C96E, #5B8B14);
}
.subpage-hero-content {
    position: relative;
    z-index: 1;
}
.subpage-hero-title {
    font-family: var(--font-serif);
    font-size: 42px;
    margin-bottom: 15px;
}
.subpage-hero-lead {
    font-size: 15px;
    line-height: 1.8;
    opacity: 0.9;
}
@media (max-width: 768px) {
    .subpage-hero {
        height: 300px;
    }
    .subpage-hero-title {
        font-size: 32px;
    }
}

/* Concept Section */
.concept-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.concept-image img {
    width: 100%;
    border-radius: 8px;
}
.concept-text {
    font-size: 14px;
    line-height: 2.2;
    color: var(--gray-dark);
}
@media (max-width: 768px) {
    .concept-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Menu Section */
.menu-category {
    margin-bottom: 50px;
}
.menu-category-title {
    font-family: var(--font-serif);
    font-size: 20px;
    margin-bottom: 25px;
    padding-left: 15px;
    border-left: 4px solid var(--gold);
}
.menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
@media (max-width: 900px) {
    .menu-grid { grid-template-columns: repeat(3, 1fr);
    };
}
@media (max-width: 600px) {
    .menu-grid { grid-template-columns: repeat(2, 1fr);
    };
}
.menu-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}
.menu-card:hover {
    transform: translateY(-5px);
}
.menu-card-img {
    position: relative;
    aspect-ratio: 1/1;
    background: var(--gray-light);
}
.menu-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.menu-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    padding: 3px 10px;
    font-size: 9px;
    font-weight: 500;
    border-radius: 3px;
}
.badge-insurance {
    background: #4CAF50;
    color: white;
}
.menu-card-body {
    padding: 15px;
}
.menu-card-title {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 5px;
}
.menu-card-price {
    font-size: 13px;
    color: var(--gold-dark);
    font-weight: 500;
}

/* Campaign */
.campaign-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
@media (max-width: 768px) {
    .campaign-grid { grid-template-columns: 1fr;
    };
}
.campaign-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.campaign-card-img {
    aspect-ratio: 16/10;
    background: var(--gray-light);
}
.campaign-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.campaign-card-body {
    padding: 25px;
}
.campaign-card-title {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.4;
}
.campaign-card-desc {
    font-size: 13px;
    color: var(--gray-dark);
    line-height: 1.9;
    margin-bottom: 20px;
}
.campaign-card-buttons {
    display: flex;
    gap: 12px;
}
.campaign-card-buttons .btn {
    flex: 1;
    padding: 12px 15px;
    font-size: 12px;
}

/* FAQ */
.faq-category {
    margin-bottom: 50px;
}
.faq-category-title {
    font-family: var(--font-serif);
    font-size: 20px;
    margin-bottom: 25px;
    padding-left: 15px;
    border-left: 4px solid var(--gold);
}
.faq-list {
    border-top: 1px solid var(--beige);
}
.faq-item {
    border-bottom: 1px solid var(--beige);
}
.faq-question {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    width: 100%;
    padding: 20px 0;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
}
.faq-q {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    background: var(--gold);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 14px;
}
.faq-question-text {
    flex: 1;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.6;
    padding-top: 3px;
}
.faq-toggle {
    flex-shrink: 0;
    font-size: 20px;
    color: var(--gold);
    transition: transform 0.3s;
}
.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}
.faq-answer {
    display: none;
    padding: 0 0 25px 45px;
}
.faq-item.active .faq-answer {
    display: flex;
    gap: 15px;
}
.faq-a {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    background: var(--gold-light);
    color: var(--gold-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 14px;
}
.faq-answer-text {
    flex: 1;
    font-size: 14px;
    line-height: 2;
    color: var(--gray-dark);
}

/* Doctor */
.doctor-list {
    display: flex;
    flex-direction: column;
    gap: 80px;
}
.doctor-card {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 50px;
    align-items: start;
}
.doctor-card.reverse {
    grid-template-columns: 1fr 350px;
}
.doctor-card.reverse .doctor-card-img {
    order: 2;
}
.doctor-card.reverse .doctor-card-body {
    order: 1;
}
.doctor-card-img {
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 3/4;
    background: var(--gray-light);
}
.doctor-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.doctor-card-header {
    margin-bottom: 25px;
}
.doctor-position {
    font-size: 12px;
    color: var(--gold);
    letter-spacing: 0.1em;
}
.doctor-name {
    font-family: var(--font-serif);
    font-size: 28px;
    margin: 8px 0;
}
.doctor-target {
    display: inline-block;
    font-size: 11px;
    padding: 4px 12px;
    background: var(--gold-light);
    color: var(--gold-dark);
    border-radius: 3px;
}
.doctor-message {
    font-size: 14px;
    line-height: 2.2;
    color: var(--gray-dark);
    margin-bottom: 30px;
    padding: 25px;
    background: var(--gold-light);
    border-radius: 8px;
}
.doctor-career h3 {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--beige);
}
.doctor-career ul {
    list-style: none;
}
.doctor-career li {
    font-size: 13px;
    line-height: 2;
    padding-left: 15px;
    position: relative;
}
.doctor-career li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--gold);
}
@media (max-width: 900px) {
    .doctor-card, .doctor-card.reverse {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .doctor-card.reverse .doctor-card-img, .doctor-card.reverse .doctor-card-body {
        order: unset;
    }
    .doctor-card-img {
        max-width: 300px;
    }
}

/* Campaign Card Extended */
.campaign-period {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--red);
    color: white;
    padding: 5px 12px;
    font-size: 11px;
    border-radius: 3px;
    z-index: 2;
}
.campaign-new-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gold, #C9A96E);
    color: white;
    padding: 4px 14px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 3px;
    z-index: 2;
}
.campaign-card-img {
    position: relative;
}
.campaign-card-prices {
    margin: 15px 0;
    border-top: 1px solid var(--beige, #EDE6DA);
    padding-top: 12px;
}
.campaign-card-prices .campaign-price-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding: 4px 0;
}
.campaign-card-prices .campaign-price-label {
    font-size: 13px;
    color: var(--gray-dark, #555);
}
.campaign-card-prices .campaign-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--red, #D45B5B);
}
.campaign-original-price {
    font-size: 14px;
    color: var(--gray);
    text-decoration: line-through;
    margin-right: 10px;
}
.campaign-price {
    font-size: 24px;
    font-weight: 600;
    color: var(--red);
}

/* Calendar Tabs */
.kt-calendar-wrapper {
}
.kt-calendar-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 15px 20px;
    background: var(--gold-light);
    border-radius: 12px 12px 0 0;
}
.kt-calendar-tab {
    padding: 8px 25px;
    border-radius: 20px;
    font-size: 13px;
    cursor: pointer;
    color: var(--gray-dark);
    background: white;
    border: 1px solid var(--beige);
    transition: all 0.3s;
}
.kt-calendar-tab:hover {
    border-color: var(--gold);
    color: var(--gold);
}
.kt-calendar-tab.active {
    background: var(--gold);
    color: white;
    border-color: var(--gold);
}
.kt-calendar-content {
    transition: opacity 0.3s;
}

/* Menu Category Section */
.menu-category-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}
.menu-category-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 15px 25px;
    background: white;
    border: 1px solid var(--beige);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-color);
    font-size: 15px;
    transition: all 0.3s;
    min-width: 180px;
}
.menu-category-item:hover {
    border-color: var(--gold);
    background: var(--gold-light);
}
.menu-category-name {
    font-weight: 500;
}
.menu-category-arrow {
    color: var(--gold);
}

/* Concern Section */
.concern-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}
.concern-item {
    display: inline-block;
    padding: 12px 24px;
    background: white;
    border: 1px solid var(--beige);
    border-radius: 25px;
    text-decoration: none;
    color: var(--text-color);
    font-size: 14px;
    transition: all 0.3s;
}
.concern-item:hover {
    border-color: var(--gold);
    background: var(--gold);
    color: white;
}

@media (max-width: 768px) {
    .menu-category-item {
        min-width: calc(50% - 10px);
        padding: 12px 15px;
        font-size: 13px;
    }
    .concern-item {
        padding: 10px 18px;
        font-size: 13px;
    }
}

/* Concern Categories (Hierarchical) */
.concern-categories {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.concern-category {
}
.concern-category-title {
    font-size: 16px;
    font-weight: 500;
    color: var(--gold);
    margin-bottom: 15px;
    padding-left: 15px;
    border-left: 3px solid var(--gold);
}

/* Concern Category Section */
.concern-categories {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.concern-category {
}
.concern-category-title {
    font-size: 16px;
    font-weight: 500;
    color: var(--gold);
    margin-bottom: 15px;
    padding-left: 15px;
    border-left: 3px solid var(--gold);
}

/* Campaign Grid */
.campaign-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.campaign-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    transition: all 0.3s;
}
.campaign-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}
.campaign-card-image {
    aspect-ratio: 16/10;
    overflow: hidden;
}
.campaign-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.campaign-card-body {
    padding: 20px;
}
.campaign-card-title {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 10px;
}
.campaign-card-price {
    font-size: 14px;
}
.campaign-card-price .original-price {
    text-decoration: line-through;
    color: var(--gray);
    margin-right: 10px;
}
.campaign-card-price .sale-price {
    color: var(--red);
    font-weight: 600;
    font-size: 18px;
}

@media (max-width: 768px) {
    .campaign-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .campaign-card-body {
        padding: 15px;
    }
    .campaign-card-title {
        font-size: 13px;
    }
}
@media (max-width: 480px) {
    .campaign-grid {
        grid-template-columns: 1fr;
    }
}

/* Doctor Single Page */
.doctor-header-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 50px;
    align-items: start;
}
.doctor-header-image img {
    width: 100%;
    border-radius: 12px;
}
.doctor-position {
    color: var(--gold);
    font-size: 14px;
    margin-bottom: 10px;
}
.doctor-name {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 15px;
}
.doctor-furigana {
    font-size: 16px;
    font-weight: 400;
    color: var(--gray);
}
.doctor-targets {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.doctor-target-tag {
    display: inline-block;
    padding: 6px 15px;
    background: var(--gold-light);
    color: var(--gold);
    font-size: 13px;
    border-radius: 20px;
}

.career-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.career-item {
    display: flex;
    gap: 30px;
    padding: 15px 0;
    border-bottom: 1px solid var(--beige);
}
.career-item dt {
    min-width: 80px;
    font-weight: 500;
    color: var(--gold);
}
.career-item dd {
    flex: 1;
}

.qualifications-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.qualifications-list li {
    position: relative;
    padding-left: 20px;
}
.qualifications-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
}

.message-content {
    background: white;
    padding: 30px;
    border-radius: 12px;
    line-height: 2;
}

@media (max-width: 768px) {
    .doctor-header-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .doctor-header-image {
        max-width: 250px;
        margin: 0 auto;
    }
    .doctor-name {
        font-size: 24px;
        text-align: center;
    }
    .doctor-position {
        text-align: center;
    }
    .doctor-targets {
        justify-content: center;
    }
    .career-item {
        flex-direction: column;
        gap: 5px;
    }
    .career-item dt {
        min-width: auto;
    }
}

/* Doctor Archive Updates */
.doctor-targets-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}
.doctor-card-link {
    margin-top: 20px;
}
.btn-sm {
    padding: 8px 20px;
    font-size: 13px;
}
.doctor-qualifications {
    margin-top: 15px;
}
.doctor-qualifications h3 {
    font-size: 14px;
    color: var(--gold);
    margin-bottom: 8px;
}
.doctor-qualifications ul {
    font-size: 13px;
}
.career-year {
    color: var(--gold);
    font-weight: 500;
    margin-right: 10px;
}
.doctor-name a {
    color: inherit;
    text-decoration: none;
}
.doctor-name a:hover {
    color: var(--gold);
}

/* SP Fixed Buttons - スマホのみ表示 */
.sp-fixed-buttons {
    display: none;
}

@media (max-width: 768px) {
    .sp-fixed-buttons {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 999;
        background: white;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    }
    .sp-fixed-buttons a {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 15px;
        text-decoration: none;
        font-size: 14px;
        font-weight: 500;
    }
    .sp-fixed-tel {
        background: white;
        color: var(--text-color);
        border-right: 1px solid var(--beige);
    }
    .sp-fixed-reserve {
        background: var(--gold);
        color: white;
    }
    .footer {
        padding-bottom: 70px;
    }
}

/* Hide any unwanted fixed buttons on PC */
@media (min-width: 769px) {
    .sp-fixed-buttons,
    .mobile-fixed-buttons,
    .fixed-buttons,
    .float-buttons,
    [class*="sp-fixed"],
    [class*="mobile-fixed"] {
        display: none !important;
    }
}

/* SP Menu - スマホのみ表示 */
#spMenu,
.sp-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    z-index: 998;
    overflow-y: auto;
    padding-top: 80px;
}

#spMenu.is-open,
.sp-menu.is-open,
#spMenu.active,
.sp-menu.active {
    display: block;
}

@media (min-width: 769px) {
    #spMenu,
    .sp-menu {
        display: none !important;
    }
}

.sp-menu-inner {
    padding: 30px 20px;
}
.sp-menu-list {
    list-style: none;
}
.sp-menu-list li {
    border-bottom: 1px solid var(--beige);
}
.sp-menu-list a {
    display: block;
    padding: 15px 0;
    text-decoration: none;
    color: var(--text-color);
}
.sp-menu-contact {
    margin-top: 30px;
    text-align: center;
}
.sp-menu-tel {
    display: block;
    margin-bottom: 15px;
    font-size: 18px;
    color: var(--text-color);
    text-decoration: none;
}

/* Clinic Hours List (TOP) */
.clinic-hours-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 25px 0;
}
.clinic-hours-item {
    background: var(--gold-light);
    padding: 20px;
    border-radius: 8px;
}
.clinic-hours-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--beige);
}
.clinic-hours-item dl {
    display: flex;
    flex-wrap: wrap;
    gap: 5px 15px;
    font-size: 13px;
}
.clinic-hours-item dt {
    font-weight: 500;
    min-width: 60px;
}
.clinic-hours-item dd {
    flex: 1;
    min-width: 150px;
}

/* Clinic Info Box (Beauty/Gynecology TOP) */
.clinic-info-box {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 30px 40px;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    text-align: center;
}
.clinic-info-dept {
    font-size: 18px;
    font-weight: 500;
    color: var(--gold);
    margin-bottom: 20px;
}
.clinic-info-dl {
    display: inline-block;
    text-align: left;
}
.clinic-info-row {
    display: flex;
    gap: 20px;
    margin-bottom: 10px;
    font-size: 15px;
}
.clinic-info-row dt {
    font-weight: 500;
    min-width: 70px;
}
.clinic-info-row dd {
}

@media (max-width: 768px) {
    .clinic-hours-list {
        grid-template-columns: 1fr;
    }
    .clinic-info-box {
        padding: 25px 20px;
    }
    .clinic-info-row {
        flex-direction: column;
        gap: 5px;
    }
}

/* ===== Calendar v2 (Beauty - Multi Doctor) ===== */
.kt-cal-wrap {
}
.kt-cal-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 0 10px;
}
.kt-cal-tabs {
    display: flex;
    gap: 3px;
    background: var(--gold-light, #F8F3EB);
    border-radius: 20px;
    padding: 3px;
}
.kt-cal-tab {
    padding: 6px 22px;
    border-radius: 17px;
    font-size: 12px;
    font-weight: 500;
    border: none;
    background: transparent;
    color: var(--gray-dark, #888);
    cursor: pointer;
    transition: all 0.25s;
}
.kt-cal-tab.active {
    background: var(--gold, #C9A96E);
    color: white;
    box-shadow: 0 2px 8px rgba(201,169,110,0.3);
}

.kt-cal-legend {
    display: flex;
    justify-content: center;
    gap: 16px;
    padding: 4px 0 10px;
}
.kt-cal-legend-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 10px;
    color: var(--gray-dark, #888);
}
.kt-cal-legend-swatch {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}
.kt-cal-legend-swatch.keisei {
    background: var(--gold, #C9A96E);
}
.kt-cal-legend-swatch.hifu {
    background: #7BA1C7;
}

.kt-cal {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0,0,0,0.04);
    border: 1px solid #E8E2D8;
}
.kt-cal-hdr {
    padding: 12px;
    text-align: center;
    background: var(--gold-light, #F8F3EB);
    font-size: 14px;
    font-weight: 500;
    border-bottom: 1px solid #E8E2D8;
}
.kt-cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
}

.kt-cal-dh {
    padding: 8px 0;
    text-align: center;
    font-size: 10px;
    font-weight: 500;
    color: #888;
    background: var(--gold-light, #F8F3EB);
    border-bottom: 1px solid #E8E2D8;
}
.kt-cal-dh.sun {
    color: #D45B5B;
}
.kt-cal-dh.sat {
    color: #5B7BD4;
}

.kt-cal-c {
    min-height: 76px;
    padding: 3px 1.5px;
    border-right: 1px solid #E8E2D8;
    border-bottom: 1px solid #E8E2D8;
}
.kt-cal-c:nth-child(7n) {
    border-right: none;
}
.kt-cal-c.sun {
    background: #FFFBFB;
}
.kt-cal-c.sat {
    background: #FBFBFF;
}
.kt-cal-c.empty {
    background: #F8F8F6;
    min-height: 40px;
}
.kt-cal-c.closed {
    background: #FAFAFA;
}
.kt-cal-c.today {
    background: #FFFEF5;
}

.kt-cal-d {
    font-size: 11px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2px;
    line-height: 1;
}
.kt-cal-d.today-mark {
    color: white;
    background: var(--gold, #C9A96E);
    width: 18px;
    height: 18px;
    line-height: 18px;
    border-radius: 50%;
    margin: 0 auto 2px;
}
.kt-cal-c.sun .kt-cal-d {
    color: #D45B5B;
}
.kt-cal-c.sat .kt-cal-d {
    color: #5B7BD4;
}

.kt-cal-entries {
}
.kt-dr {
    padding: 2px 3px;
    margin-bottom: 2px;
    border-radius: 3px;
    line-height: 1.2;
    background: #fff;
    border: 1px solid #eee;
    text-align: center;
}
.kt-dr-top {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
}
.kt-dr-dots {
    display: inline-flex;
    gap: 2px;
}
.kt-dr-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
}
.kt-dr-dot.keisei {
    background: var(--gold, #C9A96E);
}
.kt-dr-dot.hifu {
    background: #7BA1C7;
}
.kt-dr-n {
    font-size: 10px;
    font-weight: 600;
    white-space: nowrap;
    vertical-align: middle;
    margin-left: 2px;
}
.kt-dr-t {
    display: block;
    font-size: 8px;
    color: #888;
    white-space: nowrap;
}
.kt-cal-closed {
    display: block;
    text-align: center;
    font-size: 9px;
    color: #888;
    margin-top: 8px;
}

@media (min-width: 769px) {
    .kt-cal-c {
        min-height: 100px;
        padding: 5px 4px;
    }
    .kt-cal-d {
        font-size: 13px;
        margin-bottom: 4px;
    }
    .kt-cal-d.today-mark {
        width: 22px;
        height: 22px;
        line-height: 22px;
    }
    .kt-dr {
        display: flex;
        align-items: center;
        gap: 4px;
        padding: 3px 5px;
        margin-bottom: 2px;
        text-align: left;
    }
    .kt-dr-top {
        display: flex;
        align-items: center;
        gap: 4px;
        flex: 1;
        min-width: 0;
    }
    .kt-dr-dots {
        flex-shrink: 0;
    }
    .kt-dr-dot {
        width: 7px;
        height: 7px;
    }
    .kt-dr-n {
        font-size: 11px;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .kt-dr-t {
        display: inline;
        font-size: 10px;
        flex-shrink: 0;
    }
    .kt-cal-tab {
        padding: 8px 28px;
        font-size: 13px;
    }
}

/* ===== Price List Page ===== */
.price-notice {
    padding: 15px 0 0;
}
.price-notice-text {
    text-align: center;
    font-size: 13px;
    color: var(--gray-dark, #888);
}

.price-category-nav {
    background: white;
    border-bottom: 1px solid var(--beige, #EDE6DA);
    position: sticky;
    top: 60px;
    z-index: 10;
}
.price-nav-inner {
    display: flex;
    gap: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.price-nav-item {
    padding: 14px 24px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-color, #333);
    text-decoration: none;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    transition: all 0.25s;
}
.price-nav-item:hover, .price-nav-item.active {
    color: var(--gold, #C9A96E);
    border-bottom-color: var(--gold, #C9A96E);
}
@media (max-width: 768px) {
    .price-nav-item {
        padding: 12px 16px;
        font-size: 12px;
    }
}

.price-list-section {
    padding-bottom: 40px;
}
.price-category-block {
    margin-bottom: 50px;
}
.price-category-block:last-child {
    margin-bottom: 0;
}
.price-category-header {
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gold, #C9A96E);
}
.price-category-header h2 {
    font-family: var(--font-serif, 'Noto Serif JP', serif);
    font-size: 22px;
    font-weight: 500;
}

.price-treatment-block {
    margin-bottom: 30px;
}
.price-treatment-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}
.price-treatment-name a {
    color: var(--text-color, #333);
    text-decoration: none;
}
.price-treatment-name a:hover {
    color: var(--gold, #C9A96E);
}
.price-badge-new {
    display: inline-block;
    background: var(--gold, #C9A96E);
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 3px;
    margin-left: 8px;
    vertical-align: middle;
    letter-spacing: 1px;
}
.price-badge-recommend {
    display: inline-block;
    background: var(--red, #D45B5B);
    color: white;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 3px;
    margin-left: 8px;
    vertical-align: middle;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
}
.price-table td {
    padding: 14px 0;
    border-bottom: 1px solid var(--beige, #EDE6DA);
    font-size: 14px;
    vertical-align: top;
}
.price-td-name {
    text-align: left;
}
.price-td-price {
    text-align: right;
    font-weight: 600;
    font-size: 15px;
    white-space: nowrap;
    width: 140px;
}
.price-note {
    display: block;
    font-size: 11px;
    color: var(--gray-dark, #888);
    margin-top: 4px;
    line-height: 1.5;
}
.campaign-row .price-td-price {
    color: var(--red, #D45B5B);
}
.price-campaign-label {
    display: inline-block;
    background: var(--red, #D45B5B);
    color: white;
    font-size: 9px;
    padding: 1px 6px;
    border-radius: 2px;
    margin-right: 6px;
    vertical-align: middle;
}

.price-options {
    margin-top: 8px;
    padding-left: 16px;
    border-left: 3px solid var(--beige, #EDE6DA);
}
.price-options-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-dark, #888);
    margin-bottom: 4px;
}
.price-table-option td {
    padding: 10px 0;
    font-size: 13px;
}
.price-table-option .price-td-price {
    font-size: 14px;
}

@media (max-width: 768px) {
    .price-category-header h2 {
        font-size: 18px;
    }
    .price-treatment-name {
        font-size: 14px;
    }
    .price-table th {
        padding: 8px 12px;
        font-size: 11px;
    }
    .price-table td {
        padding: 12px;
        font-size: 13px;
    }
    .price-th-price {
        width: 120px;
    }
    .price-td-price {
        font-size: 14px;
    }
}

/* Treatment page options */
.treatment-options {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px dashed var(--beige, #EDE6DA);
}
.treatment-options-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-dark, #888);
    margin-bottom: 8px;
}

/* ===== Treatment Archive - Dept Tabs + Simple List ===== */
.treatment-archive-header {
    padding: 40px 0 20px;
}
.treatment-archive-title {
    font-family: var(--font-serif, 'Noto Serif JP', serif);
    font-size: 26px;
    font-weight: 500;
}

.dept-tabs-nav {
    border-bottom: 2px solid var(--beige, #EDE6DA);
}
.dept-tabs {
    display: flex;
    gap: 0;
}
.dept-tab {
    display: block;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 500;
    color: #999;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: all 0.25s;
}
.dept-tab:hover {
    color: #666;
}
.dept-tab.active.dept-beauty {
    color: var(--gold, #C9A96E);
    border-bottom-color: var(--gold, #C9A96E);
}
.dept-tab.active.dept-gynecology {
    color: #D4849A;
    border-bottom-color: #D4849A;
}
.dept-tab.active.dept-insurance {
    color: #666;
    border-bottom-color: #666;
}
@media (max-width: 768px) {
    .dept-tab {
        padding: 12px 16px;
        font-size: 13px;
    }
}

.treatment-list-section {
    padding-top: 32px;
}
.tl-cat-group {
    margin-bottom: 36px;
}
.tl-cat-header {
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--beige, #EDE6DA);
}
.tl-cat-header h2 {
    font-family: var(--font-serif, 'Noto Serif JP', serif);
    font-size: 18px;
    font-weight: 500;
}

.tl-list {
}
.tl-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #f0ece5;
    text-decoration: none;
    color: var(--text-color, #333);
    transition: all 0.2s;
}
.tl-item:hover {
    background: var(--gold-light, #F8F3EB);
    margin: 0 -12px;
    padding: 15px 12px;
    border-radius: 6px;
}
.tl-name {
    font-size: 15px;
    font-weight: 500;
}
.tl-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 3px;
    margin-left: 8px;
    vertical-align: middle;
}
.tl-badge-new {
    background: var(--gold, #C9A96E);
    color: white;
}
.tl-badge-rec {
    background: var(--red, #D45B5B);
    color: white;
}
.tl-arrow {
    color: #ccc;
    font-size: 18px;
    flex-shrink: 0;
    margin-left: 12px;
}

/* Concern page */
.concern-en {
    font-family: var(--font-display, 'Cormorant Garamond', serif);
    font-size: 12px;
    color: var(--gold, #C9A96E);
    letter-spacing: 0.2em;
    margin-bottom: 6px;
}
.concern-desc {
    font-size: 14px;
    color: #888;
    margin-top: 8px;
}
.tl-cat-label {
    display: inline-block;
    font-size: 11px;
    color: var(--gold, #C9A96E);
    background: var(--gold-light, #F8F3EB);
    padding: 2px 10px;
    border-radius: 12px;
    margin-left: 10px;
    vertical-align: middle;
}
