@charset "utf-8";

/* ミニマル線形デザイン */

/* 共通設定 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
    line-height: 1.7;
    color: #2d3748;
    background-color: #ffffff;
    font-size: 16px;
}

/* コンテナ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 120px 0;
}

/* ヘッダー */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e2e8f0;
    z-index: 1000;
    padding: 16px 0;
}

header .wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo img {
    height: 32px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-menu a {
    color: #2d3748;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #1a202c;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #2d3748;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* ドロップダウンメニュー */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-trigger {
    color: #2d3748;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.dropdown-trigger:hover {
    color: #1a202c;
}

.dropdown-trigger::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #2d3748;
    transition: width 0.3s ease;
}

.dropdown-trigger:hover::after {
    width: 100%;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 200px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid #e2e8f0;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: #4a5568;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-bottom: none;
}

.dropdown-menu a:hover {
    background-color: #f7fafc;
    color: #2d3748;
}

.dropdown-menu a::after {
    display: none;
}

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

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

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.hero-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
    position: relative;
    z-index: 3;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #f7fafc;
    margin-bottom: 32px;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-description {
    max-width: 600px;
    margin: 0 auto 48px;
}

.hero-description p {
    font-size: 1.125rem;
    color: #e2e8f0;
    line-height: 1.8;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

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

/* ボタン */
.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    border: none;
    cursor: pointer;
}

.cta-btn.primary {
    background-color: #2d3748;
    color: #ffffff;
}

.cta-btn.primary:hover {
    background-color: #1a202c;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(45, 55, 72, 0.3);
}

.cta-btn.secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.cta-btn.secondary:hover {
    background-color: #ffffff;
    color: #2d3748;
    transform: translateY(-2px);
}

/* セクションタイトル */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 80px;
    color: #1a202c;
    position: relative;
}

#news .section-title {
    margin-bottom: 40px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: #2d3748;
    border-radius: 2px;
}

/* ニュースセクション */
#news {
    padding: 60px 0;
}

.news-list {
    max-width: 800px;
    margin: 0 auto;
}

.news-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 16px 0;
    border-bottom: 1px solid #e2e8f0;
}

.news-item:last-child {
    border-bottom: none;
}

.news-date {
    flex-shrink: 0;
    font-size: 0.875rem;
    color: #718096;
    font-weight: 500;
    min-width: 100px;
}

.news-title {
    flex: 1;
}

.news-title a {
    color: #2d3748;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.news-title a:hover {
    color: #4a5568;
}

/* ワークスセクション */
.works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 48px;
    margin-bottom: 80px;
}

.work-item {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.work-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.work-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.work-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.work-item:hover .work-image img {
    transform: scale(1.05);
}

.work-content {
    padding: 32px;
}

.work-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 16px;
}

.work-description {
    color: #718096;
    line-height: 1.7;
}

/* 数字で見るセクション */
#numbers {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

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

.number-item {
    background: #ffffff;
    padding: 40px 24px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.number-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.number-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.number-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    opacity: 0.8;
}

.number-value {
    font-size: 3.5rem;
    font-weight: 900;
    color: #2d3748;
    margin-bottom: 16px;
    line-height: 1;
}

.number-label {
    font-size: 1.125rem;
    font-weight: 600;
    color: #4a5568;
    line-height: 1.5;
}

.number-label small {
    font-size: 0.875rem;
    color: #718096;
    font-weight: 400;
    display: block;
    margin-top: 4px;
}

/* リクルートセクション */
.recruit-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.recruit-text {
    font-size: 1.25rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 48px;
}

/* サービスセクション */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-item {
    background: #ffffff;
    padding: 40px 32px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: #667eea;
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 24px;
    opacity: 0.9;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 16px;
}

.service-description {
    color: #718096;
    line-height: 1.7;
    margin-bottom: 32px;
    font-size: 1rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-link:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    transform: translateY(-2px);
}

/* 下層ページ用スタイル */
.page-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    text-align: center;
}

.breadcrumb {
    margin-bottom: 24px;
}

.breadcrumb p {
    color: #718096;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: #667eea;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 16px;
}

.page-subtitle {
    font-size: 1.25rem;
    color: #4a5568;
}

.service-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.service-intro-text {
    font-size: 1.125rem;
    color: #4a5568;
    line-height: 1.8;
}

.feature-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2d3748;
    text-align: center;
    margin-bottom: 48px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-bottom: 80px;
}

.feature-item {
    background: #f7fafc;
    padding: 32px 24px;
    border-radius: 12px;
    text-align: center;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.feature-item h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 12px;
}

.feature-item p {
    color: #718096;
    line-height: 1.6;
}

.flow-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-bottom: 80px;
}

.flow-step {
    text-align: center;
    position: relative;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 20px;
}

.flow-step h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 12px;
}

.flow-step p {
    color: #718096;
    line-height: 1.6;
}

/* 採用ページ専用スタイル */
.recruit-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.recruit-intro-text {
    font-size: 1.125rem;
    color: #4a5568;
    line-height: 1.8;
}

.job-features, .job-info {
    margin-bottom: 80px;
}

.recInfo {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 40px;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    overflow: hidden;
}

.recInfo th, .recInfo td {
    padding: 20px 24px;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.recInfo th {
    background: #f7fafc;
    font-weight: 600;
    color: #2d3748;
    width: 30%;
    vertical-align: top;
}

.recInfo td {
    color: #4a5568;
    line-height: 1.7;
}

.recInfo tr:last-child th,
.recInfo tr:last-child td {
    border-bottom: none;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 32px;
}

/* 会社情報セクション */
.company-info {
    max-width: 800px;
    margin: 0 auto;
}

.company-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 60px;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    overflow: hidden;
}

.company-table th, .company-table td {
    padding: 24px 32px;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.company-table th {
    background: #f7fafc;
    font-weight: 600;
    color: #2d3748;
    width: 25%;
    vertical-align: top;
}

.company-table td {
    color: #4a5568;
    line-height: 1.7;
}

.company-table tr:last-child th,
.company-table tr:last-child td {
    border-bottom: none;
}

/* セクションCTA */
.section-cta {
    text-align: center;
    margin-top: 48px;
}

/* フッター */
footer {
    background-color: #f7fafc;
    border-top: 1px solid #e2e8f0;
    padding: 48px 0;
}

footer .footer_inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.privacymark img {
    max-width: 80px;
    height: auto;
}

footer ul {
    display: flex;
    gap: 24px;
    list-style: none;
    flex-wrap: wrap;
}

footer a {
    color: #718096;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #2d3748;
}

footer small {
    color: #a0aec0;
    font-size: 0.875rem;
}

/* レスポンシブ */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .section {
        padding: 80px 0;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 280px;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 60px;
    }
    
    .works-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .numbers-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 24px;
    }
    
    .number-item {
        padding: 32px 20px;
    }
    
    .number-value {
        font-size: 2.5rem;
    }
    
    .recInfo th, .recInfo td {
        padding: 16px 20px;
    }
    
    .recInfo th {
        width: 100%;
        background: #667eea;
        color: #ffffff;
        font-size: 0.9rem;
    }
    
    .recInfo td {
        background: #ffffff;
        border-bottom: 2px solid #f7fafc;
        padding-bottom: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 280px;
    }
    
    .company-table th, .company-table td {
        padding: 16px 20px;
    }
    
    .company-table th {
        width: 100%;
        background: #667eea;
        color: #ffffff;
        font-size: 0.9rem;
    }
    
    .company-table td {
        background: #ffffff;
        border-bottom: 2px solid #f7fafc;
        padding-bottom: 20px;
    }
    
    .news-item {
        flex-direction: column;
        gap: 8px;
    }
    
    .news-date {
        min-width: auto;
    }
    
    footer .footer_inner {
        flex-direction: column;
        text-align: center;
    }
    
    footer ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }
}

/* ポリシーページスタイル */
.policy-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-section {
    margin-bottom: 48px;
    padding: 32px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #667eea;
}

.policy-heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f7fafc;
}

.policy-section p {
    color: #4a5568;
    line-height: 1.8;
    font-size: 1rem;
}

.policy-signature {
    text-align: right;
    margin-top: 60px;
    padding: 24px 32px;
    background: #f7fafc;
    border-radius: 12px;
    border-left: 4px solid #2d3748;
}

.policy-signature p {
    color: #2d3748;
    font-weight: 600;
    margin-bottom: 8px;
}

.policy-signature p:last-child {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: #718096;
}

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

.section {
    animation: fadeInUp 0.8s ease-out;
}
/* ============================================================
   TOPリニューアル (2026) 用スタイル
   カラー: TODOブルー #3fbde0 / ボタン・アクセント #1794bd
   ============================================================ */

/* トップ用セクション共通(余白は.sectionより詰める) */
.tsec {
    padding: 88px 0;
    animation: fadeInUp 0.8s ease-out;
}

.gray-sec {
    background-color: #f7fafc;
}

/* SP専用改行 */
.spblock {
    display: none;
}

/* セクション見出し */
.sec-head {
    max-width: 820px;
    margin-bottom: 48px;
}

.sec-head.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.sec-eyebrow {
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: #1794bd;
    margin-bottom: 12px;
}

.sec-eyebrow.on-dark {
    color: #9ee7fa;
}

.sec-title {
    font-size: clamp(1.75rem, 3.2vw, 2.375rem);
    font-weight: 700;
    color: #1a202c;
    line-height: 1.4;
}

.sec-title.on-dark {
    color: #ffffff;
}

.sec-lead {
    margin-top: 16px;
    color: #4a5568;
    line-height: 1.9;
}

.sec-lead.on-dark {
    color: rgba(255, 255, 255, 0.85);
}

/* ボタン(TODOブルー) */
.cta-btn.blue {
    background-color: #1794bd;
    color: #ffffff;
}

.cta-btn.blue:hover {
    background-color: #117a9d;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(23, 148, 189, 0.35);
}

.cta-btn.large {
    padding: 20px 48px;
    font-size: 1.125rem;
}

/* ヒーロー */
.hero-eyebrow {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.24em;
    color: #7ddcf5;
    margin-bottom: 24px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-description strong {
    color: #ffffff;
    font-weight: 700;
}

/* ABOUT */
.about-text {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.about-text p {
    color: #4a5568;
    line-height: 2;
}

.about-flow {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.flow-pill {
    display: inline-block;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    padding: 10px 22px;
    font-weight: 600;
    font-size: 0.9375rem;
    color: #2d3748;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.flow-pill.accent {
    background: #1794bd;
    border-color: #1794bd;
    color: #ffffff;
}

.flow-arrow {
    color: #a0aec0;
    font-weight: 700;
}

/* HUB SERIES */
.hub-sec {
    background: linear-gradient(135deg, #0c3b52 0%, #14607f 55%, #1794bd 100%);
}

.hub-featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.hub-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.hub-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 16px;
    padding: 28px 32px;
    color: #ffffff;
}

.hub-card.featured {
    background: #ffffff;
    border-color: #ffffff;
    padding: 40px;
}

.hub-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #9ee7fa;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    padding: 4px 14px;
    margin-bottom: 16px;
}

.hub-card.featured .hub-tag {
    color: #1794bd;
    background: rgba(23, 148, 189, 0.1);
}

.hub-name {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: #ffffff;
}

.hub-card.featured .hub-name {
    color: #1a202c;
}

.hub-copy {
    font-weight: 700;
    color: #1794bd;
    margin-bottom: 12px;
    line-height: 1.6;
}

.hub-desc {
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9375rem;
}

.hub-card.featured .hub-desc {
    color: #4a5568;
}

/* WHAT WE DO */
.wwd-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 16px;
}

.wwd-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
}

.wwd-item h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 8px;
    padding-left: 12px;
    border-left: 3px solid #3fbde0;
    line-height: 1.4;
}

.wwd-item p {
    font-size: 0.875rem;
    color: #718096;
    line-height: 1.7;
}

.wwd-note {
    margin-top: 24px;
    font-size: 0.9375rem;
    color: #718096;
}

.wwd-note a {
    color: #1794bd;
    font-weight: 600;
}

/* PROJECTS */
.proj-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.proj-item {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.proj-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.proj-image {
    aspect-ratio: 16 / 7;
    overflow: hidden;
}

.proj-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.proj-content {
    padding: 24px 28px;
}

.proj-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: #1794bd;
    background: #e6f7fc;
    border-radius: 999px;
    padding: 3px 12px;
    margin-bottom: 10px;
}

.proj-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a202c;
    line-height: 1.6;
}

/* OUR APPROACH */
.appr-grid {
    display: flex;
    align-items: stretch;
    gap: 16px;
}

.appr-step {
    flex: 1;
    background: #f7fafc;
    border-radius: 16px;
    padding: 36px 28px;
}

.appr-num {
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #1794bd;
    margin-bottom: 8px;
}

.appr-name {
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: #1a202c;
}

.appr-sub {
    font-weight: 700;
    color: #2d3748;
    margin: 8px 0 12px;
}

.appr-desc {
    font-size: 0.9375rem;
    color: #718096;
    line-height: 1.8;
}

.appr-arrow {
    align-self: center;
    color: #cbd5e0;
    font-size: 1.5rem;
    font-weight: 700;
}

/* 数字で見るTODO(TOPリニューアル: アクセントを青系に) */
.number-item::before {
    background: linear-gradient(135deg, #3fbde0 0%, #1794bd 100%);
}

/* LOCAL x TECHNOLOGY */
.local-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.local-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 32px;
}

.local-city {
    font-size: 1.375rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 12px;
}

.local-city small {
    margin-left: 10px;
    font-size: 0.8125rem;
    font-weight: 700;
    color: #1794bd;
}

.local-addr {
    font-size: 0.9375rem;
    color: #4a5568;
    line-height: 1.8;
}

/* CONTACT CTA */
.contact-sec {
    background: linear-gradient(135deg, #1a202c 0%, #0c3b52 100%);
    text-align: center;
}

.contact-title {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.5;
    margin-bottom: 16px;
}

.contact-lead {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.9;
}

/* レスポンシブ(TOPリニューアル分) */
@media (max-width: 768px) {
    .tsec {
        padding: 64px 0;
    }

    .spblock {
        display: inline;
    }

    .about-text {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .hub-featured,
    .hub-list,
    .proj-grid,
    .local-grid {
        grid-template-columns: 1fr;
    }

    .hub-card.featured {
        padding: 28px;
    }

    .appr-grid {
        flex-direction: column;
    }

    .appr-arrow {
        transform: rotate(90deg);
    }
}

/* ヒーローを左寄せ構成に統一 */
#hero .hero-container {
    text-align: left;
}

#hero .hero-description {
    max-width: 640px;
    margin: 0 0 48px;
}

#hero .hero-cta {
    justify-content: flex-start;
}

/* ヒーロー背景(動画差し替えまでの暫定グラデーション) */
#hero {
    background:
        radial-gradient(ellipse 900px 600px at 85% 15%, rgba(63, 189, 224, 0.35), transparent 60%),
        linear-gradient(135deg, #0c1f2c 0%, #0c3b52 55%, #14607f 100%);
}

/* reset.cssのtext-align上書き対策: centerは子要素まで明示 */
.sec-head.center .sec-eyebrow,
.sec-head.center .sec-title,
.sec-head.center .sec-lead {
    text-align: center;
}

.contact-title,
.contact-lead {
    text-align: center;
}

/* HUB SERIES 誕生背景 */
.hub-origin {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.hub-origin h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.hub-origin p {
    font-size: 0.9375rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.85);
}

/* PROJECTS 注記 */
.proj-note {
    margin-top: 16px;
    font-size: 0.8125rem;
    color: #a0aec0;
    text-align: center;
}

/* CONTACT 2ボタン */
.contact-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* 数字で見るTODO(TOP縮小版) */
.numbers-slim {
    padding: 64px 0;
}

.numstrip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(32px, 6vw, 96px);
    flex-wrap: wrap;
}

.numstrip-item {
    text-align: center;
}

.numstrip-item b {
    display: block;
    font-size: 2.75rem;
    font-weight: 900;
    color: #1a202c;
    line-height: 1.1;
    text-align: center;
}

.numstrip-item span {
    display: block;
    margin-top: 4px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #4a5568;
    text-align: center;
}

.numstrip-link {
    margin-top: 32px;
    text-align: center;
}

.numstrip-link a {
    color: #1794bd;
    font-weight: 700;
    text-decoration: none;
}

.numstrip-link a:hover {
    text-decoration: underline;
}

/* 数字で見るTODO(詳細ページ) */
.num-cat {
    margin-bottom: 72px;
}

.num-cat:last-of-type {
    margin-bottom: 0;
}

.numbers-note {
    margin-top: 40px;
    font-size: 0.875rem;
    color: #718096;
    text-align: center;
}

@media (max-width: 768px) {
    .numstrip {
        gap: 24px;
    }
    .numstrip-item {
        flex-basis: 40%;
    }
    .numstrip-item b {
        font-size: 2.25rem;
    }
}

/* ============================================================
   採用ページ (2026リニューアル)
   ============================================================ */

.recruit-hero {
    padding: 180px 0 100px;
    background:
        radial-gradient(ellipse 900px 600px at 85% 15%, rgba(63, 189, 224, 0.35), transparent 60%),
        linear-gradient(135deg, #0c1f2c 0%, #0c3b52 55%, #14607f 100%);
}

.recruit-hero-title {
    font-size: clamp(2rem, 4.2vw, 3.25rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.4;
    margin-bottom: 16px;
}

.recruit-hero-lead {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
}

.recruit-hero .hero-cta {
    justify-content: flex-start;
}

/* 仕事の振れ幅 */
.work-variety-copy {
    font-size: clamp(1.25rem, 2.4vw, 1.75rem);
    font-weight: 700;
    color: #1a202c;
    line-height: 1.9;
    margin-bottom: 24px;
}

.chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.chip {
    display: inline-block;
    padding: 7px 16px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid #cbe6f0;
    color: #14607f;
    font-size: 0.875rem;
    font-weight: 600;
}

.gray-sec .chip {
    background: #ffffff;
}

.tsec:not(.gray-sec) .chip {
    background: #f0f9fc;
}

/* 1日のスケジュール */
.aday-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
}

.aday-tab {
    padding: 10px 24px;
    border-radius: 999px;
    border: 1px solid #cbd5e0;
    background: #ffffff;
    color: #4a5568;
    font-size: 0.9375rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.aday-tab.on {
    background: #1794bd;
    border-color: #1794bd;
    color: #ffffff;
}

.aday-panel {
    max-width: 720px;
}

.aday-row {
    display: flex;
    gap: 20px;
    padding: 14px 0;
    border-bottom: 1px solid #e2e8f0;
    background: #ffffff;
    border-radius: 0;
    padding-left: 20px;
    padding-right: 20px;
}

.aday-panel .aday-row:first-child {
    border-radius: 12px 12px 0 0;
}

.aday-panel .aday-row:last-child {
    border-radius: 0 0 12px 12px;
    border-bottom: none;
}

.aday-time {
    flex-shrink: 0;
    width: 56px;
    font-weight: 800;
    color: #1794bd;
    font-variant-numeric: tabular-nums;
}

.aday-row b {
    display: block;
    font-weight: 700;
    color: #1a202c;
    font-size: 0.9375rem;
}

.aday-row p {
    font-size: 0.8125rem;
    color: #718096;
    line-height: 1.6;
}

.aday-note {
    margin-top: 16px;
    font-size: 0.8125rem;
    color: #a0aec0;
}

/* オンボーディングフロー */
.onboarding-flow {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
}

/* キャリア: CHOOSEを強調 */
.career-grid .appr-step.choose {
    background: linear-gradient(135deg, #e6f7fc 0%, #f0f9fc 100%);
    border: 1px solid #9edcf0;
}

/* 技術スタック */
.tech-groups {
    display: grid;
    gap: 24px;
}

.tech-group {
    display: flex;
    gap: 24px;
    align-items: baseline;
    padding-bottom: 20px;
    border-bottom: 1px solid #e2e8f0;
}

.tech-group:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.tech-group h3 {
    flex-shrink: 0;
    width: 150px;
    font-size: 0.9375rem;
    font-weight: 800;
    color: #1a202c;
    letter-spacing: 0.02em;
}

@media (max-width: 768px) {
    .recruit-hero {
        padding: 140px 0 72px;
    }

    .tech-group {
        flex-direction: column;
        gap: 10px;
    }

    .tech-group h3 {
        width: auto;
    }

    .aday-row {
        padding-left: 14px;
        padding-right: 14px;
    }
}

/* 採用ページ: 選考フローの番号をTODOブルーに */
#selection .step-number {
    background: linear-gradient(135deg, #3fbde0 0%, #1794bd 100%);
}

/* 数字詳細ページ: カテゴリ内は4列で揃える */
.num-cat .numbers-grid {
    max-width: none;
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 900px) {
    .num-cat .numbers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 520px) {
    .num-cat .numbers-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   会社概要(ABOUT TODO化)・採用PEOPLE (2026-08-30)
   ============================================================ */

/* 代表メッセージ */
.message-body {
    max-width: 820px;
}

.message-body > p {
    color: #4a5568;
    line-height: 2.1;
    margin-bottom: 24px;
}

.message-sign {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid #e2e8f0;
}

.message-sign-role {
    font-size: 0.8125rem;
    color: #718096;
}

.message-sign-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a202c;
    margin: 4px 0 12px;
}

.message-sign-profile {
    font-size: 0.8125rem;
    color: #718096;
    line-height: 1.8;
    max-width: 640px;
}

/* 沿革タイムライン */
.story-timeline {
    max-width: 760px;
    position: relative;
    padding-left: 8px;
}

.story-item {
    display: flex;
    gap: 28px;
    position: relative;
    padding: 0 0 36px 28px;
    border-left: 2px solid #cbe6f0;
}

.story-item:last-child {
    padding-bottom: 0;
    border-left-color: transparent;
}

.story-item::before {
    content: '';
    position: absolute;
    left: -7px;
    top: 6px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #1794bd;
    border: 3px solid #ffffff;
    box-shadow: 0 0 0 1px #cbe6f0;
}

.story-year {
    flex-shrink: 0;
    width: 76px;
    font-weight: 800;
    color: #1794bd;
    font-variant-numeric: tabular-nums;
}

.story-item h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 6px;
}

.story-item p:not(.story-year) {
    font-size: 0.9375rem;
    color: #718096;
    line-height: 1.8;
}

/* 拠点カードの説明文 */
.local-desc {
    font-size: 0.9375rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 16px;
    min-height: 3.6em;
}

/* 採用PEOPLE */
.people-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.people-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 36px 28px;
    text-align: center;
}

.people-avatar {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    margin: 0 auto 20px;
    background:
        radial-gradient(circle at 50% 38%, #ffffff 12px, transparent 13px),
        radial-gradient(ellipse 26px 18px at 50% 78%, #ffffff 60%, transparent 61%),
        linear-gradient(135deg, #9edcf0 0%, #3fbde0 100%);
}

.people-role {
    font-size: 1.0625rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 10px;
    text-align: center;
}

.people-copy {
    font-size: 0.9375rem;
    color: #4a5568;
    line-height: 1.8;
    text-align: center;
}

@media (max-width: 768px) {
    .people-grid {
        grid-template-columns: 1fr;
    }

    .story-item {
        flex-direction: column;
        gap: 4px;
    }
}

/* 数字で見るTODO(TOP): ダークバンドデザイン */
.numbers-band {
    padding: 72px 0;
    background:
        radial-gradient(ellipse 700px 420px at 88% 0%, rgba(63, 189, 224, 0.28), transparent 60%),
        linear-gradient(120deg, #0c1f2c 0%, #0c3b52 60%, #14607f 100%);
}

.numbers-band-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    flex-wrap: wrap;
}

.numbers-band-head .sec-eyebrow {
    margin-bottom: 8px;
}

.numbers-band-title {
    font-size: 1.625rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
}

.numbers-band-link {
    display: inline-block;
    padding: 10px 22px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 999px;
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.numbers-band-link:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #ffffff;
}

.numbers-band .numstrip {
    gap: 0;
    justify-content: flex-end;
    flex-wrap: nowrap;
}

.numbers-band .numstrip-item {
    padding: 0 clamp(24px, 3.2vw, 52px);
    border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.numbers-band .numstrip-item:first-child {
    border-left: none;
    padding-left: 0;
}

.numbers-band .numstrip-item:last-child {
    padding-right: 0;
}

.numbers-band .numstrip-item b {
    font-size: clamp(2.5rem, 3.6vw, 3.25rem);
    background: linear-gradient(180deg, #b8effc 0%, #3fbde0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #3fbde0;
}

.numbers-band .numstrip-item b em {
    font-style: normal;
    font-size: 0.6em;
}

.numbers-band .numstrip-item span {
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.04em;
}

@media (max-width: 1080px) {
    .numbers-band-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .numbers-band .numstrip {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .numbers-band .numstrip {
        flex-wrap: wrap;
        gap: 24px;
        width: 100%;
    }

    .numbers-band .numstrip-item {
        flex-basis: 40%;
        border-left: none;
        padding: 0;
        text-align: left;
    }

    .numbers-band .numstrip-item b,
    .numbers-band .numstrip-item span {
        text-align: left;
    }
}

/* 旧 #numbers の薄背景をID指定で上書き */
#numbers.numbers-band {
    background:
        radial-gradient(ellipse 700px 420px at 88% 0%, rgba(63, 189, 224, 0.28), transparent 60%),
        linear-gradient(120deg, #0c1f2c 0%, #0c3b52 60%, #14607f 100%);
}

/* ============================================================
   お問い合わせフォーム (2026リニューアル)
   ============================================================ */

.form-card {
    max-width: 860px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 48px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.form-row {
    display: flex;
    gap: 32px;
    padding: 20px 0;
    border-bottom: 1px solid #f1f5f9;
}

.form-row:first-child {
    padding-top: 0;
}

.form-label {
    flex-shrink: 0;
    width: 200px;
    font-weight: 700;
    color: #1a202c;
    font-size: 0.9375rem;
    padding-top: 12px;
}

.req {
    display: inline-block;
    margin-left: 10px;
    font-size: 0.6875rem;
    font-weight: 700;
    color: #ffffff;
    background: #e9546b;
    border-radius: 4px;
    padding: 2px 8px;
    vertical-align: 2px;
}

.form-field {
    flex: 1;
}

.form-field input[type="text"],
.form-field textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 1rem;
    color: #1a202c;
    background: #f8fafc;
    border: 1px solid #cbd5e0;
    border-radius: 8px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.form-field input[type="text"]:focus,
.form-field textarea:focus {
    outline: none;
    background: #ffffff;
    border-color: #1794bd;
    box-shadow: 0 0 0 3px rgba(63, 189, 224, 0.25);
}

.form-field textarea {
    resize: vertical;
    min-height: 160px;
    line-height: 1.8;
}

.errorTxt {
    display: block;
    margin-top: 8px;
    font-size: 0.8125rem;
    font-weight: 700;
    color: #e9546b;
}

.form-consent {
    margin-top: 32px;
    text-align: center;
}

.form-consent .privacy_textlink {
    margin-bottom: 20px;
    color: #4a5568;
}

.form-consent .privacy_textlink a {
    color: #1794bd;
    font-weight: 600;
    text-decoration: underline;
}

.form-consent .g-recaptcha {
    display: inline-block;
}

.form-actions {
    margin-top: 32px;
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.form-actions .cta-btn:disabled {
    background: #cbd5e0;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

.cta-btn.ghost {
    background: #ffffff;
    color: #4a5568;
    border: 1px solid #cbd5e0;
}

.cta-btn.ghost:hover {
    background: #f7fafc;
    transform: translateY(-2px);
}

/* 確認画面 */
.confirm-row {
    display: flex;
    gap: 32px;
    padding: 20px 0;
    border-bottom: 1px solid #f1f5f9;
}

.confirm-row dt {
    flex-shrink: 0;
    width: 200px;
    font-weight: 700;
    color: #718096;
    font-size: 0.9375rem;
}

.confirm-row dd {
    flex: 1;
    color: #1a202c;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .form-card {
        padding: 28px 20px;
    }

    .form-row,
    .confirm-row {
        flex-direction: column;
        gap: 8px;
    }

    .form-label,
    .confirm-row dt {
        width: auto;
        padding-top: 0;
    }
}

.number-value small {
    font-size: 0.45em;
    font-weight: 700;
    margin-left: 2px;
}

/* フォーム: グループ見出し・セレクト・ラジオ */
.form-group-title {
    font-size: 1.125rem;
    font-weight: 800;
    color: #1a202c;
    margin: 40px 0 8px;
    padding-left: 12px;
    border-left: 3px solid #3fbde0;
}

.form-card .form-group-title:first-child {
    margin-top: 0;
}

.form-field select {
    padding: 12px 16px;
    font-size: 1rem;
    color: #1a202c;
    background: #f8fafc;
    border: 1px solid #cbd5e0;
    border-radius: 8px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field select:focus {
    outline: none;
    background: #ffffff;
    border-color: #1794bd;
    box-shadow: 0 0 0 3px rgba(63, 189, 224, 0.25);
}

.form-inline {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    color: #4a5568;
}

.radio-group {
    display: flex;
    gap: 24px;
    align-items: center;
    padding-top: 10px;
    color: #1a202c;
}

.radio-group label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.radio-group input[type="radio"] {
    accent-color: #1794bd;
    width: 18px;
    height: 18px;
}

/* 代表メッセージ: 写真付き2カラム */
.message-wrap {
    display: flex;
    gap: 56px;
    align-items: flex-start;
}

.message-wrap .message-body {
    flex: 1;
}

.message-photo {
    flex-shrink: 0;
    width: 320px;
    position: sticky;
    top: 100px;
}

.message-photo img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(12, 59, 82, 0.18);
}

.message-photo-caption {
    margin-top: 12px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #718096;
    text-align: center;
}

@media (max-width: 768px) {
    .message-wrap {
        flex-direction: column-reverse;
        gap: 32px;
    }

    .message-photo {
        position: static;
        width: min(320px, 100%);
        margin: 0 auto;
    }
}

/* 任意バッジ */
.req.opt {
    background: #a0aec0;
}

/* ============================================================
   雑誌風リデザイン (2026-08-30)
   見出し=明朝、本文=ゴシック。カードを減らし、タイポと実物を主役に
   ============================================================ */

/* 明朝の見出し */
.sec-title,
.page-title,
.hero-title,
.contact-title,
.recruit-hero-title,
.numbers-band-title,
.work-variety-copy,
.message-sign-name {
    font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "Noto Serif JP", serif;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.sec-title {
    line-height: 1.5;
}

/* eyebrow: 水色SaaS風 → 線付きの控えめな表記 */
.sec-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #1a202c;
    letter-spacing: 0.22em;
    font-size: 0.75rem;
}

.sec-eyebrow::before {
    content: '';
    width: 28px;
    height: 1px;
    background: #1a202c;
}

.sec-head.center .sec-eyebrow {
    justify-content: center;
}

.sec-eyebrow.on-dark {
    color: rgba(255, 255, 255, 0.85);
}

.sec-eyebrow.on-dark::before {
    background: rgba(255, 255, 255, 0.6);
}

/* 余白の強弱 */
.tsec.tight-top {
    padding-top: 48px;
}

.tsec.tight-bottom {
    padding-bottom: 48px;
}

.tsec.roomy-bottom {
    padding-bottom: 160px;
}

/* HUB featured: 実画面ショット */
.hub-shot {
    margin-top: 24px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 8px 24px rgba(12, 59, 82, 0.15);
}

.hub-shot img {
    display: block;
    width: 100%;
    height: auto;
}

/* PROJECTS: 代表1件を大きく */
.proj-feature {
    display: flex;
    gap: 56px;
    align-items: center;
    margin-bottom: 64px;
}

.proj-feature-image {
    flex: 0 0 58%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(12, 59, 82, 0.18);
}

.proj-feature-image img {
    display: block;
    width: 100%;
    height: auto;
}

.proj-feature-title {
    font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: #1a202c;
    line-height: 1.6;
    margin: 12px 0 16px;
}

.proj-feature-copy {
    color: #4a5568;
    line-height: 2;
}

.proj-grid.minor {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.proj-grid.minor .proj-title {
    font-size: 0.9875rem;
}

.proj-grid.minor .proj-content {
    padding: 18px 20px;
}

/* APPROACH: カード→エディトリアルな行 */
.appr-lines {
    max-width: 980px;
}

/* 番号・見出し・サブ・説明の4列を固定レールに乗せ、
   タイトルの文字数で後続がずれない(段落ちが揃わない)状態を解消 */
.appr-row {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr) 300px;
    align-items: baseline;
    gap: 40px;
    padding: 40px 0;
    border-bottom: 1px solid #cbd5e0;
    position: relative;
}

.appr-row:last-child {
    border-bottom: none;
}

/* 罫線右端の矢印は意味が伝わらないため廃止 */

.appr-row-num {
    flex-shrink: 0;
    width: 56px;
    font-size: 1rem;
    font-weight: 800;
    color: #1794bd;
    letter-spacing: 0.1em;
}

.appr-row-main h3 {
    /* 見出しとサブを別カラムに分け、全行でサブの開始位置を揃える。
       em指定なのでclamp()で見出しが縮んでもレール幅が追従する */
    display: grid;
    grid-template-columns: minmax(0, 7em) minmax(0, 1fr);
    align-items: baseline;
    gap: 20px;
    font-size: clamp(2rem, 3.4vw, 2.75rem);
    font-weight: 900;
    color: #1a202c;
    letter-spacing: 0.04em;
    line-height: 1.2;
}

.appr-row-main h3 span {
    font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", serif;
    font-size: 1.0625rem;
    font-weight: 600;
    color: #2d3748;
}

.appr-row-desc {
    font-size: 0.875rem;
    color: #718096;
    line-height: 1.8;
    text-align: left;
}

/* 拠点: フラットな段組み */
.local-flat {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}

.local-place {
    border-top: 2px solid #1a202c;
    padding-top: 20px;
}

.local-en {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.3em;
    color: #1794bd;
    margin-bottom: 8px;
}

.local-place .local-city {
    font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 12px;
}

.local-place .local-city small {
    margin-left: 10px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 0.8125rem;
    font-weight: 700;
    color: #718096;
}

.local-place .local-addr {
    font-size: 0.9375rem;
    color: #4a5568;
    line-height: 1.8;
}

.local-place .local-desc {
    font-size: 0.9375rem;
    color: #4a5568;
    line-height: 1.9;
    margin-bottom: 14px;
    min-height: auto;
}

/* 大数字ブレイク(雑誌的な差し込み) */
.stat-break {
    padding: 100px 0;
    text-align: center;
}

.stat-break-num {
    font-size: clamp(4.5rem, 10vw, 8rem);
    font-weight: 900;
    line-height: 1;
    color: #1a202c;
    letter-spacing: 0.02em;
    text-align: center;
}

.stat-break-num span {
    font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", serif;
    font-size: 0.32em;
    font-weight: 600;
}

.stat-break-copy {
    margin-top: 20px;
    color: #4a5568;
    line-height: 2;
    text-align: center;
}

@media (max-width: 768px) {
    .proj-feature {
        flex-direction: column;
        gap: 24px;
    }

    .proj-feature-image {
        flex-basis: auto;
        width: 100%;
    }

    .proj-grid.minor {
        grid-template-columns: 1fr;
    }

    .appr-row {
        grid-template-columns: 56px minmax(0, 1fr);
        gap: 12px;
        padding: 28px 0;
    }

    .appr-row-main h3 {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .appr-row-desc {
        grid-column: 2;
    }

    .local-flat {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .tsec.roomy-bottom {
        padding-bottom: 96px;
    }
}

/* ============================================================
   雑誌風リデザイン第2弾: 紺グラデーション面を「紙面」に
   生成り(#f6f2ea) + 墨色(#1a202c) + 細罫線
   ============================================================ */

/* HUB SERIES: ダークグラデ → 生成りの特集ページ */
.hub-sec {
    background: #f6f2ea;
    border-top: 1px solid #e3dccd;
    border-bottom: 1px solid #e3dccd;
}

.hub-sec .sec-eyebrow.on-dark {
    color: #1a202c;
}

.hub-sec .sec-eyebrow.on-dark::before {
    background: #1a202c;
}

.hub-sec .sec-title.on-dark {
    color: #1a202c;
}

.hub-sec .sec-lead.on-dark {
    color: #5a6472;
}

.hub-card {
    color: #1a202c;
    border-radius: 6px;
}

.hub-card.featured {
    background: #ffffff;
    border: 1px solid #e0d9cb;
    box-shadow: none;
}

.hub-card.featured .hub-tag {
    background: transparent;
    border: 1px solid #1794bd;
    color: #1173a6;
}

/* 小型HUB: カード → 罫線リスト */
.hub-list .hub-card {
    background: transparent;
    border: none;
    border-top: 2px solid #1a202c;
    border-radius: 0;
    padding: 20px 0 0;
}

.hub-list .hub-tag {
    background: transparent;
    border: 1px solid #b9b2a4;
    color: #6b6455;
}

.hub-list .hub-name {
    color: #1a202c;
}

.hub-list .hub-desc {
    color: #5a6472;
}

.hub-origin {
    border-top: 1px solid #1a202c;
}

.hub-origin h3 {
    color: #1a202c;
    font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", serif;
    font-weight: 600;
}

.hub-origin p {
    color: #5a6472;
}

/* 数字帯: 紺バンド → 罫線で挟んだ白のエディトリアル帯 */
#numbers.numbers-band {
    background: #ffffff;
    border-top: 2px solid #1a202c;
    border-bottom: 2px solid #1a202c;
    padding: 64px 0;
}

.numbers-band .sec-eyebrow.on-dark {
    color: #1a202c;
}

.numbers-band .sec-eyebrow.on-dark::before {
    background: #1a202c;
}

.numbers-band-title {
    color: #1a202c;
}

.numbers-band-link {
    border: none;
    border-radius: 0;
    padding: 0;
    color: #1a202c;
    text-decoration: underline;
    text-underline-offset: 5px;
    text-decoration-thickness: 1px;
}

.numbers-band-link:hover {
    background: none;
    color: #1794bd;
}

.numbers-band .numstrip-item {
    border-left-color: #d9d9d9;
}

.numbers-band .numstrip-item b {
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
    -webkit-text-fill-color: #1a202c;
    color: #1a202c;
}

.numbers-band .numstrip-item span {
    color: #6b7280;
}

/* CONTACT: 紺グラデ → 生成りの締めページ */
.contact-sec {
    background: #f6f2ea;
    border-top: 1px solid #e3dccd;
    padding: 120px 0;
}

.contact-title {
    color: #1a202c;
}

.contact-lead {
    color: #5a6472;
}

.contact-sec .cta-btn.secondary {
    color: #1a202c;
    border-color: #1a202c;
    background: transparent;
}

.contact-sec .cta-btn.secondary:hover {
    background: #1a202c;
    color: #ffffff;
}

/* 採用ヒーローも紙面トーンに統一 */
.recruit-hero {
    background: #f6f2ea;
    border-bottom: 1px solid #e3dccd;
}

.recruit-hero .hero-eyebrow {
    color: #1a202c;
    text-shadow: none;
    display: flex;
    align-items: center;
    gap: 12px;
}

.recruit-hero .hero-eyebrow::before {
    content: '';
    width: 28px;
    height: 1px;
    background: #1a202c;
}

.recruit-hero-title {
    color: #1a202c;
}

.recruit-hero-lead {
    color: #5a6472;
}

.recruit-hero .cta-btn.secondary {
    color: #1a202c;
    border-color: #1a202c;
}

.recruit-hero .cta-btn.secondary:hover {
    background: #1a202c;
    color: #ffffff;
}

/* ============================================================
   書体ルールの整理 (2026-08-30)
   明朝 = ブランドコピー・思想・署名 (hero/sec-title/コピー/署名)
   ゴシック = UI・ページタイトル・ナビ・数字・プロダクト名・地名
   ============================================================ */

/* ページタイトルはUI → ゴシックに戻す */
.page-title {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
    font-weight: 700;
    letter-spacing: 0;
}

/* 数字帯のラベルは数字系UI → ゴシック */
.numbers-band-title {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-weight: 800;
    letter-spacing: 0.02em;
}

/* 都市名は情報 → ゴシック */
.local-place .local-city {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    font-weight: 800;
}

/* ============================================================
   会社情報表: カード型 → 雑誌のスペック表風
   ============================================================ */

.company-info {
    max-width: 900px;
    margin: 0;
}

.company-table {
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    border-top: 2px solid #1a202c;
    margin-bottom: 48px;
}

.company-table th,
.company-table td {
    padding: 26px 0;
    border-bottom: 1px solid #ddd6c8;
}

.company-table tr:last-child th,
.company-table tr:last-child td {
    border-bottom: 2px solid #1a202c;
}

.company-table th {
    background: transparent;
    width: 220px;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #718096;
    padding-top: 30px;
}

.company-table td {
    padding-left: 24px;
    color: #1a202c;
    line-height: 2;
}

.company-info .section-cta {
    justify-content: flex-start;
}

@media (max-width: 768px) {
    .company-table th,
    .company-table td {
        display: block;
        width: 100%;
        padding: 0;
        border-bottom: none;
    }

    .company-table th {
        background: transparent;
        color: #718096;
        font-size: 0.75rem;
        padding: 20px 0 4px;
    }

    .company-table td {
        background: transparent;
        padding: 0 0 20px;
        border-bottom: 1px solid #ddd6c8;
    }

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

/* ============================================================
   サイトフッター(奥付風・新デザインページ用)
   ============================================================ */

.site-footer {
    background: #1a202c;
    padding: 72px 0 40px;
}

.footer-top {
    display: flex;
    gap: 64px;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-brand img {
    height: 30px;
    width: auto;
    display: block;
}

.footer-brand p {
    margin-top: 16px;
    font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", serif;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.75);
}

.footer-cols {
    display: flex;
    gap: clamp(32px, 5vw, 72px);
    flex-wrap: wrap;
}

.footer-col-title {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 16px;
}

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

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    color: #e2e8f0;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.footer-col a:hover {
    color: #7ddcf5;
}

.footer-bottom {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    padding-top: 28px;
}

.footer-legal {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    list-style: none;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: 0.75rem;
}

.footer-legal a:hover {
    color: #ffffff;
}

.site-footer small {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
    margin-left: auto;
}

.footer-pmark {
    display: inline-block;
    background: #ffffff;
    border-radius: 8px;
    padding: 6px;
    line-height: 0;
}

.footer-pmark img {
    width: 56px;
    height: auto;
}

@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        gap: 40px;
    }

    .footer-cols {
        gap: 32px;
    }

    .footer-col {
        min-width: 40%;
    }

    .site-footer small {
        margin-left: 0;
        width: 100%;
    }
}

/* フッター調整: 白抜きロゴ・高さ圧縮・4カラム1段 */
.site-footer {
    padding: 44px 0 28px;
}

.footer-top {
    gap: 48px;
    padding-bottom: 28px;
    align-items: flex-start;
}

.footer-brand img {
    height: 24px;
}

.footer-brand p {
    margin-top: 12px;
    font-size: 0.875rem;
}

.footer-cols {
    flex: 1;
    justify-content: flex-end;
}

.footer-col-title {
    margin-bottom: 10px;
}

.footer-col li {
    display: block;
    margin-bottom: 6px;
}

.footer-col a {
    font-size: 0.8125rem;
}

.footer-bottom {
    padding-top: 20px;
}

.footer-pmark img {
    width: 44px;
}

/* フッター: リンクを縦リスト化し4カラム1段に(リセットCSS対策で強め指定) */
.site-footer .footer-cols {
    display: grid;
    grid-template-columns: repeat(4, auto);
    gap: 48px;
    justify-content: end;
    flex: 1;
}

.site-footer .footer-col ul li {
    display: block;
    margin-bottom: 7px;
}

@media (max-width: 900px) {
    .site-footer .footer-cols {
        grid-template-columns: repeat(2, auto);
        justify-content: start;
    }
}

/* ============================================================
   サステナビリティページ(4つの重要課題)
   ============================================================ */

.sus-hero-title {
    font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", serif;
    font-size: clamp(1.75rem, 3.6vw, 2.75rem);
    font-weight: 600;
    color: #1a202c;
    line-height: 1.6;
    margin: 12px 0 16px;
}

.sus-item {
    display: flex;
    gap: 48px;
    padding: 56px 0;
    border-top: 2px solid #1a202c;
}

.sus-item:last-child {
    border-bottom: 2px solid #1a202c;
}

.sus-index {
    flex-shrink: 0;
    width: 160px;
}

.sus-num {
    font-size: 2.5rem;
    font-weight: 900;
    color: #1794bd;
    line-height: 1;
}

.sus-en {
    margin-top: 8px;
    font-size: 0.8125rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    color: #1a202c;
}

.sus-main {
    flex: 1;
}

.sus-main h2 {
    font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", serif;
    font-size: 1.625rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 16px;
}

.sus-main > p {
    color: #4a5568;
    line-height: 2;
    margin-bottom: 20px;
}

.sus-kpi {
    flex-shrink: 0;
    width: 240px;
    border-left: 1px solid #ddd6c8;
    padding-left: 28px;
}

.sus-kpi-title {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: #718096;
    margin-bottom: 12px;
}

.sus-kpi ul {
    list-style: none;
}

.sus-kpi li {
    display: block;
    font-size: 0.875rem;
    color: #1a202c;
    padding: 7px 0;
    border-bottom: 1px solid #f1ece0;
}

.sus-kpi li:last-child {
    border-bottom: none;
}

@media (max-width: 900px) {
    .sus-item {
        flex-direction: column;
        gap: 20px;
        padding: 40px 0;
    }

    .sus-index {
        width: auto;
        display: flex;
        align-items: baseline;
        gap: 16px;
    }

    .sus-kpi {
        width: auto;
        border-left: none;
        padding-left: 0;
        border-top: 1px solid #ddd6c8;
        padding-top: 16px;
    }
}

/* SDGs公式アイコン(サステナビリティページ) */
.sdg-icons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.sdg-icons img {
    display: block;
    width: 78px;
    height: 78px;
}

/* 数字ページ: ヒーローを雑誌トーンに、カードの水色を墨に統一 */
.numbers-hero {
    padding: 150px 0 80px;
}

.numbers-hero .breadcrumb {
    margin-bottom: 32px;
}

.number-item::before {
    background: #1a202c;
}

.number-item {
    box-shadow: none;
    border: 1px solid #e2e8f0;
}

.number-item:hover {
    transform: none;
    box-shadow: none;
}

/* ============================================================
   お知らせ・法務ページ(記事スタイル)
   ============================================================ */

.news-date-large {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #718096;
    letter-spacing: 0.06em;
    margin: 20px 0 8px;
    font-variant-numeric: tabular-nums;
}

.news-article {
    max-width: 760px;
}

.news-article p {
    color: #4a5568;
    line-height: 2.1;
    margin-bottom: 24px;
}

.news-note {
    margin-top: 32px;
    padding: 24px 28px;
    border-top: 2px solid #1a202c;
    border-bottom: 1px solid #ddd6c8;
    color: #1a202c;
    line-height: 2;
    font-size: 0.9375rem;
}

.news-note a {
    color: #1794bd;
    font-weight: 600;
}

.tsec .news-list {
    max-width: 860px;
    margin: 0;
    border-top: 2px solid #1a202c;
}

.tsec .news-item {
    padding: 22px 0;
    border-bottom: 1px solid #ddd6c8;
}

.tsec .news-title {
    font-weight: 500;
}

/* 法務ページ本文 */
.legal-body {
    max-width: 860px;
}

.legal-h {
    font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a202c;
    margin: 48px 0 16px;
    padding-top: 24px;
    border-top: 2px solid #1a202c;
}

.legal-body > .legal-h:first-child,
.legal-body > div:first-child .legal-h:first-child {
    margin-top: 0;
}

.legal-body pre {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    white-space: pre-wrap;
    word-break: break-word;
    font-size: 0.9375rem;
    color: #4a5568;
    line-height: 2.1;
    margin-bottom: 16px;
}

.legal-body pre a {
    color: #1794bd;
    text-decoration: underline;
}

.legal-body p {
    color: #4a5568;
    line-height: 2.1;
    margin-bottom: 20px;
}

.legal-body .text-right {
    text-align: right;
    color: #1a202c;
}

.legal-body .btn-area {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.sa-badge {
    margin-bottom: 32px;
}

.sa-badge img {
    width: 220px;
    height: auto;
}

/* 採用: 特別授業ブロック */
.intern-extra {
    margin-top: 48px;
    padding-top: 28px;
    border-top: 2px solid #1a202c;
    max-width: 760px;
}

.intern-extra h3 {
    font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", serif;
    font-size: 1.375rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 12px;
}

.intern-extra p {
    color: #4a5568;
    line-height: 2;
}

/* アクセスページ */
.access-block {
    margin-bottom: 72px;
}

.access-block:last-of-type {
    margin-bottom: 0;
}

.access-block .local-place {
    max-width: 560px;
    margin-bottom: 24px;
}

.access-map iframe {
    display: block;
    width: 100%;
    height: 420px;
    border-radius: 12px;
}

/* フッター: 各グループのリンクを縦1列に(旧 footer ul のflex指定を打ち消し) */
.site-footer .footer-col ul {
    display: block;
}

.site-footer .footer-legal {
    display: flex;
}

/* ============================================================
   ボタンの雑誌化: 黒枠線+透明背景+角丸2pxに統一
   ホバーで墨ベタ反転。写真上(TOPヒーロー)のみ白アウトライン
   ============================================================ */

.cta-btn,
.cta-btn.primary,
.cta-btn.blue,
.cta-btn.secondary,
.cta-btn.ghost {
    background: transparent;
    color: #1a202c;
    border: 1.5px solid #1a202c;
    border-radius: 2px;
    box-shadow: none;
}

.cta-btn:hover,
.cta-btn.primary:hover,
.cta-btn.blue:hover,
.cta-btn.secondary:hover,
.cta-btn.ghost:hover {
    background: #1a202c;
    color: #ffffff;
    border-color: #1a202c;
    transform: none;
    box-shadow: none;
}

/* フォームの無効状態 */
.form-actions .cta-btn:disabled {
    background: transparent;
    border-color: #cbd5e0;
    color: #a0aec0;
}

/* 写真の上(TOPヒーロー)は白アウトライン */
#hero .cta-btn {
    border-color: #ffffff;
    color: #ffffff;
    background: transparent;
}

#hero .cta-btn:hover {
    background: #ffffff;
    color: #1a202c;
    border-color: #ffffff;
}

/* アクセス: Google Mapsリンク */
.map-link {
    display: inline-block;
    margin-top: 16px;
    color: #1a202c;
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.map-link:hover {
    color: #1794bd;
}

/* ============================================================
   モバイルヘッダー: ロゴ下の横スクロールナビに
   ============================================================ */

@media (max-width: 900px) {
    header {
        padding: 10px 0 0;
    }

    header .wrap {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        padding: 0 16px;
    }

    header .logo img {
        height: 24px;
    }

    .nav-menu {
        width: 100%;
        overflow-x: auto;
        flex-wrap: nowrap;
        gap: 20px;
        padding: 4px 0 10px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .nav-menu::-webkit-scrollbar {
        display: none;
    }

    .nav-menu a,
    .nav-menu .dropdown-trigger {
        white-space: nowrap;
        font-size: 0.8125rem;
    }

    .nav-menu .dropdown-menu {
        display: none;
    }
}

/* HUBプロダクトロゴ */
.hub-logo {
    margin: 16px 0 12px;
}

.hub-logo img {
    height: 72px;
    width: auto;
    display: block;
}

.hub-logo.small img {
    height: 60px;
}

.hub-logo img {
    mix-blend-mode: multiply;
}

/* HUBカード: ロゴ+タグの1行ヘッダー */
.hub-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.hub-head .hub-logo {
    margin: 0;
}

/* ABOUT: 線画ピクトグラム付きの工程図 */
.story-flow {
    display: flex;
    align-items: center;
    gap: 20px;
}

.story-step {
    text-align: center;
    color: #1a202c;
}

.story-ico {
    width: 44px;
    height: 44px;
    margin: 0 auto 10px;
}

.story-ico svg {
    width: 100%;
    height: 100%;
    display: block;
}

.story-step p {
    font-weight: 700;
    font-size: 0.9375rem;
    line-height: 1.5;
    text-align: center;
    white-space: nowrap;
}

.story-step.accent {
    color: #1794bd;
}

.story-arrow {
    flex: 1;
    min-width: 28px;
    height: 1px;
    background: #b8bfc9;
    position: relative;
    top: -14px;
}

.story-arrow::after {
    content: '';
    position: absolute;
    right: 0;
    top: -3.5px;
    border-left: 7px solid #b8bfc9;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
}

@media (max-width: 900px) {
    .story-flow {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .story-step {
        display: flex;
        align-items: center;
        gap: 14px;
        text-align: left;
    }

    .story-ico {
        margin: 0;
        width: 36px;
        height: 36px;
    }

    .story-step p {
        white-space: normal;
    }

    .story-step p br {
        display: none;
    }

    .story-arrow {
        width: 1px;
        min-width: 0;
        flex: none;
        height: 20px;
        margin-left: 18px;
        top: 0;
    }

    .story-arrow::after {
        right: -3.5px;
        top: auto;
        bottom: -6px;
        border-left: 4px solid transparent;
        border-right: 4px solid transparent;
        border-top: 7px solid #b8bfc9;
    }
}

/* 数字ページ: 集計中カード(レビュー用に控えめ表示) */
.number-item.pending::before {
    background: #cbd5e0;
}

.number-item.pending .number-value {
    color: #cbd5e0;
}

.number-item.pending .number-label {
    color: #a0aec0;
}

/* ============================================================
   HUB SERIES: 全プロダクトを等価に並べるグリッド(拡張対応)
   ============================================================ */

.hub-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px 24px;
}

.hub-grid .hub-card {
    background: transparent;
    border: none;
    border-top: 2px solid #1a202c;
    border-radius: 0;
    padding: 18px 0 0;
}

.hub-grid .hub-head {
    display: block;
    margin-bottom: 14px;
}

.hub-grid .hub-logo {
    margin: 0 0 10px;
}

.hub-grid .hub-logo img {
    height: 54px;
}

.hub-grid .hub-tag {
    display: inline-block;
    margin: 0;
    background: transparent;
    border: 1px solid #b9b2a4;
    color: #6b6455;
    font-size: 0.6875rem;
    padding: 3px 10px;
}

.hub-grid .hub-copy {
    font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", serif;
    font-size: 1.0625rem;
    font-weight: 600;
    color: #1a202c;
    line-height: 1.7;
    margin-bottom: 10px;
}

.hub-grid .hub-desc {
    font-size: 0.875rem;
    line-height: 1.9;
    color: #5a6472;
}

@media (max-width: 640px) {
    .hub-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

/* HUB SERIES: 白カード化(ロゴの視認性・カード同士の区切りを明確に) */
.hub-grid {
    gap: 20px;
}

.hub-grid .hub-card {
    background: #ffffff;
    border: 1px solid #e0d9cb;
    border-top: 2px solid #1a202c;
    border-radius: 4px;
    padding: 24px 22px 26px;
}

.hub-grid .hub-logo img {
    mix-blend-mode: normal;
}

/* パートナー紹介ブロック(イベントページ) */
.partner-block {
    display: flex;
    gap: 56px;
    align-items: flex-start;
    border-top: 2px solid #1a202c;
    padding-top: 28px;
}

.partner-main {
    flex: 1;
}

.partner-main h3 {
    font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 14px;
}

.partner-main p {
    color: #4a5568;
    line-height: 2;
    margin-bottom: 16px;
    max-width: 620px;
}

.partner-meta {
    flex-shrink: 0;
    width: 320px;
}

.partner-meta > div {
    display: flex;
    gap: 16px;
    padding: 10px 0;
    border-bottom: 1px solid #e2e8f0;
    font-size: 0.875rem;
}

.partner-meta dt {
    flex-shrink: 0;
    width: 68px;
    color: #718096;
    font-weight: 700;
}

.partner-meta dd {
    color: #1a202c;
    line-height: 1.7;
}

@media (max-width: 900px) {
    .partner-block {
        flex-direction: column;
        gap: 28px;
    }

    .partner-meta {
        width: 100%;
    }
}

/* イベント: アトリエのタイムラプス(フル幅) */
.atelier-sec {
    padding-bottom: 0;
}

.atelier-video {
    margin-top: 48px;
    width: 100%;
    aspect-ratio: 21 / 9;
    overflow: hidden;
    background: #1a202c;
}

.atelier-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.atelier-video.placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #efe9dd;
    border-top: 1px solid #e0d9cb;
    border-bottom: 1px solid #e0d9cb;
    aspect-ratio: 21 / 7;
}

.atelier-video.placeholder p {
    text-align: center;
    color: #a89f8c;
    font-size: 0.9375rem;
    font-weight: 700;
    line-height: 2;
}

.atelier-video.placeholder small {
    font-weight: 400;
    font-size: 0.8125rem;
}

/* システム開発: AI駆動開発の工程グリッド */
.ai-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.ai-item {
    background: #ffffff;
    border: 1px solid #e0d9cb;
    border-top: 2px solid #1a202c;
    border-radius: 4px;
    padding: 22px 24px 24px;
}

.ai-num {
    font-size: 0.8125rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: #1794bd;
    margin-bottom: 10px;
}

.ai-item h3 {
    font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", serif;
    font-size: 1.1875rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 10px;
}

.ai-item p {
    font-size: 0.875rem;
    line-height: 1.9;
    color: #5a6472;
}

/* システム開発: 開発実績の一覧 */
.works-list {
    border-top: 2px solid #1a202c;
}

.works-group {
    display: flex;
    gap: 40px;
    padding: 22px 0;
    border-bottom: 1px solid #ddd6c8;
}

.works-group h3 {
    flex-shrink: 0;
    width: 190px;
    font-size: 0.9375rem;
    font-weight: 800;
    color: #1a202c;
    letter-spacing: 0.02em;
    padding-top: 2px;
}

.works-group ul {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 6px 24px;
    list-style: none;
}

.works-group li {
    display: block;
    font-size: 0.875rem;
    line-height: 1.8;
    color: #5a6472;
    padding-left: 14px;
    position: relative;
}

.works-group li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.75em;
    width: 5px;
    height: 1px;
    background: #b8bfc9;
}

@media (max-width: 768px) {
    .works-group {
        flex-direction: column;
        gap: 10px;
    }

    .works-group h3 {
        width: auto;
    }

    .works-group ul {
        grid-template-columns: 1fr;
    }
}

/* イベント: アトリエ(縦動画レイアウト) */
.atelier-sec {
    padding-bottom: 88px;
}

.atelier-layout {
    display: flex;
    gap: 64px;
    align-items: center;
}

.atelier-text {
    flex: 1;
}

.atelier-text .sec-title {
    margin-bottom: 20px;
}

.atelier-layout .atelier-video {
    flex: 0 0 240px;
    margin-top: 0;
    width: 240px;
    aspect-ratio: 9 / 16;
    border-radius: 2px;
    overflow: hidden;
    background: #efe9dd;
    box-shadow: none;
}

/* 誌面のトーンに合わせてモノクロに */
.atelier-layout .atelier-video video {
    filter: grayscale(1) contrast(1.04) brightness(1.02);
}

.atelier-layout .atelier-video.placeholder {
    aspect-ratio: 9 / 16;
    background: #efe9dd;
    border: 1px solid #e0d9cb;
    box-shadow: none;
}

@media (max-width: 900px) {
    .atelier-layout {
        flex-direction: column;
        gap: 32px;
        align-items: flex-start;
    }

    .atelier-layout .atelier-video {
        flex: none;
        width: min(280px, 100%);
        align-self: center;
    }
}

/* MAKING: 余白と行間を広げて窮屈さを解消 */
.atelier-sec {
    padding-top: 96px;
    padding-bottom: 96px;
}

.atelier-layout {
    gap: clamp(40px, 8vw, 110px);
    align-items: center;
    max-width: 980px;
}

.atelier-text .sec-lead {
    line-height: 2.2;
}

/* PC専用改行(SPでは自然折り返しに任せる) */
.pcblock {
    display: inline;
}

@media (max-width: 768px) {
    .pcblock {
        display: none;
    }
}

/* 募集要項の注記 */
.note-mark {
    font-size: 0.75rem;
    color: #718096;
    vertical-align: 2px;
}

.jobs-note {
    display: block;
    margin-top: 10px;
    font-size: 0.8125rem;
    line-height: 1.9;
    color: #718096;
}

/* 募集要項: 勤務地の拠点一覧 */
.jobs-office {
    display: block;
    margin-top: 8px;
    padding-left: 1em;
    text-indent: -1em;
    line-height: 1.8;
}

.jobs-office b {
    display: inline-block;
    min-width: 5.5em;
    margin-right: 8px;
    text-indent: 0;
    font-weight: 700;
    color: #1a202c;
}

.jobs-office + a,
.jobs-office + .jobs-office + a {
    display: inline-block;
    margin-top: 12px;
}

@media (max-width: 768px) {
    .jobs-office {
        padding-left: 0;
        text-indent: 0;
    }

    .jobs-office b {
        display: block;
        min-width: 0;
        margin-right: 0;
    }
}

/* ============================================================
   募集要項テーブル: 会社情報表と同じスペック表スタイルに統一
   ============================================================ */
.recInfo {
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    border-top: 2px solid #1a202c;
    margin-bottom: 0;
}

.recInfo th,
.recInfo td {
    padding: 24px 0;
    border-bottom: 1px solid #ddd6c8;
    background: transparent;
}

.recInfo tr:last-child th,
.recInfo tr:last-child td {
    border-bottom: 2px solid #1a202c;
}

.recInfo th {
    width: 220px;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #718096;
    padding-top: 28px;
}

.recInfo td {
    padding-left: 24px;
    color: #1a202c;
    line-height: 2;
}

@media (max-width: 768px) {
    /* スマホでは縦積み(2カラムのままだと値の列が極端に狭くなるため) */
    .recInfo,
    .recInfo tbody,
    .recInfo tr,
    .recInfo th,
    .recInfo td {
        display: block;
        width: 100%;
    }

    .recInfo tr {
        border-bottom: 1px solid #ddd6c8;
        padding: 16px 0;
    }

    .recInfo tr:last-child {
        border-bottom: 2px solid #1a202c;
    }

    .recInfo th {
        background: transparent;
        color: #718096;
        font-size: 0.75rem;
        padding: 0 0 6px;
        border-bottom: none;
    }

    .recInfo td {
        background: transparent;
        padding: 0;
        border-bottom: none;
        font-size: 0.9375rem;
    }

    .recInfo tr:last-child th,
    .recInfo tr:last-child td {
        border-bottom: none;
    }
}

/* TODOの、ある火曜日: 2列並列表示 */
.aday-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.aday-role {
    font-size: 0.9375rem;
    font-weight: 800;
    color: #1a202c;
    letter-spacing: 0.04em;
    padding-bottom: 12px;
    margin-bottom: 0;
    border-bottom: 2px solid #1a202c;
}

.aday-grid .aday-panel {
    max-width: none;
}

.aday-grid .aday-panel .aday-row:first-child {
    border-radius: 0;
}

@media (max-width: 768px) {
    .aday-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* ==================================================================
   SP用スライドインメニュー
   PCではハンバーガーもドロワーも非表示(従来の横並びナビのまま)
   ================================================================== */
.nav-toggle,
.nav-drawer,
.nav-overlay {
    display: none;
}

/* hidden属性を必ず優先する。
   これが無いとSP幅で display:block が勝ち、閉じている間もオーバーレイが
   全画面を覆ってタップを奪ってしまう */
.nav-drawer[hidden],
.nav-overlay[hidden] {
    display: none !important;
}

@media (max-width: 768px) {
    /* 横スクロールする細いナビをやめ、ハンバーガーに集約 */
    header .wrap {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 0 16px;
        min-height: 56px;
    }

    .nav-menu {
        display: none;
    }

    .nav-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        width: 44px;
        height: 44px;
        margin-right: -10px;
        padding: 0;
        border: none;
        background: transparent;
        cursor: pointer;
        z-index: 1002;
    }

    .nav-toggle-bar {
        display: block;
        width: 22px;
        height: 2px;
        margin: 0 auto;
        background: #1a202c;
        border-radius: 1px;
        transition: transform 0.25s ease, opacity 0.2s ease;
    }

    /* 開いている間はバツ印に変形 */
    body.nav-open .nav-toggle-bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    body.nav-open .nav-toggle-bar:nth-child(2) {
        opacity: 0;
    }

    body.nav-open .nav-toggle-bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .nav-overlay {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(26, 32, 44, 0.45);
        opacity: 0;
        transition: opacity 0.28s ease;
        z-index: 1000;
    }

    body.nav-open .nav-overlay {
        opacity: 1;
    }

    .nav-drawer {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: 0;
        width: min(84vw, 320px);
        height: 100%;
        background: #fff;
        box-shadow: -8px 0 24px rgba(26, 32, 44, 0.12);
        transform: translateX(100%);
        transition: transform 0.28s ease;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        z-index: 1001;
    }

    body.nav-open .nav-drawer {
        transform: translateX(0);
    }

    .nav-drawer-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 18px 20px 14px;
        border-bottom: 1px solid #e2e8f0;
    }

    .nav-drawer-title {
        font-size: 0.75rem;
        font-weight: 700;
        letter-spacing: 0.18em;
        color: #718096;
    }

    .nav-close {
        position: relative;
        width: 40px;
        height: 40px;
        margin-right: -10px;
        border: none;
        background: transparent;
        cursor: pointer;
    }

    .nav-close span {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 18px;
        height: 2px;
        background: #1a202c;
        border-radius: 1px;
    }

    .nav-close span:nth-child(1) {
        transform: translate(-50%, -50%) rotate(45deg);
    }

    .nav-close span:nth-child(2) {
        transform: translate(-50%, -50%) rotate(-45deg);
    }

    .nav-drawer-body {
        padding: 8px 20px 40px;
    }

    .nav-drawer-group {
        border-bottom: 1px solid #edf2f7;
        padding: 4px 0;
    }

    .nav-drawer-parent {
        display: block;
        padding: 16px 0;
        font-size: 1rem;
        font-weight: 700;
        color: #1a202c;
        text-decoration: none;
    }

    .nav-drawer-children {
        margin: -4px 0 12px;
        padding-left: 14px;
        border-left: 1px solid #e2e8f0;
        list-style: none;
    }

    .nav-drawer-children a {
        display: block;
        padding: 10px 0;
        font-size: 0.875rem;
        color: #4a5568;
        text-decoration: none;
    }

    .nav-drawer-foot {
        margin-top: 28px;
    }

    .nav-drawer-foot .cta-btn {
        display: block;
        width: 100%;
        text-align: center;
    }
}

/* 動きを減らす設定の利用者には遷移を無効化 */
@media (prefers-reduced-motion: reduce) {
    .nav-drawer,
    .nav-overlay,
    .nav-toggle-bar {
        transition: none;
    }
}

/* カード内のピクトグラム(採用ページの可読性向上) */
.wwd-ico {
    width: 30px;
    height: 30px;
    margin-bottom: 12px;
    color: #1794bd;
}

.wwd-ico svg {
    display: block;
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .wwd-ico {
        width: 26px;
        height: 26px;
        margin-bottom: 8px;
    }
}

/* ページ内リンクの着地位置を固定ヘッダー分だけ下げる。
   これが無いと #growth や #works などの見出しがヘッダーの下に潜る */
section[id] {
    scroll-margin-top: 96px;
}

@media (max-width: 768px) {
    section[id] {
        scroll-margin-top: 80px;
    }
}
