/* --- ▼▼▼ Aboutページ専用のスタイル ▼▼▼ --- */
/* 共通スタイルは /css/style.css から読み込まれます */
.about-main {
    padding-top: 140px;
    padding-bottom: 100px;
    min-height: calc(100vh - 350px);
    display: flex;
    justify-content: center;
    align-items: center;
}

.content-wrapper {
    max-width: 900px;
    text-align: center;
    padding: 0 20px;
}

.content-wrapper h1 {
    font-size: 3.5em;
    font-weight: 900;
    margin-bottom: 40px;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #1a1a1a 0%, #4a4a4a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.content-wrapper p:not(.subtitle) {
    font-size: 1.2em;
    line-height: 1.8;
    text-align: left;
    margin-bottom: 20px;
}

/* セクション分けスタイル */
.about-section {
    margin-bottom: 50px;
    padding: 50px 35px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 4px solid transparent;
    position: relative;
    overflow: hidden;
}

.about-section:hover {
    transform: translateY(-12px) scale(1.01);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.section-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.section-icon {
    font-size: 3em;
    line-height: 1;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s;
}

.about-section:hover .section-icon {
    transform: scale(1.1) rotate(5deg);
}

.section-header h2 {
    font-size: 2em;
    margin: 0;
    color: #1a1a1a;
    font-weight: 700;
    letter-spacing: 1px;
    border-bottom: none;
    padding-bottom: 0;
    flex: 1;
}

.about-section p {
    color: #555;
    margin: 0 0 16px;
    font-size: 1.1em;
    line-height: 1.9;
}

.about-section p:last-child {
    margin-bottom: 0;
}

/* セクション冒頭のリード文 */
.section-lead {
    font-size: 1.35em !important;
    font-weight: 600;
    color: #1a1a1a !important;
    line-height: 1.6 !important;
    margin-bottom: 24px !important;
}

/* セクションごとのアクセントカラー */
.about-overview { border-top-color: #4A90E2; }
.about-background { border-top-color: #00d4ff; }
.about-vision { border-top-color: #7ED321; }
.about-team { border-top-color: #BD10E0; }

/* ミッション 2x2 カードグリッド */
.mission-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 10px;
    margin-bottom: 20px;
}

.mission-card {
    background: #f8f9fa;
    padding: 28px;
    border-radius: 12px;
    border-left: 3px solid #7ED321;
    text-align: left;
    transition: box-shadow 0.3s ease;
}

.mission-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.mission-card-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #7ED321;
    color: #fff;
    font-size: 0.9em;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 12px;
}

.mission-card-title {
    font-size: 1.1em;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
    line-height: 1.5;
}

.mission-card-desc {
    font-size: 1em;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .about-main {
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .content-wrapper {
        padding: 0 15px;
    }

    .content-wrapper h1 {
        font-size: 2.5em;
        letter-spacing: 1px;
        margin-bottom: 30px;
    }

    .subtitle {
        font-size: 1.1em;
        margin-bottom: 50px;
    }

    .about-section {
        padding: 35px 20px;
        margin-bottom: 35px;
    }

    .section-icon {
        font-size: 2.2em;
    }

    .section-header h2 {
        font-size: 1.6em;
    }

    .about-section p {
        font-size: 1.05em;
    }

    .section-lead {
        font-size: 1.2em !important;
    }

    .mission-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .mission-card {
        padding: 22px;
    }
}

@media (max-width: 480px) {
    .about-main {
        padding-top: 90px;
        padding-bottom: 50px;
    }

    .content-wrapper h1 {
        font-size: 2em;
        margin-bottom: 20px;
    }

    .subtitle {
        font-size: 1em;
        margin-bottom: 40px;
    }

    .about-section {
        padding: 30px 15px;
        margin-bottom: 30px;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .section-icon {
        font-size: 2em;
    }

    .section-header h2 {
        font-size: 1.4em;
    }

    .about-section p {
        font-size: 1.05em;
        line-height: 1.7;
    }

    .mission-card {
        padding: 18px;
    }

    .mission-card-title {
        font-size: 1em;
    }

    .mission-card-desc {
        font-size: 0.95em;
    }
}

/* geometric-background は削除されました（base.css の固定背景を使用） */