/* =========================================================================
   About/Company Specific Styles (Minimalist Theme)
   ========================================================================= */

.about-main {
    background-color: var(--c-white);
    padding-bottom: 80px;
    font-family: 'Noto Sans JP', sans-serif;
}

/* Page Hero */
.about-hero {
    position: relative;
    padding: 160px 0 100px;
    background: #fdfdfd;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
}

.about-hero-sub {
    font-size: 1rem;
    font-weight: 700;
    color: var(--c-gold);
    letter-spacing: 0.1em;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.about-hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--c-text);
    margin-bottom: 24px;
    letter-spacing: 0.05em;
    line-height: 1.3;
}

/* Mission Section */
.mission-section {
    background-color: #f7f6f2;
    /* 薄いベージュ */
    padding: 100px 0;
    text-align: center;
}

.mission-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.mission-catchphrase {
    font-size: 2rem;
    font-weight: 700;
    color: var(--c-text);
    margin-bottom: 40px;
    line-height: 1.5;
    letter-spacing: 0.05em;
}

.mission-text {
    font-size: 1.1rem;
    color: var(--c-text-light);
    line-height: 2.2;
    text-align: left;
    margin-bottom: 24px;
}

/* Company Profile Section */
.profile-section {
    padding: 100px 0;
}

.profile-container {
    max-width: 800px;
    margin: 0 auto;
}

.profile-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 40px;
}

.profile-table th,
.profile-table td {
    padding: 24px 20px;
    border-bottom: 1px solid #e0e0e0;
    text-align: left;
    vertical-align: top;
    font-size: 1.05rem;
    color: var(--c-text);
    line-height: 1.6;
}

.profile-table th {
    width: 25%;
    font-weight: 700;
    color: var(--c-text-dark);
    background-color: #fdfdfd;
}

.profile-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.profile-list li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 16px;
}

.profile-list li::before {
    content: "・";
    position: absolute;
    left: 0;
    color: var(--c-gold);
}

.profile-list li:last-child {
    margin-bottom: 0;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .about-hero {
        padding: 120px 20px 80px;
    }

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

    .mission-section {
        padding: 60px 0;
    }

    .mission-catchphrase {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }

    .mission-text {
        font-size: 1rem;
        line-height: 2;
    }

    .profile-section {
        padding: 60px 0;
    }

    /* Convert table to stacked layout on mobile */
    .profile-table,
    .profile-table tbody,
    .profile-table tr,
    .profile-table th,
    .profile-table td {
        display: block;
        width: 100%;
    }

    .profile-table tr {
        margin-bottom: 20px;
        border-bottom: 1px solid #e0e0e0;
        padding-bottom: 20px;
    }

    .profile-table th {
        border-bottom: none;
        padding: 0 0 8px 0;
        background-color: transparent;
        color: var(--c-gold);
    }

    .profile-table td {
        border-bottom: none;
        padding: 0;
    }
}