/* ==================== 特定商取引法ページ固有スタイル ==================== */

.about-container {
    padding: 0;
}

/* 特定商取引法ヒーロー */
.about-hero {
    background: linear-gradient(135deg, #d97706 0%, #f59e0b 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: 2px;
}

.about-hero-subtitle {
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 3px;
    opacity: 0.9;
}

/* 特定商取引法コンテンツセクション */
.about-content {
    padding: 80px 0;
    background-color: #fffbf0;
}

.about-content section {
    padding: 0;
    display: block;
}

.about-section {
    margin-bottom: 60px;
}

.about-section:last-child {
    margin-bottom: 0;
}

.about-section .section-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 40px;
    color: #d97706;
    position: relative;
    padding-bottom: 20px;
}

.about-section .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #d97706, #f59e0b);
    border-radius: 2px;
}

/* テキストボックス */
.about-text-box {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #d97706;
}

.about-text-box p {
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

.about-text-box p:last-child {
    margin-bottom: 0;
}

.about-text-box a {
    color: #d97706;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.about-text-box a:hover {
    color: #f59e0b;
}

/* テーブルスタイル */
.about-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.about-table tr {
    border-bottom: 1px solid #fed7aa;
}

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

.about-table th {
    background: linear-gradient(135deg, #fffbf0, #fef3e2);
    padding: 18px 25px;
    text-align: left;
    font-weight: 600;
    color: #d97706;
    width: 25%;
    border-right: 1px solid #fed7aa;
    vertical-align: top;
}

.about-table td {
    padding: 18px 25px;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
}

.about-table tr:nth-child(even) {
    background: #fffbf0;
}

.about-table td a {
    color: #d97706;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.about-table td a:hover {
    color: #f59e0b;
}

.about-table td strong {
    color: #d97706;
    font-weight: 600;
}

/* 戻るリンク */
.back-link {
    display: inline-block;
    padding: 12px 30px;
    background: #fff;
    color: #d97706;
    border: 2px solid #d97706;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.back-link:hover {
    background: #d97706;
    color: #fff;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .about-hero {
        padding: 60px 20px;
    }

    .about-hero h1 {
        font-size: 2rem;
    }

    .about-hero-subtitle {
        font-size: 0.9rem;
    }

    .about-content {
        padding: 60px 0;
    }

    .about-section {
        margin-bottom: 50px;
    }

    .about-section .section-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }

    .about-text-box {
        padding: 25px;
    }

    .about-table {
        display: block;
        overflow-x: auto;
    }

    .about-table th,
    .about-table td {
        padding: 12px 15px;
        font-size: 0.85rem;
    }

    .about-table th {
        width: 30%;
    }

    .back-link {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .about-hero h1 {
        font-size: 1.6rem;
    }

    .about-section .section-title {
        font-size: 1.3rem;
    }

    .about-text-box {
        padding: 20px;
    }

    .about-table th,
    .about-table td {
        padding: 10px 12px;
        font-size: 0.8rem;
    }

    .about-table th {
        width: 35%;
    }
}
