.company-top-section {
    padding-top: 170px;    /* 固定ヘッダー（約70px）＋コンテンツ上の余白100px */
    padding-bottom: 120px; /* 下側の余白を共通の.section（120px）と同期させる */
}
/* ==========================================
   会社概要（コンポーネント管理化）
========================================== */
.company-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
    /* 横幅制限や中央寄せは .container に任せるため削除 */
}
.company-photo {
    flex: 1;
    max-width: 320px;
}
.photo-placeholder {
    width: 100%;
    aspect-ratio: 1/1;
    background-color: #f7f5f0;
    border: 1px solid #eaeaea;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.photo-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.photo-placeholder span {
    color: #bfa15f;
    font-weight: 600;
}
.profile-caption {
    margin-top: 15px;
    font-size: 14px;
    color: #777;
    text-align: center;
    letter-spacing: 0.05em;
}
.profile-caption strong {
    font-size: 18px;
    color: #1a1a1a;
}
.company-info {
    flex: 2;
    min-width: 300px;
    width: 100%;
}
.company-table {
    width: 100%;
    border-collapse: collapse;
}
.company-table th, .company-table td {
    padding: 20px;
    border-bottom: 1px solid #eaeaea;
    text-align: left;
}
.company-table th {
    width: 30%;
    font-weight: 600;
    color: #1a1a1a;
}

@media screen and (max-width: 768px) {
    .company-wrapper { 
        flex-direction: column; 
        align-items: center; 
        gap: 40px; 
    }
    .company-photo { 
        width: 100%; 
        max-width: 280px; 
    }
    .company-table th, .company-table td { 
        display: block; 
        width: 100%; 
        padding: 10px 20px; 
    }
    .company-table th { 
        border: none; 
        padding-bottom: 0; 
    }
}

/* ==========================================
   Contact セクション（About usページ下部）
========================================== */
.about-contact-section {
    position: relative;
    width: 100%;
    margin-top: 120px;
    padding: 120px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* 画像を固定し、スクロール時にパララックス効果を出す */
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* 画像のトーンを落とす、深いネイビーの透過レイヤー */
    background-color: rgba(17, 34, 51, 0.85);
    z-index: 1;
}

.contact-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* 左側のテキスト群 */
.contact-left .contact-title {
    font-size: clamp(40px, 5vw, 60px);
    font-family: 'Helvetica Neue', Arial, serif;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 15px;
    letter-spacing: 0.05em;
}

.contact-left .contact-sub {
    font-size: 14px;
    color: #e0e0e0;
    letter-spacing: 0.05em;
}

/* 右側のボタンデザイン */
.contact-right {
    display: flex;
    align-items: center;
}

.contact-btn {
    display: flex;
    align-items: center;
    padding: 20px 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background-color: transparent;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.8);
}

.contact-btn i.fa-envelope {
    font-size: 18px;
    margin-right: 20px;
    color: #ffffff;
}

.contact-btn .btn-divider {
    width: 1px;
    height: 24px;
    background-color: rgba(255, 255, 255, 0.3);
    margin-right: 20px;
}

.contact-btn .btn-text {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.1em;
    margin-right: 40px;
}

.contact-btn i.fa-arrow-right-long {
    font-size: 14px;
}

/* ==========================================
   スマートフォン対応（レスポンシブ）
========================================== */
@media screen and (max-width: 768px) {
    .about-contact-section {
        padding: 80px 0;
    }
    .contact-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 50px;
        padding: 0 20px;
    }
    .contact-left .contact-title {
        margin-bottom: 10px;
    }
    .contact-right {
        width: 100%;
    }
    .contact-btn {
        width: 100%;
        justify-content: flex-start;
        padding: 18px 25px;
    }
    .contact-btn .btn-text {
        margin-right: auto; /* テキストと矢印の間隔を自動で広げて右端に寄せる */
    }
    .company-table td {
        font-size: 14px;
        line-height: 1.8;
        padding: 5px 15px 20px 15px; /* 上右下左の余白 */
    }
}
