/*
Theme Name: namshin
Theme URI: 
Author: Antigravity
Author URI: 
Description: 黒を基調とした、ナイトレジャー・風俗サイト風の高級感あるテーマ。
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: namshin
*/

:root {
    --bg-color: #0a0a0a;
    --text-color: #f0f0f0;
    --accent-color: #d4af37; /* Gold */
    --accent-hover: #f1c40f;
    --header-bg: #111111;
    --border-color: #333333;
}

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

body {
    font-family: 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-hover);
}

ul {
    list-style: none;
}

/* Header */
.site-header {
    background-color: var(--header-bg);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.site-logo a {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.global-nav ul {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.global-nav a {
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    padding: 10px 5px;
    position: relative;
}

.global-nav a:hover {
    color: var(--accent-color);
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.8);
}

/* First View Slider */
.fv-slider {
    width: 100%;
    height: 70vh;
    min-height: 400px;
    position: relative;
    background-color: #000;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    position: relative;
    overflow: hidden;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 90%;
    max-width: 800px;
    z-index: 10;
}

.slide-title {
    font-size: 3rem;
    font-weight: bold;
    color: #fff;
    text-shadow: 2px 2px 4px #000, 0 0 20px rgba(212, 175, 55, 0.8);
    margin-bottom: 15px;
}

.slide-text {
    font-size: 1.2rem;
    color: #fff;
    text-shadow: 1px 1px 3px #000;
}

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

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

/* Main Content */
.site-main {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--accent-color);
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 10px;
}

/* Footer */
.site-footer {
    background-color: var(--header-bg);
    border-top: 1px solid var(--border-color);
    padding: 30px 20px;
    text-align: center;
    margin-top: 50px;
}

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

.footer-nav a {
    color: #ccc;
    font-size: 13px;
}

.copyright {
    color: #777;
    font-size: 12px;
}

@media (max-width: 768px) {
    .header-inner {
        flex-direction: column;
        gap: 15px;
    }
    .global-nav ul {
        justify-content: center;
        gap: 10px;
    }
    .slide-title {
        font-size: 2rem;
    }
    .slide-text {
        font-size: 1rem;
    }
}
