/* =============================================================================
GYNECOLOGY PAGE STYLES
============================================================================= */

:root {
    --pink-lightest: #FDF9FA;
    --pink-light: #FDF7F8;
    --pink-pale: #F8EDEF;
    --pink: #D4A5A5;
    --pink-muted: #C9A0A0;
    --pink-dark: #B08080;
    --pink-darker: #8B6060;
    --rose: #E8D4D4;
}

/* HEADER - Gynecology */
.header-gyn {
    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(212,165,165,0.2);
}
.header-gyn .header-inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header-gyn .logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    color: var(--pink);
    letter-spacing: 0.1em;
    text-decoration: none;
    margin: 0;
    padding: 0;
    font-weight: normal;
    line-height: 1;
}
.header-gyn .logo a {
    color: inherit;
    text-decoration: none;
}
.header-gyn .header-nav {
    display: flex;
    gap: 30px;
}
.header-gyn .header-nav-item {
    font-size: 12px;
    color: var(--gray-dark);
    text-decoration: none;
    letter-spacing: 0.1em;
    transition: color 0.3s;
}
.header-gyn .header-nav-item:hover {
    color: var(--pink);
}
.header-gyn .header-reserve {
    padding: 10px 25px;
    background: var(--pink);
    color: white;
    font-size: 12px;
    text-decoration: none;
    letter-spacing: 0.1em;
    border-radius: 4px;
    transition: all 0.3s;
}
.header-gyn .header-reserve:hover {
    background: var(--pink-dark);
}

/* HERO */
.gyn-hero {
    min-height: 100vh;
    padding-top: 124px;
    background: linear-gradient(135deg, var(--pink-lightest) 0%, var(--pink-pale) 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.gyn-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23D4A5A5' fill-opacity='0.04'%3E%3Ccircle cx='50' cy='50' r='40'/%3E%3C/g%3E%3C/svg%3E");
}
.gyn-hero-inner {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 60px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.gyn-hero-content {
    text-align: left;
}
.gyn-hero-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    letter-spacing: 0.3em;
    color: var(--pink-dark);
    margin-bottom: 20px;
}
.gyn-hero-title {
    font-family: 'Noto Serif JP', serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 400;
    line-height: 1.6;
    color: var(--pink-darker);
    margin-bottom: 30px;
}
.gyn-hero-desc {
    font-size: 15px;
    line-height: 2.2;
    color: var(--gray-dark);
    margin-bottom: 40px;
}
.gyn-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    background: var(--pink);
    color: white;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.1em;
    transition: all 0.3s;
    text-decoration: none;
}
.gyn-hero-cta:hover {
    background: var(--pink-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212,165,165,0.4);
}
.gyn-hero-image {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.gyn-hero-image-main {
    width: 100%;
    max-width: 380px;
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, var(--rose), var(--pink-pale));
    border-radius: 200px 200px 20px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pink-muted);
    font-size: 14px;
    overflow: hidden;
}
.gyn-hero-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gyn-hero-badge {
    position: relative;
    margin-top: -30px;
    background: white;
    padding: 20px 40px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    text-align: center;
    z-index: 2;
}
.gyn-hero-badge p {
    font-size: 11px;
    color: var(--pink);
    margin-bottom: 5px;
}
.gyn-hero-badge strong {
    font-family: 'Noto Serif JP', serif;
    font-size: 14px;
    color: var(--pink-dark);
}

/* SCREENING BANNER */
.screening-banner {
    background: linear-gradient(135deg, var(--pink-light), var(--rose));
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
}
.screening-banner::before {
    content: "";
    position: absolute;
    right: -100px;
    top: -100px;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
}
.screening-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 1;
}
.screening-icon {
    width: 120px;
    height: 120px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(212,165,165,0.2);
}
.screening-icon span {
    font-size: 48px;
}
.screening-content {
    flex: 1;
}
.screening-badge {
    display: inline-block;
    background: var(--pink-dark);
    color: white;
    padding: 6px 16px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    border-radius: 4px;
    margin-bottom: 15px;
}
.screening-content h3 {
    font-family: 'Noto Serif JP', serif;
    font-size: 24px;
    font-weight: 500;
    color: var(--pink-darker);
    margin-bottom: 12px;
}
.screening-content p {
    font-size: 14px;
    color: var(--gray-dark);
    line-height: 1.9;
    margin-bottom: 20px;
}
.screening-points {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.screening-point {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--pink-dark);
}
.screening-point::before {
    content: "✓";
    width: 20px;
    height: 20px;
    background: var(--pink);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}
.screening-cta {
    padding: 14px 32px;
    background: white;
    color: var(--pink-dark);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.1em;
    border: 2px solid var(--pink);
    transition: all 0.3s;
    white-space: nowrap;
    text-decoration: none;
}
.screening-cta:hover {
    background: var(--pink);
    color: white;
}

/* SECTION HEADER - Gynecology */
.gynecology-page .section-header .label {
    color: var(--pink);
}

/* TROUBLE */
.gyn-trouble-section {
    background: var(--white);
}
.trouble-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 14px;
    color: var(--gray-dark);
    line-height: 2;
}
.gyn-trouble-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}
.gyn-trouble-card {
    background: var(--pink-lightest);
    padding: 30px 20px;
    text-align: center;
    border-radius: 8px;
    transition: all 0.3s;
    border: 1px solid transparent;
    text-decoration: none;
    color: inherit;
}
.gyn-trouble-card:hover {
    transform: translateY(-5px);
    border-color: var(--pink);
    box-shadow: 0 15px 40px rgba(212,165,165,0.15);
}
.gyn-trouble-card .icon {
    font-size: 32px;
    margin-bottom: 15px;
}
.gyn-trouble-card h4 {
    font-family: 'Noto Serif JP', serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--pink-dark);
    margin-bottom: 10px;
    line-height: 1.5;
}
.gyn-trouble-card p {
    font-size: 12px;
    color: var(--gray);
    line-height: 1.8;
}

/* MENU */
.gyn-menu-section {
    background: var(--pink-lightest);
}
.gyn-menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}
.gyn-menu-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
    text-decoration: none;
    color: inherit;
}
.gyn-menu-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}
.gyn-menu-card .thumb {
    width: 100%;
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, var(--pink-pale), var(--rose));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}
.gyn-menu-card .content {
    padding: 25px;
}
.gyn-menu-card h4 {
    font-family: 'Noto Serif JP', serif;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--pink-dark);
}
.gyn-menu-card p {
    font-size: 12px;
    color: var(--gray-dark);
    line-height: 1.8;
    margin-bottom: 15px;
}
.gyn-menu-card .link {
    font-size: 12px;
    color: var(--pink);
    display: flex;
    align-items: center;
    gap: 5px;
}
.gyn-menu-card:hover .link {
    text-decoration: underline;
}

/* LIFE STAGE */
.gyn-lifestage-section {
    background: var(--white);
}
.lifestage-container {
    max-width: 1000px;
    margin: 0 auto;
}
.lifestage-visual {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    padding: 0 20px;
}
.lifestage-item {
    text-align: center;
    flex: 1;
}
.lifestage-item .icon {
    font-size: 40px;
    margin-bottom: 10px;
    opacity: 0.8;
}
.lifestage-item .age {
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    color: var(--pink);
    margin-bottom: 5px;
}
.lifestage-item .stage-label {
    font-size: 12px;
    color: var(--gray-dark);
}
.lifestage-bar {
    height: 4px;
    background: linear-gradient(90deg, var(--pink-pale), var(--pink), var(--pink-dark));
    border-radius: 2px;
    margin-bottom: 40px;
}
.lifestage-message {
    text-align: center;
    font-size: 14px;
    color: var(--gray-dark);
    line-height: 2.2;
}
.lifestage-message strong {
    color: var(--pink-dark);
}

/* DOCTOR */
.gyn-doctor-section {
    background: var(--pink-lightest);
}
.gyn-doctor-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: start;
}
.gyn-doctor-photo {
    width: 100%;
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, var(--rose), var(--pink-pale));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pink-muted);
    font-size: 14px;
    overflow: hidden;
}
.gyn-doctor-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gyn-doctor-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 12px;
    letter-spacing: 0.2em;
    color: var(--pink);
    margin-bottom: 10px;
}
.gyn-doctor-name {
    font-family: 'Noto Serif JP', serif;
    font-size: 28px;
    font-weight: 500;
    color: var(--pink-darker);
    margin-bottom: 5px;
}
.gyn-doctor-name-en {
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    color: var(--gray);
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}
.gyn-doctor-title {
    font-size: 13px;
    color: var(--pink-dark);
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--rose);
}
.gyn-doctor-message {
    font-size: 14px;
    line-height: 2.2;
    color: var(--gray-dark);
    margin-bottom: 30px;
}
.gyn-doctor-credentials h5 {
    font-size: 12px;
    color: var(--pink-dark);
    margin-bottom: 12px;
    letter-spacing: 0.1em;
}
.gyn-doctor-credentials ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.gyn-doctor-credentials li {
    padding: 6px 14px;
    background: white;
    font-size: 11px;
    color: var(--gray-dark);
    border-radius: 4px;
}

/* CALENDAR */
.gyn-calendar-section {
    background: var(--white);
}
.gyn-calendar-container {
    max-width: 700px;
    margin: 0 auto;
}
.gyn-calendar-box {
    background: var(--pink-lightest);
    border-radius: 12px;
    padding: 35px;
}
.gyn-calendar-note {
    margin-top: 20px;
    text-align: center;
}
.gyn-calendar-note p {
    font-size: 12px;
    color: var(--gray);
    line-height: 1.8;
}

/* FLOW */
.gyn-flow-section {
    background: var(--white);
}
.gyn-flow-container {
    max-width: 900px;
    margin: 0 auto;
}
.gyn-flow-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.gyn-flow-step {
    display: flex;
    gap: 30px;
    position: relative;
    padding-bottom: 40px;
}
.gyn-flow-step:last-child {
    padding-bottom: 0;
}
.gyn-flow-step::before {
    content: "";
    position: absolute;
    left: 24px;
    top: 50px;
    bottom: 0;
    width: 2px;
    background: var(--rose);
}
.gyn-flow-step:last-child::before {
    display: none;
}
.gyn-flow-number {
    width: 50px;
    height: 50px;
    background: var(--pink);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}
.gyn-flow-content {
    flex: 1;
    padding-top: 10px;
}
.gyn-flow-content h4 {
    font-family: 'Noto Serif JP', serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--pink-dark);
    margin-bottom: 10px;
}
.gyn-flow-content p {
    font-size: 13px;
    color: var(--gray-dark);
    line-height: 1.9;
}

/* FAQ */
.gyn-faq-section {
    background: var(--pink-lightest);
}
.gyn-faq-container {
    max-width: 800px;
    margin: 0 auto;
}
.gyn-faq-list {
}
.gyn-faq-item {
    background: white;
    margin-bottom: 12px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}
.gyn-faq-question {
    width: 100%;
    padding: 20px 55px 20px 25px;
    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;
}
.gyn-faq-question:hover {
    color: var(--pink-dark);
}
.gyn-faq-question::after {
    content: "+";
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    font-weight: 300;
    color: var(--pink);
    transition: transform 0.3s;
}
.gyn-faq-item.active .gyn-faq-question::after {
    content: "−";
}
.gyn-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);
    padding: 0 25px;
}
.gyn-faq-item.active .gyn-faq-answer {
    max-height: 300px;
    padding: 0 25px 22px;
}
.gyn-faq-more {
    display: inline-block;
    padding: 14px 40px;
    background: white;
    border: 1px solid var(--pink);
    color: var(--pink-dark);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    transition: all 0.3s;
    border-radius: 4px;
    text-decoration: none;
}
.gyn-faq-more:hover {
    background: var(--pink);
    color: white;
}

/* INFO */
.gyn-info-section {
    background: var(--white);
}
.gyn-info-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--pink-lightest);
    border-radius: 12px;
    padding: 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}
.gyn-info-box h3 {
    font-family: 'Noto Serif JP', serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--pink-dark);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--rose);
}
.gyn-info-box table {
    width: 100%;
    font-size: 13px;
}
.gyn-info-box th, .gyn-info-box td {
    padding: 10px 5px;
    text-align: left;
    border-bottom: 1px solid var(--pink-pale);
}
.gyn-info-box th {
    width: 80px;
    color: var(--pink-dark);
    font-weight: 400;
}
.gyn-info-box .info-note {
    font-size: 12px;
    color: var(--gray);
    margin-top: 15px;
}
.gyn-info-reserve {
    margin-top: 10px;
}
.gyn-info-reserve-btn {
    display: block;
    width: 100%;
    padding: 16px;
    background: var(--pink);
    color: white;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.1em;
    transition: all 0.3s;
    border-radius: 4px;
    text-decoration: none;
}
.gyn-info-reserve-btn:hover {
    background: var(--pink-dark);
}
.gyn-info-tel {
    margin-top: 15px;
    text-align: center;
}
.gyn-info-tel-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    color: var(--pink-dark);
}
.gyn-info-tel-note {
    font-size: 11px;
    color: var(--gray);
    margin-top: 5px;
}

/* CTA BANNER - 美容サイトへの誘導（ゴールド配色） */
.gyn-cta-banner {
    background: linear-gradient(135deg, #C9A96E, #B8954F);
    padding: 60px 40px;
    text-align: center;
}
.gyn-cta-banner h3 {
    font-family: 'Noto Serif JP', serif;
    font-size: 22px;
    font-weight: 400;
    color: white;
    margin-bottom: 15px;
}
.gyn-cta-banner p {
    font-size: 14px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
}
.gyn-cta-banner .btn {
    display: inline-block;
    padding: 16px 50px;
    background: white;
    color: #B8954F;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.1em;
    transition: all 0.3s;
    text-decoration: none;
}
.gyn-cta-banner .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* FOOTER - Gynecology */
.footer-gyn {
    padding: 60px 40px 30px;
    background: var(--black);
    color: var(--white);
}
.footer-gyn .footer-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 50px;
    margin-bottom: 40px;
}
.footer-gyn .footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    color: var(--pink);
    margin-bottom: 15px;
}
.footer-gyn .footer-address {
    font-size: 12px;
    line-height: 2;
    color: var(--gray);
}
.footer-gyn .footer-nav {
    display: flex;
    gap: 50px;
}
.footer-gyn .footer-nav-col h4 {
    font-size: 12px;
    color: var(--pink);
    margin-bottom: 15px;
    letter-spacing: 0.1em;
}
.footer-gyn .footer-nav-col ul {
    list-style: none;
}
.footer-gyn .footer-nav-col li {
    margin-bottom: 8px;
}
.footer-gyn .footer-nav-col a {
    font-size: 12px;
    color: var(--gray);
    transition: color 0.3s;
}
.footer-gyn .footer-nav-col a:hover {
    color: var(--pink);
}
.footer-gyn .footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* ANIMATION */
.gyn-hero-content, .gyn-hero-image {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}
.gyn-hero-image {
    animation-delay: 0.3s;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .gyn-hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .gyn-hero-image {
        max-width: 350px;
        margin: 0 auto;
    }
    .gyn-hero-badge {
        left: 50%;
        transform: translateX(-50%);
        bottom: -20px;
    }
    .screening-inner {
        flex-direction: column;
        text-align: center;
    }
    .gyn-trouble-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gyn-menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gyn-doctor-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .gyn-doctor-photo {
        max-width: 250px;
        margin: 0 auto;
    }
    .gyn-info-container {
        grid-template-columns: 1fr;
    }
    .footer-gyn .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-gyn .footer-nav {
        justify-content: center;
    }
}
@media (max-width: 768px) {
    .gyn-hero {
        min-height: auto;
        padding-bottom: 80px;
    }
    .gyn-hero-inner {
        padding: 40px 20px;
    }
    .gyn-trouble-grid, .gyn-menu-grid {
        grid-template-columns: 1fr;
    }
    .lifestage-visual {
        flex-wrap: wrap;
        gap: 20px;
    }
    .lifestage-item {
        flex: 0 0 calc(33.33% - 15px);
    }
    .gyn-flow-step {
        flex-direction: column;
        gap: 15px;
    }
    .gyn-flow-step::before {
        left: 24px;
        top: 50px;
    }
    .gyn-info-container {
        padding: 30px 20px;
    }
    .footer-gyn .footer-nav {
        flex-direction: column;
        gap: 30px;
    }
}

/* Secondary Button */
.gyn-btn-secondary {
    display: inline-block;
    padding: 14px 30px;
    font-size: 13px;
    color: var(--pink);
    border: 1px solid var(--pink);
    text-decoration: none;
    letter-spacing: 0.1em;
    transition: all 0.3s;
}
.gyn-btn-secondary:hover {
    background: var(--pink);
    color: white;
}

