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

/* メインコンテンツ */
.tokushoho-main {
    padding: 100px 0 80px;
    background-color: var(--color-bg);
    min-height: 80vh;
}

.tokushoho-main .container {
    max-width: 800px; /* 少し狭めて読みやすく */
    margin: 0 auto;
    padding: 0 24px;
}

/* ヘッダー部分 */
.tokushoho-header {
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--color-border);
}

.tokushoho-header h1 {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 500;
    color: var(--color-text-main);
    margin-bottom: 15px;
}

.tokushoho-header .updated-date {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: var(--color-text-sub);
    font-weight: 400;
}

/* コンテンツエリア */
.tokushoho-content {
    line-height: 2;
}

/* セクション */
.tokushoho-section {
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--color-border);
}

.tokushoho-section.last-section {
    border-bottom: none;
}

.tokushoho-section h2 {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-text-main);
    margin-bottom: 20px;
    padding-left: 15px;
    border-left: 1px solid var(--color-text-main);
    letter-spacing: 0.05em;
}

.tokushoho-section h3 {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-text-main);
    margin-bottom: 15px;
    margin-top: 30px;
}

.tokushoho-section p {
    margin-bottom: 12px;
    color: var(--color-text-sub);
    font-size: 0.95rem;
    font-family: var(--font-sans);
}

.tokushoho-section a {
    color: var(--color-text-main);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.tokushoho-section a:hover {
    color: var(--color-accent);
}

/* リスト */
.tokushoho-section ul {
    margin: 15px 0;
    padding-left: 20px;
    list-style: disc inside;
}

.tokushoho-section ul li {
    margin-bottom: 10px;
    color: var(--color-text-sub);
    font-size: 0.95rem;
}

/* サブセクション */
.subsection {
    margin: 30px 0;
    padding: 30px;
    background-color: var(--color-bg-light);
    border-radius: 0;
}

.subsection h3:first-child {
    margin-top: 0;
}

/* 注釈・補足 */
.note {
    font-size: 0.85rem;
    color: var(--color-text-sub);
    margin-top: 8px;
}

.important {
    font-weight: 500;
    color: var(--color-text-main);
    padding: 20px;
    background-color: var(--color-bg-light);
    border: 1px solid var(--color-border);
    border-left: none;
    margin: 20px 0;
    border-radius: 0;
}

/* 警告ボックス */
.warning-box {
    background-color: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 0;
    padding: 30px;
    margin: 30px 0;
}

.warning-box p {
    margin-bottom: 15px;
}

.warning-box strong {
    color: var(--color-text-main);
    font-weight: 500;
}

.warning-box ul li {
    color: var(--color-text-sub);
}

/* お問い合わせ情報 */
.contact-info {
    background-color: var(--color-bg-light);
    padding: 30px;
    border-radius: 0;
    margin-top: 30px;
}

.contact-info p {
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.contact-info strong {
    color: var(--color-text-main);
    font-weight: 500;
}

.contact-link {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    background-color: var(--color-text-main);
    color: #fff !important;
    text-decoration: none !important;
    border-radius: 0;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.contact-link:hover {
    background-color: #fff;
    color: var(--color-text-main) !important;
    border: 1px solid var(--color-text-main);
    transform: none;
}

/* ページトップへ戻るボタン */
.back-to-top {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--color-border);
}

.btn-secondary {
    display: inline-block;
    padding: 12px 40px;
    background-color: transparent;
    color: var(--color-text-main);
    text-decoration: none;
    border: 1px solid var(--color-border);
    border-radius: 0;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: var(--color-text-main);
    background-color: transparent;
    transform: none;
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
    .tokushoho-main {
        padding: 80px 0 60px;
    }

    .tokushoho-header h1 {
        font-size: 1.5rem;
    }

    .tokushoho-section h2 {
        font-size: 1rem;
        padding-left: 12px;
    }

    .tokushoho-section h3 {
        font-size: 0.95rem;
    }

    .subsection {
        padding: 20px;
    }

    .warning-box {
        padding: 20px;
    }

    .contact-info {
        padding: 20px;
    }
}
