@charset "UTF-8";

:root {
    --primary-color: #5d6d7e; /* 鋼の色 */
    --accent-color: #e91e63; /* 女装ファッションのピンク */
    --bg-color: #f4f6f7;
    --text-color: #333;
    --white: #ffffff;
}

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

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; padding: 0; margin: 0; }

/* -------------------------------------------
   ヘッダー共通スタイル
------------------------------------------- */
header {
    background: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 60px; /* 高さ固定（メニュー位置計算のため） */
}

/* ロゴ */
.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-color);
}
.logo img {
    height: 35px;
    width: auto;
}
.sub-logo { 
    font-size: 0.8rem; 
    color: var(--accent-color); 
    margin-left: 5px; 
}

/* ナビゲーション（PC用デフォルト） */
nav ul { display: flex; gap: 20px; align-items: center; }
nav a:hover, nav a.active { color: var(--accent-color); }

/* お問い合わせボタン */
.btn-contact a {
    background: var(--accent-color);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    display: inline-block;
}

/* ハンバーガーボタン（PCでは非表示） */
.hamburger {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 25px;
    position: relative;
    z-index: 1001;
}
.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    position: absolute;
    transition: 0.3s;
    border-radius: 2px;
}
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 11px; }
.hamburger span:nth-child(3) { bottom: 0; }

/* -------------------------------------------
   フッター共通スタイル
------------------------------------------- */
footer {
    background: #34495e;
    color: white;
    padding: 40px 20px 10px;
    margin-top: 60px;
}
.footer-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}
.footer-links a { margin-right: 15px; color: #ccc; }
.copyright { text-align: center; margin-top: 30px; font-size: 0.8rem; color: #7f8c8d; }

/* -------------------------------------------
   コンテンツ共通
------------------------------------------- */
.container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
}
h2 {
    border-left: 5px solid var(--accent-color);
    padding-left: 15px;
    margin-bottom: 30px;
    color: #2c3e50;
}

/* -------------------------------------------
   スマホ対応（レスポンシブ）
   768px以下でメニューを隠し、ハンバーガーを表示
------------------------------------------- */
@media (max-width: 768px) {
    /* ロゴ調整 */
    .logo a { font-size: 1rem; }
    .logo img { height: 30px; }
    .sub-logo { display: none; } /* スマホでは英語表記を消してスッキリさせる */

    /* ハンバーガー表示 */
    .hamburger { display: block; }

    /* ナビゲーション（初期状態は隠す） */
    nav {
        position: absolute;
        top: 60px; /* ヘッダーの高さ分下げる */
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        border-bottom: 2px solid var(--primary-color);
        padding: 20px 0;
        transform: translateY(-150%); /* 上に隠しておく */
        transition: transform 0.3s ease;
        z-index: 999;
    }

    /* navに .active クラスがついたら表示 */
    nav.active {
        transform: translateY(0);
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }

    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }
    
    nav a {
        font-size: 1.1rem;
        font-weight: bold;
        display: block;
        width: 100%;
        text-align: center;
    }

    /* ハンバーガーがクリックされた時の×印アニメーション */
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg);
        top: 11px;
    }
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg);
        bottom: 11px;
    }
}