/* =========================================================
   common-page.css
   会社概要 / 特定商取引法に基づく表示 / 個人情報保護方針 /
   サイトポリシー など、共通の下層テキストページ用スタイル。
   faq.css とは独立（FAQページには使用しない）。
   ※faq.css の section-title 背景（巨大な "FAQ" ウォーターマーク :after）は
     意図的に再現していません＝section-title の背景画像なし。
========================================================= */
.common-page{
    background-image: linear-gradient(to bottom, #f8fafd 0, #eef3f8 100%);
}

/* ---- ヒーロー（見出しのみ・背景画像なし） ---- */
.common-page .hero-section{
    width: 100%;
}
.common-page .hero-section .section-title{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 220px;
    margin: 0 auto;
}

/* ---- 下部エリア ---- */
.common-page .under-content{
    padding: 30px 0 50px;
}
.common-page .under-content > section{
    max-width: 1000px;
    margin: 0 auto 50px;
}

/* ---- 情報テーブル（会社概要・特定商取引法） ---- */
.common-page .info-table{
    width: 100%;
    border-collapse: collapse;
    max-width: 880px;
    margin: auto;
}
.common-page .info-table th,
.common-page .info-table td{
    border: 1px solid #e0e0e0;
    padding: 16px 20px;
    text-align: left;
    font-size: 15px;
    line-height: 1.8;
    vertical-align: top;
}
.common-page .info-table th{
    width: 30%;
    background: #f5f7fa;
    font-weight: 700;
    white-space: nowrap;
}
.common-page .info-table td ol{
    margin: 0 0 0 1.2em;
    padding: 0;
}
.common-page .info-table td ol li{
    margin-bottom: 6px;
}

/* ---- 規約・方針本文（個人情報保護方針・サイトポリシー） ---- */
.common-page .policy-body{
    max-width: 880px;
    margin: auto;
    font-size: 15px;
    line-height: 1.9;
}
.common-page .policy-body h2{
    font-size: 20px;
    font-weight: 700;
    margin: 36px 0 12px;
    padding-left: 12px;
    border-left: 4px solid #1d4ed8;
}
.common-page .policy-body h3{
    font-size: 16px;
    font-weight: 700;
    margin: 20px 0 6px;
}
.common-page .policy-body p,
.common-page .policy-body li{
    margin-bottom: 10px;
}
.common-page .policy-body ul,
.common-page .policy-body ol{
    margin-left: 1.4em;
}
.common-page .policy-body ul{
    list-style: disc;
}
.common-page .policy-body .info-box{
    background: #f5f7fa;
    padding: 16px 20px;
    border-radius: 8px;
    margin-top: 16px;
}
.common-page .policy-body .policy-signature{
    margin-top: 20px;
    text-align: right;
    line-height: 1.8;
}
.common-page .policy-body .policy-contact{
    margin-top: 16px;
    text-align: right;
    line-height: 1.8;
}
.common-page .policy-body .policy-subhead{
    margin: 20px 0 8px;
    font-weight: 700;
}
.common-page .policy-body .info-table{
    margin: 0 0 8px;
}

@media screen and ( max-width: 810px ){
    .common-page .hero-section .section-title{
        min-height: 150px;
    }
    .common-page .under-content{
        padding: 0 0 50px;
    }
    .common-page .under-content > section{
        margin: 0 0 50px;
    }
    .common-page .under-content > section > .inner-container{
        margin: 0 20px;
    }
    .common-page .info-table th,
    .common-page .info-table td{
        display: block;
        width: auto;
        border-bottom: none;
    }
    .common-page .info-table tr td{
        border-bottom: 1px solid #e0e0e0;
    }
    .common-page .info-table th{
        white-space: normal;
    }
}
@media screen and ( max-width: 480px ){
    .common-page .hero-section .section-title{
        min-height: 100px;
    }
}
