@charset "UTF-8";

/* サイトポリシーページ 専用スタイル */

/* メインコンテンツ全体のレイアウト */
.policy-main {
    padding: 100px 20px 60px;
    /* 固定ヘッダー（約60px分）の下にコンテンツが潜り込むのを防ぐ */
    min-height: 80vh;
}

/* 白いカード型コンテナ（.news-containerをベースにした内側の調整） */
.policy-container {
    max-width: 850px;
    margin: 0 auto;
    text-align: left;
    /* 本文は読みやすいように左寄せ */
}

/* 各文章・セクションの調整 */
.policy-container h1 {
    text-align: center;
    margin-bottom: 30px;
}

.policy-container p {
    line-height: 1.8;
    margin-bottom: 20px;
}

.policy-container section {
    margin-bottom: 40px;
}

/* 見出し（h2）の調整 */
/* .content-section クラスのアンダーラインと干渉しないよう余白を調整 */
.policy-container section h2 {
    font-size: 1.6rem;
    margin-top: 10px;
}

/* 4. 箇条書き（ul）の調整 */
.policy-container ul {
    padding-left: 20px;
    line-height: 1.8;
}

.policy-container ul li {
    margin-bottom: 8px;
}

/* フッター上の「← ホームへ戻る」ボタン */
.back-home-area {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.back-home-btn {
    text-decoration: none;
    font-weight: bold;
    color: #333;
    transition: color 0.2s ease;
}

.back-home-btn:hover {
    color: #ff6b6b;
    /* PCでホバーした時にロゴと同じ赤色に変形 */
}


/* スマートフォン・タブレット */
@media screen and (max-width: 768px) {
    .policy-main {
        padding-top: 80px;
        /* スマホ版の少しスリムになったヘッダーに対応 */
    }

    .policy-container h1 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .policy-container section h2 {
        font-size: 1.3rem;
    }

    .policy-container p,
    .policy-container ul {
        font-size: 0.9rem;
        /* スマホの画面幅に合わせて文字を少しだけコンパクトに */
    }
}