/* =========================================
   Recruit White Theme Stylesheet
   ========================================= */

/* =========================================
   1. Variables & Reset
   ========================================= */
:root {
    /* White Theme Colors */
    --bg-body: #ffffff;
    --bg-section: #f9f9f9; /* Light gray for section contrast */
    --bg-card: #ffffff;
    --bg-footer: #1a1a1a; /* Keep footer dark for contrast anchor */
    
    --text-main: #121212;
    --text-muted: #666666;
    --text-on-dark: #f5f5f5;

    --uzi-gold: #bf9b30;
    --uzi-gold-light: #e6c86e;
    
    --border-light: rgba(0, 0, 0, 0.08);
    --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.05);
    
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Noto Sans JP', sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}
/* button:hover {
    color: black;
} */
body {
    font-family: var(--font-sans);
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* =========================================
   2. Utility Classes
   ========================================= */
.uzi-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.uzi-section {
    padding: 100px 0;
    position: relative;
}

/* Background Utilities for White Theme */
.bg-white { background-color: var(--bg-body); }
.bg-gray { background-color: var(--bg-section); }
.bg-dark { background-color: var(--bg-footer); color: var(--text-on-dark); }

.text-gold { color: var(--uzi-gold); }
.text-center { text-align: center; }

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

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

@media (max-width: 768px) {
    .grid-2, .grid-3 {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
/* 769px以上は改行しない */
.responsive-br {
    display: none;
}

/* 768px以下の時だけ改行 */
@media (max-width: 768px) {
    .responsive-br {
        display: block;
        width: 100%;
        height: 0;
    }
}

/* Animation Classes */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }

/* =========================================
   3. Navigation
   ========================================= */
.uzi-nav {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0);
    transition: var(--transition);
}

.uzi-nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-light);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 10px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo {
    width: 15%;
	max-width: 100px;
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-main);
    display: flex;
    align-items: center;
}

.nav-logo img {
    width: 100%;
    height: auto;
}

/* Simulating text logo if image is white-only */
.nav-logo-text {
    color: var(--text-main);
}

.nav-links {
    display: none;
}

@media (min-width: 769px) {
    .nav-links {
        display: flex;
        align-items: center;
        align-items: center;
        justify-content: space-evenly;
        width: 100%;
    }

    .nav-links a {
		display: flex;
        font-size: 1rem;
        letter-spacing: 0.1em;
        color: var(--text-main);
        font-weight: 500;
		gap: 5px;
    }
	.nav-links img {
		width: 20px;
	}

    .nav-links a:not(.nav-btn):hover {
        color: var(--uzi-gold);
    }

    .nav-btn {
        background-color: white;
        color: #fff;
        padding: 10px 24px;
        font-weight: bold;
        font-size: 0.9rem;
        border-radius: 10px;
        border: var(--uzi-gold) solid 1px;
    }

    .nav-btn:hover {
        background-color: var(--uzi-gold-light);
        color: #fff;
    }
}

.nav-toggle {
    display: block;
    background: none;
    border: none;
    color: var(--text-main);
    cursor: pointer;
}

.nav-toggle:hover {
    color: var(--text-main);
}

@media (min-width: 769px) {
    .nav-toggle { display: none; }
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: var(--bg-body);
    transform: translateY(-100%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
    z-index: 999;
    border-bottom: 1px solid var(--border-light);
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.mobile-link {
    display: block;
    text-align: center;
    padding: 20px;
    border-bottom: 1px solid var(--border-light);
    letter-spacing: 0.1em;
    color: var(--text-main);
}

.mobile-link.highlight {
    color: var(--uzi-gold);
    font-weight: bold;
}

/* =========================================
   4. Hero Section
   ========================================= */
.uzi-hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Hero Image Path - ensure this matches your upload */
    background-image: url('../images/main-visual.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    text-align: center;
}
@media (max-width: 768px) {
    .uzi-hero {
        top: 80px;
    }
}

@media (max-width: 426px) {
    .uzi-hero {
        height: 400px;
        background-position-x: 44%;
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    /* Light overlay for white theme */
    background: linear-gradient(to bottom right, #ffffff5f, #ffffff5f);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-subtitle {
    color: var(--uzi-gold);
    letter-spacing: 0.3em;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-size: 1.5rem;
    text-shadow: 1px 1px 5px #ffffff, -1px -1px 5px #ffffff;
}
@media (max-width: 426px) {
    .hero-subtitle {
        color: var(--uzi-gold);
        letter-spacing: 0.3em;
        font-weight: bold;
        text-transform: uppercase;
        font-size: 1rem;
        position: relative;
        top: -90px;
    }
}
.hero-subtitle2 {
    color: var(--uzi-gold);
    letter-spacing: 0.3em;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-size: 1.5rem;
    text-shadow: 1px 1px 5px #ffffff, -1px -1px 5px #ffffff;
}
@media (max-width: 426px) {
    .hero-subtitle2 {
    color: var(--uzi-gold);
    letter-spacing: 0.3em;
    font-weight: bold;
    margin-bottom: 0px;
    text-transform: uppercase;
    font-size: 1.3rem;
    position: absolute;
    top: 37px;
    }
}
.hero-title {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--text-main);
    text-shadow: 1px 1px 5px #ffffff, -1px -1px 5px #ffffff;
}
@media (max-width: 600px) {
    .hero-title { 
        font-size: 2.5rem; 
    }
}
@media (max-width: 426px) {
    .hero-title { 
        font-size: 29px;
        position: relative;
        top: 60px;
    }
}

.text-gradient {
    background: linear-gradient(to right, var(--uzi-gold), #9e7f22);
    -webkit-background-clip: text;
    color: transparent;
}

.hero-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 50px;
    font-weight: 400;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--uzi-gold);
    animation: bounce 2s infinite;
}
@media (max-width: 768px) {
    .scroll-indicator {
        bottom: 120px;
    }
}
@media (max-width: 426px) {
    .scroll-indicator {
        bottom: 75px;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translate(-50%, 0);}
    40% {transform: translate(-50%, -10px);}
    60% {transform: translate(-50%, -5px);}
}

/* =========================================
   5. Section Headers & Common
   ========================================= */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--text-main);
    margin-bottom: 15px;
}

.section-line {
    width: 80px;
    height: 4px;
    background-color: var(--uzi-gold);
    margin: 0 auto 20px;
}

.section-subtitle {
    color: var(--text-muted);
    letter-spacing: 0.1em;
    font-size: 0.9rem;
}

.section-header p:last-child {
    color: var(--text-muted);
    margin-top: 1rem;
}

/* =========================================
   6. Cards (About)
   ========================================= */
.glass-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    padding: 20px;
    transition: var(--transition);
    box-shadow: var(--shadow-card);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
}

.glass-card:hover {
    border-color: var(--uzi-gold);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(191, 155, 48, 0.15);
}

.card-icon {
    color: var(--uzi-gold);
    margin-bottom: 20px;
    width: 48px;
    height: 48px;
}

.card-icon svg {
    width: 48px;
    height: 48px;
}

.glass-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--text-main);
}

.glass-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.8;
    margin-top: auto;
}

.glass-card img {
    border-radius: 4px;
    width: 100%;
    object-fit: cover;
    margin-top: 15px;
}

/* =========================================
   7. Pricing Section
   ========================================= */
.texture-bg {
    background-color: var(--bg-section);
    background-image: radial-gradient(#e0e0e0 1px, transparent 1px);
    background-size: 20px 20px;
}

.price-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    padding: 40px 15px;
    position: relative;
    transition: var(--transition);
    box-shadow: var(--shadow-card);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
}

.price-card:hover {
    border-color: var(--uzi-gold);
    transform: translateY(-5px);
}

.highlight-card {
/*     background: #fff;
    border: 1px solid var(--uzi-gold);
    box-shadow: 0 0 30px rgba(191,155,48,0.15); */
}

.plan-tag {
    position: absolute;
    top: 0;
    left: 0;
    background: var(--text-main);
    color: #fff;
    font-size: 0.75rem;
    font-weight: bold;
    padding: 4px 16px;
    letter-spacing: 0.1em;
    border-top-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.plan-tag.gold {
    background: var(--uzi-gold);
}

.plan-name {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-style: italic;
    margin-bottom: 5px;
    color: var(--text-main);
}

.text-gold { color: var(--uzi-gold); }

.plan-desc {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-bottom: 20px;
}

.detail-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--uzi-gold); /* Solid gold button */
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
/*     width: 100%; */
    margin-top: auto;
}

.detail-btn:hover {
    background: var(--uzi-gold-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(191, 155, 48, 0.3);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--uzi-gold);
    border-bottom: 1px solid var(--uzi-gold);
    padding-bottom: 5px;
    font-weight: 500;
}

.text-link:hover { color: var(--text-main); border-color: var(--text-main); }

.price-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--uzi-gold);
    border-bottom: 1px solid var(--uzi-gold);
    padding-bottom: 5px;
    font-weight: 500;
}

.price-link:hover { color: var(--text-main); border-color: var(--text-main); }

.center-btn {
    display: flex;
    text-align: center;
    margin-top: 3rem;
    flex-direction: column;
    align-items: center;
}

/* =========================================
   8. Flow Section
   ========================================= */
.flow-section {
    background: #fff; /* White background for flow */
}

.flow-wrapper {
    position: relative;
}

.flow-line {
    display: none;
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #e0e0e0; /* Light line */
    z-index: 0;
}

@media (min-width: 769px) { .flow-line { display: block; } }

.flow-grid { position: relative; z-index: 1; }

.flow-item {
    background: #fff;
    text-align: center;
}

.step-circle {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: #fff;
    border: 1px solid var(--uzi-gold);
    color: var(--uzi-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: bold;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.flow-item:hover .step-circle {
    background: var(--uzi-gold);
    color: #fff;
}

.flow-item h3 { margin-bottom: 15px; color: var(--text-main); }
.flow-item p { color: var(--text-muted); font-size: 0.9rem; }

/* =========================================
   9. Locations Section
   ========================================= */
.location-section {
    background: var(--bg-section);
}

.location-block {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 100px;
    align-items: center;
    background: #fff;
    padding: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

@media (min-width: 769px) {
    .location-block { flex-direction: row; padding: 0; }
    .location-block.reverse { flex-direction: row-reverse; }
}

.location-img {
    position: relative;
    flex: 1;
    height: 400px;
    overflow: hidden;
    width: 100%;
}

.location-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
    filter: grayscale(0); /* Remove grayscale for white theme to look fresher */
}

.location-block:hover .location-img img {
    transform: scale(1.1);
}

.img-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    transition: var(--transition);
}

.location-block:hover .img-overlay { background: rgba(0,0,0,0); }

@media (max-width: 768px) {
	.img-overlay {
		display: none;
	}
}

.img-text {
    position: absolute;
    bottom: 30px;
    left: 30px;
    color: #fff;
    text-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

.area-label {
    color: var(--uzi-gold);
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    font-weight: bold;
    background: rgba(255,255,255,0.9);
    padding: 2px 8px;
    display: inline-block;
    margin-bottom: 5px;
    color: #000;
}

.img-text h3 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
}

.location-info { flex: 1; padding: 40px; }

.location-title {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    color: var(--text-main);
}

.badge {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    border: 1px solid var(--uzi-gold);
    background: var(--uzi-gold);
    color: #fff;
    padding: 4px 10px;
    font-weight: normal;
    border-radius: 4px;
}

.location-desc {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.facility-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
    color: var(--text-main);
    font-size: 0.9rem;
}

.facility-list li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.facility-list i { color: var(--uzi-gold); width: 16px; }

.facility-list svg { 
    color: var(--uzi-gold); 
    width: 16px; 
}


/* =========================================
   10. Policy Section
   ========================================= */
.policy-section {
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 150px 0;
    background-color: #fff;
}

.bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-serif);
    font-size: 20vw;
    font-weight: bold;
    color: rgba(0,0,0,0.03); /* Very faint dark text */
    white-space: nowrap;
    pointer-events: none;
}

.policy-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.policy-content { 
    flex: 1;
    text-align: left;
}

.policy-image {
    position: relative;
    border-radius: 250px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.policy-image img {
    width: 100%;
    object-fit: cover;
    display: block;
}

.policy-title {
    text-align: center;
    font-family: var(--font-serif);
    font-size: 2rem;
    margin-bottom: 40px;
    line-height: 1.4;
    color: var(--text-main);
}

.policy-text p {
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 2;
}

.policy-footer {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--text-main) !important;
    margin-top: 30px;
}

.operator-info { 
    margin-top: 60px; 
    text-align: center;
    color: var(--text-muted);
}

.company-name {
     color: var(--text-main);
     font-weight: bold;
}

/* =========================================
   11. Footer
   ========================================= */
.uzi-footer {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 0;
}

.footer-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-brand {
	display: flex;
    flex-direction: column;
	align-items: center;
}

.footer-logo {
	width: 100px;
}

@media (min-width: 768px) {
    .footer-top {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }
}

.footer-brand h2 {
    font-family: var(--font-serif);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #888;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 5px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--uzi-gold);
}

.footer-links p {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 15px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
    color: #666;
    font-size: 0.8rem;
}

/* =========================================
   Modal
   ========================================= */
.pricing-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    align-items: center;
    justify-content: center;
/*     padding: 20px; */
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
}

.modal-content {
	position: relative;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    background-color: #fff;
    border-radius: 10px;
    overflow-y: auto;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.2);
    z-index: 10000;
}

.modal-close {
    position: fixed;
    top: 10px;
    right: 20px;
    width: 30px;
    height: 30px;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    border-radius: 50%;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .policy-wrapper {
        flex-direction: column;
        gap: 40px;
    }
    .policy-image {
        max-width: 300px;
        margin: 0 auto;
    }
}

/* =========================================
   13. Fixed Mobile Contact Button (新規追加)
   ========================================= */

.fixed-contact-mobile {
    /* PCでは非表示 */
    display: none; 
}

/* 768px以下のモバイルデバイスでのみ表示・固定 */
@media (max-width: 768px) {
    .fixed-contact-mobile {
		display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        border-top: 1px solid var(--border-light);
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
        z-index: 100;
        /* gap: 0; 削除 */
	}

    .fixed-contact-mobile .nav-contact-btn {
        display: flex;
        align-items: center;
        font-size: 0.8rem;
        padding: 12px 0;
        justify-content: center;
        color: var(--uzi-gold);
        background-color: rgb(0 0 0 / 0.9);
        gap: 10px;
        padding: 10px 0;
	}
	.nav-contact-btn {
		width: 50%;
    box-sizing: border-box;
	}
	.fixed-contact-mobile a img {
		width: 30px;
	}
	.nav-contact-btn2 {
        width: 50%;
        display: flex;
        align-items: center;
        font-size: 0.8rem;
        padding: 12px 0;
        justify-content: center;
        color: var(--uzi-gold);
        background-color: rgba(255, 255, 255, 0.9);
        gap: 20px;
    box-sizing: border-box;
	}
}