/* ===== リセット & ベーススタイル ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Serif JP', serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1410 100%);
    color: #f5f5f5;
    line-height: 1.8;
    overflow-x: hidden;
}

/* ===== ヘッダーセクション ===== */
.hero-section {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    max-height: 800px;
    overflow: hidden;
}

.hero-image {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.7);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
    text-align: center;
    padding: 20px;
}

.hero-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 700;
    color: #d4af37;
    text-shadow: 
        0 0 20px rgba(212, 175, 55, 0.5),
        0 0 40px rgba(212, 175, 55, 0.3),
        2px 2px 10px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.15em;
    margin-bottom: 15px;
    animation: fadeInDown 1.2s ease-out;
}

.hero-subtitle {
    font-family: 'Cinzel', serif;
    font-size: clamp(1rem, 3vw, 1.5rem);
    color: #c9a961;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.8);
    animation: fadeInUp 1.2s ease-out;
}

/* ===== メインコンテンツ ===== */
.main-content {
    position: relative;
    z-index: 1;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== 紹介文セクション ===== */
.intro-section {
    padding: 80px 20px 60px;
    text-align: center;
    background: linear-gradient(
        to bottom,
        rgba(10, 10, 10, 0.95) 0%,
        rgba(26, 20, 16, 0.95) 100%
    );
    position: relative;
}

.intro-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent 0%,
        #d4af37 50%,
        transparent 100%
    );
}

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

.intro-message {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: #e8d4a0;
    line-height: 2;
    padding: 30px;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    animation: fadeIn 1.5s ease-out;
}

.icon-accent {
    color: #d4af37;
    margin-right: 10px;
    font-size: 1.2em;
}

.mobile-break {
    display: none;
}

/* ===== ボタンセクション ===== */
.buttons-section {
    padding: 60px 20px 100px;
    background: rgba(26, 20, 16, 0.95);
}

.buttons-wrapper {
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 600px;
    margin: 0 auto;
}

.luxury-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 40px;
    background: linear-gradient(135deg, #2a2318 0%, #1a1410 100%);
    border: 2px solid #d4af37;
    border-radius: 50px;
    text-decoration: none;
    color: #d4af37;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 5px 20px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.luxury-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(212, 175, 55, 0.2),
        transparent
    );
    transition: left 0.6s ease;
}

.luxury-button:hover::before {
    left: 100%;
}

.luxury-button:hover {
    background: linear-gradient(135deg, #3a3018 0%, #2a2410 100%);
    border-color: #e8c068;
    transform: translateY(-3px);
    box-shadow: 
        0 8px 30px rgba(212, 175, 55, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.luxury-button:active {
    transform: translateY(-1px);
}

.button-icon {
    font-size: 1.3em;
    margin-right: 15px;
    transition: transform 0.3s ease;
}

.luxury-button:hover .button-icon {
    transform: scale(1.2);
}

.button-text {
    flex: 1;
    text-align: center;
}

.button-arrow {
    font-size: 0.9em;
    transition: transform 0.3s ease;
}

.luxury-button:hover .button-arrow {
    transform: translateX(5px);
}

/* ボタン個別スタイル */
.map-button:hover {
    border-color: #4CAF50;
    color: #5FD068;
}

.tiktok-button:hover {
    border-color: #00F2EA;
    color: #00F2EA;
}

.instagram-button:hover {
    border-color: #E1306C;
    color: #F77737;
}

.recruit-button:hover {
    border-color: #FFB84D;
    color: #FFC966;
}

/* ===== フッター ===== */
.footer {
    background: rgba(10, 10, 10, 0.98);
    padding: 30px 20px;
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-text {
    color: #8a8a8a;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

/* ===== アニメーション ===== */
@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);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ===== レスポンシブデザイン ===== */
@media (max-width: 768px) {
    .hero-section {
        height: 60vh;
        min-height: 400px;
    }

    .hero-title {
        letter-spacing: 0.1em;
        font-size: clamp(1.5rem, 5vw, 2.5rem);
    }

    .hero-subtitle {
        letter-spacing: 0.2em;
    }

    .intro-section {
        padding: 60px 15px 40px;
    }

    .intro-message {
        padding: 25px 20px;
        font-size: 1rem;
    }

    .mobile-break {
        display: inline;
    }

    .buttons-section {
        padding: 40px 15px 80px;
    }

    .buttons-wrapper {
        gap: 20px;
    }

    .luxury-button {
        padding: 20px 25px;
        font-size: 1rem;
    }

    .button-icon {
        font-size: 1.2em;
        margin-right: 12px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        height: 50vh;
        min-height: 350px;
    }

    .hero-title {
        font-size: clamp(1.2rem, 4.5vw, 2rem);
        letter-spacing: 0.08em;
    }

    .intro-message {
        padding: 20px 15px;
        font-size: 0.95rem;
    }

    .luxury-button {
        padding: 18px 20px;
        font-size: 0.95rem;
        border-radius: 40px;
    }

    .button-icon {
        margin-right: 10px;
    }
}

/* ===== アクセシビリティ ===== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===== 印刷スタイル ===== */
@media print {
    .hero-image img {
        filter: none;
    }

    .luxury-button {
        border: 2px solid #000;
        color: #000;
    }
}
