/*
Theme Name: Kyoritsu Corporate
Description: 株式会社協立のコーポレートサイト用オリジナルテーマ
Version: 1.3.1
Text Domain: kyoritsu
*/

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans JP', 'Hiragino Sans', 'Yu Gothic', sans-serif;
    line-height: 1.6;
    color: #2D3748;
    background-color: #FFFFFF;
}

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

/* Color Variables */
:root {
    --primary-color: #082b4c;
    --primary-deep: #041b30;
    --primary-soft: #0d416e;
    --accent-color: #1686c7;
    --accent-bright: #39b7e8;
    --signal-color: #f0b33a;
    --secondary-color: #5d7081;
    --background-light: #f3f7fa;
    --background-steel: #e7eef3;
    --text-color: #142536;
    --white: #ffffff;
    --line-color: #d6e0e7;
    --shadow-sm: 0 8px 24px rgba(8, 43, 76, 0.08);
    --shadow-md: 0 18px 50px rgba(8, 43, 76, 0.13);
}

/* Header */
.header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.logo h1 {
    font-size: 28px;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 2px;
}

.logo-sub {
    font-size: 12px;
    color: var(--secondary-color);
    letter-spacing: 1px;
}

/* Navigation */
.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-list a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 14px;
    padding: 10px 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-list a:hover {
    color: var(--primary-color);
}

.nav-list a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

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

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 30px;
    height: 24px;
    justify-content: space-between;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.mobile-nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-nav-list {
    list-style: none;
    padding: 20px;
}

.mobile-nav-list li {
    border-bottom: 1px solid #E2E8F0;
}

.mobile-nav-list a {
    display: block;
    padding: 15px 0;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.mobile-nav-list a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1A365D 100%);
    display: flex;
    align-items: center;
    position: relative;
    color: var(--white);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: rgba(44, 82, 130, 0.8); */
    background: var(--primary-color);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.8;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

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

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

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

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

/* Sections */
.section {
    padding: 80px 0;
}

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

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 60px;
    position: relative;
}

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

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-card {
    text-align: center;
    padding: 40px 20px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    margin-bottom: 20px;
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: var(--white);
    font-size: 32px;
    font-weight: 700;
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.feature-card p {
    color: var(--secondary-color);
    line-height: 1.8;
}

/* News Section */
.news-list {
    max-width: 800px;
    margin: 0 auto;
}

.news-item {
    display: flex;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #E2E8F0;
    gap: 20px;
}

.news-date {
    color: var(--secondary-color);
    font-size: 14px;
    min-width: 100px;
}

.news-category {
    background: var(--primary-color);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    min-width: 80px;
    text-align: center;
}

.news-title {
    color: var(--text-color);
    font-weight: 500;
    flex: 1;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-logo h3 {
    font-size: 24px;
    margin-bottom: 5px;
}

.footer-logo p {
    color: var(--secondary-color);
    font-size: 14px;
}

.footer-info p {
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #4A5568;
    color: var(--secondary-color);
    font-size: 14px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Current page indicator */
.nav-list a.current {
    color: var(--primary-color);
}

.nav-list a.current:after {
    width: 100%;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1A365D 100%);
    color: var(--white);
    text-align: center;
    padding: 120px 0 80px;
    margin-top: 80px;
}

.page-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

.page-subtitle {
    font-size: 16px;
    opacity: 0.8;
    letter-spacing: 2px;
}

/* Strengths Detail */
.strength-item {
    margin-bottom: 80px;
}

.strength-item:last-child {
    margin-bottom: 0;
}

.strength-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.strength-item.reverse .strength-content {
    grid-template-columns: 1fr 2fr;
}

.strength-item.reverse .strength-text {
    order: 2;
}

.strength-item.reverse .strength-visual {
    order: 1;
}

.strength-text h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.strength-lead {
    font-size: 18px;
    color: var(--secondary-color);
    margin-bottom: 25px;
    font-weight: 500;
}

.strength-description p {
    line-height: 1.8;
    margin-bottom: 20px;
}

.strength-features {
    list-style: none;
    padding: 0;
}

.strength-features li {
    padding: 8px 0 8px 25px;
    position: relative;
    color: var(--text-color);
}

.strength-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.strength-icon-large {
    width: 120px;
    height: 120px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 36px;
    font-weight: 700;
    margin: 0 auto;
}

/* Stats Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 30px 20px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: var(--secondary-color);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin: 20px 0 15px;
}

.service-card p {
    color: var(--secondary-color);
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding: 0;
    text-align: left;
}

.service-features li {
    padding: 5px 0 5px 20px;
    position: relative;
    color: var(--text-color);
    font-size: 14px;
}

.service-features li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* Service Details */
.service-detail-list {
    max-width: 900px;
    margin: 0 auto;
}

.service-detail-item {
    margin-bottom: 50px;
    padding: 40px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.service-detail-item h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-detail-item p {
    line-height: 1.8;
    margin-bottom: 25px;
}

.service-specs h4 {
    font-size: 18px;
    color: var(--text-color);
    margin-bottom: 15px;
}

.service-specs ul {
    list-style: none;
    padding: 0;
}

.service-specs li {
    padding: 8px 0 8px 20px;
    position: relative;
    color: var(--secondary-color);
}

.service-specs li:before {
    content: '◆';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* Industries */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.industry-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.industry-item h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.industry-item p {
    color: var(--secondary-color);
    font-size: 14px;
}

/* Facilities */
.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.facility-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.facility-card:hover {
    transform: translateY(-5px);
}

.facility-image {
    height: 200px;
    background: var(--background-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.facility-placeholder {
    width: 100px;
    height: 100px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
}

.facility-content {
    padding: 30px;
}

.facility-content h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.facility-description {
    color: var(--secondary-color);
    line-height: 1.6;
    margin-bottom: 20px;
}

.facility-specs h4 {
    color: var(--text-color);
    margin-bottom: 10px;
    font-size: 16px;
}

.facility-specs ul {
    list-style: none;
    padding: 0;
}

.facility-specs li {
    padding: 4px 0;
    color: var(--secondary-color);
    font-size: 14px;
}

/* Equipment List */
.equipment-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.equipment-category h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.equipment-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #E2E8F0;
}

.equipment-name {
    color: var(--text-color);
}

.equipment-count {
    color: var(--primary-color);
    font-weight: 600;
}

/* Quality Control */
.quality-content {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.quality-text p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--secondary-color);
    margin-bottom: 40px;
}

.quality-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.quality-feature {
    text-align: center;
}

.quality-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
}

.quality-feature h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.quality-feature p {
    color: var(--secondary-color);
    font-size: 14px;
}

/* Company Table */
.company-table {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.company-row {
    display: grid;
    grid-template-columns: 200px 1fr;
    border-bottom: 1px solid #E2E8F0;
}

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

.company-label {
    background: var(--background-light);
    padding: 20px;
    font-weight: 600;
    color: var(--primary-color);
    border-right: 1px solid #E2E8F0;
}

.company-value {
    padding: 20px;
    color: var(--text-color);
    line-height: 1.6;
}

/* Mission & Vision */
.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.mv-item {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.mv-item h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 24px;
}

.mv-item p {
    font-size: 18px;
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 500;
}

.mv-description {
    color: var(--secondary-color);
    line-height: 1.8;
    font-weight: 400;
}

.mv-list {
    list-style: none;
    padding: 0;
}

.mv-list li {
    padding: 10px 0 10px 25px;
    position: relative;
    color: var(--text-color);
}

.mv-list li:before {
    content: '◆';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* Timeline */
.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline:before {
    content: '';
    position: absolute;
    left: 100px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-color);
}

.timeline-item {
    display: flex;
    margin-bottom: 40px;
    position: relative;
}

.timeline-year {
    width: 100px;
    font-weight: 700;
    color: var(--primary-color);
    flex-shrink: 0;
    position: relative;
}

.timeline-year:after {
    content: '';
    position: absolute;
    right: -6px;
    top: 5px;
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 50%;
}

.timeline-content {
    flex: 1;
    margin-left: 30px;
    background: var(--white);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.timeline-content h4 {
    color: var(--primary-color);
    margin-bottom: 8px;
}

.timeline-content p {
    color: var(--secondary-color);
    line-height: 1.6;
}

/* Access */
.access-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.access-info {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.access-info h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.access-info address {
    font-style: normal;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 15px;
}

.access-transport {
    color: var(--secondary-color);
    line-height: 1.6;
}

/* Recruitment */
.recruitment-message {
    background: var(--background-light);
}

.message-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.message-lead {
    font-size: 20px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 20px;
}

.message-content p {
    line-height: 1.8;
    color: var(--secondary-color);
}

/* Job Openings */
.job-list {
    max-width: 900px;
    margin: 0 auto;
}

.job-card {
    background: var(--white);
    border-radius: 10px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    border-bottom: 2px solid var(--background-light);
    padding-bottom: 15px;
}

.job-header h3 {
    color: var(--primary-color);
    font-size: 24px;
}

.job-type {
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
}

.job-content h4 {
    color: var(--text-color);
    margin: 20px 0 10px;
    font-size: 18px;
}

.job-content p {
    color: var(--secondary-color);
    line-height: 1.8;
    margin-bottom: 15px;
}

.job-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.job-content li {
    padding: 5px 0 5px 20px;
    position: relative;
    color: var(--text-color);
}

.job-content li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* Benefits */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
}

.benefit-item h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.benefit-item p {
    color: var(--secondary-color);
    line-height: 1.6;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

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

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
}

.step-content h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.step-content p {
    color: var(--secondary-color);
    line-height: 1.6;
}

/* Contact CTA */
.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content p {
    font-size: 18px;
    color: var(--secondary-color);
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.cta-phone {
    text-align: center;
}

.cta-phone span {
    display: block;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.cta-phone strong {
    display: block;
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 5px;
}

.cta-phone small {
    color: var(--secondary-color);
    font-size: 14px;
}

/* Contact Form */
.contact-intro {
    text-align: center;
    margin-bottom: 50px;
}

.contact-intro p {
    max-width: 600px;
    margin: 0 auto;
    color: var(--secondary-color);
    line-height: 1.8;
}

.form {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-color);
    font-weight: 500;
}

.required {
    color: #d62929;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #E2E8F0;
    border-radius: 5px;
    font-family: inherit;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
}

/* Contact consent: override the generic form label/input rules. */
.form-group .checkbox-label {
    display: flex;
    width: fit-content;
    max-width: 100%;
    margin: 0;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    line-height: 1.6;
}

.form-group .checkbox-label input[type="checkbox"] {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    min-height: 0;
    margin: 0;
    padding: 0;
    accent-color: var(--accent-color);
}

.checkbox-text {
    display: inline;
}

.required {
    color: #d62929 !important;
}

.privacy-link {
    color: var(--primary-color);
    text-decoration: none;
}

.privacy-link:hover {
    text-decoration: underline;
}

.form-submit {
    text-align: center;
    margin-top: 30px;
}

/* Contact Methods */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.contact-method {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-method h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-details p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.contact-address,
.contact-phone,
.contact-email,
.contact-hours {
    color: var(--text-color);
}

.contact-hours {
    color: var(--secondary-color);
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--background-light);
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #E2E8F0;
}

.faq-question h4 {
    color: var(--primary-color);
    margin: 0;
}

.faq-toggle {
    font-size: 24px;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 200px;
}

.faq-answer p {
    color: var(--secondary-color);
    line-height: 1.8;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .news-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .section-title {
        font-size: 28px;
    }

    .page-title {
        font-size: 32px;
    }

    .page-header {
        padding: 100px 0 60px;
    }

    .strength-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .strength-item.reverse .strength-content {
        grid-template-columns: 1fr;
    }

    .strength-item.reverse .strength-text,
    .strength-item.reverse .strength-visual {
        order: 0;
    }

    .company-row {
        grid-template-columns: 1fr;
    }

    .company-label {
        border-right: none;
        border-bottom: 1px solid #E2E8F0;
    }

    .timeline:before {
        left: 20px;
    }

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

    .timeline-year {
        width: auto;
        margin-bottom: 10px;
        padding-left: 40px;
    }

    .timeline-year:after {
        left: 15px;
        right: auto;
    }

    .timeline-content {
        margin-left: 0;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .job-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .cta-buttons {
        gap: 30px;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .access-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 28px;
    }

    .section {
        padding: 60px 0;
    }
}

/* =========================================================
   Kyoritsu Design System 2026
   ========================================================= */
html {
    scroll-behavior: smooth;
}

body {
    color: var(--text-color);
    background: #fff;
    font-feature-settings: "palt";
    letter-spacing: 0.02em;
}

a,
button,
input,
select,
textarea {
    transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid rgba(22, 134, 199, 0.35);
    outline-offset: 3px;
}

.container {
    width: min(100% - 48px, 1180px);
    max-width: none;
    padding: 0;
}

.header {
    min-height: 92px;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(8, 43, 76, 0.08);
    box-shadow: none;
    backdrop-filter: blur(16px);
}

.header.scrolled {
    box-shadow: 0 10px 35px rgba(8, 43, 76, 0.1);
}

.header-content {
    min-height: 92px;
    padding: 15px 0;
}

.logo a {
    display: flex;
    align-items: center;
    line-height: 0;
}

.logo img {
    display: block;
    width: 168px !important;
    height: auto;
    max-height: 60px;
    object-fit: contain;
}

.nav-list {
    align-items: center;
    gap: clamp(16px, 2vw, 30px);
}

.nav-list a {
    color: #263b4e;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.nav-list a::after {
    height: 3px;
    background: var(--accent-color);
}

.nav-list li:last-child a {
    padding: 11px 18px;
    color: var(--white);
    background: var(--primary-color);
    border-radius: 3px;
}

.nav-list li:last-child a::after {
    display: none;
}

.nav-list li:last-child a:hover,
.nav-list li:last-child a.current {
    color: var(--white);
    background: var(--accent-color);
}

.nav-list .current-menu-item > a,
.nav-list .current_page_item > a {
    color: var(--accent-color);
}

.nav-list li:last-child.current-menu-item > a,
.nav-list li:last-child.current_page_item > a {
    color: var(--white);
    background: var(--accent-color);
}

.hero {
    min-height: 760px;
    height: min(920px, 100svh);
    padding-top: 92px;
    isolation: isolate;
    background: var(--primary-deep);
}

.hero-media {
    position: absolute;
    z-index: -3;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 10%;
    right: -8%;
    width: min(54vw, 760px);
    aspect-ratio: 1;
    border: 1px solid rgba(107, 203, 238, 0.22);
    border-radius: 50%;
    box-shadow: 0 0 0 70px rgba(22, 134, 199, 0.05), 0 0 0 140px rgba(22, 134, 199, 0.035);
}

.hero::after {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    opacity: 0.34;
    background-image: linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(90deg, transparent 8%, #000 68%);
}

.hero-overlay {
    z-index: -2;
    background: linear-gradient(108deg, #041b30 8%, rgba(8, 43, 76, 0.96) 55%, rgba(10, 69, 108, 0.78) 100%);
}

.hero-content {
    max-width: 820px;
    text-align: left;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    color: #8bd7f2;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
}

.hero-kicker::before {
    content: "";
    width: 42px;
    height: 2px;
    background: var(--signal-color);
}

.hero-title {
    max-width: 760px;
    margin-bottom: 26px;
    font-size: clamp(48px, 6vw, 78px);
    font-weight: 700;
    line-height: 1.16;
    letter-spacing: -0.025em;
    text-wrap: balance;
}

.hero-subtitle {
    max-width: 650px;
    margin-bottom: 36px;
    color: #cfdae4;
    font-size: clamp(16px, 1.7vw, 20px);
    line-height: 2;
}

.hero-buttons {
    justify-content: flex-start;
}

.btn {
    position: relative;
    min-width: 176px;
    padding: 15px 28px;
    border-radius: 3px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-align: center;
}

.btn::after {
    content: "→";
    display: inline-block;
    margin-left: 12px;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

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

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

.hero .btn-primary {
    color: #10273a;
    background: var(--signal-color);
    border-color: var(--signal-color);
}

.hero .btn-primary:hover {
    color: #10273a;
    background: #ffd16c;
    border-color: #ffd16c;
}

.hero-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 720px;
    margin-top: 64px;
    border-top: 1px solid rgba(255,255,255,0.18);
}

.hero-fact {
    padding: 22px 26px 0 0;
}

.hero-fact + .hero-fact {
    padding-left: 26px;
    border-left: 1px solid rgba(255,255,255,0.18);
}

.hero-fact strong,
.hero-fact span {
    display: block;
}

.hero-fact strong {
    color: var(--white);
    font-size: 24px;
    line-height: 1.3;
}

.hero-fact span {
    margin-top: 5px;
    color: #9fb5c7;
    font-size: 12px;
}

.section {
    padding: clamp(76px, 9vw, 120px) 0;
}

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

.section-title {
    margin-bottom: 54px;
    color: var(--primary-color);
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.35;
    letter-spacing: -0.02em;
}

.section-title::after {
    bottom: -18px;
    width: 46px;
    height: 4px;
    background: linear-gradient(90deg, var(--signal-color) 0 36%, var(--accent-color) 36% 100%);
}

.features-grid,
.services-grid,
.facilities-grid,
.benefits-grid {
    gap: 24px;
}

.feature-card,
.service-card,
.facility-card,
.benefit-item,
.job-card,
.mv-item,
.access-info,
.contact-method,
.service-detail-item {
    border: 1px solid var(--line-color);
    border-radius: 4px;
    box-shadow: var(--shadow-sm);
}

.feature-card,
.service-card,
.benefit-item {
    position: relative;
    overflow: hidden;
    text-align: left;
}

.feature-card::before,
.service-card::before,
.benefit-item::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-bright));
}

.feature-card:hover,
.service-card:hover,
.facility-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.feature-icon,
.service-icon {
    margin-bottom: 26px;
}

.line-icon,
.facility-line-icon {
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.line-icon {
    width: 54px;
    height: 54px;
    color: var(--accent-color);
}

.feature-icon::after,
.service-icon::after {
    content: "";
    display: block;
    width: 32px;
    height: 2px;
    margin-top: 18px;
    background: var(--signal-color);
}

.icon-circle,
.benefit-icon,
.quality-icon {
    width: 64px;
    height: 64px;
    margin: 0;
    color: var(--primary-color);
    background: #e6f3fa;
    border: 1px solid #bddceb;
    border-radius: 3px;
    font-size: 22px;
}

.feature-card h3,
.service-card h3 {
    color: var(--primary-color);
    font-size: 22px;
}

.feature-card p,
.service-card p,
.facility-description,
.benefit-item p,
.quality-text p,
.contact-intro p {
    color: var(--secondary-color);
    line-height: 1.9;
}

.news-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    max-width: none;
    border-top: 1px solid var(--line-color);
    border-bottom: 1px solid var(--line-color);
}

.news-item {
    display: block;
    min-height: 180px;
    padding: 34px 28px;
    border-bottom: 0;
}

.news-item + .news-item {
    border-left: 1px solid var(--line-color);
}

.news-category {
    display: inline-block;
    min-width: 0;
    margin-bottom: 25px;
    padding: 0;
    color: var(--accent-color);
    background: transparent;
    border-radius: 0;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.news-title {
    color: var(--primary-color);
    font-size: 17px;
    line-height: 1.65;
}

.department-item {
    min-height: 300px;
}

.department-heading {
    display: flex;
    min-height: 60px;
    margin-bottom: 22px;
    justify-content: space-between;
    align-items: flex-start;
}

.department-icon {
    width: 44px;
    height: 44px;
    fill: none;
    stroke: #8eb8cf;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.department-item .news-category {
    margin: 0;
}

.department-item .news-title {
    min-height: 56px;
    margin-bottom: 16px;
    font-size: 19px;
}

.department-item p {
    color: var(--secondary-color);
    font-size: 14px;
    line-height: 1.85;
}

.page-header {
    position: relative;
    overflow: hidden;
    margin-top: 0;
    padding: 197px 0 84px;
    text-align: left;
    background: linear-gradient(115deg, var(--primary-deep), var(--primary-soft));
}

/* Keep the fixed header below the WordPress admin bar. */
body.admin-bar .header {
    top: 32px;
}

body.admin-bar .mobile-nav {
    top: 124px;
}

.page-header::after {
    content: "";
    position: absolute;
    right: 8%;
    bottom: -90px;
    width: 310px;
    height: 310px;
    border: 1px solid rgba(255,255,255,0.13);
    border-radius: 50%;
    box-shadow: 0 0 0 55px rgba(255,255,255,0.035);
}

.page-title {
    position: relative;
    z-index: 1;
    margin-bottom: 8px;
    font-size: clamp(38px, 5vw, 58px);
    letter-spacing: -0.02em;
}

.page-subtitle {
    position: relative;
    z-index: 1;
    color: #8bd7f2;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.22em;
}

.strength-item {
    margin-bottom: 40px;
    padding: clamp(30px, 5vw, 56px);
    background: var(--white);
    border: 1px solid var(--line-color);
}

.strength-content,
.strength-item.reverse .strength-content {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 44%);
    gap: clamp(36px, 5vw, 68px);
    align-items: stretch;
}

.strength-item.reverse .strength-text,
.strength-item.reverse .strength-visual {
    order: initial;
}

.strength-text {
    max-width: 780px;
}

.strength-visual {
    position: relative;
    overflow: hidden;
    min-height: 320px;
    background: var(--primary-deep);
}

.strength-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 32%, rgba(4, 27, 48, 0.9) 100%);
}

.strength-visual img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.strength-visual-caption {
    position: absolute;
    z-index: 1;
    bottom: 24px;
    left: 26px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.strength-index {
    color: transparent;
    font-family: Arial, sans-serif;
    font-size: clamp(72px, 9vw, 118px);
    font-weight: 700;
    line-height: 0.85;
    letter-spacing: -0.07em;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.82);
}

.strength-index-label {
    margin-top: 20px;
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
}

.strength-text h2 {
    font-size: clamp(27px, 3vw, 36px);
}

.strength-icon-large,
.facility-placeholder {
    position: relative;
    border-radius: 50%;
    background: transparent;
    border: 1px solid var(--accent-color);
    color: var(--primary-color);
    box-shadow: 0 0 0 18px rgba(22, 134, 199, 0.08), 0 0 0 36px rgba(22, 134, 199, 0.04);
}

.strength-icon-large::before,
.facility-placeholder::before {
    content: "";
    position: absolute;
    inset: 9px;
    z-index: -1;
    border-radius: inherit;
    background: #e7f3f9;
}

.strength-features li::before,
.service-features li::before {
    color: var(--accent-color);
}

.stats-grid {
    gap: 0;
    background: var(--primary-color);
}

.stat-item {
    padding: 42px 20px;
    border-right: 1px solid rgba(255,255,255,0.16);
}

.stat-item:last-child {
    border-right: 0;
}

.stat-number {
    color: var(--white);
    font-size: clamp(34px, 4vw, 52px);
}

.stat-label {
    color: #b8c9d6;
    font-size: 13px;
}

.service-card {
    padding: 38px 30px;
}

.service-detail-list,
.job-list,
.contact-intro,
.message-content {
    max-width: 960px;
}

.manufacturing-policy {
    max-width: 900px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.manufacturing-policy p {
    max-width: 820px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
    line-height: 2;
    text-wrap: pretty;
}

.service-detail-item,
.job-card {
    position: relative;
    margin-bottom: 20px;
    padding: 34px 38px 34px 52px;
    box-shadow: none;
}

.service-detail-item::before,
.job-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 5px;
    background: var(--accent-color);
}

.service-detail-item h3,
.job-header h3 {
    color: var(--primary-color);
    font-size: 23px;
}

.facility-image {
    height: 230px;
    background-color: #dce8ef;
    background-image: linear-gradient(135deg, rgba(255,255,255,0.55) 25%, transparent 25%), linear-gradient(315deg, rgba(8,43,76,0.06) 25%, transparent 25%);
    background-size: 42px 42px;
}

.facility-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.facility-line-icon {
    width: 98px;
    height: 98px;
    color: var(--primary-color);
    stroke-width: 1.35;
}

.facility-content {
    padding: 30px 32px 34px;
}

.equipment-category {
    padding: 32px;
    background: var(--white);
    border: 1px solid var(--line-color);
}

.equipment-category h3 {
    border-color: var(--accent-color);
}

.quality-content {
    max-width: 980px;
}

.quality-features {
    gap: 18px;
}

.quality-feature {
    padding: 28px 22px;
    background: var(--background-light);
    border: 1px solid var(--line-color);
    text-align: left;
}

.quality-feature .line-icon,
.benefit-item .line-icon {
    margin-bottom: 22px;
}

.quality-icon,
.benefit-icon {
    margin: 0 0 18px;
}

.company-table {
    max-width: 920px;
    border: 1px solid var(--line-color);
    border-radius: 4px;
    box-shadow: none;
}

.company-row {
    grid-template-columns: minmax(150px, 230px) 1fr;
    border-color: var(--line-color);
}

.company-label {
    padding: 24px 28px;
    color: var(--white);
    background: var(--primary-color);
    border-color: rgba(255,255,255,0.12);
}

.company-value {
    padding: 24px 30px;
}

.mv-item {
    padding: 46px;
    box-shadow: none;
}

.mv-item h3 {
    display: inline-block;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--signal-color);
}

.timeline::before {
    background: var(--line-color);
}

.timeline-year::after {
    right: -8px;
    width: 16px;
    height: 16px;
    background: var(--white);
    border: 4px solid var(--accent-color);
}

.timeline-content {
    border: 1px solid var(--line-color);
    border-radius: 3px;
    box-shadow: none;
}

.benefit-item {
    padding: 32px 26px;
}

.message-lead {
    font-size: clamp(20px, 2.4vw, 28px);
    line-height: 1.7;
}

.contact-cta {
    color: var(--white);
    background: linear-gradient(120deg, var(--primary-deep), var(--primary-soft));
}

.contact-cta .section-title,
.contact-cta .cta-content p {
    color: var(--white);
}

.contact-cta .btn-secondary:hover {
    color: var(--primary-color);
}

.form {
    max-width: 900px;
    padding: clamp(28px, 5vw, 56px);
    border: 1px solid var(--line-color);
    border-radius: 4px;
    box-shadow: var(--shadow-sm);
}

.form-group input,
.form-group select,
.form-group textarea {
    min-height: 50px;
    padding: 13px 15px;
    border-color: #bccbd5;
    border-radius: 3px;
    background: #fbfdfe;
}

.form-group textarea {
    min-height: 180px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(22,134,199,0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #c83c3c;
    background-color: #fff7f7;
}

body.menu-open {
    overflow: hidden;
}

.footer {
    padding: 62px 0 24px;
    color: var(--white);
    background: var(--primary-deep);
}

.footer-content {
    align-items: end;
    margin-bottom: 44px;
}

.footer-logo h3 {
    font-size: 28px;
}

.footer-logo p,
.footer-info p,
.footer-bottom {
    color: #9eb2c2;
}

.footer-info {
    text-align: right;
}

.footer-info a {
    color: var(--white);
    text-decoration-color: var(--accent-bright);
    text-underline-offset: 4px;
}

.footer-bottom {
    border-color: rgba(255,255,255,0.13);
}

.feature-card {
    opacity: 1;
}

@media (max-width: 980px) {
    .nav-list {
        gap: 14px;
    }

    .nav-list a {
        font-size: 12px;
    }

    .news-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .news-item:nth-child(3) {
        border-left: 0;
        border-top: 1px solid var(--line-color);
    }

    .news-item:nth-child(4) {
        border-top: 1px solid var(--line-color);
    }
}

@media (max-width: 768px) {
    .container {
        width: min(100% - 36px, 1180px);
    }

    .header,
    .header-content {
        min-height: 76px;
    }

    .logo img {
        width: 142px !important;
        max-height: 51px;
    }

    .mobile-nav {
        top: 76px;
        border-top: 1px solid var(--line-color);
    }

    .mobile-nav-list a.current,
    .mobile-nav-list .current-menu-item > a,
    .mobile-nav-list .current_page_item > a {
        color: var(--accent-color);
    }

    .hero {
        min-height: 720px;
        height: auto;
        padding: 150px 0 72px;
    }

    .hero::before {
        top: 22%;
        right: -55%;
        width: 110vw;
    }

    .hero::after {
        background-size: 42px 42px;
    }

    .hero-title {
        font-size: clamp(40px, 12vw, 58px);
    }

    .hero-subtitle br {
        display: none;
    }

    .hero-buttons {
        align-items: stretch;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-facts {
        grid-template-columns: 1fr;
        margin-top: 48px;
    }

    .hero-fact,
    .hero-fact + .hero-fact {
        display: flex;
        align-items: baseline;
        gap: 14px;
        padding: 14px 0;
        border-left: 0;
        border-bottom: 1px solid rgba(255,255,255,0.13);
    }

    .hero-fact strong {
        min-width: 72px;
        font-size: 20px;
    }

    .page-header {
        margin-top: 0;
        padding: 154px 0 64px;
    }

    .news-list {
        grid-template-columns: 1fr;
    }

    .news-item,
    .news-item + .news-item,
    .news-item:nth-child(3) {
        min-height: auto;
        padding: 26px 20px;
        border-top: 1px solid var(--line-color);
        border-left: 0;
    }

    .news-item:first-child {
        border-top: 0;
    }

    .news-category {
        margin-bottom: 12px;
    }

    .department-item {
        min-height: auto;
    }

    .department-item .news-title {
        min-height: 0;
    }

    .strength-item {
        padding: 30px 24px;
    }

    .strength-content,
    .strength-item.reverse .strength-content {
        grid-template-columns: 1fr;
    }

    .strength-visual {
        min-height: 260px;
    }

    .strength-index {
        font-size: 72px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item:nth-child(2) {
        border-right: 0;
    }

    .stat-item:nth-child(n+3) {
        border-top: 1px solid rgba(255,255,255,0.16);
    }

    .company-row {
        grid-template-columns: 1fr;
    }

    .company-label,
    .company-value {
        padding: 18px 20px;
    }

    .mv-grid {
        grid-template-columns: 1fr;
    }

    .mv-item,
    .service-detail-item,
    .job-card {
        padding: 30px 24px;
    }

    .footer-content {
        align-items: start;
    }

    .footer-info {
        text-align: left;
    }
}

@media (max-width: 782px) {
    body.admin-bar .header {
        top: 46px;
    }

    body.admin-bar .mobile-nav {
        top: 122px;
    }
}

@media (max-width: 600px) {
    body.admin-bar .header {
        top: 0;
    }

    body.admin-bar .mobile-nav {
        top: 76px;
    }
}

@media (max-width: 420px) {
    .container {
        width: min(100% - 28px, 1180px);
    }

    .hero-kicker {
        font-size: 10px;
        letter-spacing: 0.12em;
    }

    .hero-title {
        font-size: 38px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-item,
    .stat-item:nth-child(2) {
        border-right: 0;
        border-top: 1px solid rgba(255,255,255,0.16);
    }

    .stat-item:first-child {
        border-top: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .feature-card {
        opacity: 1;
        transform: none;
    }
}

/* Alignment and embedded maps */
.contact-intro {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.contact-intro p {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
    text-wrap: pretty;
}

.access-with-map,
.contact-location {
    display: grid;
    grid-template-columns: minmax(240px, 0.55fr) minmax(0, 1.45fr);
    gap: 30px;
    align-items: stretch;
}

.access-address,
.contact-location .contact-method {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.access-map,
.contact-location {
    min-width: 0;
}

.map-embed {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 16 / 8;
    background: var(--background-steel);
    border: 1px solid var(--line-color);
}

.map-embed iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.map-link {
    margin-top: 12px;
    text-align: right;
}

.map-link a {
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 600;
    text-underline-offset: 4px;
}

@media (max-width: 768px) {
    .access-with-map,
    .contact-location {
        grid-template-columns: 1fr;
    }

    .map-embed {
        aspect-ratio: 4 / 3;
    }
}

/* Shared interaction and WordPress integration */
.skip-link {
    position: fixed;
    z-index: 2000;
    top: 8px;
    left: 8px;
    padding: 10px 16px;
    color: var(--white);
    background: var(--primary-color);
    transform: translateY(-150%);
}

.skip-link:focus {
    transform: translateY(0);
}

.hamburger {
    appearance: none;
    padding: 0;
    border: 0;
    background: transparent;
}

#main-content {
    scroll-margin-top: 100px;
}

.contact-honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.form-notice {
    margin-bottom: 24px;
    padding: 16px 20px;
    border-radius: 6px;
}

.form-notice.success {
    color: #22543d;
    background: #f0fff4;
    border: 1px solid #9ae6b4;
}

.form-notice.error {
    color: #9b2c2c;
    background: #fff5f5;
    border: 1px solid #feb2b2;
}
