@charset "UTF-8";

/* =========================================
   About Page Styles
   ========================================= */

.about-wrapper {
    padding: 40px 0 80px;
    max-width: 800px; /* 読みやすい幅に制限 */
    margin: 0 auto;
}

/* ページタイトル */
.about-header {
    text-align: center;
    margin-bottom: 60px;
}
.about-header h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}
.about-header .en-title {
    font-size: 1rem;
    color: #0E4C5E; /* ブランドカラー */
    font-weight: 700;
    letter-spacing: 0.1em;
    font-family: sans-serif;
}

/* セクション共通 */
.about-section {
    margin-bottom: 60px;
}

/* 見出しデザイン（参考サイト風） */
.about-heading {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
    border-bottom: 2px solid #0E4C5E;
    padding-bottom: 10px;
    margin-bottom: 30px;
}

/* 本文エリア */
.about-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

/* テーブルデザイン */
.about-table-wrap {
    background: #fff;
    overflow: hidden;
}
.about-table {
    width: 100%;
    border-collapse: collapse;
}
.about-table th,
.about-table td {
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    text-align: left;
    font-size: 0.95rem;
}
.about-table th {
    background-color: #F4F8FA; /* 薄い青背景 */
    width: 30%;
    font-weight: 700;
    color: #333;
}
.about-table td {
    background-color: #fff;
    color: #555;
}

/* スマホ対応（テーブル） */
@media (max-width: 600px) {
    .about-table th, .about-table td {
        display: block;
        width: 100%;
    }
    .about-table th {
        background-color: #F4F8FA;
        padding: 10px 15px;
    }
    .about-table td {
        padding: 15px;
    }
}

/* 法的文書エリア（少し文字を小さく） */
.legal-section .legal-content h3 {
    font-size: 1.1rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #444;
}
.legal-section .legal-content p {
    font-size: 0.9rem;
    color: #666;
}