/* ============================================================
   about-us.css - 運営会社ページ（デザイン画像に完全準拠）
   ============================================================ */

/* ========== Color Variables (from design) ========== */
:root {
    --primary-blue: #5599CC;
    --light-blue-bg: #89CFEB;
    --yellow-cta: #FFC107;
    --text-black: #333333;
    --text-gray: #666666;
    --border-gray: #E0E0E0;
    --white: #FFFFFF;
}

/* ========== ABOUT-US_01 INTRO (Two-Part Layout) ========== */
.about-intro {
    display: flex;
    flex-direction: column;
}

/* Top half - Light blue section */
.intro-hero {
    background: var(--light-blue-bg);
    padding: 100px 40px 60px;
    text-align: center;
}

.intro-content {
    max-width: 1200px;
    margin: 0 auto;
}

.intro-en {
    font-family: var(--font-en, 'Arial', sans-serif);
    font-weight: 300;
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 16px;
    letter-spacing: 0.1em;
}

.intro-title {
    font-family: var(--font-ja, 'Zen Maru Gothic', sans-serif);
    font-weight: 700;
    font-size: 2.75rem;
    color: var(--clr-white);
    margin-bottom: 60px;
    line-height: 1.5;
}

/* DEPARTURES Logo */
.intro-logo-area {
    text-align: center;
    margin-bottom: 48px;
}

.intro-logo-area img { 
    display: block; margin: 0 auto; 
}



.departures-logo {
    height: 120px;
    width: auto;
}

/* Main headline */
.intro-headline {
    font-family: var(--font-ja, 'Zen Maru Gothic', sans-serif);
    font-weight: 700;
    font-size: 1.75rem;
    color: var(--text-black);
    text-align: center;
    margin-bottom: 32px;
    line-height: 1.8;
}

/* Body text block */
.intro-text-block {
    max-width: 700px;
    margin: 0 auto 60px;
    text-align: center;
}

.intro-text-block p {
    font-family: var(--font-ja, 'Zen Maru Gothic', sans-serif);
    font-weight: 500;
    font-size: 1rem;
    line-height: 2;
    color: var(--text-black);
    margin-bottom: 0;
}

/* Bottom half - Hero image with PARALLAX */
.intro-image {
    width: 100%;
    height: 600px;
    position: relative;
    overflow: hidden;
    background-image: url('../pics/about-us/about-us_01_intro_pics01.webp');
    background-attachment: fixed;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

/* Hide the <img> tag since we use background-image */
.intro-image img {
    display: none;
}

/* iOS Safari fallback (doesn't support background-attachment: fixed) */
@supports (-webkit-touch-callout: none) {
    .intro-image {
        background-attachment: scroll;
    }
}

/* ========== STRENGTHS HEADER ========== */
.strengths-header {
    padding: 80px 40px 40px;
    text-align: center;
}

.section-title{
    text-align: center;
}

.section-en {
    font-family: var(--font-en, 'Arial', sans-serif);
    font-weight: 300;
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 12px;
    letter-spacing: 0.1em;
}

.section-title-ja {
    font-family: var(--font-ja, 'Zen Maru Gothic', sans-serif);
    font-weight: 700;
    font-size: 2.25rem;
    color: var(--primary-blue);
    margin-bottom: 0;
}

/* ========== STRENGTH SECTIONS ========== */
.strength-section {
    padding: 40px 40px 60px;
}

.strength-section.strength-alt {
    background: var(--clr-white);
}

.strength-box {
    border: 3px dotted var(--primary-blue);
    border-radius: 24px;
    padding: 60px;
    background: var(--white);
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Left column - Text content */
.strength-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.strength-number {
    font-family: var(--font-en, 'Arial', sans-serif);
    font-weight: 300;
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 0;
}

.strength-number span {
    font-family: var(--font-en, 'Arial', sans-serif);
    font-weight: 800;
    font-size: 3rem;
    color: var(--primary-blue);
    margin-left: 8px;
}

.strength-title {
    font-family: var(--font-ja, 'Zen Maru Gothic', sans-serif);
    font-weight: 700;
    font-size: 2rem;
    color: var(--primary-blue);
    line-height: 1.5;
    margin-bottom: 16px;
}

.strength-description {
    font-family: var(--font-ja, 'Zen Maru Gothic', sans-serif);
    font-weight: 500;
    font-size: 1rem;
    line-height: 2;
    color: var(--text-black);
    margin-bottom: 24px;
}

/* Checklist items */
.strength-checklist {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.checklist-item {
    background: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: 8px;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-ja, 'Zen Maru Gothic', sans-serif);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-black);
}

.checklist-item::before {
    content: "✓";
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 1.2rem;
}

/* Conclusion text */
.strength-conclusion {
    font-family: var(--font-ja, 'Zen Maru Gothic', sans-serif);
    font-weight: 500;
    font-size: 1rem;
    line-height: 2;
    color: var(--primary-blue);
    font-style: italic;
}

/* Right column - Illustration */
.strength-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.strength-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
}

/* CTA Buttons (below strength box) */
.strength-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 40px;
}

.cta-btn {
    padding: 16px 40px;
    border-radius: 50px;
    font-family: var(--font-ja, 'Zen Maru Gothic', sans-serif);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.cta-btn-yellow {
    background: var(--yellow-cta);
    color: var(--text-black);
}

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

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

.cta-btn-blue:hover {
    background: #4488BB;
    transform: translateY(-2px);
}

.cta-btn svg {
    width: 20px;
    height: 20px;
}

/* ========== PHILOSOPHY SECTION ========== */
.philosophy-section {
    padding: 80px 40px;
    background: #F9F9F9;
}

.philosophy-header {
    text-align: center;
    margin-bottom: 48px;
}

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

.philosophy-content p {
    font-family: var(--font-ja, 'Zen Maru Gothic', sans-serif);
    font-weight: 500;
    font-size: 1rem;
    line-height: 2;
    color: var(--text-black);
    margin-bottom: 24px;
}

.philosophy-image {
    margin-top: 48px;
    text-align: center;
}

.philosophy-image img {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 16px;
}

/* ========== VALUES SECTION with PARALLAX ========== */

/* ========== ABOUT-US_06 VALUES (Parallax - same as INTRO) ========== */
.about-values {
    position: relative;
}

.about-values{
    padding: 0;
}

/* Content foreground (same as INTRO pattern) */
.values-foreground {
    position: relative;
    z-index: 1;
    padding: 80px 40px;
    text-align: center;
}

/* Parallax background layer (same as INTRO) */
.values-background {
    width: 100%;
    height: 800px;
    position: relative;
    overflow: hidden;
    background-image: url('../pics/about-us/about-us_06_values_pics01.webp');
    background-attachment: fixed;
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
}

/* Hide the <img> tag since we use background-image */
.values-background img {
    display: none;
}

/* iOS Safari fallback */
@supports (-webkit-touch-callout: none) {
    .values-background {
        background-attachment: scroll;
    }
}

.values-content {
    max-width: 900px;
    margin: 80px auto 0;
    background: #FFFFFF;
    padding: 60px 48px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.values-box {
/*     display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px; */
    align-items: center;
}

.values-text p {
    font-family: var(--font-ja, 'Zen Maru Gothic', sans-serif);
    font-weight: 500;
    font-size: 1rem;
    line-height: 2;
    color: var(--text-black);
    margin-bottom: 16px;
    text-align: left;
}

.values-illus {
    text-align: center;
}

.values-illus img { 
    display: block; margin: 0 auto; 
}

.values-illus img {
    width: 100%;
    max-width: 400px;
    height: auto;
}

/* Responsive */
@media (max-width: 1024px) {
    .values-box {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .values-content {
        padding: 48px 36px;
    }

    
    
    .overview-row {
        grid-template-columns: 180px 1fr;
    }
}

@media (max-width: 768px) {
    .about-values {
        min-height: 600px;
    }
    
    .values-foreground {
        padding: 60px 24px;
    }
    
    .values-content {
        margin-top: 40px;
        padding: 36px 24px;
    }
    
    .values-text p {
        font-size: 0.95rem;
    }

    
    .values-background {
        height: 700px;
    }

    
    
    .overview-row {
        grid-template-columns: 1fr;
    }
    
    .overview-row dt {
        border-right: none;
        border-bottom: 1px solid rgba(85, 153, 204, 0.5);
        background: #E8F4F8;
    }
    
    .overview-row dd {
        padding-top: 12px;
    }
}


/* ========== CTA SECTION ========== */
.cta-section {
    padding: 80px 40px;
    background: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-family: var(--font-ja, 'Zen Maru Gothic', sans-serif);
    font-weight: 700;
    font-size: 2rem;
    color: var(--text-black);
    margin-bottom: 32px;
}

.cta-content p {
    font-family: var(--font-ja, 'Zen Maru Gothic', sans-serif);
    font-weight: 500;
    font-size: 1rem;
    line-height: 2;
    color: var(--text-black);
    margin-bottom: 40px;
}

/* ========== COMPANY OVERVIEW ========== */
.company-overview {
    padding: 80px 40px;
    background: #F9F9F9;
}

.overview-header {
    text-align: center;
    margin-bottom: 48px;
}

.overview-table {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(85, 153, 204, 0.5); /* BL50%グレイ */
}

/* Definition list as table */
.overview-row {
    display: grid;
    grid-template-columns: 200px 1fr;
    border-bottom: 1px solid rgba(85, 153, 204, 0.5); /* BL50%グレイ */
}

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

.overview-row dt {
    padding: 20px 24px;
    font-family: var(--font-ja, 'Zen Maru Gothic', sans-serif);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-black);
    background: #F5F5F5;
    border-right: 1px solid rgba(85, 153, 204, 0.5); /* BL50%グレイ */
    display: flex;
    align-items: center;
}

.overview-row dd {
    padding: 20px 24px;
    font-family: var(--font-ja, 'Zen Maru Gothic', sans-serif);
    font-weight: 400;
    font-size: 0.95rem;
    color: var(--text-black);
    line-height: 1.8;
    background: var(--white);
}

.overview-row dd .en {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.overview-row dd a {
    color: var(--primary-blue);
    text-decoration: none;
}

.overview-row dd a:hover {
    text-decoration: underline;
}

/* Container padding adjustment */

/* ========== ACCESS SECTION ========== */
.access-section {
    padding: 80px 40px;
    background: var(--white);
}

.access-header {
    text-align: center;
    margin-bottom: 48px;
}

.access-content {
    max-width: 1200px;
    margin: 0 auto;
}


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

.access-info h3 {
    font-family: var(--font-ja, 'Zen Maru Gothic', sans-serif);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-black);
    margin-bottom: 24px;
}

.access-info h4 {
    font-family: var(--font-ja, 'Zen Maru Gothic', sans-serif);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-blue);
    margin-bottom: 16px;
    margin-top: 32px;
}

.access-info p {
    font-family: var(--font-ja, 'Zen Maru Gothic', sans-serif);
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-black);
    margin-bottom: 16px;
}

/* ========== RESPONSIVE (Tablet) ========== */
@media (max-width: 1024px) {
    .intro-title {
        font-size: 2.25rem;
    }
    
    .intro-headline {
        font-size: 1.5rem;
    }
    
    .strength-box {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px;
    }
    
    .strength-title {
        font-size: 1.75rem;
    }
    
    .strength-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 400px;
        justify-content: center;
    }
}

/* ========== RESPONSIVE (Mobile) ========== */
@media (max-width: 768px) {
    .intro-hero {
        padding: 80px 24px 40px;
    }
    
    .intro-title {
        font-size: 1.75rem;
    }
    
    .departures-logo {
        height: 80px;
    }
    
    .intro-headline {
        font-size: 1.25rem;
    }
    
    .strengths-header {
        padding: 60px 24px 32px;
    }
    
    .section-title-ja {
        font-size: 1.75rem;
    }
    
    .strength-section {
        padding: 32px 24px;
    }
    
    .strength-box {
        padding: 32px 24px;
        gap: 32px;
    }
    
    .strength-title {
        font-size: 1.5rem;
    }
    
    .strength-description {
        font-size: 0.95rem;
    }
    
    .checklist-item {
        padding: 12px 16px;
        font-size: 0.9rem;
    }
    
    .strength-cta-buttons {
        gap: 16px;
    }
    
    .cta-btn {
        padding: 14px 32px;
        font-size: 0.95rem;
    }
    
    .philosophy-section,
    .about-values,
    .cta-section,
    .company-overview,
    .access-section {
        padding: 60px 24px;
    }
    
    .overview-table th,
    .overview-table td {
        padding: 16px;
        font-size: 0.9rem;
    }
    
    
    .intro-image {
        height: 400px;
    }
    
    .about-values {
        min-height: 600px;
    }
}

/* VALUES section responsive */
@media (max-width: 1024px) {
    .values-box {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .values-content {
        padding: 48px 36px;
    }
}

@media (max-width: 768px) {
    .values-content {
        padding: 36px 24px;
    }
    
    .values-text p {
        font-size: 0.95rem;
    }
}

/* ========== ACCESS MAP FULLWIDTH ========== */
.access-map-fullwidth {
    width: 100%;
    position: relative;
    background: var(--white);
}

.access-map-fullwidth iframe {
    width: 100%;
    height: 450px;
    border: none;
    display: block;
}

.map-link-container {
    text-align: center;
    padding: 32px 24px;
    background: var(--white);
}

/* Responsive */
@media (max-width: 768px) {
    .access-map-fullwidth iframe {
        height: 300px;
    }
    
    .map-link-container {
        padding: 24px 16px;
    }
}
