/* ==============================
   リーガルページ共通
   ============================== */
.legal-header {
    padding: 20px 0;
    background: #f7f6f3;
    border-bottom: 1px solid #e8e4df;
}

.legal-back {
    font-size: 0.8rem;
    color: #999;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

.legal-back:hover {
    color: #b8a080;
}

.legal-page {
    padding: 80px 0 100px;
    background: #f7f6f3;
}

.legal-title {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.legal-line {
    width: 36px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #b8a080, transparent);
    margin: 0 auto 52px;
}

.legal-content {
    background: #fff;
    padding: 52px 44px;
    border-radius: 4px;
}

.legal-intro {
    font-size: 0.88rem;
    color: #666;
    line-height: 2;
    font-weight: 300;
    margin-bottom: 40px;
}

.legal-section {
    margin-bottom: 36px;
    padding-bottom: 36px;
    border-bottom: 1px solid #f0ede8;
}

.legal-section:last-of-type {
    border-bottom: none;
    margin-bottom: 24px;
    padding-bottom: 0;
}

.legal-section h2 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    color: #1a1a1a;
}

.legal-section p {
    font-size: 0.84rem;
    color: #666;
    line-height: 2;
    font-weight: 300;
}

.legal-section ul {
    list-style: none;
    margin-top: 12px;
}

.legal-section ul li {
    padding: 6px 0 6px 20px;
    font-size: 0.84rem;
    color: #666;
    line-height: 1.8;
    font-weight: 300;
    position: relative;
}

.legal-section ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 14px;
    width: 6px;
    height: 1px;
    background: #b8a080;
}

.legal-info {
    background: #faf9f7;
    padding: 32px;
    border-radius: 4px;
}

.legal-info dl {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 0;
}

.legal-info dt,
.legal-info dd {
    padding: 16px 0;
    border-bottom: 1px solid #eee;
    font-size: 0.84rem;
}

.legal-info dt {
    font-weight: 600;
    color: #666;
}

.legal-info dd {
    color: #333;
    font-weight: 400;
}

.legal-info dl > dt:last-of-type,
.legal-info dl > dd:last-of-type {
    border-bottom: none;
}

.legal-info a {
    color: #b8a080;
    font-weight: 500;
    border-bottom: 1px solid rgba(184,160,128,0.3);
    transition: border-color 0.3s;
}

.legal-info a:hover {
    border-color: #b8a080;
}

.legal-date {
    font-size: 0.75rem;
    color: #bbb;
    margin-top: 40px;
    text-align: right;
}

/* スマホ対応 */
@media (max-width: 600px) {
    .legal-page { padding: 60px 0 72px; }
    .legal-title { font-size: 1.25rem; }
    .legal-content { padding: 32px 20px; }
    .legal-info { padding: 20px; }
    .legal-info dl {
        grid-template-columns: 1fr;
    }
    .legal-info dt {
        padding: 12px 0 2px;
        border-bottom: none;
        font-size: 0.75rem;
        color: #999;
    }
    .legal-info dd {
        padding: 0 0 12px;
        font-size: 0.82rem;
    }
}
