/*
 * 特定商取引法に基づく表示ページ (page-sctl.php) 専用スタイル
 */

/* -------------------------------------------
 * 基本レイアウト・共通パーツ
 * ------------------------------------------- */
 .sctl-page-main .container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
}

.sctl-page-content {
    background-color: #fff;
    padding: 40px 0 80px;
    position: relative;
    z-index: 10;
}

/* -------------------------------------------
 * ヒーロービュー
 * ------------------------------------------- */
.sctl-hero {
    height: 350px;
    background-image: url('https://asibimo.com/wp-content/uploads/2025/08/tokuteisho-hero.jpg'); /* サンプル画像 */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.sctl-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
}
.sctl-hero-title {
    color: #fff;
    font-size: 42px;
    font-weight: 700;
    position: relative;
    z-index: 5;
    text-align: center;
}

/* -------------------------------------------
 * パンくずリスト
 * ------------------------------------------- */
.breadcrumbs {
    font-size: 14px;
    margin-bottom: 40px;
    color: #888;
}
.breadcrumbs a {
    color: #00b8d4;
    text-decoration: none;
}
.breadcrumbs a:hover {
    text-decoration: underline;
}

/* -------------------------------------------
 * 本文コンテンツ (定義リスト)
 * ------------------------------------------- */
.sctl-content-body {
    font-size: 15px;
    color: #333;
}

.sctl-table > div {
    display: grid;
    grid-template-columns: 240px 1fr; /* 左(dt)を固定幅、右(dd)を可変に */
    gap: 20px; /* dtとddの間のスペース */
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
}
.sctl-table > div:last-child {
    border-bottom: none;
}

.sctl-table dt {
    font-weight: 700;
    color: #555;
    padding-right: 20px;
}

.sctl-table dd {
    margin: 0;
    line-height: 1.7;
}


/* -------------------------------------------
 * レスポンシブ対応
 * ------------------------------------------- */
@media (max-width: 768px) {
    .sctl-page-content {
        margin-top: -60px;
        padding-bottom: 60px;
    }
    .sctl-hero {
        height: 280px;
    }
    .sctl-hero-title {
        font-size: 28px;
    }
    .sctl-content-body {
        font-size: 14px;
    }

    .sctl-table > div {
        display: block; /* グリッドレイアウトを解除し、縦積みにする */
        padding: 15px 0;
    }
    .sctl-table dt {
        margin-bottom: 8px; /* ddとの間に余白を設ける */
        padding-right: 0;
    }
}