/* 特定商取引法ページ専用CSS */

/* 基本設定 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "MS PGothic", sans-serif;
    line-height: 1.7;
    color: #333;
    background-color: #f8f9fa;
}

/* パンくずナビ */
.breadcrumb-nav {
    background-color: #fff;
    padding: 1rem 2rem;
    border-bottom: 1px solid #e9ecef;
    font-size: 0.9rem;
}

.breadcrumb-link {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover {
    color: #0056b3;
    text-decoration: underline;
}

.breadcrumb-separator {
    margin: 0 0.5rem;
    color: #6c757d;
}

/* メインコンテナ */
.tokusho-container {
    max-width: 900px;
    margin: 2rem auto;
    padding: 0 1rem;
}

/* ページヘッダー */
.tokusho-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 123, 255, 0.2);
}

.tokusho-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.tokusho-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 400;
}

/* セクション共通スタイル */
.tokusho-section {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #007bff;
}

.section-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid #f8f9fa;
}

.section-icon {
    font-size: 1.2rem;
    background: linear-gradient(135deg, #007bff, #0056b3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* テーブルスタイル */
.info-table-wrapper {
    overflow-x: auto;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    font-size: 0.95rem;
}

.info-table th {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    padding: 1rem 1.2rem;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid #0056b3;
    width: 35%;
    font-size: 0.9rem;
}

.info-table td {
    padding: 1rem 1.2rem;
    border-bottom: 1px solid #e9ecef;
    background: #fff;
    color: #495057;
    line-height: 1.6;
}

.info-table tr:last-child td {
    border-bottom: none;
}

.info-table tr:hover td {
    background-color: #f8f9fa;
}

/* 支払い方法セクション */
.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.payment-method {
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #28a745;
    transition: all 0.3s ease;
}

.payment-method:hover {
    background: #e9ecef;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.payment-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.payment-bullet {
    color: #28a745;
    font-weight: bold;
}

.payment-image {
    margin: 1rem 0;
    text-align: center;
}

.payment-image img {
    max-width: 200px;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.card-images {
    margin: 1rem 0;
    text-align: center;
}

.card-images img {
    margin: 0 0.5rem;
    height: 30px;
    width: auto;
}

.payment-description {
    color: #6c757d;
    line-height: 1.6;
    margin-top: 0.8rem;
}

/* 配送方法セクション */
.delivery-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.delivery-method {
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #17a2b8;
    transition: all 0.3s ease;
}

.delivery-method:hover {
    background: #e9ecef;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.delivery-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.delivery-bullet {
    color: #17a2b8;
    font-weight: bold;
}

.delivery-inline-img {
    height: 20px;
    width: auto;
    margin-left: 0.5rem;
}

.delivery-description {
    color: #6c757d;
    line-height: 1.6;
    margin-top: 0.8rem;
}

/* フッター */
.tokusho-footer {
    margin-top: 3rem;
    padding: 2rem;
    background: #2c3e50;
    border-radius: 12px;
    color: white;
}

.footer-note {
    margin-bottom: 1.5rem;
}

.footer-note p {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffc107;
}

.footer-note ul {
    list-style: none;
    padding-left: 0;
}

.footer-note li {
    padding: 0.3rem 0;
    padding-left: 1.2rem;
    position: relative;
    line-height: 1.6;
}

.footer-note li::before {
    content: "・";
    color: #ffc107;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "MS PGothic", sans-serif;
}

.back-to-top {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #495057;
}

.back-link {
    display: inline-block;
    color: #ffc107;
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border: 2px solid #ffc107;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.back-link:hover {
    background-color: #ffc107;
    color: #2c3e50;
    transform: translateY(-2px);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .tokusho-container {
        margin: 1rem auto;
        padding: 0 0.5rem;
    }

    .tokusho-header {
        padding: 2rem 1rem;
        margin-bottom: 2rem;
    }

    .tokusho-title {
        font-size: 1.8rem;
    }

    .tokusho-subtitle {
        font-size: 1rem;
    }

    .tokusho-section {
        padding: 1.5rem 1rem;
        margin-bottom: 1.5rem;
    }

    .section-title {
        font-size: 1.2rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
    }

    .info-table th,
    .info-table td {
        padding: 0.8rem;
        font-size: 0.85rem;
    }

    .info-table th {
        width: 40%;
    }

    .payment-method,
    .delivery-method {
        padding: 1rem;
    }

    .payment-title,
    .delivery-title {
        font-size: 1rem;
        flex-direction: column;
        align-items: flex-start;
    }

    .breadcrumb-nav {
        padding: 0.8rem 1rem;
        font-size: 0.8rem;
    }

    .tokusho-footer {
        padding: 1.5rem 1rem;
        margin-top: 2rem;
    }
}

@media (max-width: 480px) {
    .tokusho-title {
        font-size: 1.5rem;
    }

    .tokusho-subtitle {
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.1rem;
    }

    .info-table {
        font-size: 0.8rem;
    }

    .info-table th,
    .info-table td {
        padding: 0.6rem 0.5rem;
    }

    .payment-image img {
        max-width: 150px;
    }

    .card-images img {
        height: 25px;
        margin: 0 0.2rem;
    }
}

/* 印刷対応 */
@media print {
    .tokusho-container {
        max-width: none;
        margin: 0;
        padding: 0;
    }

    .tokusho-header {
        background: none !important;
        color: black !important;
        box-shadow: none !important;
        border: 2px solid black;
    }

    .tokusho-section {
        box-shadow: none !important;
        border: 1px solid #ccc;
        break-inside: avoid;
    }

    .info-table th {
        background: #f0f0f0 !important;
        color: black !important;
    }

    .back-to-top {
        display: none;
    }

    .breadcrumb-nav {
        display: none;
    }
}