/* ================================
   基本設定
================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0A7ECF;
    --secondary-color: #34495E;
    --bg-light: #F5F7FA;
    --bg-blue-light: #E8F4F8;
    --text-dark: #2C3E50;
    --text-gray: #546E7A;
    --white: #FFFFFF;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 15px rgba(0, 0, 0, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--text-dark);
    line-height: 1.8;
    background-color: var(--white);
}

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

.pc-only {
    display: inline;
}

.sp-only {
    display: none;
}

/* ================================
   ヘッダー
================================ */
.header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: var(--shadow-hover);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-right: 40px;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-dark);
}

.logo img {
    height: 50px;
    width: auto;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo-text .agent {
    font-weight: 400;
    color: var(--text-gray);
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 5px 0;
    border-bottom: 2px solid transparent;
}

.nav a:hover,
.nav a.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

/* ================================
   ヒーローセクション
================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 126, 207, 0.7) 0%, rgba(52, 73, 94, 0.75) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    padding: 80px 20px 40px;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 30px;
    letter-spacing: 0.05em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 2;
    margin-bottom: 40px;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ================================
   ボタン
================================ */
.btn {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: var(--secondary-color);
    color: var(--white);
    border-color: var(--secondary-color);
}

.btn-secondary:hover {
    background: transparent;
    color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-large {
    padding: 18px 50px;
    font-size: 1.1rem;
}

/* ================================
   セクション共通
================================ */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* ================================
   コンセプトセクション
================================ */
.concept {
    background: var(--bg-light);
}

.concept-content {
    max-width: 900px;
    margin: 0 auto;
}

.concept-text {
    font-size: 1.1rem;
    line-height: 2;
    margin-bottom: 25px;
    text-align: center;
}

/* ================================
   ターゲットセクション
================================ */
.target {
    background: var(--white);
}

.target-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.target-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.target-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.target-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.target-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    color: var(--text-dark);
}

.target-list {
    list-style: none;
    margin-bottom: 25px;
}

.target-list li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 12px;
    line-height: 1.8;
}

.target-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.target-text {
    margin-bottom: 25px;
    line-height: 1.8;
}

.target-card .btn {
    width: 100%;
    margin-top: 10px;
}

/* ================================
   USPセクション
================================ */
.usp {
    background: var(--bg-blue-light);
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.usp-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    text-align: center;
}

.usp-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.usp-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    opacity: 0.8;
}

.usp-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
    line-height: 1.6;
}

.usp-text {
    line-height: 1.8;
    color: var(--text-gray);
}

/* ================================
   PVS agentとは（統合セクション）
================================ */
.about-integrated {
    background: var(--white);
}

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

.about-section:last-child {
    margin-bottom: 0;
}

.about-subtitle {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--text-dark);
    text-align: center;
}

.about-text {
    font-size: 1.1rem;
    line-height: 2;
    margin-bottom: 20px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* 比較表 */
.comparison-table {
    overflow-x: auto;
    margin: 30px 0;
}

.comparison-table table {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border-collapse: collapse;
    background: var(--white);
    box-shadow: var(--shadow);
    border-radius: 10px;
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid #E0E0E0;
}

.comparison-table th {
    background: var(--bg-light);
    font-weight: 700;
    color: var(--text-dark);
}

.comparison-table th.highlight,
.comparison-table td.highlight {
    background: var(--bg-blue-light);
    color: var(--primary-color);
    font-weight: 600;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

/* 強みグリッド */
.strength-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.strength-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.strength-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

.strength-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.strength-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.strength-text {
    line-height: 1.8;
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* ================================
   メッセージCTAセクション
================================ */
.message-cta {
    background: var(--secondary-color);
    color: var(--white);
    text-align: center;
}

.message-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.message-cta .btn-primary {
    background: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
}

.message-cta .btn-primary:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--white);
}

.message-cta .btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.message-cta .btn-secondary:hover {
    background: var(--white);
    color: var(--secondary-color);
    border-color: var(--white);
}

/* ================================
   フッター
================================ */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: transparent;
}

.footer-logo img {
    display: none;
}

.footer-slogan {
    margin-top: 10px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-nav h4,
.footer-contact h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-nav ul {
    list-style: none;
}

.footer-nav a {
    color: var(--white);
    text-decoration: none;
    line-height: 2;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-nav a:hover {
    opacity: 1;
}

.footer-contact p {
    line-height: 2;
    opacity: 0.8;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--primary-color);
}

.footer .logo-text {
    color: var(--white);
    font-size: 1.8rem;
}

.footer .logo-text .agent {
    color: rgba(255, 255, 255, 0.8);
}

.footer-company {
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.footer-company h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.footer-company p {
    line-height: 1.8;
    opacity: 0.8;
    font-size: 0.95rem;
}

.footer-bottom {
    text-align: center;
    opacity: 0.6;
    font-size: 0.9rem;
}

/* ================================
   トップへ戻るボタン
================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: var(--shadow);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

/* ================================
   アニメーション
================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ================================
   レスポンシブデザイン
================================ */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .usp-grid,
    .strength-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pc-only {
        display: none;
    }
    
    .sp-only {
        display: inline;
    }
    
    /* ヘッダー */
    .nav {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 20px;
        box-shadow: var(--shadow);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav ul {
        flex-direction: column;
        gap: 15px;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    /* ヒーロー */
    .hero-video-bg {
        display: none;
    }
    
    .hero {
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    /* セクション */
    section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    /* ターゲットグリッド */
    .target-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* USPグリッド */
    .usp-grid,
    .strength-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* 比較表 */
    .comparison-table th,
    .comparison-table td {
        padding: 15px 10px;
        font-size: 0.9rem;
    }
    
    /* フッター */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* トップへ戻る */
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
    
    .btn-large {
        padding: 15px 35px;
        font-size: 1rem;
    }
}

/* ================================
   ページヘッダー（サブページ用）
================================ */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 120px 0 80px;
    text-align: center;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* ================================
   サービスセクション
================================ */
.service-section {
    padding: 80px 0;
}

.service-section.alt-bg {
    background: var(--bg-light);
}

.service-header {
    text-align: center;
    margin-bottom: 60px;
}

.service-icon {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.service-intro {
    font-size: 1.1rem;
    line-height: 2;
    color: var(--text-gray);
    max-width: 800px;
    margin: 20px auto 0;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.service-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
}

.service-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    opacity: 0.8;
}

.service-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.service-text {
    line-height: 1.9;
    color: var(--text-gray);
}

.service-cta {
    text-align: center;
    padding: 40px 0 0;
}

.cta-text {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--text-dark);
}

/* ================================
   フローページ用スタイル
================================ */
.flow-section {
    padding: 80px 0;
}

.flow-container {
    max-width: 900px;
    margin: 0 auto;
}

.flow-step {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.flow-step.visible {
    opacity: 1;
    transform: translateY(0);
}

.flow-step-number {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    box-shadow: var(--shadow);
}

.flow-step-content {
    flex: 1;
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.flow-step-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.flow-step-text {
    line-height: 1.9;
    color: var(--text-gray);
}

/* ================================
   アドバイザーページ用スタイル
================================ */
.advisor-profile {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 60px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.advisor-header {
    text-align: center;
    margin-bottom: 50px;
}

.advisor-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 30px;
    box-shadow: var(--shadow);
}

.advisor-name {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.advisor-title {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 30px;
}

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

.advisor-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.advisor-text {
    line-height: 2;
    margin-bottom: 20px;
    color: var(--text-gray);
}

.advisor-list {
    list-style: none;
}

.advisor-list li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 15px;
    line-height: 1.9;
}

.advisor-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

/* ================================
   FAQページ用スタイル
================================ */
.faq-category {
    margin-bottom: 60px;
}

.faq-category-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--text-dark);
    text-align: center;
}

.faq-item {
    background: var(--white);
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-hover);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    content: '−';
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-content {
    padding: 0 30px 25px;
    line-height: 1.9;
    color: var(--text-gray);
}

/* ================================
   お問い合わせページ用スタイル
================================ */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.contact-card-icon {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.contact-card-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.contact-info {
    margin-bottom: 30px;
}

.contact-info p {
    font-size: 1.1rem;
    line-height: 2;
    margin-bottom: 15px;
}

.contact-info i {
    margin-right: 10px;
    color: var(--primary-color);
}

.contact-hours {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.contact-intro {
    margin-bottom: 30px;
    line-height: 1.8;
    color: var(--text-gray);
}

.contact-note {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 10px;
    margin-top: 30px;
}

.contact-note h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.contact-note ol {
    margin-bottom: 20px;
    padding-left: 25px;
}

.contact-note ol li {
    line-height: 1.8;
    margin-bottom: 8px;
}

.note-text {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.8;
}

/* 会社情報テーブル */
.company-info-card {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

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

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

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

.company-info-table th,
.company-info-table td {
    padding: 20px 15px;
    text-align: left;
    vertical-align: top;
}

.company-info-table th {
    width: 200px;
    font-weight: 700;
    color: var(--text-dark);
    background: var(--bg-light);
}

.company-info-table td {
    color: var(--text-gray);
    line-height: 1.8;
}

/* レスポンシブ - サブページ */
@media (max-width: 768px) {
    .page-header {
        padding: 100px 0 60px;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .service-grid {
        grid-template-columns: 1fr;
    }
    
    .flow-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .advisor-profile {
        padding: 40px 20px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .company-info-card {
        padding: 30px 20px;
    }
    
    .company-info-table th {
        width: 100px;
        font-size: 0.9rem;
    }
    
    .company-info-table th,
    .company-info-table td {
        padding: 15px 10px;
    }
}
