/*
 * Art・Value ページスタイル
 * 会社概要などの一般ページで使用
 */

/* ページヘッダー */
.page-header {
    background: var(--bg-gradient);
    color: white;
    padding: 160px 32px 80px;
    text-align: center;
    margin-top: 73px;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.page-header p {
    font-size: 1.125rem;
    opacity: 0.9;
    font-weight: 500;
    letter-spacing: 0.05em;
}

/* メインコンテンツ */
.main-content {
    padding: 80px 32px;
}

/* 会社情報テーブル */
.company-info {
    max-width: 900px;
    margin: 0 auto 80px;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.info-table {
    width: 100%;
}

.info-table tr {
    border-bottom: 1px solid var(--border-light);
}

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

.info-table th {
    background: var(--bg-light);
    padding: 24px 32px;
    text-align: left;
    font-weight: 600;
    color: var(--text-dark);
    width: 200px;
    vertical-align: top;
    font-size: 0.9375rem;
}

.info-table td {
    padding: 24px 32px;
    color: var(--text-medium);
    line-height: 1.8;
    font-size: 0.9375rem;
}

.info-table td strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* アクセス情報 */
.access-section {
    max-width: 900px;
    margin: 0 auto;
}

.access-section h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 40px;
    font-weight: 700;
    text-align: center;
    letter-spacing: -0.02em;
}

.office-card {
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    padding: 40px;
    margin-bottom: 30px;
    border: 1px solid var(--border-light);
}

.office-card h3 {
    font-size: 1.375rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: -0.01em;
}

.office-card .address {
    font-size: 1rem;
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.75;
}

.office-label {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 6px 16px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

/* 関係会社 */
.related-companies {
    max-width: 900px;
    margin: 60px auto 0;
    background: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid var(--border-light);
}

.related-companies h3 {
    font-size: 1.375rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.related-companies ul {
    list-style: none;
    padding: 0;
}

.related-companies li {
    padding: 14px 0;
    padding-left: 32px;
    position: relative;
    color: var(--text-medium);
    font-size: 0.9375rem;
}

.related-companies li::before {
    content: "🏢";
    position: absolute;
    left: 0;
    font-size: 1.125rem;
}

/* レスポンシブ */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.5em;
    }

    .info-table th {
        display: block;
        width: 100%;
        border-bottom: none;
        padding-bottom: 10px;
    }

    .info-table td {
        display: block;
        width: 100%;
        padding-top: 0;
    }
}
