/* ==================== 私達についてページ固有スタイル ==================== */

.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: 3rem;
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: 2px;
}

.about-hero-subtitle {
    font-size: 1.2rem;
    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: 80px;
}

.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-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;
}

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

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

/* お問い合わせボックス */
.about-contact-box {
    background: linear-gradient(135deg, rgba(232, 130, 20, 0.08), rgba(142, 90, 45, 0.08));
    padding: 50px;
    border-radius: 8px;
    text-align: center;
    border: 2px solid #e7921c;
}

.about-contact-box p {
    font-size: 1.05rem;
    color: #4a2c11;
    margin-bottom: 30px;
    font-weight: 500;
}

.about-contact-box .btn-dark {
    display: inline-block;
    background: #e7921c;
    color: #fff;
    padding: 14px 40px;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.about-contact-box .btn-dark:hover {
    background: #8e5a2d;
}

/* レスポンシブ */
@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2rem;
    }

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

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

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

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

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

    .about-contact-box {
        padding: 30px;
    }

    .about-contact-box p {
        font-size: 0.95rem;
    }

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

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