/* =============================================
   about.html 専用スタイル
   ============================================= */

.page-header::before {
    content: 'ABOUT';
    position: absolute;
    right: -10px; bottom: -20px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 12rem;
    font-weight: 600;
    color: rgba(255,255,255,0.05);
    letter-spacing: -0.02em;
    pointer-events: none;
}

/* 国会写真をヘッダー背景に */
.page-header--photo {
    position: relative;
}
.page-header--photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/kokkai.jpg') center 45% / cover no-repeat;
    opacity: 0.2;
    z-index: 0;
}
.page-header--photo .page-header-inner {
    position: relative;
    z-index: 1;
}

main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 90px 60px 120px;
}

/* ミッション */
.mission-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 90px;
    align-items: start;
}
.mission-text p {
    font-size: 0.95rem;
    color: #333;
    line-height: 2.2;
    font-weight: 400;
    margin-bottom: 18px;
}
.mission-quote {
    background: var(--navy);
    padding: 48px 44px;
    position: relative;
}
.mission-quote::before {
    content: '"';
    font-family: 'Cormorant Garamond', serif;
    font-size: 8rem;
    color: rgba(184,150,90,0.15);
    position: absolute;
    top: 10px; left: 30px;
    line-height: 1;
}
.mission-quote blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--white);
    line-height: 1.6;
    letter-spacing: 0.05em;
    position: relative;
    z-index: 1;
}
.mission-quote blockquote em {
    font-style: normal;
    color: var(--gold2);
}
.mission-quote cite {
    display: block;
    margin-top: 20px;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.15em;
    font-style: normal;
}

/* 会社概要テーブル */
.company-section { margin-bottom: 90px; }
.company-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 12px;
}
.company-table tr { border-bottom: 1px solid rgba(184,150,90,0.15); }
.company-table tr:first-child { border-top: 1px solid rgba(184,150,90,0.15); }
.company-table th {
    width: 200px;
    padding: 24px 20px;
    text-align: left;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--navy);
    letter-spacing: 0.08em;
    background: rgba(184,150,90,0.06);
    vertical-align: top;
    border-right: 2px solid rgba(184,150,90,0.2);
}
.company-table td {
    padding: 24px 32px;
    font-size: 0.93rem;
    color: #333;
    font-weight: 400;
    line-height: 1.9;
}

/* アクセス */
.map-placeholder {
    width: 100%;
    height: 320px;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 24px;
    position: relative;
    overflow: hidden;
}
.map-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(0deg, transparent, transparent 49px, rgba(184,150,90,0.08) 49px, rgba(184,150,90,0.08) 50px),
        repeating-linear-gradient(90deg, transparent, transparent 49px, rgba(184,150,90,0.08) 49px, rgba(184,150,90,0.08) 50px);
}
.map-placeholder p {
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-align: center;
    position: relative;
    z-index: 1;
}
.map-placeholder p a {
    color: var(--gold);
    text-decoration: none;
}
.map-placeholder p strong {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: rgba(255,255,255,0.82);
    margin-bottom: 8px;
}

/* 事業内容タグ */
.biz-tag {
    display: inline-block;
    border: 1px solid rgba(184,150,90,0.45);
    color: var(--navy);
    font-size: 0.8rem;
    padding: 4px 12px;
    margin: 4px 4px 4px 0;
    letter-spacing: 0.05em;
    font-weight: 400;
}
    main { padding: 60px 24px 80px; }
    .mission-section { grid-template-columns: 1fr; gap: 40px; }
    .company-table th { width: 120px; padding: 18px 14px; }
    .company-table td { padding: 18px 20px; }
}
