/* ========================================
   pages/terms.css
   特定商取引法に基づく表記ページ
======================================== */

/* ページ全体 */
.fwd-page-terms {
    background-color: #fcfcf2;
    min-height: 100vh;
}

/* ナビゲーションメニュー - ヘッダーの下に配置 */
.fwd-page-terms .fwd-main-menu {
    position: static;
    /* frontend.cssのposition: absoluteを上書き */
}

/* ナビゲーションメニュー */
.fwd-page-terms .fwd-nav {
    background: #000000;
    padding: 0;
}

.fwd-page-terms .nav-items {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    max-width: 1400px;
    margin: 0 auto;
}

.fwd-page-terms .nav-item {
    flex: 1;
    text-align: center;
    border-bottom: 5px solid transparent;
    transition: all 0.3s ease;
}

.fwd-page-terms .nav-item.active {
    background: #333333;
    border-bottom-color: #a2000d;
}

.fwd-page-terms .nav-item a {
    display: block;
    padding: 20px;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Zen Old Mincho', serif;
    font-size: 16px;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.fwd-page-terms .nav-item:hover {
    background: #333333;
}

.fwd-page-terms .nav-item a:hover {
    opacity: 0.8;
}

/* メインコンテンツ */
.fwd-page-terms .fwd-main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* コンテナ */
.terms-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* タイトル */
.terms-title {
    font-family: 'Zen Old Mincho', serif;
    font-size: 36px;
    font-weight: 700;
    color: #000000;
    text-align: center;
    margin: 0 0 50px 0;
    line-height: 1.4;
}

/* コンテンツ */
.terms-content {
    font-family: 'Zen Old Mincho', serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 28px;
    color: #000000;
}

.terms-content p {
    margin: 0 0 20px 0;
}

.terms-content h2 {
    font-family: 'Zen Old Mincho', serif;
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    margin: 40px 0 15px 0;
    line-height: 1.4;
}

.terms-content h3 {
    font-family: 'Zen Old Mincho', serif;
    font-size: 16px;
    font-weight: 700;
    color: #000000;
    margin: 20px 0 10px 0;
    line-height: 1.4;
}

.terms-content ul {
    margin: 0 0 20px 0;
    padding-left: 20px;
}

.terms-content ul li {
    margin-bottom: 10px;
    line-height: 28px;
}

.terms-content a {
    color: #a2000d;
    text-decoration: underline;
}

.terms-content a:hover {
    text-decoration: none;
}

/* 注意書き */
.terms-content .terms-note {
    font-size: 14px;
    color: #666666;
}

/* ========================================
   モバイル対応（768px以下）
======================================== */
@media (max-width: 768px) {
    .fwd-page-terms .fwd-main {
        padding: 40px 0 60px;
    }

    .terms-container {
        padding: 0 20px;
    }

    .terms-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .terms-content {
        font-size: 14px;
        line-height: 24px;
    }

    .terms-content h2 {
        font-size: 16px;
        margin: 30px 0 10px 0;
    }

    .terms-content h3 {
        font-size: 14px;
        margin: 15px 0 8px 0;
    }

    .terms-content ul li {
        line-height: 24px;
    }

    /* ナビゲーション: モバイルでは非表示 */
    .fwd-page-terms .fwd-main-menu {
        display: none;
    }
}
