/* =============================================================================
FRONT PAGE STYLES
============================================================================= */

:root {
/* ゴールド系（美容） */
    --gold: #C9A96E;
    --gold-light: #F7F3ED;
    --gold-dark: #B8954F;
    --beige: #E8E0D5;
/* ピンク系（婦人科） */
    --pink-light: #FDF7F8;
    --pink: #D4A5A5;
    --pink-muted: #C9A0A0;
    --pink-dark: #B08080;
    --rose: #E8D4D4;
/* 共通 */
    --text-color: #333;
    --gray: #888;
    --gray-dark: #666;
    --gray-light: #f5f5f5;
    --off-white: #fafafa;
}

/* HEADER - Front Page */
.home .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);
}
.home .header .header-inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.home .header .logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    color: var(--gold);
    letter-spacing: 0.1em;
    text-decoration: none;
    margin: 0;
    padding: 0;
    font-weight: normal;
    line-height: 1;
}
.home .header .logo a {
    color: inherit;
    text-decoration: none;
}

.header .logo img {
    width: 200px;
    height: auto;
    display: block;
}








.home .header .header-nav {
    display: flex;
    gap: 30px;
}
.home .header .header-nav-item {
    font-size: 12px;
    color: var(--gray-dark);
    text-decoration: none;
    letter-spacing: 0.1em;
    transition: color 0.3s;
}
.home .header .header-nav-item:hover {
    color: var(--gold);
}
.home .header .header-reserve {
    padding: 10px 25px;
    background: var(--gold);
    color: white;
    font-size: 12px;
    text-decoration: none;
    letter-spacing: 0.1em;
    border-radius: 4px;
    transition: all 0.3s;
}
.home .header .header-reserve:hover {
    background: var(--gold-dark);
}

/* SPLIT HERO */
.split-hero {
    display: flex;
    min-height: 100vh;
    padding-top: 124px;
    width: 100%;
}
.split-section {
    flex: 1 1 50%;
    min-width: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 2rem 2rem 1.5rem;
    cursor: pointer;
    overflow: hidden;
    transition: flex 0.6s cubic-bezier(0.4,0,0.2,1);
    text-decoration: none;
}
.split-hero:hover .split-section {
    flex: 0.85;
}
.split-hero .split-section:hover {
    flex: 1.15;
}
.section-gynecology {
    /*background: linear-gradient(180deg, var(--pink-light), var(--rose));*/
}
.section-beauty {
    /*background: linear-gradient(180deg, var(--gold-light), var(--beige));*/
}

.split-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center top;
    transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.split-section:hover .split-bg {
    transform: scale(1.05);
}

.split-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 65%;
    z-index: 1;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.05) 10%, rgba(0,0,0,0.2) 25%, rgba(0,0,0,0.5) 45%, rgba(0,0,0,0.8) 65%, black 85%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.05) 10%, rgba(0,0,0,0.2) 25%, rgba(0,0,0,0.5) 45%, rgba(0,0,0,0.8) 65%, black 85%);
    transition: opacity 0.4s;
}
.section-gynecology .split-overlay {
    background: linear-gradient(to bottom, rgba(253,247,248,0) 0%, rgba(253,247,248,0.6) 30%, rgba(245,235,237,0.85) 100%);
}
.section-beauty .split-overlay {
    background: linear-gradient(to bottom, rgba(247,243,237,0) 0%, rgba(247,243,237,0.6) 30%, rgba(243,237,225,0.85) 100%);
}
.split-section:hover .split-overlay {
    opacity: 0.9;
}










/*.split-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    transition: opacity 0.4s;
}*/

/*.section-gynecology .split-overlay {
    background: linear-gradient(180deg, rgba(253,247,248,0.2) 0%, rgba(253,247,248,0.6) 45%, rgba(232,212,212,0.85) 100%);
}*/
/*.section-beauty .split-overlay {
    background: linear-gradient(180deg, rgba(247,243,237,0.2) 0%, rgba(247,243,237,0.6) 45%, rgba(232,224,213,0.85) 100%);
}*/
/*.split-section:hover .split-overlay {
    opacity: 0.9;
}*/



/*.split-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 480px;
    background: rgba(255, 255, 255, .8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 40px 36px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}*/

.split-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 480px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 2rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}




.split-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .1em;
    line-height: 1;
    text-transform: uppercase;
    opacity: 0.8;
}
.section-gynecology .split-label {
    color: #7A3A3A;
}
.section-beauty .split-label {
     color: #6B5530;
}

.split-title-en {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-weight: 500;
    letter-spacing: .05em;
}
.section-gynecology .split-title-en {
    color: #7A3A3A;
    font-weight: 500;
}
.section-beauty .split-title-en {
    color: #6B5530;
    font-weight: 500;
}

.split-title-jp {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: .05em;
    margin-bottom: .8rem;
    padding-bottom: .5rem;
}
.section-gynecology .split-title-jp {
    color: #8B4E4E;
    border-bottom: 1px solid #7A3A3A;
}
.section-beauty .split-title-jp {
    color: #7A6035;
    border-bottom: 1px solid #7A6035;
}

.split-desc {
    font-size: 13px;
    line-height: 2.2;
    color: #444;
    margin-bottom: 30px;
}

.split-keywords {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 35px;
}
.keyword {
    padding: 7px 14px;
    font-size: 11px;
    letter-spacing: 0.08em;
    border-radius: 30px;
    transition: all 0.3s;
}
.section-gynecology .keyword {
    background: rgba(212,165,165,0.2);
    color: var(--pink-dark);
    border: 1px solid rgba(212,165,165,0.3);
}
.section-gynecology .keyword:hover {
    background: var(--pink);
    color: white;
    border-color: var(--pink);
}
.section-beauty .keyword {
    background: rgba(201,169,110,0.15);
    color: var(--gold-dark, var(--gold));
    border: 1px solid rgba(201,169,110,0.25);
}
.section-beauty .keyword:hover {
    background: var(--gold);
    color: white;
    border-color: var(--gold);
}

.split-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.12em;
    transition: all 0.4s;
}
.section-gynecology .split-cta {
    background: var(--pink);
    color: white;
}
.section-gynecology .split-cta:hover {
    background: var(--pink-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212,165,165,0.4);
}
.section-beauty .split-cta {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark, var(--gold)));
    color: white;
}
.section-beauty .split-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201,169,110,0.4);
}
.split-cta .arrow {
    transition: transform 0.3s;
}
.split-cta:hover .arrow {
    transform: translateX(5px);
}

.split-divider {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}
.divider-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, transparent, var(--gray), transparent);
}
.divider-or {
    width: 46px;
    height: 46px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 11px;
    color: var(--gray);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 10;
}
.scroll-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 10px;
    letter-spacing: 0.2em;
    color: var(--gray);
}
.scroll-line {
    width: 1px;
    height: 35px;
    background: var(--gray);
    position: relative;
    overflow: hidden;
}
.scroll-line::after {
    content: "";
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gold);
    animation: scrollDown 1.5s ease-in-out infinite;
}
@keyframes scrollDown {
    0% {
        top: -100%;
    }
    50% {
        top: 0;
    }
    100% {
        top: 100%;
    }
}



/* =============================================================
　　共通 on Front Page
============================================================= */
/* SECTION HEADER */
.section-header .label {
    font-family: 'Cormorant Garamond', serif;
    font-size: .75rem;
    font-weight: 500;
    letter-spacing: .1em;
    color: var(--gold);
    margin-bottom: 12px;
}
.section-header h2 {
    font-family: 'Noto Serif JP', serif;
    font-size: 26px;
    font-weight: 400;
    letter-spacing: 0.12em;
    margin-bottom: 15px;
}
.section-header .subtitle {
    font-size: 13px;
    color: var(--gray);
}





/* =============================================================
　　Campaign Section on Front Page
============================================================= */
.campaign-section {
    background: #F5F3F0!important;
}
.campaign-section .campaign-grid {
    max-width: 900px;
    margin: 0 auto;
}
.campaign-section .campaign-card-price .campaign-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--red, #D45B5B);
}
.campaign-section .more-link {
    display: inline-block;
    font-size: 14px;
    color: var(--gold, #C9A96E);
    text-decoration: none;
    border-bottom: 1px solid currentColor;
    padding-bottom: 2px;
}
.campaign-section .more-link:hover {
    opacity: 0.7;
}








































/* FEATURES */
.features-section {
    background: var(--white, #fff);
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}
.feature-card {
    padding: 40px 30px;
    background: var(--off-white, #fafafa);
    text-align: center;
    transition: all 0.3s;
    border: 1px solid transparent;
}
.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--beige);
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}
.feature-card .icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark, var(--gold)));
    border-radius: 50%;
    color: white;
    font-size: 24px;
}
.feature-card h3 {
    font-family: 'Noto Serif JP', serif;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 15px;
}
.feature-card p {
    font-size: 13px;
    line-height: 2;
    color: var(--gray-dark);
}

/* INSURANCE BANNER */
.insurance-banner {
    background: linear-gradient(135deg, var(--gold-light), var(--beige));
    padding: 50px 40px;
}
.insurance-banner-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}
.insurance-banner-content h3 {
    font-family: 'Noto Serif JP', serif;
    font-size: 20px;
    font-weight: 500;
    color: var(--gold-dark, var(--gold));
    margin-bottom: 10px;
}
.insurance-banner-content p {
    font-size: 14px;
    color: var(--gray-dark);
    line-height: 1.9;
}
.insurance-banner-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.insurance-banner-tags span {
    padding: 10px 20px;
    background: white;
    font-size: 13px;
    color: var(--gold-dark, var(--gold));
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.insurance-banner-cta {
    padding: 14px 30px;
    background: var(--gold-dark, var(--gold));
    color: white;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.1em;
    white-space: nowrap;
    transition: all 0.3s;
    text-decoration: none;
}
.insurance-banner-cta:hover {
    background: var(--gold);
    transform: translateY(-2px);
}

/* CALENDAR SECTION */
.calendar-section {
    background: var(--white, #fff);
}
.calendar-container {
    max-width: 900px;
    margin: 0 auto;
}
.calendar-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 30px;
}
.calendar-tab {
    padding: 15px 40px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.08em;
    border: none;
    background: var(--gray-light, #f5f5f5);
    color: var(--gray-dark);
    cursor: pointer;
    transition: all 0.3s;
}
.calendar-tab:first-child {
    border-radius: 4px 0 0 4px;
}
.calendar-tab:last-child {
    border-radius: 0 4px 4px 0;
}
.calendar-tab.gynecology.active {
    background: var(--pink);
    color: white;
}
.calendar-tab.beauty.active {
    background: var(--gold);
    color: white;
}
.calendar-tab:hover:not(.active) {
    background: var(--beige);
}
.calendar-content {
    display: none;
}
.calendar-content.active {
    display: block;
}
.calendar-note {
    text-align: center;
    margin-top: 20px;
    font-size: 12px;
    color: var(--gray);
}

/* TROUBLE SECTION */
.trouble-section {
    background: var(--off-white, #fafafa);
}
.trouble-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}
.trouble-category {
    background: white;
    padding: 35px;
    border-radius: 4px;
}
.trouble-category h3 {
    font-family: 'Noto Serif JP', serif;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.trouble-category h3 .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}
.trouble-category.gynecology h3 .dot {
    background: var(--pink);
}
.trouble-category.beauty h3 .dot {
    background: var(--gold);
}
.trouble-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.trouble-list a {
    padding: 10px 18px;
    font-size: 12px;
    border-radius: 4px;
    transition: all 0.3s;
    text-decoration: none;
}
.trouble-category.gynecology .trouble-list a {
    background: var(--pink-light);
    color: var(--pink-dark);
    border: 1px solid rgba(212,165,165,0.2);
}
.trouble-category.gynecology .trouble-list a:hover {
    background: var(--pink);
    color: white;
}
.trouble-category.beauty .trouble-list a {
    background: var(--gold-light);
    color: var(--gold-dark, var(--gold));
    border: 1px solid rgba(201,169,110,0.2);
}
.trouble-category.beauty .trouble-list a:hover {
    background: var(--gold);
    color: white;
}

/* DOCTORS SECTION */
.doctors-section {
    background: var(--white, #fff);
}
.doctors-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}
.doctor-card {
    text-align: center;
    transition: transform 0.3s;
    text-decoration: none;
    color: inherit;
    display: block;
}
.doctor-card:hover {
    transform: translateY(-5px);
}
.doctor-card .photo {
    width: 100%;
    background: var(--gray-light, #f5f5f5);
    border-radius: 4px;
    margin-bottom: 14px;
    overflow: hidden;
}
.doctor-card .photo img {
    width: 100%;
    height: auto;
    display: block;
}
.doctor-card .specialty-wrap {
    margin-bottom: 8px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px;
}
.doctor-card .specialty {
    display: inline-block;
    font-size: 10px;
    color: #fff;
    background: var(--gold, #C9A96E);
    padding: 2px 8px;
    border-radius: 10px;
    line-height: 1.4;
    white-space: nowrap;
}
.doctor-card .name {
    font-family: 'Noto Serif JP', serif;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 2px;
}
.doctor-card .title {
    font-size: 11px;
    color: var(--gray);
}
.more-link {
    font-size: 13px;
    color: var(--gold);
    letter-spacing: 0.1em;
    text-decoration: none;
}
.more-link:hover {
    text-decoration: underline;
}

/* COLUMN SECTION */
.column-section {
    background: var(--gray-light, #f5f5f5);
}
.column-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}
.column-card {
    background: white;
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s;
    text-decoration: none;
    color: inherit;
}
.column-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}
.column-card .thumb {
    width: 100%;
    aspect-ratio: 16/10;
    background: var(--beige);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    font-size: 12px;
    overflow: hidden;
}
.column-card .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.column-card .content {
    padding: 25px;
}
.column-card .meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}
.column-card .category {
    padding: 4px 10px;
    font-size: 10px;
    border-radius: 3px;
}
.column-card .category.gynecology {
    background: rgba(212,165,165,0.2);
    color: var(--pink-dark);
}
.column-card .category.beauty {
    background: rgba(201,169,110,0.15);
    color: var(--gold-dark, var(--gold));
}
.column-card .category.insurance {
    background: var(--gray-light, #f5f5f5);
    color: var(--gray-dark);
}
.column-card .date {
    font-family: 'Cormorant Garamond', serif;
    font-size: 12px;
    color: var(--gray);
}
.column-card .title {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.7;
    margin-bottom: 10px;
}
.column-card .excerpt {
    font-size: 12px;
    color: var(--gray-dark);
    line-height: 1.8;
}
.column-more {
    display: block;
    text-align: center;
    margin-top: 40px;
    font-size: 13px;
    color: var(--gold);
    letter-spacing: 0.1em;
    text-decoration: none;
}
.column-more:hover {
    text-decoration: underline;
}

/* FAQ SECTION */
.faq-section {
    background: var(--white, #fff);
}
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}
.faq-list {
}
.faq-item {
    border-bottom: 1px solid var(--gray-light, #f5f5f5);
}
.faq-question {
    width: 100%;
    padding: 25px 50px 25px 0;
    font-size: 14px;
    font-weight: 500;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    color: var(--text-color);
    transition: color 0.3s;
}
.faq-question:hover {
    color: var(--gold);
}
.faq-question::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    font-weight: 300;
    color: var(--gold);
    transition: transform 0.3s;
}
.faq-item.active .faq-question::after {
    content: "−";
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    font-size: 13px;
    line-height: 2;
    color: var(--gray-dark);
}
.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 25px;
}
.faq-more {
    display: block;
    text-align: center;
    margin-top: 40px;
    font-size: 13px;
    color: var(--gold);
    letter-spacing: 0.1em;
    text-decoration: none;
}
.faq-more:hover {
    text-decoration: underline;
}

/* INFO SECTION */
.info-section {
    background: var(--gray-light, #f5f5f5);
}
.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}
.info-box {
    background: white;
    padding: 35px;
}
.info-box h3 {
    font-family: 'Noto Serif JP', serif;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--beige);
}
.info-box table {
    width: 100%;
    font-size: 13px;
    border-collapse: collapse;
}
.info-box th, .info-box td {
    padding: 10px 5px;
    text-align: left;
    border-bottom: 1px solid var(--gray-light, #f5f5f5);
}
.info-box th {
    width: 100px;
    color: var(--gray-dark);
    font-weight: 400;
}
.access-info p {
    font-size: 13px;
    line-height: 2;
    color: var(--gray-dark);
    margin-bottom: 15px;
}
.access-info .address {
    font-size: 14px;
    color: var(--text-color);
    margin-bottom: 10px;
}
.map-container {
    margin-top: 20px;
    border-radius: 4px;
    overflow: hidden;
}
.map-container iframe {
    display: block;
}

/* NEWS SECTION */
.news-section {
    background: var(--white, #fff);
}
.news-list {
    max-width: 900px;
    margin: 0 auto;
}
.news-item {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 20px 0;
    border-bottom: 1px solid var(--gray-light, #f5f5f5);
    transition: all 0.3s;
    text-decoration: none;
    color: inherit;
}
.news-item:hover {
    padding-left: 10px;
    background: var(--off-white, #fafafa);
}
.news-date {
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    color: var(--gold);
    min-width: 90px;
}
.news-tag {
    padding: 4px 12px;
    font-size: 10px;
    border-radius: 3px;
    min-width: 60px;
    text-align: center;
}
.news-tag.beauty {
    background: rgba(201,169,110,0.15);
    color: var(--gold-dark, var(--gold));
}
.news-tag.gynecology {
    background: rgba(212,165,165,0.2);
    color: var(--pink-dark);
}
.news-tag.info {
    background: var(--gray-light, #f5f5f5);
    color: var(--gray-dark);
}
.news-title {
    flex: 1;
    font-size: 14px;
}
.news-more {
    display: block;
    text-align: center;
    margin-top: 30px;
    font-size: 13px;
    color: var(--gold);
    text-decoration: none;
}
.news-more:hover {
    text-decoration: underline;
}



/* ANIMATIONS */
.split-content {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}
.section-gynecology .split-content {
    animation-delay: 0.2s;
}
.section-beauty .split-content {
    animation-delay: 0.4s;
}
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .split-hero {
        flex-direction: column;
    }
    .split-section {
        min-height: 50vh;
    }
    .split-hero:hover .split-section, .split-hero .split-section:hover {
        flex: 1;
    }
    .split-divider {
        flex-direction: row;
    }
    .divider-line {
        width: 60px;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--gray), transparent);
    }
    .features-grid, .column-grid {
        grid-template-columns: repeat(2,1fr);
    }
    .doctors-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
    .trouble-grid, .info-grid {
        grid-template-columns: 1fr;
    }
    .insurance-banner-inner {
        flex-direction: column;
        text-align: center;
    }
}
@media (max-width: 768px) {
    .split-section {
        padding: 50px 25px;
    }
    .features-grid, .column-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .doctors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .calendar-tab {
        padding: 12px 24px;
        font-size: 12px;
    }
    .news-item {
        flex-wrap: wrap;
        gap: 10px;
    }
}


/* Calendar block titles (no tabs) */
.calendar-block {
    margin-bottom: 50px;
}
.calendar-block:last-child {
    margin-bottom: 0;
}
.calendar-block-title {
    font-family: var(--font-serif, 'Noto Serif JP', serif);
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    padding: 12px 0;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--beige, #EDE6DA);
}
.cal-title-gyn {
    color: #C27C88;
    border-bottom-color: #C27C88;
}
.cal-title-beauty {
    color: var(--gold, #C9A96E);
    border-bottom-color: var(--gold, #C9A96E);
}
