/* 🌐 全体設定（すべての文字を黒） */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    color: black;
    background-color: white;
    line-height: 1.6;
}

/* ✅ ヘッダー（ピンク背景＋黒文字） */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff0f5;
    padding: 15px 5%;
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

header .logo {
    display: flex;
    align-items: center;
}

header .logo img {
    width: 12vw;
    max-width: 40px;
    min-width: 20px;
    height: auto;
}

nav {
    display: flex;
    align-items: center;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 0;
    margin: 0;
}

nav ul li {
    display: inline-block;
}

nav ul li a {
    color: black;
    text-decoration: none;
    font-size: 1rem;
}

/* ✅ お問い合わせボタン（ヘッダー内） */
.header-btn {
    display: inline-block;
    padding: 10px 15px;
    text-decoration: none;
    font-size: 1rem;
    border-radius: 5px;
    white-space: nowrap;
    /* ボタンが折り返されないように */
}

.menu-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    position: absolute;
    right: 20px;
}

/* ✅ ヒーローセクション */
.hero {
    text-align: center;
    padding: 15vh 5%;
    background: white;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero img {
    width: 25vw;
    max-width: 400px;
    min-width: 300px;
    height: auto;
    margin-bottom: 20px;
}

.hero h3 {
    font-size: 2rem;
    margin: 10px 0;
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: auto;
}

/* ✅ その他の機能ページのスタイル */
.features-page {
    max-width: 900px;
    margin: 50px auto;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.features {
    text-align: center;
    /* セクション内の要素を中央揃え */
}

/* ✅ 「寄せ書き以外の機能を見る」ボタンのデザイン */
.features .btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    background: #ff66b2;
    /* ピンク系 */
    color: white;
    text-decoration: none;
    font-size: 1rem;
    border-radius: 5px;
    transition: background 0.3s ease, transform 0.2s ease;
}

.features .btn:hover {
    background: #ff3385;
    /* ホバー時の濃いピンク */
    transform: translateY(-2px);
}

/* ✅ 見出しのデザイン */
.features-page h1 {
    font-size: 2rem;
    color: black;
    margin-bottom: 15px;
}

/* ✅ 説明文のデザイン */
.features-page p {
    font-size: 1.2rem;
    color: black;
    margin-bottom: 20px;
}

/* ✅ 機能リスト */
.feature-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

/* ✅ 各機能のボックス */
.feature {
    flex: 1 1 300px;
    max-width: 350px;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* ✅ アイコン画像 */
.feature img {
    width: 80px;
    height: auto;
    margin-bottom: 10px;
}

/* ✅ 機能のタイトル */
.feature h3 {
    font-size: 1.2rem;
    margin-top: 10px;
    color: black;
}

/* ✅ 説明文 */
.feature p {
    color: black;
}

/* ✅ 「寄せ書き以外の機能を見る」ボタンのデザイン */
.features .btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    background: #ff66b2;
    /* ピンク系 */
    color: white;
    text-decoration: none;
    font-size: 1rem;
    border-radius: 5px;
    transition: background 0.3s ease, transform 0.2s ease;
}

.features .btn:hover {
    background: #ff3385;
    /* ホバー時の濃いピンク */
    transform: translateY(-2px);
}

/* ✅ ボタンのデザイン */
.features-page .btn {
    display: inline-block;
    padding: 12px 24px;
    background: #ff66b2;
    /* ピンク系 */
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
    margin-top: 20px;
    transition: background 0.3s ease;
}

.features-page .btn:hover {
    background: #ff3385;
    /* ホバー時に濃いピンク */
}

/* ✅ 活用シーン（ピンク背景＋黒文字） */
.scenes {
    text-align: center;
    padding: 8vh 5%;
    background: #fff0f5;
}

.scene-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    justify-content: center;
}

.scene {
    background: white;
    color: black;
    padding: 12px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
}

/* ✅ お問い合わせページ */
.contact-page {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.contact-page h1 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.contact-page p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* ✅ お問い合わせフォーム */
.contact-page form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 400px;
    margin: auto;
}

.contact-page input,
.contact-page textarea {
    padding: 10px;
    font-size: 1rem;
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 5px;
}

/* ✅ フッター */
footer {
    text-align: center;
    padding: 20px;
    background: #fff0f5;
}

/* ✅ 利用規約ページのスタイル */
.terms {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.terms h1 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
}

.terms h2 {
    font-size: 1.5rem;
    margin-top: 20px;
}

.terms p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 10px;
}

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

.terms ul li {
    margin-bottom: 5px;
}

/* ✅ プライバシーポリシーのスタイル */
.policy {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.policy h1 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
}

.policy h2 {
    font-size: 1.5rem;
    margin-top: 20px;
}

.policy p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 10px;
}

.policy ul {
    padding-left: 20px;
}

.policy ul li {
    margin-bottom: 5px;
}

/* ✅ 寄せ書きの詳細ページ */
.detail-page {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.detail-page h1 {
    font-size: 2rem;
    color: black;
    margin-bottom: 15px;
}

.detail-page p {
    font-size: 1.2rem;
    color: black;
    margin-bottom: 20px;
}

.detail-content {
    text-align: left;
    margin-top: 20px;
}

.detail-content h2 {
    font-size: 1.5rem;
    color: black;
    margin-bottom: 10px;
}

.detail-content ul {
    padding-left: 20px;
}

.detail-content ul li {
    font-size: 1rem;
    color: black;
    margin-bottom: 8px;
}

/* ✅ ボタンのデザイン */
.detail-page .btn {
    display: inline-block;
    padding: 12px 24px;
    background: #ff66b2;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
    margin-top: 20px;
    transition: background 0.3s ease;
}

.detail-page .btn:hover {
    background: #ff3385;
}

/* ✅ レスポンシブ対応 */
@media screen and (max-width: 768px) {
    .detail-page {
        padding: 15px;
    }

    .detail-page h1 {
        font-size: 1.8rem;
    }

    .detail-page p {
        font-size: 1rem;
    }

    .detail-content h2 {
        font-size: 1.3rem;
    }

    .detail-content ul li {
        font-size: 0.95rem;
    }
}

@media screen and (max-width: 768px) {
    .menu-toggle {
        display: block;
        /* スマホ時にハンバーガーメニューを表示 */
    }

    nav ul {
        display: none;
        /* デフォルトでは非表示 */
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 5%;
        background: white;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
        width: 200px;
        border-radius: 5px;
        z-index: 10;
    }

    nav ul.active {
        display: flex;
        /* メニューが開いたら表示 */
    }

    nav ul li {
        text-align: center;
        padding: 10px 0;
        border-bottom: 1px solid #ddd;
    }

    nav ul li a {
        color: black;
        text-decoration: none;
        display: block;
    }
}

/* ✅ その他の機能セクション */
.extra-features {
    text-align: center;
    padding: 8vh 5%;
    background: white;
}

.extra-features .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

/* ✅ タイトルのデザイン */
.extra-features h2 {
    font-size: 2rem;
    color: black;
    margin-bottom: 15px;
}

/* ✅ 説明文のデザイン */
.extra-features p {
    font-size: 1.2rem;
    color: black;
    margin-bottom: 20px;
}

/* ✅ ボタンのデザイン */
.extra-features .btn {
    display: inline-block;
    padding: 12px 24px;
    background: #ff66b2;
    /* ピンク系 */
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
    transition: background 0.3s ease;
}

.extra-features .btn:hover {
    background: #ff3385;
    /* ホバー時に濃いピンク */
}

.terms {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.terms h1 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
}

/* ✅ 特定商取引法ページのスタイル */
.legal {
    max-width: 900px;
    margin: 50px auto;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.legal h1 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
}

.legal h2 {
    font-size: 1.5rem;
    margin-top: 20px;
    color: black;
}

.legal p,
.legal ul {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 10px;
    color: black;
}

.legal ul {
    padding-left: 20px;
}

.legal ul li {
    margin-bottom: 5px;
}

.legal a {
    color: #0073e6;
    text-decoration: none;
}

.legal a:hover {
    text-decoration: underline;
}

/* ✅ フッター */
.footer-btn {
    margin-left: 15px;
}

/* ✅ レスポンシブ対応 */
@media screen and (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 5%;
        background: white;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
        width: 200px;
        border-radius: 5px;
        z-index: 10;
    }

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

    .feature-list {
        flex-direction: column;
        align-items: center;
    }

    .features h2 {
        align-items: center;
    }

    .hero img {
        width: 35vw;
        max-width: 160px;
    }

    .hero h3 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .features-page {
        padding: 15px;
    }

    .features-page h1 {
        font-size: 1.8rem;
    }

    .features-page p {
        font-size: 1rem;
    }

    .feature-list {
        flex-direction: column;
        align-items: center;
    }

    .features-page .btn {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
}
