@charset "UTF-8";

/* =========================================
   法人概要ページ用CSS
   ヘッダー・ページタイトルの既存デザイン維持版
========================================= */

:root {
    --about-blue: #84D2E5;
    --about-yellow: #F7D070;
    --about-map-yellow: #F8CC24;
    --about-brown: #5B2D12;
    --about-text: #333333;
    --about-text-sub: #555555;
    --about-text-muted: #777777;
    --about-border: #E8E8E8;
}

/* =========================================
   既存のページ全体
========================================= */

.about-section {
    /* history.cssと同じタイトル開始位置 */
    padding: 0 20px 80px;
    margin-top: -40px !important;
}

.about-section,
.about-section * {
    box-sizing: border-box;
}

.about-section .section-inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* ページタイトル */
.about-section .page-header {
    width: 100%;
    margin: 0 !important;
    padding: 0 !important;
    text-align: left;
}

.about-section .page-title {
    display: block;
    width: 100%;
    margin: 0 0 20px !important;
    padding: 0 0 15px;
    border-bottom: 2px solid var(--about-yellow);
    color: var(--about-blue);
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.05em;
}

.about-section .sub-title {
    margin: 0 0 30px;
    color: var(--about-blue);
    font-size: 1.6rem;
    font-weight: bold;
    line-height: 1.4;
    letter-spacing: 0.05em;
    text-align: center;
}

/* =========================================
   法人概要トップ
========================================= */

.about-top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
}

.about-text,
.about-image {
    min-width: 0;
}

.about-desc {
    margin: 0 0 30px;
    color: var(--about-text);
    font-size: 1.05rem;
    line-height: 1.9;
}

.about-info {
    display: grid;
    grid-template-columns: 100px minmax(0, 1fr);
    gap: 8px 0;
    margin: 0;
    color: var(--about-text);
    font-size: 1rem;
    line-height: 2;
}

.about-info dt,
.about-info dd {
    margin: 0;
}

.about-info dt {
    font-weight: bold;
    white-space: nowrap;
}

.about-info dd {
    min-width: 0;
    overflow-wrap: anywhere;
}

.about-image img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 18px;
    box-shadow: 0 16px 34px rgba(83, 50, 25, 0.10);
}

/* =========================================
   ビジョン・見取り図
   可読性を優先した再設計版
========================================= */

.vision-map-section {
    position: relative;
    margin: 0 0 90px;
    padding: 26px;
    overflow: hidden;
    border-radius: 30px;
    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.10),
            rgba(255, 255, 255, 0) 42%
        ),
        var(--about-map-yellow);
    box-shadow: 0 18px 42px rgba(112, 76, 6, 0.12);
    isolation: isolate;
}

/* 背景装飾は控えめにして内容を優先 */
.vision-map-section::before {
    content: "";
    position: absolute;
    top: -110px;
    right: -90px;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    pointer-events: none;
}

.vision-map-section::after {
    content: "";
    position: absolute;
    bottom: -80px;
    left: -70px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.09);
    pointer-events: none;
}

.vision-map-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(300px, 0.88fr) minmax(460px, 1.12fr);
    gap: 24px;
    align-items: stretch;
}

/* 以前の装飾円は非表示にして情報量を整理 */
.vision-map-decoration {
    display: none;
}

/* -----------------------------------------
   左側メッセージパネル
----------------------------------------- */

.vision-map-copy {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    padding: clamp(32px, 4vw, 52px);
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 24px;
    background: rgba(255, 251, 236, 0.94);
    box-shadow:
        0 14px 30px rgba(104, 67, 5, 0.09),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.vision-map-label {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    min-height: 30px;
    margin: 0 0 24px;
    padding: 6px 13px;
    border: 1px solid rgba(91, 45, 18, 0.22);
    border-radius: 999px;
    background: rgba(248, 204, 36, 0.16);
    color: var(--about-brown);
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.16em;
}

.vision-copy-image {
    display: block;
    width: min(100%, 560px);
    height: auto;
    object-fit: contain;
    filter: none;
}

.vision-map-note {
    max-width: 34em;
    margin: 26px 0 0;
    padding-top: 20px;
    border-top: 1px solid rgba(91, 45, 18, 0.17);
    color: rgba(70, 39, 17, 0.88);
    font-size: 0.98rem;
    font-weight: 600;
    line-height: 1.9;
    letter-spacing: 0.01em;
}

/* -----------------------------------------
   右側見取り図パネル
----------------------------------------- */

.vision-map-graphic {
    position: relative;
    display: grid;
    grid-template-rows: 1fr auto;
    place-items: center;
    min-width: 0;
    min-height: 520px;
    margin: 0;
    padding: 24px 24px 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: 24px;
    background:
        radial-gradient(
            circle at 50% 43%,
            rgba(248, 204, 36, 0.10),
            rgba(248, 204, 36, 0) 58%
        ),
        rgba(255, 255, 255, 0.96);
    box-shadow:
        0 16px 34px rgba(104, 67, 5, 0.10),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.vision-map-graphic-background {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 78%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background: rgba(248, 204, 36, 0.07);
    transform: translate(-50%, -53%);
    pointer-events: none;
}

.vision-map-image {
    position: relative;
    z-index: 2;
    display: block;
    width: min(100%, 720px);
    max-width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    transform: none;
    filter: drop-shadow(0 14px 18px rgba(88, 55, 18, 0.11));
}

.vision-map-caption {
    position: relative;
    right: auto;
    bottom: auto;
    z-index: 3;
    margin-top: 8px;
    padding: 7px 13px;
    border: 1px solid rgba(91, 45, 18, 0.12);
    border-radius: 999px;
    background: #FFF7D7;
    color: rgba(91, 45, 18, 0.74);
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.02em;
    text-align: center;
    backdrop-filter: none;
}


/* スクリーンリーダー用 */
.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* =========================================
   組織概要
========================================= */

.org-section {
    margin-bottom: 80px;
}

.org-table {
    width: 100%;
    border-collapse: collapse;
}

.org-table th,
.org-table td {
    padding: 25px 20px;
    border-bottom: 1px solid #DDDDDD;
    color: var(--about-text);
    font-size: 1.05rem;
    line-height: 1.7;
    text-align: left;
}

.org-table tr:first-child th,
.org-table tr:first-child td {
    border-top: 1px solid #DDDDDD;
}

.org-table th {
    width: 25%;
    font-weight: normal;
}

/* =========================================
   プロフィール
========================================= */

.profile-section {
    margin-bottom: 40px;
}

.profile-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.profile-item {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 42px;
    align-items: flex-start;
    width: 100%;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--about-border);
}

.profile-item:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.profile-img {
    width: 220px;
}

.profile-img img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 14px;
    object-fit: cover;
}

.profile-data {
    width: 100%;
    min-width: 0;
}

.profile-name {
    margin: 0 0 15px;
    color: var(--about-text);
    font-size: 1.4rem;
    font-weight: bold;
    line-height: 1.4;
    letter-spacing: 0.1em;
}

.profile-text {
    max-width: none;
    margin: 0 0 20px;
    color: var(--about-text-sub);
    font-size: 1rem;
    line-height: 1.8;
    overflow-wrap: break-word;
}

.profile-position {
    margin: 0;
    color: var(--about-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* =========================================
   タブレット
========================================= */

@media screen and (max-width: 1024px) {
    .about-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .about-image {
        max-width: 760px;
    }

    .vision-map-section {
        padding: 22px;
    }

    .vision-map-inner {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .vision-map-copy {
        align-items: center;
        text-align: center;
    }

    .vision-map-label {
        align-self: center;
    }

    .vision-copy-image {
        width: min(100%, 620px);
    }

    .vision-map-note {
        max-width: 40em;
    }

    .vision-map-graphic {
        min-height: 0;
    }

    .vision-map-image {
        width: min(100%, 720px);
        max-height: none;
    }
}

/* =========================================
   スマホ
========================================= */

@media screen and (max-width: 768px) {
    .about-section {
        padding: 0 16px 60px;
        margin-top: -20px !important;
    }

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

    .about-top {
        gap: 28px;
        margin-bottom: 60px;
    }

    .about-desc {
        font-size: 1rem;
        line-height: 1.8;
    }

    .about-info {
        grid-template-columns: 1fr;
        gap: 2px;
    }

    .about-info dt {
        margin-top: 12px;
    }

    .about-info dt:first-child {
        margin-top: 0;
    }

    /* スマホでは黄色エリアを画面端まで広げる */
    .vision-map-section {
        margin-right: -16px;
        margin-bottom: 65px;
        margin-left: -16px;
        padding: 16px;
        border-radius: 0;
        box-shadow: none;
    }

    .vision-map-inner {
        gap: 16px;
    }

    .vision-map-copy {
        padding: 30px 20px;
        border-radius: 18px;
    }

    .vision-map-label {
        margin-bottom: 18px;
    }

    .vision-copy-image {
        width: min(100%, 540px);
    }

    .vision-map-note {
        margin-top: 20px;
        padding-top: 16px;
        font-size: 0.92rem;
        line-height: 1.8;
    }

    .vision-map-graphic {
        padding: 20px 14px 16px;
        border-radius: 18px;
    }

    .vision-map-graphic-background {
        width: 96%;
    }

    .vision-map-image {
        width: min(100%, 640px);
    }

    .vision-map-caption {
        width: fit-content;
        max-width: 100%;
        white-space: normal;
    }

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

    .profile-img {
        width: 100%;
        max-width: 250px;
    }
}

/* =========================================
   小型スマホ
========================================= */

@media screen and (max-width: 480px) {
    .about-section {
        padding-right: 14px;
        padding-left: 14px;
    }

    .about-section .page-title {
        font-size: 1.8rem;
    }

    .vision-map-section {
        margin-right: -14px;
        margin-left: -14px;
        padding: 12px;
    }

    .vision-map-copy {
        padding: 26px 16px;
    }

    .vision-map-label {
        min-height: 29px;
        padding: 5px 12px;
        font-size: 0.68rem;
    }

    .vision-map-note {
        padding-right: 2px;
        padding-left: 2px;
    }

    .vision-map-graphic {
        padding: 16px 8px 14px;
    }

    .vision-map-image {
        width: 100%;
    }

    .profile-name {
        font-size: 1.25rem;
    }
}

/* =========================================
   動きを減らす設定
========================================= */

@media (prefers-reduced-motion: reduce) {
    .about-section *,
    .about-section *::before,
    .about-section *::after {
        animation: none !important;
        transition: none !important;
    }
}
