/*
Theme Name: 名門大学物語
Theme URI: https://meimondai.com
Description: 名門大学物語 高級デリヘル - WordPressテーマ
Author: Tokyo Label Group
Version: 1.0.0
Text Domain: meimondai
License: Private
*/

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
    /* Colors */
    --navy: #1E3A5F;
    --navy-dark: #0D2137;
    --navy-light: #2A4A6F;
    --gold: #C9A962;
    --gold-light: #D4B978;
    --cream: #FAF8F5;
    --white: #FFFFFF;
    --text-dark: #1a1a1a;
    --text-light: rgba(255, 255, 255, 0.85);
    --text-muted: rgba(255, 255, 255, 0.6);
}

/* ============================================
   RESET & BASE
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Shippori Mincho', 'Hiragino Mincho ProN', serif;
    background: var(--cream);
    color: var(--text-dark);
    line-height: 1.8;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
}

/* ============================================
   AUTHENTICATION PAGE (front-page.php)
   ============================================ */

/* Auth Page Body */
body.auth-page {
    font-family: 'Shippori Mincho', 'Hiragino Mincho ProN', serif;
    background: var(--navy-dark);
    color: var(--white);
    overflow-x: hidden;
    height: 100%;
}

/* Background */
.auth-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.auth-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/01_auth.png');
    background-size: cover;
    background-position: center;
    filter: blur(2px);
}

.auth-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(13, 33, 55, 0.80) 0%,
        rgba(30, 58, 95, 0.65) 50%,
        rgba(13, 33, 55, 0.85) 100%
    );
}

/* Particles */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: floatUp 8s infinite;
}

@keyframes floatUp {
    0% {
        opacity: 0;
        transform: translateY(100vh) scale(0);
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        opacity: 0;
        transform: translateY(-20vh) scale(1);
    }
}

/* Corner Frames */
.corner-frame {
    position: fixed;
    width: 80px;
    height: 80px;
    border: 1px solid var(--gold);
    opacity: 0.4;
    z-index: 1;
}

.corner-frame--tl {
    top: 30px;
    left: 30px;
    border-right: none;
    border-bottom: none;
}

.corner-frame--tr {
    top: 30px;
    right: 30px;
    border-left: none;
    border-bottom: none;
}

.corner-frame--bl {
    bottom: 30px;
    left: 30px;
    border-right: none;
    border-top: none;
}

.corner-frame--br {
    bottom: 30px;
    right: 30px;
    border-left: none;
    border-top: none;
}

/* Main Container */
.auth-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 60px 20px;
    text-align: center;
    position: relative;
    z-index: 10;
}

/* Logo */
.auth-logo {
    margin-bottom: 50px;
    animation: fadeInDown 1s ease-out 0.3s both;
}

.auth-logo__group {
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.3em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 15px;
}

.auth-logo__main {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 6vw, 48px);
    font-weight: 400;
    letter-spacing: 0.15em;
    color: var(--white);
    margin-bottom: 12px;
}

.auth-logo__sub {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(10px, 1.8vw, 13px);
    font-weight: 300;
    letter-spacing: 0.25em;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.auth-logo__est {
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.2em;
    color: var(--text-muted);
}

/* Divider */
.auth-divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0 auto 35px;
    animation: fadeIn 1s ease-out 0.5s both;
}

/* Select Label */
.auth-select-label {
    font-size: 14px;
    letter-spacing: 0.1em;
    color: var(--text-light);
    margin-bottom: 30px;
    animation: fadeIn 1s ease-out 0.6s both;
}

/* Buttons */
.auth-buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 40px;
    margin-bottom: 45px;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.auth-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 200px;
    background: rgba(30, 58, 95, 0.4);
    border: 1px solid var(--gold);
    border-radius: 4px;
    text-decoration: none;
    color: var(--white);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.auth-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.auth-btn:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(201, 169, 98, 0.2);
    border-color: var(--gold-light);
}

.auth-btn:hover::before {
    opacity: 1;
}

.auth-btn:hover .auth-btn__label,
.auth-btn:hover .auth-btn__sub,
.auth-btn:hover .auth-btn__enter {
    color: var(--navy-dark);
}

.auth-btn__content {
    position: relative;
    z-index: 1;
}

.auth-btn__enter {
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.2em;
    color: var(--gold);
    margin-bottom: 8px;
    transition: color 0.4s ease;
}

.auth-btn__label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 500;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
    transition: color 0.4s ease;
}

.auth-btn__sub {
    font-size: 14px;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    transition: color 0.4s ease;
}

/* Age Notice */
.auth-age-notice {
    margin-bottom: 35px;
    animation: fadeIn 1s ease-out 1s both;
}

.auth-age-notice__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.25em;
    color: var(--gold);
    margin-bottom: 8px;
}

.auth-age-notice__text {
    font-size: 14px;
    letter-spacing: 0.15em;
    color: var(--text-muted);
}

/* Catch Copy */
.auth-catch {
    max-width: 500px;
    animation: fadeIn 1s ease-out 1.2s both;
}

.auth-catch__main {
    font-size: clamp(15px, 2.5vw, 18px);
    line-height: 2.2;
    letter-spacing: 0.1em;
    color: var(--text-light);
    margin-bottom: 20px;
}

.auth-catch__main span {
    display: block;
}

.auth-catch__desc {
    font-size: 14px;
    line-height: 1.8;
    letter-spacing: 0.08em;
    color: var(--text-muted);
}

/* Footer */
.auth-footer {
    position: fixed;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: fadeIn 1s ease-out 1.4s both;
}

.auth-footer__copyright {
    font-size: 14px;
    letter-spacing: 0.08em;
    color: var(--text-muted);
}

/* Auth Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Auth Responsive */
@media (max-width: 768px) {
    .corner-frame {
        width: 50px;
        height: 50px;
    }
    
    .corner-frame--tl,
    .corner-frame--tr {
        top: 20px;
    }
    
    .corner-frame--tl,
    .corner-frame--bl {
        left: 20px;
    }
    
    .corner-frame--tr,
    .corner-frame--br {
        right: 20px;
    }
    
    .corner-frame--bl,
    .corner-frame--br {
        bottom: 60px;
    }
    
    .auth-container {
        padding: 40px 20px;
    }
    
    .auth-buttons {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .auth-btn {
        width: 260px;
        height: 100px;
        flex-direction: row;
        gap: 20px;
        padding: 0 30px;
    }
    
    .auth-btn__content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .auth-btn__label {
        font-size: 28px;
        margin-bottom: 4px;
    }
    
    .auth-catch__main {
        font-size: 14px;
        line-height: 2;
    }
}

/* ============================================
   HEADER (共通)
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(201, 169, 98, 0.2);
}

.header__inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__logo {
    text-decoration: none;
}

.header__logo-group {
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    letter-spacing: 0.2em;
    color: var(--gold);
}

.header__logo-main {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--navy);
}

.header__nav {
    display: flex;
    gap: 30px;
}

.header__nav a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    letter-spacing: 0.1em;
    color: var(--navy);
    text-decoration: none;
    transition: color 0.3s;
}

.header__nav a:hover {
    color: var(--gold);
}

.header__tel {
    text-align: right;
}

.header__tel-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    letter-spacing: 0.05em;
    color: var(--navy);
    text-decoration: none;
}

.header__tel-time {
    font-size: 14px;
    color: #666;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

/* エリア別ヒーロー背景 */
body.area-tokyo .hero__bg {
    background-image: url('images/02_hero_tokyo.png');
}

body.area-osaka .hero__bg {
    background-image: url('images/03_hero_osaka.png');
}

.hero__bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(13, 33, 55, 0.6) 0%,
        rgba(30, 58, 95, 0.5) 50%,
        rgba(13, 33, 55, 0.7) 100%
    );
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 120px 20px 80px;
}

.hero__group {
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    letter-spacing: 0.3em;
    color: var(--gold);
    margin-bottom: 15px;
}

.hero__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 7vw, 60px);
    font-weight: 400;
    letter-spacing: 0.15em;
    margin-bottom: 20px;
}

.hero__catch {
    font-size: clamp(18px, 3vw, 26px);
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: 2;
    margin-bottom: 15px;
}

.hero__sub {
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    letter-spacing: 0.2em;
    color: var(--gold);
    margin-bottom: 40px;
}

.hero__desc {
    font-size: 14px;
    line-height: 2.2;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto 50px;
}

.hero__buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
}

.hero__btn {
    display: inline-block;
    padding: 15px 40px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    letter-spacing: 0.15em;
    text-decoration: none;
    border: 1px solid var(--gold);
    transition: all 0.4s;
}

.hero__btn--primary {
    background: var(--gold);
    color: var(--navy-dark);
}

.hero__btn--primary:hover {
    background: var(--gold-light);
}

.hero__btn--secondary {
    background: transparent;
    color: var(--white);
}

.hero__btn--secondary:hover {
    background: var(--gold);
    color: var(--navy-dark);
}

/* Hero Badges */
.hero__badges {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero__badge {
    text-align: center;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(201, 169, 98, 0.3);
    border-radius: 4px;
    min-width: 100px;
}

.hero__badge-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 500;
    color: var(--gold);
}

.hero__badge-label {
    font-size: 14px;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 5px;
}

/* ============================================
   TICKER
   ============================================ */
.ticker {
    background: var(--navy);
    padding: 12px 0;
    overflow: hidden;
}

.ticker__track {
    display: flex;
    animation: ticker 30s linear infinite;
}

.ticker__item {
    flex-shrink: 0;
    padding: 0 40px;
    font-size: 14px;
    letter-spacing: 0.1em;
    color: var(--gold);
    white-space: nowrap;
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================
   SECTION COMMON
   ============================================ */
.section {
    padding: 100px 20px;
}

.section--navy {
    background: var(--navy);
    color: var(--white);
}

.section__inner {
    max-width: 1100px;
    margin: 0 auto;
}

.section__header {
    text-align: center;
    margin-bottom: 60px;
}

.section__label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    letter-spacing: 0.3em;
    color: var(--gold);
    margin-bottom: 15px;
}

.section__title {
    font-size: clamp(22px, 4vw, 28px);
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: 1.8;
}

.section__more {
    text-align: center;
}

.section__more-btn {
    display: inline-block;
    padding: 15px 50px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    letter-spacing: 0.15em;
    color: var(--navy);
    text-decoration: none;
    border: 1px solid var(--gold);
    transition: all 0.3s;
}

.section__more-btn:hover {
    background: var(--gold);
    color: var(--white);
}

.section--navy .section__more-btn {
    color: var(--white);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about__text {
    text-align: center;
    font-size: 16px;
    line-height: 2.5;
    margin-bottom: 60px;
}

.about__stats {
    display: flex;
    justify-content: center;
    gap: 60px;
}

.about__stat {
    text-align: center;
}

.about__stat-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 400;
    color: var(--gold);
}

.about__stat-unit {
    font-size: 16px;
    color: var(--gold);
}

.about__stat-label {
    font-size: 14px;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 10px;
}

/* ============================================
   MEMBERS SECTION
   ============================================ */
.members {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    padding: 80px 20px;
    text-align: center;
    color: var(--white);
}

.members__inner {
    max-width: 700px;
    margin: 0 auto;
}

.members__label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    letter-spacing: 0.3em;
    color: var(--gold);
    margin-bottom: 15px;
}

.members__title {
    font-size: clamp(20px, 3.5vw, 26px);
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: 1.8;
    margin-bottom: 25px;
}

.members__text {
    font-size: 16px;
    line-height: 2;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 15px;
}

.members__benefits {
    font-size: 16px;
    color: var(--gold);
    margin-bottom: 30px;
    line-height: 2;
}

.members__group {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 15px;
}

.members__btn {
    display: inline-block;
    padding: 15px 50px;
    background: #06C755;
    color: var(--white);
    font-size: 14px;
    letter-spacing: 0.1em;
    text-decoration: none;
    border-radius: 4px;
    transition: opacity 0.3s;
}

.members__btn:hover {
    opacity: 0.9;
}

/* ============================================
   LADIES GRID
   ============================================ */
.ladies-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.lady-card {
    background: var(--white);
    border: 1px solid rgba(201, 169, 98, 0.2);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.lady-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.lady-card__image {
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, #e8e8e8 0%, #f5f5f5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 14px;
    position: relative;
}

.lady-card__new {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--gold);
    color: var(--white);
    font-size: 14px;
    letter-spacing: 0.1em;
    padding: 4px 10px;
}

.lady-card__info {
    padding: 20px;
    text-align: center;
}

.lady-card__name {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 8px;
}

.lady-card__detail {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.lady-card__tags {
    font-size: 14px;
    color: var(--gold);
}

/* ============================================
   CONCEPT SECTION
   ============================================ */
.concept__text {
    text-align: center;
    font-size: 16px;
    line-height: 2.5;
    max-width: 700px;
    margin: 0 auto 50px;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border: 1px solid rgba(201, 169, 98, 0.2);
}

.feature__icon {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    letter-spacing: 0.25em;
    color: var(--gold);
    margin-bottom: 20px;
}

.feature__title {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--navy);
    margin-bottom: 20px;
}

.feature__text {
    font-size: 14px;
    line-height: 2;
    color: #666;
}

/* ============================================
   FAQ PREVIEW
   ============================================ */
.faq-preview {
    text-align: center;
}

.faq-preview__text {
    font-size: 14px;
    line-height: 2;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta {
    text-align: center;
    padding: 80px 20px;
    background: var(--navy);
    color: var(--white);
}

.cta__title {
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
}

.cta__sub {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}

.cta__tel {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    letter-spacing: 0.05em;
    color: var(--gold);
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
}

.cta__time {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

.cta__buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.cta__btn {
    display: inline-block;
    padding: 15px 40px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    letter-spacing: 0.1em;
    text-decoration: none;
    border: 1px solid var(--gold);
    transition: all 0.3s;
}

.cta__btn--primary {
    background: var(--gold);
    color: var(--navy-dark);
}

.cta__btn--secondary {
    background: transparent;
    color: var(--white);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--navy-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 20px 30px;
}

.footer__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 40px;
}

.footer__logo-group {
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    letter-spacing: 0.2em;
    color: var(--gold);
    margin-bottom: 10px;
}

.footer__logo-main {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    letter-spacing: 0.1em;
    color: var(--white);
    margin-bottom: 15px;
}

.footer__catch {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.footer__nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 40px;
}

.footer__nav a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer__nav a:hover {
    color: var(--gold);
}

.footer__contact {
    text-align: right;
}

.footer__tel {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    color: var(--gold);
    text-decoration: none;
}

.footer__time {
    font-size: 14px;
    margin-top: 5px;
}

.footer__copy {
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ============================================
   RESPONSIVE - 1024px
   ============================================ */
@media (max-width: 1024px) {
    .header__nav {
        display: none;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .ladies-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer__nav {
        justify-content: center;
    }
    
    .footer__contact {
        text-align: center;
    }
}

/* ============================================
   RESPONSIVE - 768px
   ============================================ */
@media (max-width: 768px) {
    .header__inner {
        padding: 15px 20px;
    }
    
    .hero__buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero__badges {
        gap: 15px;
    }
    
    .about__stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .ladies-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 0 auto 50px;
    }
    
    .cta__buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* ============================================
   PAGE HERO (サブページ共通)
   ============================================ */
.page-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy);
    margin-top: 80px;
    overflow: hidden;
}

.page-hero--small {
    height: auto;
    min-height: 200px;
    padding: 60px 20px;
}

.page-hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.page-hero__bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(13, 33, 55, 0.7) 0%,
        rgba(30, 58, 95, 0.6) 100%
    );
}

/* ページ別ヒーロー背景 */
.page-concept .page-hero__bg { background-image: url('images/04_concept.png'); }
.page-ladies .page-hero__bg { background-image: url('images/05_ladies.png'); }
.page-reserve .page-hero__bg { background-image: url('images/06_reserve.png'); }
.page-system .page-hero__bg { background-image: url('images/07_system.png'); }
.page-faq .page-hero__bg { background-image: url('images/08_faq.png'); }
.page-recruit .page-hero__bg { background-image: url('images/09_recruit.png'); }
.page-company .page-hero__bg,
.page-policy .page-hero__bg { background-image: url('images/10_company.png'); }

.page-hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
}

.page-hero__label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    letter-spacing: 0.3em;
    color: var(--gold);
    margin-bottom: 20px;
}

.page-hero__title {
    font-family: 'Shippori Mincho', serif;
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 500;
    letter-spacing: 0.1em;
}

.page-hero__area {
    margin-top: 15px;
    font-size: 14px;
    color: var(--gold);
}

/* ============================================
   CONCEPT PAGE
   ============================================ */
.concept-block__text {
    font-size: 18px;
    line-height: 2.4;
    text-align: center;
    letter-spacing: 0.1em;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.philosophy-item {
    text-align: center;
}

.philosophy-item__title {
    font-family: 'Shippori Mincho', serif;
    font-size: 24px;
    color: var(--gold);
    margin-bottom: 20px;
}

.philosophy-item__text {
    font-size: 14px;
    line-height: 2;
}

/* ============================================
   FAQ PAGE
   ============================================ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(201, 169, 98, 0.3);
    padding: 30px 0;
}

.faq-item__question {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 20px;
}

.faq-item__q {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: var(--gold);
    color: var(--navy-dark);
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    border-radius: 50%;
    flex-shrink: 0;
}

.faq-item__answer {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding-left: 45px;
}

.faq-item__a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    border-radius: 50%;
    flex-shrink: 0;
}

.faq-item__answer p {
    font-size: 14px;
    line-height: 1.8;
}

/* ============================================
   SYSTEM PAGE
   ============================================ */
.price-table {
    max-width: 600px;
    margin: 0 auto 30px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid rgba(201, 169, 98, 0.3);
}

.price-row--header {
    background: rgba(201, 169, 98, 0.1);
    font-weight: 500;
}

.price-row__price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    color: var(--gold);
}

.price-note {
    text-align: center;
    font-size: 14px;
    color: var(--text-muted);
}

.option-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.option-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(201, 169, 98, 0.3);
}

.option-item__price {
    color: var(--gold);
}

.notes-list {
    list-style: none;
    max-width: 600px;
    margin: 0 auto;
}

.notes-list li {
    padding: 10px 0 10px 25px;
    position: relative;
}

.notes-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--gold);
}

/* ============================================
   RECRUIT PAGE
   ============================================ */
.recruit-intro__text {
    font-size: 18px;
    line-height: 2.2;
    text-align: center;
}

.requirements-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 500px;
    margin: 0 auto;
}

.requirement-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.requirement-item__icon {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    color: var(--gold);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.benefit-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(201, 169, 98, 0.1);
    border: 1px solid rgba(201, 169, 98, 0.3);
}

.benefit-item__title {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
}

.benefit-item__text {
    font-size: 14px;
    color: var(--text-muted);
}

.recruit-contact {
    text-align: center;
}

.recruit-contact__text {
    font-size: 16px;
    line-height: 2;
    margin-bottom: 30px;
}

.recruit-contact__btn {
    display: inline-block;
    padding: 15px 50px;
    background: #06C755;
    color: var(--white);
    font-size: 16px;
    border-radius: 4px;
}

/* ============================================
   RESERVE PAGE
   ============================================ */
.reserve-intro__text {
    font-size: 18px;
    line-height: 2;
    text-align: center;
}

.reserve-contact {
    text-align: center;
}

.reserve-contact__tel {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    color: var(--gold);
    margin-bottom: 10px;
}

.reserve-contact__time {
    font-size: 14px;
    margin-bottom: 20px;
}

.reserve-contact__line {
    display: inline-block;
    padding: 12px 40px;
    background: #06C755;
    color: var(--white);
    border-radius: 4px;
}

.flow-list {
    max-width: 600px;
    margin: 0 auto;
}

.flow-item {
    display: flex;
    gap: 30px;
    padding: 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.flow-item__num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    color: var(--gold);
}

.flow-item__title {
    font-size: 18px;
    margin-bottom: 10px;
}

.flow-item__text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   LADIES PAGE
   ============================================ */
.ladies-filter {
    background: var(--cream);
    padding: 20px;
    border-bottom: 1px solid rgba(201, 169, 98, 0.2);
}

.ladies-filter__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.ladies-filter__btn {
    padding: 10px 30px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    letter-spacing: 0.15em;
    color: var(--navy);
    border: 1px solid var(--gold);
    background: transparent;
    transition: all 0.3s;
}

.ladies-filter__btn:hover,
.ladies-filter__btn.is-active {
    background: var(--gold);
    color: var(--navy-dark);
}

.ladies-grid--full {
    grid-template-columns: repeat(4, 1fr);
}

.ladies-note {
    text-align: center;
    font-size: 14px;
    color: #666;
    margin-top: 40px;
    line-height: 1.8;
}

/* ============================================
   LEGAL PAGES (Policy, Company)
   ============================================ */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(201, 169, 98, 0.3);
}

.legal-content h3 {
    font-size: 16px;
    margin: 30px 0 15px;
    color: var(--gold);
}

.legal-content p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-content ul {
    margin: 0 0 15px 20px;
}

.legal-content li {
    font-size: 14px;
    line-height: 1.8;
}

.company-info {
    max-width: 600px;
    margin: 0 auto;
}

.company-info__row {
    display: flex;
    border-bottom: 1px solid rgba(201, 169, 98, 0.3);
    padding: 20px 0;
}

.company-info__row dt {
    width: 150px;
    font-weight: 500;
    color: var(--gold);
}

.company-info__row dd {
    flex: 1;
}

/* ============================================
   RESPONSIVE - ADDITIONAL PAGES
   ============================================ */
@media (max-width: 768px) {
    .page-hero {
        margin-top: 60px;
        min-height: 300px;
    }
    
    .philosophy-grid {
        grid-template-columns: 1fr;
    }
    
    .option-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .faq-item__answer {
        padding-left: 0;
    }
}
