/* 株式会社トラストワン コーポレートサイト 共通スタイル */

html { scroll-behavior: smooth; }
body { font-family: 'Noto Sans JP', 'Meiryo', 'Yu Gothic', sans-serif; }

/* Tailwind カスタムカラー(各ページの<script>で再定義) */

/* ヒーロー背景(navy×gold装飾) */
.hero-bg {
    background: linear-gradient(135deg, #142847 0%, #1B365D 50%, #2A4A7F 100%);
    position: relative;
    overflow: hidden;
}
.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(197, 165, 114, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(197, 165, 114, 0.10) 0%, transparent 50%);
}

/* ヒーロー背景(TOPのみ・装飾を撤去し余白主体に。2026-05-22リデザイン) */
.hero-bg-rich {
    background: linear-gradient(165deg, #142847 0%, #1B365D 70%, #1f3e6b 100%);
    position: relative;
    overflow: hidden;
}
/* 右上に極薄のゴールド水平ライン1本のみ(唯一のアクセント) */
.hero-bg-rich::after {
    content: '';
    position: absolute;
    top: 18%;
    right: 0;
    width: 38%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(197, 165, 114, 0.35));
    pointer-events: none;
}

/* 役員社宅の仕組み図(関係フロー) */
.flow-node {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 24px 22px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.flow-node-hub {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(197, 165, 114, 0.4);
}
.flow-node-role { font-size: 12px; color: rgba(255,255,255,0.5); margin-bottom: 6px; }
.flow-node-title { font-size: 18px; font-weight: 700; line-height: 1.4; margin-bottom: 8px; }
.flow-node-hub .flow-node-title { font-size: 20px; }
.flow-node-desc { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,0.6); }

.flow-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 96px;
}
.flow-arrow-label { font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.8); text-align: center; line-height: 1.5; }
.flow-arrow-svg { width: 40px; height: 16px; }
/* モバイル: 横矢印を縦向きに */
@media (max-width: 767px) {
    .flow-arrow-svg { transform: rotate(90deg); }
    .flow-arrow { min-width: 0; padding: 4px 0; }
}

/* ヒーロー右側プロセスカード */
.hero-stat-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(197, 165, 114, 0.25);
    backdrop-filter: blur(8px);
    border-radius: 16px;
    padding: 32px 28px;
    position: relative;
}
.hero-stat-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 32px;
    right: 32px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #C5A572, transparent);
}

/* セクション背景の大型透かし英字 */
.big-watermark {
    position: absolute;
    bottom: -40px;
    right: -20px;
    font-family: 'Georgia', serif;
    font-size: 220px;
    font-weight: 700;
    color: rgba(27, 54, 93, 0.04);
    letter-spacing: 0.05em;
    pointer-events: none;
    line-height: 1;
    z-index: 0;
}
@media (max-width: 768px) {
    .big-watermark { font-size: 120px; bottom: -20px; right: -10px; }
}

/* セクション英語見出し */
.section-label {
    font-family: 'Georgia', serif;
    color: #C5A572;
    letter-spacing: 0.25em;
    font-size: 13px;
    font-weight: 700;
}

/* 見出し下のゴールドライン */
.heading-line::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background: #C5A572;
    margin: 16px auto 0;
}

/* カードホバー */
.feature-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(27, 54, 93, 0.15);
}

/* ナビゲーション: ヒーロー上=透明・白文字、スクロール後=ネイビー半透明・白文字のまま */
#main-nav.scrolled {
    background: rgba(20, 40, 71, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

/* フォーム入力 */
.form-input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #D1D5DB;
    border-radius: 8px;
    font-size: 15px;
    transition: border-color 0.15s, box-shadow 0.15s;
    font-family: inherit;
}
.form-input:focus {
    outline: none;
    border-color: #1B365D;
    box-shadow: 0 0 0 3px rgba(27, 54, 93, 0.1);
}

/* ボタン共通 */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    background: #1B365D;
    color: #fff;
    font-weight: 700;
    border-radius: 8px;
    transition: background-color 0.15s, transform 0.1s;
    min-height: 44px;
}
.btn-primary:hover { background: #142847; }
.btn-primary:active { transform: scale(0.98); }

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    background: transparent;
    color: #fff;
    font-weight: 700;
    border-radius: 8px;
    border: 2px solid #C5A572;
    transition: background-color 0.15s, transform 0.1s;
    min-height: 44px;
}
.btn-secondary:hover { background: rgba(197, 165, 114, 0.15); }

/* スピナー */
.btn-spinner {
    display: inline-block;
    width: 14px; height: 14px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: #C5A572;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    vertical-align: middle;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ページサブヘッダー(共通) — OLTANA風に再設計(2026-05-23) */
.page-header {
    background: #F7F5F0;
    color: #1B365D;
    padding: 130px 0 70px;
    text-align: left;
    position: relative;
}
@media (min-width: 768px) { .page-header { padding: 170px 0 110px; } }
.page-header-inner {
    max-width: 1152px;
    margin: 0 auto;
    padding: 0 20px;
}
@media (min-width: 768px) { .page-header-inner { padding: 0 40px; } }
.page-header-eyebrow {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-style: italic;
    color: rgba(27,54,93,0.55);
    font-size: 14px;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
    display: block;
}
.page-header h1, .page-header .page-header-en {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    color: #1B365D;
    font-weight: 500;
    font-size: clamp(48px, 6.5vw, 84px);
    line-height: 1;
    letter-spacing: -0.01em;
    margin-bottom: 14px;
}
.page-header-jp {
    color: #1B365D;
    font-weight: 700;
    font-size: clamp(18px, 1.6vw, 22px);
    letter-spacing: 0.06em;
}

/* 旧装飾を子ページから一掃 */
.section-label { display: none !important; }
.big-watermark { display: none !important; }
.heading-line::after { display: none !important; }

/* 記事本文 */
.prose-news {
    max-width: 720px;
    margin: 0 auto;
}
.prose-news h2 {
    font-size: 20px;
    font-weight: 700;
    color: #1B365D;
    margin: 32px 0 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(197, 165, 114, 0.4);
}
.prose-news p {
    line-height: 1.9;
    color: #475569;
    margin-bottom: 16px;
}

/* ============================================================ */
/* OLTANA風リスタイル(2026-05-23) — TOPのみで使用                  */
/* ============================================================ */

/* --- ヒーロー: フルスクリーン写真 --- */
.hero-fullscreen {
    position: relative;
    height: 100vh;
    min-height: 620px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-fullscreen-bg { position: absolute; inset: 0; z-index: 0; }
.hero-fullscreen-bg img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
}
.hero-fullscreen-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(15,28,50,0.55) 0%, rgba(15,28,50,0.45) 50%, rgba(15,28,50,0.78) 100%);
}
.hero-fullscreen-content { position: relative; z-index: 1; width: 100%; padding-top: 80px; }

.hero-eyebrow {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-style: italic;
    color: rgba(255,255,255,0.72);
    font-size: 16px;
    letter-spacing: 0.05em;
    margin-bottom: 28px;
}
.hero-headline {
    color: white;
    font-weight: 700;
    font-size: clamp(34px, 5.5vw, 64px);
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin-bottom: 28px;
}
.hero-sub {
    color: rgba(255,255,255,0.8);
    font-size: clamp(15px, 1.4vw, 18px);
    line-height: 2;
    margin-bottom: 44px;
}
.hero-cta-group { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-scroll {
    position: absolute;
    bottom: 30px; left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.72);
    display: flex; flex-direction: column; align-items: center;
    gap: 10px;
    font-family: 'Cormorant Garamond', 'Inter', serif;
    font-style: italic;
    font-size: 11px;
    letter-spacing: 0.3em;
    z-index: 2;
}
.hero-scroll svg { width: 12px; height: 22px; animation: scroll-bounce 1.6s ease-in-out infinite; }
@keyframes scroll-bounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(5px); opacity: 0.5; }
}

/* --- セクション見出し: 英字大 + 日本語サブ(OLTANA調) --- */
.section-eyebrow {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-style: italic;
    color: rgba(27,54,93,0.55);
    font-size: 14px;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
}
.section-headline-en {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    color: #1B365D;
    font-weight: 500;
    font-size: clamp(48px, 6.5vw, 84px);
    line-height: 1;
    letter-spacing: -0.01em;
    margin-bottom: 14px;
}
.section-headline-jp {
    color: #1B365D;
    font-weight: 700;
    font-size: clamp(18px, 1.6vw, 22px);
    letter-spacing: 0.06em;
}

/* --- 写真ブロック --- */
.section-figure {
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: 4px;
    background: #eef1f5;
}
.section-figure img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
    transition: transform 1.2s ease;
}
.section-figure:hover img { transform: scale(1.04); }

.section-figure-wide {
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 4px;
    background: #eef1f5;
}
.section-figure-wide img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
}
@media (max-width: 767px) {
    .section-figure-wide { aspect-ratio: 4/3; }
}

/* --- サービスカード(番号はCSSで描画する円+Jost(Futura系)。揃え・上品さ両立) --- */
.service-card { display: flex; flex-direction: column; }
.service-card-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(27,54,93,0.32);
    border-radius: 50%;
    font-family: 'Jost', 'Roboto', 'Helvetica Neue', sans-serif;
    font-size: 18px;
    color: rgba(27,54,93,0.75);
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 1;
    margin-bottom: 22px;
    flex-shrink: 0;
}
.service-card-title { font-size: 20px; font-weight: 700; color: #1B365D; margin-bottom: 14px; }
.service-card-body { font-size: 14px; color: #475569; line-height: 1.95; margin-bottom: 14px; }
.service-card-note { font-size: 12px; color: #94a3b8; line-height: 1.7; }

/* --- リンク矢印(下線付き) --- */
.link-arrow {
    display: inline-flex; align-items: center; gap: 14px;
    font-size: 13px;
    letter-spacing: 0.05em;
    color: #1B365D;
    font-weight: 700;
    border-bottom: 1px solid rgba(27,54,93,0.3);
    padding-bottom: 6px;
    transition: color 0.2s, border-color 0.2s;
}
.link-arrow::after { content: '→'; font-size: 14px; transition: transform 0.2s; }
.link-arrow:hover { color: #142847; border-color: #1B365D; }
.link-arrow:hover::after { transform: translateX(4px); }

/* --- 白枠ボタン(ヒーロー) --- */
.btn-ghost-white {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 14px 32px;
    color: white;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.05em;
    border: 1px solid rgba(255,255,255,0.55);
    border-radius: 2px;
    transition: background-color 0.2s, border-color 0.2s;
    min-height: 48px;
}
.btn-ghost-white:hover { background: rgba(255,255,255,0.08); border-color: white; }

/* --- ニュース行 --- */
.news-row {
    display: flex; flex-direction: column;
    gap: 8px; padding: 22px 0;
    transition: padding 0.2s;
}
@media (min-width: 768px) {
    .news-row { flex-direction: row; align-items: center; gap: 28px; }
}
.news-row:hover { padding-left: 8px; }
.news-date {
    font-family: 'Jost', 'Roboto', 'Helvetica Neue', sans-serif;
    color: #475569;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.06em;
    min-width: 100px;
}
.news-cat {
    display: inline-block;
    background: rgba(27,54,93,0.08);
    color: #1B365D;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 2px;
    letter-spacing: 0.05em;
    min-width: 72px;
    text-align: center;
}
.news-title { color: #334155; transition: color 0.2s; }
.news-row:hover .news-title { color: #1B365D; }

/* --- CONTACT(写真背景セクション) --- */
.contact-cta-section {
    position: relative;
    padding: 110px 0;
    overflow: hidden;
}
@media (min-width: 768px) { .contact-cta-section { padding: 140px 0; } }
.contact-cta-bg { position: absolute; inset: 0; z-index: 0; }
.contact-cta-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.contact-cta-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(20,40,71,0.85), rgba(20,40,71,0.78));
}
.contact-cta-content { position: relative; z-index: 1; }

/* --- フッター --- */
.footer-label {
    font-family: 'Noto Sans JP', sans-serif;
    color: rgba(255,255,255,0.55);
    font-size: 12px;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
    font-weight: 700;
}
.footer-link {
    color: rgba(255,255,255,0.75);
    font-size: 14px;
    transition: color 0.2s;
}
.footer-link:hover { color: white; }

/* --- サービスカード写真(3:2固定・ホバーで微拡大) --- */
.service-card-photo {
    aspect-ratio: 3/2;
    overflow: hidden;
    border-radius: 4px;
    background: #eef1f5;
    margin-bottom: 26px;
}
.service-card-photo img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
    transition: transform 0.8s ease;
}
.service-card:hover .service-card-photo img { transform: scale(1.04); }

/* ============================================================ */
/* service.html: 業務詳細 + フロー(2026-05-23)                    */
/* ============================================================ */
.service-detail { margin-bottom: 70px; }
.service-detail:last-child { margin-bottom: 0; }
.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}
@media (min-width: 768px) {
    .service-detail-grid { grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; }
    .service-detail-grid-reverse .service-detail-photo { order: 2; }
    .service-detail-grid-reverse .service-detail-body { order: 1; }
}
.service-detail-photo {
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 4px;
    background: #eef1f5;
}
.service-detail-photo img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
    transition: transform 1s ease;
}
.service-detail-photo:hover img { transform: scale(1.04); }
.service-detail-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 1px solid rgba(27,54,93,0.32);
    border-radius: 50%;
    font-family: 'Jost', 'Roboto', sans-serif;
    font-size: 20px;
    color: rgba(27,54,93,0.75);
    font-weight: 500;
    line-height: 1;
    margin-bottom: 22px;
}
.service-detail-title {
    font-size: 26px;
    font-weight: 700;
    color: #1B365D;
    margin-bottom: 16px;
    line-height: 1.4;
}
.service-detail-lead {
    font-size: 17px;
    color: #1B365D;
    line-height: 1.8;
    margin-bottom: 16px;
    font-weight: 500;
}
.service-detail-text {
    font-size: 15px;
    color: #475569;
    line-height: 1.9;
    margin-bottom: 14px;
}
.service-detail-note {
    font-size: 13px;
    color: #94a3b8;
    line-height: 1.7;
    padding-top: 14px;
    border-top: 1px solid #e5e7eb;
}

/* Flow steps */
.flow-steps { list-style: none; padding: 0; margin: 0; }
.flow-step {
    display: grid;
    grid-template-columns: 56px 44px 1fr;
    gap: 16px;
    padding: 28px 0;
    border-bottom: 1px solid rgba(27,54,93,0.1);
    align-items: center;
}
@media (max-width: 767px) {
    .flow-step { grid-template-columns: 50px 40px 1fr; gap: 12px; align-items: start; }
}
.flow-step-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(27,54,93,0.65);
}
.flow-step-icon svg { width: 28px; height: 28px; }
.flow-step:last-child { border-bottom: 0; }
.flow-step-num {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(27,54,93,0.32);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Jost', 'Roboto', sans-serif;
    font-size: 20px;
    color: rgba(27,54,93,0.75);
    font-weight: 500;
}
.flow-step-title {
    font-size: 19px;
    font-weight: 700;
    color: #1B365D;
    margin-bottom: 8px;
    line-height: 1.4;
}
.flow-step-meta {
    font-size: 12px;
    font-weight: 400;
    color: #94a3b8;
    margin-left: 12px;
    letter-spacing: 0.03em;
    display: inline-block;
}
.flow-step-text {
    font-size: 14px;
    color: #475569;
    line-height: 1.9;
}

/* ============================================================ */
/* 子ページ装飾の沈静化(2026-05-23)                                */
/* ============================================================ */
/* gold装飾を navy/slateに置換 (子ページの旧goldを一掃)             */
.text-gold { color: rgba(27,54,93,0.65) !important; }
.border-gold { border-color: rgba(27,54,93,0.2) !important; }
.bg-gold { background: #1B365D !important; color: #fff !important; }
.hover\:text-gold:hover { color: #1B365D !important; }
.border-gold\/30, .border-gold\/40 { border-color: rgba(27,54,93,0.18) !important; }
.text-gold\/30 { color: rgba(27,54,93,0.25) !important; }

/* ============================================================ */
/* about.html: OLTANA調コンポーネント(2026-05-23)                  */
/* ============================================================ */

/* Value Card (3つの価値) */
.value-card { display: flex; flex-direction: column; }
.value-card-num {
    display: inline-flex; align-items: center; justify-content: center;
    width: 42px; height: 42px;
    border: 1px solid rgba(27,54,93,0.32);
    border-radius: 50%;
    font-family: 'Jost', 'Roboto', sans-serif;
    font-size: 16px; color: rgba(27,54,93,0.75);
    font-weight: 500; line-height: 1;
    margin-bottom: 18px;
}
.value-card-title { font-size: 19px; font-weight: 700; color: #1B365D; margin-bottom: 12px; }
.value-card-text { font-size: 14px; color: #475569; line-height: 1.9; }

/* Message body (代表メッセージ) */
.message-body {}
.message-quote {
    font-size: clamp(24px, 3.5vw, 38px);
    font-weight: 700; color: #1B365D;
    line-height: 1.5; margin-bottom: 40px;
    padding-left: 24px;
    border-left: 2px solid rgba(27,54,93,0.35);
}
.message-quote-sub {
    display: block;
    font-size: clamp(14px, 1.4vw, 17px);
    color: #64748b; font-weight: 400;
    margin-top: 16px; line-height: 1.8;
}
.message-text { display: flex; flex-direction: column; gap: 24px; color: #475569; font-size: 16px; line-height: 2; }
.message-text p { margin: 0; }
.message-pull {
    background: #fff;
    border-left: 2px solid #1B365D;
    padding: 20px 24px;
    color: #1B365D !important;
    font-weight: 700; font-size: 17px;
    margin: 8px 0 !important;
}
.message-divider { border: 0; border-top: 1px solid rgba(27,54,93,0.15); margin: 48px 0; }
.message-h3 { font-size: clamp(20px, 2.4vw, 26px); font-weight: 700; color: #1B365D; line-height: 1.4; margin-bottom: 32px; }
.message-label {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: rgba(27,54,93,0.55);
    font-size: 14px;
    letter-spacing: 0.04em;
    margin-bottom: 12px;
}
.message-text-p { font-size: 15px; line-height: 2; color: #475569; }
.message-list {
    list-style: none; padding: 0; margin: 14px 0 0 0;
    display: flex; flex-direction: column; gap: 10px;
}
.message-list li {
    font-size: 15px; color: #475569; line-height: 1.8;
    padding-left: 18px; position: relative;
}
.message-list li::before {
    content: '—'; position: absolute; left: 0; color: rgba(27,54,93,0.5);
}

/* Case Card */
.case-card {
    background: #fff;
    border: 1px solid rgba(27,54,93,0.1);
    border-radius: 4px;
    padding: 32px 30px;
}
.case-card-num {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: rgba(27,54,93,0.55);
    font-size: 14px; letter-spacing: 0.04em;
    margin-bottom: 10px;
}
.case-card-title { font-size: 17px; font-weight: 700; color: #1B365D; margin-bottom: 14px; line-height: 1.5; }
.case-card-text { font-size: 14px; color: #475569; line-height: 1.95; margin-bottom: 16px; }
.case-card-quote {
    font-size: 13px; color: #1B365D;
    background: rgba(27,54,93,0.04);
    padding: 14px 16px;
    border-radius: 4px;
    font-style: italic;
    line-height: 1.8;
    margin: 0;
}

/* Principle Card */
.principle-card {
    background: #fff;
    border: 1px solid rgba(27,54,93,0.12);
    padding: 32px 30px;
    border-radius: 4px;
}
.principle-card-label {
    font-family: 'Noto Sans JP', sans-serif;
    color: #1B365D;
    font-size: 13px; font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: 0.04em;
}
.principle-list {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 12px;
}
.principle-list li {
    font-size: 14px; color: #1B365D; line-height: 1.8;
    padding-left: 20px; position: relative;
}
.principle-list li::before {
    content: ''; position: absolute; left: 0; top: 12px;
    width: 8px; height: 8px; border-radius: 50%;
    background: rgba(27,54,93,0.45);
}
.principle-card-muted { background: rgba(255,255,255,0.5); }
.principle-card-muted .principle-card-label { color: #94a3b8; }
.principle-list-muted li { color: #64748b; }
.principle-list-muted li::before { background: rgba(148,163,184,0.5); }

/* Company Table */
.company-table {
    width: 100%; border-collapse: collapse;
}
.company-table tr { border-bottom: 1px solid rgba(27,54,93,0.1); }
.company-table tr:last-child { border-bottom: 0; }
.company-table th {
    text-align: left;
    padding: 18px 0 18px 0;
    width: 140px;
    color: rgba(27,54,93,0.65);
    font-size: 13px;
    font-weight: 500;
    vertical-align: top;
    letter-spacing: 0.03em;
}
.company-table td {
    padding: 18px 0;
    color: #334155;
    font-size: 15px;
    line-height: 1.8;
}
@media (min-width: 768px) {
    .company-table th { width: 170px; padding-right: 24px; }
}

/* page-header 写真背景版(service/about用) */
.page-header-photo {
    background:
        linear-gradient(180deg, rgba(15,28,50,0.65) 0%, rgba(15,28,50,0.6) 50%, rgba(15,28,50,0.78) 100%),
        url('images/hero-city.jpg') center/cover no-repeat;
    color: #fff;
}
.page-header-photo .page-header-eyebrow { color: rgba(255,255,255,0.72); }
.page-header-photo h1,
.page-header-photo .page-header-en { color: #fff; }
.page-header-photo .page-header-jp { color: rgba(255,255,255,0.92); }

/* page-header-photo about専用(別画像で重複回避) */
.page-header-photo-about {
    background:
        linear-gradient(180deg, rgba(15,28,50,0.65) 0%, rgba(15,28,50,0.6) 50%, rgba(15,28,50,0.78) 100%),
        url('images/building-greyscale.jpg') center/cover no-repeat;
    color: #fff;
}
.page-header-photo-about .page-header-eyebrow { color: rgba(255,255,255,0.72); }
.page-header-photo-about h1,
.page-header-photo-about .page-header-en { color: #fff; }
.page-header-photo-about .page-header-jp { color: rgba(255,255,255,0.92); }

/* メッセージ内の感情象徴フィギュア(横長21:9) */
.message-figure {
    aspect-ratio: 21/9;
    overflow: hidden;
    border-radius: 4px;
    background: #eef1f5;
    margin: 32px 0 !important;
}
@media (max-width: 767px) {
    .message-figure { aspect-ratio: 16/9; }
}
.message-figure img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
}

/* page-header-photo news/contact専用 */
.page-header-photo-news {
    background:
        linear-gradient(180deg, rgba(15,28,50,0.7) 0%, rgba(15,28,50,0.65) 50%, rgba(15,28,50,0.8) 100%),
        url('images/page-news.jpg') center/cover no-repeat;
    color: #fff;
}
.page-header-photo-contact {
    background:
        linear-gradient(180deg, rgba(15,28,50,0.7) 0%, rgba(15,28,50,0.65) 50%, rgba(15,28,50,0.8) 100%),
        url('images/page-contact.jpg') center/cover no-repeat;
    color: #fff;
}
.page-header-photo-news .page-header-eyebrow,
.page-header-photo-contact .page-header-eyebrow { color: rgba(255,255,255,0.72); }
.page-header-photo-news h1, .page-header-photo-news .page-header-en,
.page-header-photo-contact h1, .page-header-photo-contact .page-header-en { color: #fff; }
.page-header-photo-news .page-header-jp,
.page-header-photo-contact .page-header-jp { color: rgba(255,255,255,0.92); }
