@charset "UTF-8";

/* style.css */
:root {
    /* Colors - Dark Theme */
    --color-bg: #0f0a12; /* Deep dark base with a hint of purple/navy */
    --color-pink: #ffb6c1; /* Pastel Pink (maintained) */
    --color-pink-light: #3d2a33; /* Darker pink-tinted bg */
    --color-yellow: #fffacd; /* Pastel Yellow (maintained) */
    --color-text: #e0d0d5; /* Light gray-pink for readability */
    --color-accent: #1a1625; /* Dark accent background */

    /* Typography */
    --font-jp: 'Noto Sans JP', sans-serif;
    --font-en: 'Outfit', sans-serif;

    /* Styling */
    --border-radius: 24px;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    --glass-bg: rgba(25, 20, 30, 0.7);
    --glass-border: 1px solid rgba(255, 182, 193, 0.2);
    
    /* Animation */
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-jp);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-en);
}

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

.section-padding {
    padding: 100px 0;
}

.bg-light {
    background: linear-gradient(135deg, #1a141d 0%, #0f0a12 100%);
}

.bg-accent {
    background: linear-gradient(135deg, #2d1b24 0%, #1a141d 100%);
}

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

/* Glassmorphism Card */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: var(--glass-border);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 40px;
}

/* Hover Float Effect */
.hover-float {
    transition: var(--transition);
}
.hover-float:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 182, 193, 0.35);
}

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(45deg, var(--color-pink), var(--color-yellow));
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-family: var(--font-en);
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(255, 182, 193, 0.4);
    border: none;
    cursor: pointer;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 182, 193, 0.6);
}
.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.center-btn {
    text-align: center;
    margin-top: 40px;
}

/* Header & Nav */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 10, 18, 0.85);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px;
}

.nav-logo img {
    height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--color-text);
    font-family: var(--font-en);
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--color-pink);
}

.btn-recruit-nav {
    background: var(--color-pink);
    color: white !important;
    padding: 8px 20px;
    border-radius: 20px;
}

.btn-recruit-nav:hover {
    background: #ff9fb0;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: var(--color-text);
    transition: var(--transition);
    border-radius: 3px;
}

/* Hero Section */
.hero {
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(2px);
}

.hero-content {
    position: relative;
    z-index: 1;
    background: rgba(0, 0, 0, 0.4);
    padding: 40px;
    margin-top: 50px;
    border-radius: 30px;
    box-shadow: 0 0 30px rgba(255, 182, 193, 0.2);
    backdrop-filter: blur(10px);
    max-width: 600px;
    width: 90%;
    animation: fadeIn 1s ease-out;
}

.hero-main-logo {
    max-width: 300px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 20px; /* if the AI logo has background */
}

.hero-subtitle {
    font-family: var(--font-en);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--color-pink);
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.hero-catchphrase {
    font-size: 1.2rem;
    font-weight: 500;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--color-text);
    font-family: var(--font-en);
    font-weight: 600;
    font-size: 0.9rem;
}

.scroll-indicator .arrow {
    width: 2px;
    height: 40px;
    background: var(--color-pink);
    margin-top: 10px;
    position: relative;
    animation: float 2s infinite;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* Section Title */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--color-pink);
    margin-bottom: 5px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--color-yellow);
    border-radius: 2px;
}

.section-title span {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Concept Section */
.concept-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.concept-content h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--color-pink);
}

.concept-content p {
    font-size: 1.1rem;
    line-height: 2;
}

/* System Section */
.system-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.system-card h3 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--color-pink);
    border-bottom: 2px dashed rgba(255, 182, 193, 0.2);
    padding-bottom: 15px;
}

.system-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.system-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 500;
}

.sys-price {
    font-family: var(--font-en);
    font-weight: 700;
    color: var(--color-pink);
}

.sys-note {
    text-align: center;
    font-size: 0.85rem;
    color: #888;
}

/* Cast Section */
.cast-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 30px;
}

.cast-card {
    padding: 20px;
    text-align: center;
}

.cast-img-wrapper {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
    border: 3px solid rgba(255, 182, 193, 0.3);
    box-shadow: var(--box-shadow);
}

.cast-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.cast-card:hover .cast-img-wrapper img {
    transform: scale(1.05);
}

.cast-info h3 {
    font-size: 1.3rem;
    color: var(--color-pink);
    margin-bottom: 5px;
}

.cast-desc {
    font-size: 0.9rem;
}

/* Menu Section */
.swiper {
    width: 100%;
    padding: 20px 0 60px 0;
}

.menu-card {
    padding: 10px;
    text-align: center;
    height: 100%;
}

.menu-card img {
    width: 100%;
    aspect-ratio: 1 / 1.414; /* A4サイズ比率 */
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    background: #fff;
    cursor: pointer;
    transition: var(--transition);
}

.menu-card img:hover {
    transform: scale(1.02);
}

/* Lightbox Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
    cursor: zoom-out;
}

.modal.active {
    display: flex;
}

.modal-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(255, 182, 193, 0.3);
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--color-pink);
}

.menu-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.menu-info p {
    font-family: var(--font-en);
    font-weight: 700;
    color: var(--color-pink);
}

.swiper-button-next, .swiper-button-prev {
    color: var(--color-pink) !important;
}

.swiper-pagination-bullet-active {
    background: var(--color-pink) !important;
}

/* Access Section */
.access-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 0;
    overflow: hidden;
}

.map-wrapper {
    flex: 1;
    min-width: 300px;
}

.map-wrapper iframe {
    display: block;
}

.access-info {
    flex: 1;
    min-width: 300px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
}

.access-info h3 {
    font-size: 1.5rem;
    color: var(--color-pink);
    margin-bottom: 10px;
}

.access-info p {
    display: flex;
    align-items: center;
    gap: 10px;
}

.access-info i {
    color: var(--color-yellow);
    font-size: 1.2rem;
}

.access-note {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #888;
}

/* Recruit Section */
.recruit-content {
    background: rgba(15, 10, 18, 0.7);
}

.recruit-content h2 {
    font-size: 2.5rem;
    color: var(--color-pink);
    margin-bottom: 20px;
}

.recruit-content p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Footer & SNS */
.footer {
    background: #0a070d;
    padding: 60px 0 20px;
}

.footer-content {
    text-align: center;
}

.footer-logo img {
    height: 80px;
    margin-bottom: 30px;
}

.sns-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.sns-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background: var(--color-bg);
    border-radius: 50%;
    color: var(--color-pink);
    font-size: 1.5rem;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.sns-icon:hover {
    background: var(--color-pink);
    color: #fff;
    transform: translateY(-5px);
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-nav a {
    color: #666;
    text-decoration: none;
    font-family: var(--font-en);
    transition: var(--transition);
}

.footer-nav a:hover {
    color: var(--color-pink);
}

.copyright {
    font-family: var(--font-en);
    color: #aaa;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(15, 10, 18, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 20px 0;
        box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    }

    .nav-links.active {
        display: flex;
    }

    .hero-content {
        padding: 30px 20px;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .access-container {
        flex-direction: column;
    }
}
