/* ==================================================
   会社概要ページ
================================================== */


/* ==================================================
   中央寄せセクション見出し
================================================== */

.custom-underline-center {
    position: relative;
    display: inline-block;
}

.custom-underline-center::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 72px;
    height: 4px;
    border-radius: 9999px;
    background-color: #7CC644;
    transform: translateX(-50%);
}


/* ==================================================
   共通カード
================================================== */

.soft-card {
    border: 1px solid rgba(140, 90, 60, 0.12);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 40px rgba(140, 90, 60, 0.06);
}


/* ==================================================
   行動指針カード
================================================== */

.policy-card {
    min-height: 150px;
    padding: 28px;
    border: 1px solid rgba(140, 90, 60, 0.08);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.74);
}

.policy-number {
    margin-bottom: 18px;
    color: #F7B52C;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
}


/* ==================================================
   概要データ
================================================== */

.overview-table {
    overflow: hidden;
    border: 1px solid rgba(140, 90, 60, 0.12);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 40px rgba(140, 90, 60, 0.06);
}

.overview-row {
    display: grid;
    grid-template-columns: 180px 1fr;
    border-bottom: 1px solid rgba(140, 90, 60, 0.12);
}

.overview-row:last-child {
    border-bottom: none;
}

.overview-label {
    padding: 28px;
    background: rgba(253, 247, 239, 0.70);
    color: #8C5A3C;
    font-size: 16px;
    font-weight: 700;
}

.overview-content {
    padding: 28px;
    color: #504534;
    font-size: 16px;
    line-height: 1.8;
}


/* ==================================================
   概要データ：スマートフォン
================================================== */

@media (max-width: 767px) {
    .overview-row {
        grid-template-columns: 1fr;
    }

    .overview-label {
        padding: 20px 24px 8px;
        background: transparent;
    }

    .overview-content {
        padding: 8px 24px 24px;
    }
}


/* ==================================================
   HERO
================================================== */

.about-hero {
    position: relative;
    overflow: hidden;
    background-image: url("/assets/images/about/main.png");
    background-repeat: no-repeat;
    background-position: center right;
    background-size: cover;
}

.about-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(255, 248, 238, 0.95) 0%,
            rgba(255, 248, 238, 0.88) 38%,
            rgba(255, 248, 238, 0.42) 68%,
            rgba(255, 248, 238, 0.08) 100%
        );
    z-index: 1;
}

.about-hero::after {
    content: "";
    position: absolute;
    left: -120px;
    bottom: -140px;
    width: 360px;
    height: 360px;
    border-radius: 9999px;
    background: rgba(124, 198, 68, 0.18);
    z-index: 1;
}

.about-hero-title {
    color: #8C5A3C;
    text-shadow: 0 2px 0 rgba(255, 255, 255, 0.75);
}

.about-hero-text {
    color: #4A2E1E;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.80);
}


/* ==================================================
   HERO：スマートフォン
================================================== */

@media (max-width: 767px) {
    .about-hero {
        background-position: center right;
    }

    .about-hero::before {
        background:
            linear-gradient(
                90deg,
                rgba(255, 248, 238, 0.96) 0%,
                rgba(255, 248, 238, 0.90) 62%,
                rgba(255, 248, 238, 0.55) 100%
            );
    }
}