@charset "UTF-8";

/* =========================================
   About Page: ビジョン・メッセージ
   ========================================= */

/* ビジョンセクション */
.about-vision-section {
    padding: 120px 0;
    background-color: #153828;
}

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

.vision-content .lead-text {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 900;
    line-height: 1.5;
    color: var(--white);
    margin-bottom: 40px;
    letter-spacing: 0.05em;
}

.vision-content .description {
    font-size: 1.05rem;
    line-height: 2.2;
    color: rgba(255, 255, 255, 0.7);
    text-align: left;
    max-width: 700px;
    margin: 0 auto;
}

/* メッセージセクション */
.about-message-section {
    padding: 120px 0;
    background-color: #153828;
}

.message-box {
    font-size: 1.05rem;
    line-height: 2.2;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 60px;
}

.about-cta {
    display: flex;
    justify-content: center;
}

/* =========================================
   About Page: プロフィールカード
   ========================================= */

.about-profile-section {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.2); /* 少し背景を落としてカードを際立たせる */
}

.about-card-wrapper {
    max-width: 850px;
    margin: 0 auto;
}

/* 共通glass-cardをベースにAbout用に調整 */
.about-card {
    padding: 80px 60px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 15px;
}

.card-title {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 50px;
    text-align: center;
    font-weight: 900;
    letter-spacing: 0.1em;
}

/* --- 会社概要テーブルの復元 --- */
.about-info-table {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.info-row {
    display: flex; /* 横並びを復活 */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    margin: 0;
}

.info-row dt {
    width: 30%;
    font-weight: 700;
    color: var(--gold);
    font-size: 1rem;
    flex-shrink: 0;
}

.info-row dd {
    width: 70%;
    color: var(--white);
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
}

/* =========================================
   About Page: Responsive
   ========================================= */

@media (max-width: 768px) {
    .about-card {
        padding: 40px 25px;
    }

    .card-title {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }

    /* テーブルを縦並びに切り替え */
    .info-row {
        flex-direction: column;
    }

    .info-row dt {
        width: 100%;
        margin-bottom: 10px;
        font-size: 0.9rem;
    }

    .info-row dd {
        width: 100%;
        font-size: 1rem;
    }

    .about-vision-section,
    .about-message-section {
        padding: 80px 0;
    }
}