/* 会社概要ページ専用CSS */

/* ナビゲーションアクティブ状態 */
.nav-menu a.active {
    color: #666;
    position: relative;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #333;
}

.mobile-nav-menu a.active {
    color: #666;
    font-weight: 600;
}

/* ページヘッダー */
.page-header {
    position: relative;
    height: 300px;
    background: url('../images/page-header.webp') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 75px;
}

.page-header-content {
    position: relative;
    z-index: 2;
    color: #333;
    text-align: left;
    max-width: 1200px;
    width: 100%;
    padding: 0 60px;
}

.page-title {
    font-size: 3rem;
    font-weight: 500;
    margin-bottom: 0;
    letter-spacing: 0.1em;
    color: #333;
}

/* パンくずリスト */
.breadcrumb-section {
    background: #FAFAFA;
    padding: 20px 0;
}

.breadcrumb-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.breadcrumb {
    font-size: 14px;
    color: #666;
}

.breadcrumb a {
    color: #666;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.breadcrumb a:hover {
    opacity: 0.7;
}

.breadcrumb-separator {
    margin: 0 10px;
    color: #666;
}

.breadcrumb .current {
    color: #333;
}

/* メンバー紹介セクション */
.member-section {
    background: white;
    padding: 80px 0;
}

.member-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 10px;
    letter-spacing: 0.05em;
    line-height: 1.4;
}

.members-grid {
    display: flex;
    flex-direction: column;
    gap: 80px;
    max-width: 768px;
    margin: 0 auto;
}

.member-item {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: flex-start;
    padding-bottom: 40px;
    border-bottom: 1px solid #eee;
}

.member-photo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.member-photo img {
    width: 280px;
    height: auto;
}

.member-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.member-name-section {
    padding-top: 10px;
}

.member-name-jp {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    letter-spacing: 0.05em;
}

.member-name-en {
    font-size: 1.1rem;
    color: #666;
    font-weight: 400;
    margin: 0;
    letter-spacing: 0.02em;
}

.member-description {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.member-description p {
    font-size: 0.95rem;
    color: #333;
    line-height: 1.8;
    margin: 0;
    font-weight: 400;
    letter-spacing: 0.02em;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
    .member-container {
        padding: 0 40px;
    }

    .page-header-content {
        padding: 0 40px;
    }

    .breadcrumb-container {
        padding: 0 40px;
    }

    .member-item {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .member-left {
        align-self: center;
        text-align: center;
    }

    .member-photo {
        margin-bottom: 30px;
    }

    .member-photo img {
        width: 240px;
    }
}

@media (max-width: 768px) {
    .member-section {
        padding: 60px 0;
    }

    .member-container {
        padding: 0 30px;
    }

    .page-header {
        height: 200px;
    }

    .page-header-content {
        padding: 0 30px;
    }

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

    .breadcrumb-container {
        padding: 0 30px;
    }

    .breadcrumb {
        font-size: 12px;
    }

    .breadcrumb-separator {
        margin: 0 8px;
    }

    .section-header {
        margin-bottom: 60px;
    }

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

    .members-grid {
        gap: 60px;
    }

    .member-item {
        gap: 30px;
    }

    .member-photo img {
        width: 200px;
    }

    .member-name-jp {
        font-size: 1.6rem;
    }

    .member-name-en {
        font-size: 1rem;
    }

    .member-description p {
        font-size: 0.9rem;
        text-align: left;
    }

    .member-info {
        gap: 25px;
    }

    .member-name-section {
        padding-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .member-section {
        padding: 50px 0;
    }

    .member-container {
        padding: 0 20px;
    }

    .page-header {
        height: 160px;
    }

    .page-header-content {
        padding: 0 20px;
    }

    .page-title {
        font-size: 1.6rem;
    }

    .breadcrumb-container {
        padding: 0 20px;
    }

    .breadcrumb {
        font-size: 11px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .members-grid {
        gap: 50px;
    }

    .member-item {
        gap: 25px;
    }

    .member-photo img {
        width: 180px;
    }

    .member-name-jp {
        font-size: 1.4rem;
    }

    .member-name-en {
        font-size: 0.9rem;
    }

    .member-description p {
        font-size: 0.85rem;
        line-height: 1.7;
    }

    .member-description {
        gap: 18px;
    }

    .member-info {
        gap: 20px;
    }
}

/* 会社概要セクション */
.company-overview-section {
    background: white;
    padding: 80px 0;
}

.company-overview-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.company-overview-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
    max-width: 768px;
    margin: 0 auto;
}

/* 地図セクション */
.map-section {
    background: white;
    overflow: hidden;
}

.map-container {
    width: 100%;
    height: 300px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* 会社情報テーブル */
.company-info-table {
    background: white;
    overflow: hidden;
}

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

.company-info-table tr {
    border-bottom: 1px solid #eee;
}

.company-info-table tr:last-child {
    border-bottom: none;
}

.company-info-table td {
    padding: 20px 0px;
    vertical-align: top;
    background: white;
}

.company-info-table .label {
    font-weight: 600;
    color: #333;
    width: 200px;
    font-size: 16px;
    letter-spacing: 0.02em;
}

.company-info-table .value {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0.02em;
}

.company-link {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.company-link:hover {
    color: #333;
    text-decoration: underline;
}

.capital {
    font-size: 12px;
}

.shareholders-logo-img {
    max-width: 100%;
    height: auto;
}

/* レスポンシブ対応 - 会社概要セクション */
@media (max-width: 1024px) {
    .company-overview-container {
        padding: 0 40px;
    }

    .company-info-table .label {
        width: 160px;
        font-size: 14px;
    }

    .company-info-table .value {
        font-size: 14px;
    }

    .company-info-table td {
        padding: 18px 25px;
    }
}

@media (max-width: 768px) {
    .company-overview-section {
        padding: 60px 0;
    }

    .company-overview-container {
        padding: 0 30px;
    }

    .company-overview-content {
        gap: 40px;
    }

    .map-container {
        height: 250px;
    }

    .company-info-table .label {
        width: 120px;
        font-size: 13px;
    }

    .company-info-table .value {
        font-size: 13px;
    }

    .company-info-table td {
        padding: 15px 0px;
    }
}

@media (max-width: 480px) {
    .company-overview-section {
        padding: 50px 0;
    }

    .company-overview-container {
        padding: 0 20px;
    }

    .company-overview-content {
        gap: 30px;
    }

    .map-container {
        height: 200px;
    }

    .company-info-table .label {
        width: 100px;
        font-size: 12px;
        padding: 12px 0px;
    }

    .company-info-table .value {
        font-size: 12px;
        padding: 12px 0px;
    }
}