/**
 * 運営会社ページ専用CSS (Premium Design)
 * ヨリソウ: 信頼と品質を表現するハイエンドデザイン
 */

/* ===================================================================
   共通ユーティリティ & レイアウト
   =================================================================== */

   .company-premium-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: var(--spacing-4xl) var(--spacing-lg);
    font-family: var(--font-primary);
    color: var(--color-text);
}

.sp-only {
    display: none;
}

.pc-only {
    display: block;
}

@media (max-width: 768px) {
    .sp-only {
        display: block;
    }

    .pc-only {
        display: none;
    }
}

/* セクション共通 */
section {
    margin-bottom: 8rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.section-title .main {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 0.1em;
}

.section-title .sub {
    font-size: 1rem;
    color: var(--color-accent);
    font-family: 'Times New Roman', serif;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 1rem;
}

.section-title .sub::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 1px;
    background: var(--color-accent);
}

.section-intro {
    font-size: 1rem;
    line-height: 2;
    color: var(--color-text-light);
}

/* ===================================================================
   リードセクション (Our Vision)
   =================================================================== */

.company-lead-section {
    text-align: center;
    padding: 6rem 0;
    position: relative;
}

.lead-heading {
    margin-bottom: 3rem;
    font-family: serif;
    /* 明朝体推奨 */
}

.lead-heading .en {
    display: block;
    font-size: 1.2rem;
    color: var(--color-accent);
    margin-bottom: 1rem;
    letter-spacing: 0.2em;
}

.lead-heading .ja {
    display: block;
    font-size: 2.8rem;
    font-weight: 500;
    line-height: 1.4;
    color: var(--color-primary);
}

.lead-text {
    font-size: 1.1rem;
    line-height: 2.2;
    color: var(--color-text);
    font-weight: 400;
}

@media (max-width: 768px) {
    .company-lead-section {
        padding: 4rem 0;
    }

    .lead-heading .ja {
        font-size: 1.8rem;
    }

    .lead-text {
        text-align: left;
        font-size: 1rem;
    }
}

/* ===================================================================
   運営会社情報 (Company Profile) & Partners Common
   =================================================================== */

.profile-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.08);
    /* ふわりとした影 */
    border-radius: 8px;
    overflow: hidden;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.profile-header {
    background: var(--color-primary);
    color: #fff;
    padding: 3rem;
    text-align: center;
}

.profile-name {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #fff !important;
    /* 強制的に白 */
}

.profile-en {
    font-size: 0.9rem;
    opacity: 0.9;
    letter-spacing: 0.05em;
    font-family: sans-serif;
    color: #fff !important;
    /* 強制的に白 */
}

.profile-body {
    padding: 3rem;
}

.profile-list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--color-border);
    border-left: 1px solid var(--color-border);
    border-right: 1px solid var(--color-border);
}

.profile-item {
    display: flex;
    border-bottom: 1px solid var(--color-border);
    align-items: stretch;
    /* 高さを合わせる */
}

.profile-item dt {
    width: 240px;
    /* 固定幅で統一 */
    min-width: 240px;
    background-color: var(--color-bg-light);
    /* 背景色を追加 */
    padding: 1.5rem;
    font-size: 0.95rem;
    color: var(--color-text);
    font-weight: 700;
    display: flex;
    align-items: center;
    /* 垂直中央 */
    border-right: 1px solid var(--color-border);
    margin: 0;
}

.profile-item dd {
    flex: 1;
    padding: 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.8;
    background-color: #fff;
    margin: 0;
    display: flex;
    align-items: center;
    /* コンテンツが少ない時も垂直中央 */
}

/* 事業内容など長いコンテンツは上寄せにする場合の調整 */
.profile-item.full-width dd,
.profile-item:has(.business-list) dd {
    display: block;
    /* リストなどはブロック表示 */
    align-items: start;
}

.business-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    /* 1列で見やすく */
    gap: 0.5rem;
}

.business-list li {
    padding-left: 1.2rem;
    position: relative;
    font-size: 1rem;
}

.business-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7em;
    width: 6px;
    height: 6px;
    background: var(--color-accent);
    border-radius: 50%;
}

@media (max-width: 768px) {
    .profile-header {
        padding: 2rem;
    }

    .profile-body {
        padding: 1.5rem;
    }

    .profile-item {
        flex-direction: column;
    }

    .profile-item dt {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--color-border-light);
        padding: 1rem;
    }

    .profile-item dd {
        padding: 1rem;
    }
}

/* ===================================================================
   提携専門家 (Our Partners)
   =================================================================== */

/* ===================================================================
   提携専門家 (Our Partners) - Profile Card Style
   =================================================================== */

.partners-profile-list {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    /* カード間の余白 */
}

.partner-card-item {
    scroll-margin-top: 120px;
    /* アンカーリンク時の調整 */
}

.profile-header .expert-badge {
    display: inline-block;
    background: #fff;
    /* ダーク背景の上なので白ベース */
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* バッジの文字色 */
.expert-badge.legal {
    color: #2C5F2D;
}

.expert-badge.tax {
    color: #1e3a8a;
}

.expert-badge.realestate {
    color: #c2410c;
}

.expert-badge.cleanup {
    color: #6b21a8;
}

/* スマホ調整 */
@media (max-width: 768px) {
    .partners-profile-list {
        gap: 3rem;
    }
}

/* ===================================================================
   CTAセクション
   =================================================================== */

.company-cta {
    background: linear-gradient(135deg, #f8f6f4 0%, #fff 100%);
    border-radius: 16px;
    padding: 5rem 2rem;
    text-align: center;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.03);
}

.cta-inner {
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    font-family: serif;
}

.cta-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: var(--color-text-light);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.btn-lg {
    padding: 1rem 3rem;
    font-size: 1.1rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary {
    background: var(--color-primary);
    color: #fff;
    border: none;
}

.btn-secondary {
    background: #fff;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-shadow {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-lg:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

@media (max-width: 600px) {
    .cta-buttons {
        flex-direction: column;
    }

    .btn-lg {
        width: 100%;
        justify-content: center;
    }
}