:root {
    --primary-color: #00BCD4;
    /* Progdence Cyan */
    --accent-blue: #0288d1;
    --text-color: #333;
    --bg-color: #fff;
    --light-gray: #f5f5f5;
    --border-color: #e0e0e0;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--text-color);
    line-height: 2.0;
    /* More readable line height */
    background-color: var(--bg-color);
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 900px;
    /* Slightly wider for editorial feel */
    margin: 0 auto;
    padding: 0 24px;
}

/* Global Header */
/* Global Header */
.global-header {
    position: absolute;
    top: 0;
    left: 0;
    transform: none;
    width: 100%;
    z-index: 1000;
    padding: 20px 40px;
    /* Spacing from edges */
    box-sizing: border-box;
    /* Ensure padding is included in width */
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    /* Ensure container spans full width */
    margin: 0;
    /* Remove centering margin */
    padding: 0;
}

.header-logo {
    height: 50px;
    /* Increased from 30px */
    width: auto;
    /* Removed filter: brightness(0) invert(1) to show original logo colors */
    transition: opacity 0.3s;
}

.header-logo-link:hover .header-logo {
    opacity: 0.8;
}

.header-contact {
    color: var(--text-color);
    /* Dark text */
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    border: 1px solid #ccc;
    /* Darker border */
    padding: 8px 20px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.header-contact:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

/* Hero Section Redesign */
.hero-header {
    position: relative;
    display: flex;
    width: 100%;
    height: 60vh;
    min-height: 400px;
    background: #fff;
    padding: 0;
    margin: 0;
    align-items: center;
    overflow: hidden;
    border-bottom: none;
}

.hero-left-block {
    position: absolute;
    left: 0;
    top: 0;
    width: 33.333%;
    height: 100%;
    background-color: #ffe29d;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    z-index: 2;
    padding: 20px 0;
    box-sizing: border-box;
}

.hero-right-block {
    position: absolute;
    right: 0;
    top: 0;
    width: 66.667%;
    height: 100%;
    background: url('../images/image1.jpg') center/cover no-repeat;
    z-index: 1;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding-left: 5vw;
    box-sizing: border-box;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    margin: 0;
    letter-spacing: 0.05em;
    color: #fff;
    text-transform: uppercase;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    white-space: nowrap;
    position: relative;
    z-index: 3;
}

.hero-logos-horizontal {
    position: absolute;
    bottom: 20%;
    left: 0;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 0 5%;
    box-sizing: border-box;
    z-index: 4;
}

.hero-logo {
    width: auto;
    max-width: 40%;
    height: auto;
    max-height: 80px;
    object-fit: contain;
}

.logo-separator {
    font-size: 2rem;
    color: #333;
    line-height: 1;
    margin: 0;
    flex-shrink: 0;
}

/* Intro Section */
.intro {
    text-align: center;
    padding: 30px 0 10px;
    /* Minimal bottom padding */
}

.intro-heading {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.4;
}

/* Profiles - Minimal & Compact */
.profiles {
    margin: 0 auto 60px;
    padding: 0;
    /* Removed padding */
    background: none;
    /* Removed background */
    border: none;
    /* Removed borders */
}

.profile-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    /* Very tight gap */
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}

.profile-item {
    flex: 1;
    min-width: 300px;
    display: flex;
    gap: 15px;
    align-items: center;
    /* Vertically center align */
    background: #fff;
    padding: 15px 20px;
    /* Very compact padding */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    position: relative;
    border: 1px solid #eee;
    /* Subtle border instead of top accent */
    transition: transform 0.2s ease;
}

.profile-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

/* Simpler colored border on left */
.profile-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
}

.profile-item:first-child::before {
    background-color: var(--accent-blue);
}

.profile-item:last-child::before {
    background-color: var(--primary-color);
}

.profile-img-wrap {
    flex-shrink: 0;
}

.profile-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Sunaga: Right person in image3 */
.sunaga-img {
    background-image: url('../images/image3_1.jpg');
}

/* Dozono: Left person in image3 */
.dozono-img {
    background-image: url('../images/image3_2.jpg');
}

.profile-detail {
    flex: 1;
}

.profile-position {
    font-size: 0.75rem;
    color: #666;
    margin-bottom: 5px;
    line-height: 1.4;
    font-weight: 600;
}

.profile-name {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-color);
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
    padding-bottom: 5px;
}

.profile-name span {
    font-size: 0.9rem;
    font-weight: normal;
    margin-left: 10px;
}

.profile-bio {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.75rem;
    color: #444;
    line-height: 1.6;
}

.profile-bio li {
    font-size: 0.75rem;
    color: #444;
    line-height: 1.6;
}

/* Bottom Image */
.bottom-image-wrap {
    margin-top: 60px;
    width: 100%;
}

.bottom-page-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.profile-text .position {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 8px;
    line-height: 1.4;
}

.profile-text .name {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
}

/* Interview Content */
.conversation {
    margin-bottom: 120px;
}

.qa-section {
    margin-bottom: 80px;
}

/* Questions */
.question-heading {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    border-top: 2px solid var(--primary-color);
    border-bottom: 1px solid var(--border-color);
    padding: 30px 0;
    margin-bottom: 40px;
    line-height: 1.5;
}

/* Answers */
.answer-block {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.speaker-label {
    min-width: 60px;
    font-weight: 700;
    font-size: 0.95rem;
    padding-top: 5px;
    /* Align with first line of text */
    text-align: center;
}

.sunaga-label {
    color: var(--accent-blue);
}

.dozono-label {
    color: var(--primary-color);
}

.answer-text {
    flex: 1;
    font-size: 1.05rem;
    color: #333;
}

.answer-text p {
    margin-top: 0;
    margin-bottom: 1.5em;
}

.answer-text p:last-child {
    margin-bottom: 0;
}

/* Context Images */
.wide-image-container {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    margin-bottom: 80px;
    height: 400px;
    /* Fixed height for consistent look */
    overflow: hidden;
}

.context-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Footer */
.site-footer {
    background-color: #333;
    color: #fff;
    padding: 30px 0;
    text-align: center;
}

.site-footer p {
    margin: 0;
    font-size: 1rem;
    opacity: 0.8;
}

.bottom-notice {
    font-size: 0.85rem;
    margin-top: 10px;
    margin-bottom: 20px;
    opacity: 0.6;
    text-align: left;
}

/* --- Design Enhancements --- */

/* 1. Scroll Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* 2. Decorative Question Numbers */
.qa-section {
    position: relative;
    padding-top: 40px;
    /* Space for the number */
    margin-bottom: 100px;
}

.question-number {
    position: absolute;
    top: -20px;
    left: 0;
    font-size: 5rem;
    font-weight: 900;
    color: rgba(0, 188, 212, 0.1);
    /* Very light Cyan */
    line-height: 1;
    z-index: -1;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    letter-spacing: -0.05em;
}

/* 3. Marker Effect for Headings */
.question-heading {
    position: relative;
    display: inline-block;
    background: linear-gradient(transparent 70%, rgba(0, 188, 212, 0.2) 70%);
    /* Marker effect */
    border-top: none;
    border-bottom: none;
    padding: 0 5px;
    margin-bottom: 50px;
}

/* 4. Refined Speaker Labels */
.speaker-label {
    font-size: 0.8rem;
    padding: 4px 8px;
    border-radius: 4px;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.05em;
    align-self: flex-start;
    margin-top: 5px;
}

.sunaga-label {
    background-color: var(--accent-blue);
    color: #fff;
}

.dozono-label {
    background-color: var(--primary-color);
    color: #fff;
}

/* 5. Hero & Intro Refinements */
.hero-title {
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.intro-heading {
    position: relative;
    display: inline-block;
}

.intro-heading::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    margin: 20px auto 0;
}


/* Wide Screen Adjustments */
@media (min-width: 1025px) {
    .hero-header {
        background-position: center 50%;
    }

    .profile-image {
        background-position: center 20%;
    }

    .context-image {
        object-position: center 50%;
    }

    .image-q3 {
        object-position: center 30%;
    }

    .image-q6 {
        object-position: center 30%;
    }

    .image-q8 {
        object-position: center 40%;
    }

    .image-q9 {
        object-position: center 35%;
    }
}

/* Responsive */
@media (max-width: 768px) {
    /* Header Scaling */
    .global-header {
        padding: 15px 5vw;
    }
    .header-logo img {
        height: 20px;
    }
    .header-contact {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    /* Hero Section */
    .hero-header {
        display: block;
        height: 100vh;
        min-height: 600px;
        position: relative;
    }

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

    .hero-left-block {
        position: absolute;
        width: 100%;
        height: 33.333%;
        top: 0;
        left: 0;
        z-index: 2;
        padding: 60px 0 10px 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        box-sizing: border-box;
        overflow: hidden;
    }

    .hero-content {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        height: auto;
        padding: 0 5vw;
        box-sizing: border-box;
        align-items: center;
        z-index: 3;
    }

    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 10px;
        white-space: normal;
        text-align: center;
        line-height: 1.1;
    }

    .hero-logos-horizontal {
        position: relative;
        bottom: auto;
        left: auto;
        justify-content: center;
        width: 100%;
        margin-top: 10px;
        padding: 0;
    }

    .hero-logo {
        max-width: 35%;
        max-height: 40px;
    }

    .logo-separator {
        font-size: 1.5rem;
    }


    .intro-heading {
        font-size: 1.5rem;
    }

    .intro .intro-text {
        font-size: 11px !important;
        line-height: 1.5 !important;
        margin: 0 auto !important;
        width: 100% !important;
        letter-spacing: -0.02em !important;
    }

    .intro .container {
        padding: 0 5px !important;
    }

    .intro-text br {
        display: block;
    }

    .profiles {
        gap: 40px;
    }

    .answer-block {
        flex-direction: column;
        gap: 10px;
    }

    .speaker-label {
        text-align: left;
        font-size: 0.9rem;
    }
}