/* 特定商取引法に基づく表記のテーブルスタイル */
.deal table {
    width: 100%;
    max-width: 1000px;
    margin: 40px auto;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.deal table th,
.deal table td {
    padding: 20px;
    border: 1px solid #e0e0e0;
    line-height: 1.6;
}

.deal table th {
    width: 25%;
    background: #f8f9fa;
    color: #333;
    font-weight: normal;
    text-align: left;
    vertical-align: top;
}

.deal table td {
    width: 75%;
    background: #fff;
}

/* スマートフォン対応 */
@media screen and (max-width: 768px) {
    .deal table {
        margin: 20px auto;
        width: calc(100% - 40px);
    }

    .deal table th,
    .deal table td {
        display: block;
        width: 100%;
        padding: 15px;
    }

    .deal table th {
        border-bottom: none;
        padding-bottom: 5px;
    }

    .deal table td {
        padding-top: 10px;
    }
}

/* ページヘッダー */
.deal .page-head {
    background: url('../img/deal_head.jpg') center center no-repeat;
    background-size: cover;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
}

.deal .page-head h2 {
    color: #fff;
    font-size: 24px;
    text-align: center;
    line-height: 1.4;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.deal .page-head h2 span {
    display: block;
    font-size: 14px;
    margin-top: 5px;
    letter-spacing: 0.1em;
}

/* セクション */
.deal .section {
    padding: 60px 0;
}

@media screen and (max-width: 768px) {
    .deal .page-head {
        height: 150px;
        margin-bottom: 30px;
    }

    .deal .page-head h2 {
        font-size: 20px;
    }

    .deal .section {
        padding: 30px 0;
    }
}