/**
 * ABOUTページ用CSS
 * about.css
 */

/* ============================================
   メインコンテンツ
   ============================================ */
.about-page {
    padding: 60px 0 100px;
}

.about-page .container {
    max-width: 1040px;
    margin: 0 auto;
    padding: 0 20px;
}

/* セクション共通 */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-label {
    display: block;
    font-family: var(--font-en);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--color-text-light);
    margin-bottom: 10px;
}

.section-title {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

/* ============================================
   プロフィールセクション
   ============================================ */
.about-profile {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

.profile-image {
    aspect-ratio: 1;
    overflow: hidden;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-content {
    
}

.profile-label {
    display: block;
    font-family: var(--font-en);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--color-text-light);
    margin-bottom: 15px;
}

.profile-name {
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 10px;
    letter-spacing: 0.05em;
}

.profile-title {
    font-size: 14px;
    color: var(--color-text-light);
    margin: 0 0 25px;
}

.profile-intro {
    font-size: 15px;
    line-height: 2;
    margin: 0 0 15px;
    font-weight: 500;
}

.profile-description {
    font-size: 14px;
    line-height: 2;
    color: var(--color-text-light);
    margin: 0 0 25px;
}

.profile-sns {
    display: flex;
    gap: 15px;
}

.sns-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--color-border);
    color: var(--color-text);
    transition: all 0.2s;
}

.sns-link:hover {
    background: var(--color-text);
    border-color: var(--color-text);
    color: var(--color-white);
}

/* ============================================
   こだわりセクション
   ============================================ */
.about-policy {
    margin-bottom: 100px;
}

.policy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.policy-item {
    text-align: center;
    padding: 40px 25px;
    background: var(--color-bg);
}

.policy-number {
    display: block;
    font-family: var(--font-en);
    font-size: 32px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 20px;
}

.policy-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 15px;
}

.policy-text {
    font-size: 13px;
    line-height: 2;
    color: var(--color-text-light);
    margin: 0;
    text-align: left;
}

/* ============================================
   実績セクション
   ============================================ */
.about-achievement {
    margin-bottom: 100px;
}

.achievement-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--color-border);
}

.achievement-item {
    text-align: center;
    padding: 50px 20px;
    border-right: 1px solid var(--color-border);
}

.achievement-item:last-child {
    border-right: none;
}

.achievement-number {
    display: block;
    font-family: var(--font-en);
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 15px;
}

.achievement-label {
    font-size: 13px;
    color: var(--color-text-light);
}

/* ============================================
   SNSセクション
   ============================================ */
.about-sns {
    text-align: center;
    margin-bottom: 100px;
}

.sns-description {
    font-size: 14px;
    line-height: 2;
    color: var(--color-text-light);
    margin: 0 0 30px;
}

.sns-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.sns-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid var(--color-border);
    color: var(--color-text);
    transition: all 0.2s;
}

.sns-button:hover {
    background: var(--color-text);
    border-color: var(--color-text);
    color: var(--color-white);
}

/* ============================================
   お問い合わせCTA
   ============================================ */
.about-contact {
    background: var(--color-text);
    color: var(--color-white);
    padding: 80px 40px;
    text-align: center;
}

.about-contact .section-label {
    color: rgba(255, 255, 255, 0.6);
}

.about-contact .section-title {
    color: var(--color-white);
}

.contact-text {
    font-size: 14px;
    line-height: 2;
    margin: 0 0 30px;
    opacity: 0.8;
}

.contact-button {
    display: inline-block;
    padding: 18px 50px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    background: var(--color-white);
    color: var(--color-text);
    transition: all 0.2s;
}

.contact-button:hover {
    opacity: 0.8;
}

/* ============================================
   レスポンシブ
   ============================================ */
@media (max-width: 768px) {
    .about-page {
        padding: 40px 0 60px;
    }

    .section-header {
        margin-bottom: 30px;
    }

    .section-title {
        font-size: 20px;
    }

    .about-profile {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 60px;
    }

    .profile-image {
        max-width: 250px;
        margin: 0 auto;
    }

    .profile-content {
        text-align: center;
    }

    .profile-name {
        font-size: 28px;
    }

    .profile-sns {
        justify-content: center;
    }

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

    .policy-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .policy-item {
        padding: 30px 20px;
    }

    .policy-number {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .policy-title {
        font-size: 16px;
    }

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

    .achievement-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .achievement-item {
        padding: 30px 15px;
    }

    .achievement-item:nth-child(2) {
        border-right: none;
    }

    .achievement-item:nth-child(1),
    .achievement-item:nth-child(2) {
        border-bottom: 1px solid var(--color-border);
    }

    .achievement-number {
        font-size: 36px;
    }

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

    .sns-buttons {
        flex-direction: column;
        align-items: center;
    }

    .sns-button {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .about-contact {
        padding: 50px 20px;
    }
}
