/* ==========================================
   Design Tokens
   ========================================== */
:root {
    --color-navy:   #1e3e6d;
    --color-blue:   #7ac0e8;
    --color-yellow: #fad852;
    --color-white:  #ffffff;
    --color-brown:  #4d2d1b;
    --color-gray:   #d9d9d9;

    --font-ja: 'YuGothic', 'Yu Gothic', 'Hiragino Sans', sans-serif;
    --font-en-round: 'Zen Maru Gothic', sans-serif;
    --font-en-thin:  'Sono', sans-serif;
    --font-brush:    'ShokakiSarariGyotai', 'YuMincho', 'Yu Mincho', serif;

    --max-width: 1200px;
    --section-py: 100px;
}

/* ==========================================
   Custom Fonts
   ========================================== */
@font-face {
    font-family: 'ShokakiSarariGyotai';
    src: url('../fonts/ShokakiSarariGyotai.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* ==========================================
   Reset & Base
   ========================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: var(--font-ja); color: var(--color-navy); line-height: 1.8; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ==========================================
   Utility
   ========================================== */
.section-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section-heading {
    text-align: center;
    margin-bottom: 60px;
}

.section-title-en {
    font-family: var(--font-en-round);
    font-size: clamp(40px, 6vw, 80px);
    font-weight: 700;
    color: var(--color-blue);
    line-height: 1.2;
}

.section-title-ja {
    font-family: var(--font-ja);
    font-size: 20px;
    font-weight: 700;
    color: var(--color-blue);
    margin-top: 4px;
}

/* ==========================================
   Header
   ========================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: var(--color-white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
    height: 100px;
    gap: 24px;
}

/* Logo */
.header-logo {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
}
.header-logo-mark {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}
.header-logo-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: stretch;
}
.header-logo-name {
    font-family: var(--font-ja);
    font-size: 20px;
    font-weight: 700;
    color: #262626;
    line-height: 1.02;
    letter-spacing: 0;
    text-align: center;
    white-space: nowrap;
}
.header-logo-badge {
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--color-yellow);
    color: #262626;
    font-family: var(--font-en-round);
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    border-radius: 4px;
    padding: 2px 4px;
}

/* Nav (pill) */
.header-nav {
    margin-left: auto;
    background: #84C0F3;
    border-radius: 10px;
    padding: 18px 31px;
}
.header-nav-list {
    display: flex;
    align-items: center;
    gap: 24px;
}
.header-nav-list a {
    font-family: var(--font-ja);
    font-size: 14px;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1;
    white-space: nowrap;
    transition: opacity 0.2s;
}
.header-nav-list a:hover { opacity: 0.7; }

/* ENTRY button */
.header-entry {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--color-yellow);
    color: #4E5451;
    font-family: var(--font-ja);
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    padding: 18px 50px;
    border-radius: 10px;
    white-space: nowrap;
    transition: opacity 0.2s;
    flex-shrink: 0;
}
.header-entry:hover { opacity: 0.85; }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-navy);
    transition: all 0.3s;
}

.sp-nav {
    display: none;
    background: var(--color-navy);
    padding: 24px;
}
.sp-nav ul { display: flex; flex-direction: column; gap: 16px; }
.sp-nav a { color: var(--color-white); font-size: 16px; font-weight: 500; }
.sp-nav-btn {
    display: block;
    background: var(--color-yellow);
    color: var(--color-navy) !important;
    font-weight: 700;
    text-align: center;
    padding: 12px;
    border-radius: 4px;
    margin-top: 8px;
}

/* ==========================================
   MV + Concept Movie (統合セクション)
   ========================================== */
.mv-concept {
    position: relative;
    margin-top: 30px;
    padding-bottom: 120px;
    overflow: hidden;
    background-image: url('../images/bg-mv-wave.png');
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
}

@media (min-width: 1600px) {
    .mv-concept {
        background-image: url('../images/bg_mv_concept_wide.png');
        padding-bottom: 600px;
    }
}

/* --- MV --- */
.mv {
    position: relative;
    z-index: 2;
    padding: 80px 0 60px;
}

.mv-inner {
    margin: 0;
    padding: 0;
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.mv-image {
    width: 80%;
    max-width: 1163px;
    margin-right: 0;
    border-radius: 50px 0 0 50px;
    overflow: hidden;
}
.mv-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 1163 / 597;
    object-fit: cover;
    display: block;
}

.mv-catch {
    position: absolute;
    left: 10%;
    top: 80%;
    transform: translateY(-50%);
    width: 42%;
    max-width: 609px;
    z-index: 3;
}
.mv-catch img {
    width: 100%;
    height: auto;
}

/* --- Concept Movie --- */
.concept-movie {
    position: relative;
    z-index: 2;
    margin-top: 60px;
}

.concept-movie-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
    text-align: center;
}

.concept-movie-heading { margin-bottom: 32px; }

.concept-movie-title-en {
    font-family: var(--font-en-thin);
    font-size: clamp(40px, 6vw, 80px);
    font-weight: 300;
    color: var(--color-white);
    line-height: 1.1;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.concept-movie-title-ja {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-white);
    margin-top: 8px;
}

.concept-movie-thumb {
    position: relative;
    max-width: 898px;
    margin: 0 auto;
    aspect-ratio: 898 / 505;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

.concept-movie-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.75);
    transition: filter 0.3s;
}

.concept-movie-thumb:hover img { filter: brightness(0.85); }

.concept-movie-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: transform 0.2s;
}

.concept-movie-play:hover { transform: translate(-50%, -50%) scale(1.08); }
.concept-movie-play svg { width: 100%; height: 100%; display: block; }

/* ==========================================
   About
   ========================================== */
.about {
    background: var(--color-white);
}

.about-inner {
    display: grid;
    grid-template-columns: 533fr 522fr;
    column-gap: clamp(48px, 10.07vw, 145px);
    align-items: start;
    max-width: 1440px;
    margin: 0 auto;
    padding: clamp(60px, 6.94vw, 100px) clamp(40px, 8.33vw, 120px);
}

.about-image {
    border-radius: 30px;
    overflow: hidden;
}
.about-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 533 / 396;
    object-fit: cover;
    display: block;
}

.about-heading { margin-bottom: 60px; }

.about-title-en {
    font-family: var(--font-en-thin);
    font-size: clamp(40px, 5.56vw, 80px);
    font-weight: 300;
    color: var(--color-blue);
    line-height: 1.225;
    letter-spacing: 0;
    text-transform: uppercase;
}

.about-title-ja {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-blue);
    line-height: 20px;
    margin-top: 0;
}

.about-text {
    font-size: 24px;
    font-weight: 500;
    color: #262626;
    line-height: 24px;
}
.about-text br + br { display: block; content: ''; margin-top: 24px; }

/* ==========================================
   Message + Interview (統合セクション)
   ========================================== */
.message-interview {
    position: relative;
    overflow: hidden;
    background-image: url('../images/bg_message_interview.png');
    background-size: contain;
    background-position: top center;
    background-repeat: no-repeat;
}
@media (min-width: 1600px) {
    .message-interview {
        background-size: cover;
    }
}
.message-interview > .message,
.message-interview > .interview {
    position: relative;
    z-index: 1;
}

/* --- Shared Button --- */
.btn-more {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: var(--color-yellow);
    color: #262626;
    font-size: clamp(18px, 1.67vw, 24px);
    font-weight: 700;
    line-height: 36px;
    width: 100%;
    max-width: 500px;
    height: 70px;
    border-radius: 8px;
    text-align: center;
    transition: opacity 0.2s, transform 0.2s;
}
.btn-more:hover { opacity: 0.9; transform: translateY(-2px); }

/* --- Message --- */
.message {
    padding: clamp(60px, 6.94vw, 100px) clamp(24px, 8.33vw, 120px) clamp(40px, 4vw, 60px);
}
.message-inner {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr clamp(280px, 36.8vw, 530px);
    grid-template-rows: auto auto;
    column-gap: clamp(30px, 4vw, 60px);
    row-gap: clamp(30px, 4vw, 60px);
    align-items: start;
}
.message-heading {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}
.message-title-en {
    font-family: var(--font-en-thin);
    font-size: clamp(40px, 5.56vw, 80px);
    font-weight: 300;
    color: var(--color-white);
    line-height: 1.225;
    letter-spacing: 0;
}
.message-title-ja {
    font-size: clamp(16px, 1.39vw, 20px);
    font-weight: 700;
    color: var(--color-white);
    line-height: 1;
    margin-top: 0;
}
.message-portrait {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
    width: 100%;
    aspect-ratio: 530 / 590;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.message-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}
.message-body {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    max-width: 550px;
}
.message-handwritten {
    width: 100%;
    max-width: 550px;
    margin-bottom: clamp(30px, 3.47vw, 50px);
}
.message-handwritten img {
    width: 100%;
    height: auto;
    display: block;
}

/* --- Interview --- */
.interview {
    padding: clamp(40px, 20vw, 200px) clamp(24px, 8.33vw, 120px) clamp(60px, 8vw, 120px);
}
.interview-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.interview-heading {
    margin-bottom: clamp(40px, 4vw, 60px);
}
.interview-title-en {
    font-family: var(--font-en-round);
    font-size: clamp(40px, 5.56vw, 80px);
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.225;
}
.interview-title-ja {
    font-size: clamp(16px, 1.39vw, 20px);
    font-weight: 700;
    color: var(--color-white);
    line-height: 1;
    margin-top: 0;
}
.interview-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(16px, 2.08vw, 30px);
}
.interview-card {
    position: relative;
    display: block;
    aspect-ratio: 380 / 497;
    overflow: visible;
    transition: transform 0.3s;
    color: #262626;
}
.interview-card:hover { transform: translateY(-6px); }
.interview-card-image {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 18%;
    border-radius: 8px;
    overflow: hidden;
}
.interview-card-image img {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    z-index: 2;
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    object-position: center bottom;
    display: block;
}
.interview-card-title {
    position: absolute;
    left: 0;
    top: 8%;
    display: flex;
    flex-direction: row-reverse;
    gap: clamp(12px, 1.67vw, 25px);
    z-index: 3;
}
.interview-card-title-line {
    writing-mode: vertical-rl;
    font-family: var(--font-ja);
    font-size: clamp(22px, 2.78vw, 40px);
    font-weight: 700;
    color: #262626;
    line-height: 1.2;
    letter-spacing: 0.05em;
    white-space: nowrap;
}
.interview-btn-wrap {
    margin-top: clamp(40px, 5.56vw, 80px);
    text-align: center;
}
.interview-btn {
    margin: 0 auto;
}

/* ==========================================
   Service
   ========================================== */
.service {
    background: var(--color-white);
}

.service-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: clamp(60px, 6.94vw, 100px) clamp(24px, 8.33vw, 120px);
}

.service-heading {
    margin-bottom: clamp(40px, 4.17vw, 60px);
}
.service-title-en {
    font-family: var(--font-en-thin);
    font-size: clamp(40px, 5.56vw, 80px);
    font-weight: 300;
    color: var(--color-blue);
    line-height: 1.225;
    letter-spacing: 0;
    text-transform: uppercase;
}
.service-title-ja {
    font-size: clamp(16px, 1.39vw, 20px);
    font-weight: 700;
    color: var(--color-blue);
    line-height: 1;
    margin-top: 0;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: clamp(32px, 3.47vw, 50px);
}

.service-detail {
    background: var(--color-blue);
    border-radius: 16px;
    padding: clamp(30px, 4.17vw, 60px);
}
.service-detail-inner {
    display: grid;
    grid-template-columns: 480fr 568fr;
    column-gap: clamp(24px, 2.22vw, 32px);
    align-items: start;
}

/* Left: text */
.service-detail-body {
    display: flex;
    flex-direction: column;
}
.service-label {
    font-family: var(--font-en-thin);
    font-size: clamp(22px, 2.22vw, 32px);
    font-weight: 500;
    color: var(--color-navy);
    line-height: 1.23;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.service-name-wrap {
    background: var(--color-white);
    border-radius: 8px;
    padding: clamp(8px, 0.7vw, 10px) clamp(16px, 1.39vw, 20px);
    margin-bottom: clamp(16px, 1.53vw, 22px);
    display: inline-block;
    align-self: flex-start;
}
.service-name {
    font-size: clamp(20px, 2.22vw, 32px);
    font-weight: 700;
    color: var(--color-navy);
    line-height: 1.4;
}
.service-desc {
    font-size: clamp(14px, 1.39vw, 20px);
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.8;
}

/* Right: images */
.service-detail-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(8px, 1.39vw, 20px);
    align-self: start;
    padding-top: clamp(8px, 2.5vw, 36px);
}
.service-detail-image {
    aspect-ratio: 176 / 235;
    border-radius: 8px;
    overflow: hidden;
}
.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ==========================================
   Company Data
   ========================================== */
.company-data {
    position: relative;
    background-color: var(--color-white);
    background-image: url('../images/bg_data.svg');
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.company-data-inner {
    position: relative;
    max-width: 1440px;
    margin: 0 auto;
    padding: clamp(60px, 6.94vw, 100px) clamp(24px, 8.33vw, 120px) clamp(60px, 6.94vw, 100px);
}

.company-data-heading {
    margin-bottom: clamp(60px, 20vw, 300px);
}
.company-data-title-en {
    font-family: var(--font-en-round);
    font-size: clamp(40px, 5.56vw, 80px);
    font-weight: 700;
    color: var(--color-blue);
    line-height: 1.225;
    letter-spacing: 0;
}
.company-data-title-ja {
    font-size: clamp(16px, 1.39vw, 20px);
    font-weight: 700;
    color: var(--color-blue);
    line-height: 1;
    margin-top: 0;
}

/* Data grid
   Row1: data01, data02, data03 (data03 spans 2 cols)
   Row2: data04, data05, data06, data07 */
.data-list {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(12px, 1.39vw, 20px);
}
.data-card {
    display: block;
}
.data-card picture {
    display: block;
}
.data-card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}
.data-card--03 { grid-column: span 2; }

/* ==========================================
   Workplace
   ========================================== */
.workplace {
    position: relative;
    background-color: var(--color-blue);
    background-image: url('../images/bg_img_workplace.svg');
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.workplace-inner {
    position: relative;
    max-width: 1440px;
    margin: 0 auto;
    padding: clamp(60px, 6.94vw, 100px) clamp(24px, 8.33vw, 120px);
}

.workplace-heading {
    margin-bottom: clamp(32px, 3.89vw, 56px);
}

.workplace-title-en {
    font-family: var(--font-en-thin);
    font-size: clamp(40px, 5.56vw, 80px);
    font-weight: 300;
    color: var(--color-white);
    line-height: 1.23;
    letter-spacing: 0;
    text-transform: uppercase;
}

.workplace-title-ja {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.02;
    margin-top: 0;
}

.workplace-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(16px, 2.85vw, 41px);
}

.workplace-card {
    background: var(--color-white);
    border-radius: 20px;
    padding: clamp(24px, 2.08vw, 30px) clamp(20px, 2.29vw, 33px) clamp(24px, 2.08vw, 30px);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    aspect-ratio: 373 / 494;
}

.workplace-card-image {
    width: 70%;
    max-width: 260px;
    height: 46%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: clamp(8px, 0.97vw, 14px);
}

.workplace-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.workplace-card-title {
    font-family: var(--font-ja);
    font-size: clamp(22px, 2.22vw, 32px);
    font-weight: 700;
    color: #262626;
    line-height: 1.317;
    margin-bottom: clamp(12px, 1.39vw, 20px);
}

.workplace-card-desc {
    font-family: var(--font-ja);
    font-size: clamp(14px, 1.11vw, 16px);
    font-weight: 700;
    color: #262626;
    line-height: 1.317;
    text-align: left;
}

.workplace-etc {
    background: var(--color-white);
    border-radius: 20px;
    margin-top: clamp(20px, 2.08vw, 30px);
    padding: clamp(20px, 2.08vw, 30px) clamp(24px, 3.68vw, 53px);
}

.workplace-etc-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px clamp(12px, 2.08vw, 30px);
    list-style: none;
    padding: 0;
    margin: 0;
}

.workplace-etc-item {
    font-family: var(--font-ja);
    font-size: clamp(14px, 1.46vw, 21px);
    font-weight: 700;
    color: #262626;
    line-height: 1.317;
    padding-left: 1em;
    position: relative;
    white-space: nowrap;
}

.workplace-etc-item::before {
    content: '●';
    position: absolute;
    left: 0;
    top: 0;
}

.workplace-etc-item--wide {
    grid-column: span 4;
}

/* ==========================================
   Flow
   ========================================== */
.flow {
    position: relative;
    background-color: var(--color-white);
    background-image: url('../images/bg_img_flow.png');
    background-size: 160% 140%;
    background-repeat: no-repeat;
    background-position: center top;
    aspect-ratio: 1440 / 708;
    overflow: hidden;
}

.flow-inner {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 1440px;
    margin: 0 auto;
}

.flow-heading {
    position: absolute;
    top: 14.12%;
    left: 8.33%;
}

.flow-title-en {
    font-family: var(--font-en-round);
    font-size: clamp(32px, 5.56vw, 80px);
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.23;
    letter-spacing: 0;
}

.flow-title-ja {
    font-size: clamp(14px, 1.39vw, 20px);
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.02;
    margin-top: 0;
}

.flow-list {
    position: absolute;
    top: 39.26%; /* 278/708 */
    left: 13.61%; /* 196/1440 */
    right: 13.61%;
    display: flex;
    justify-content: space-between;
    list-style: none;
    padding: 0;
    margin: 0;
}

.flow-item {
    position: relative;
    width: 20.21%; /* 212 / (1440 - 196*2) = 212/1048 */
    max-width: 212px;
    aspect-ratio: 212 / 330;
    background-image: url('../images/flow_drop.svg');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center center;
    text-align: center;
}

/* flow-item 間の矢印（右向き三角形 32x48, #d9d9d9） */
.flow-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 63.33%; /* arrow center y within item 330 */
    left: 100%;
    transform: translateY(-50%);
    /* gap (67px) の中で半矢印幅 (16px) を差し引いた左マージン = (67-32)/2 = 17.5px → 1.21vw@1440 */
    margin-left: clamp(4px, 1.21vw, 17.5px);
    width: 0;
    height: 0;
    border-top: clamp(12px, 1.67vw, 24px) solid transparent;
    border-bottom: clamp(12px, 1.67vw, 24px) solid transparent;
    border-left: clamp(16px, 2.22vw, 32px) solid var(--color-gray);
}

/* Within drop 212x330: 01 at y=126 (38.18%), label at y=199 (60.3%) */
.flow-num {
    position: absolute;
    top: 38.18%;
    left: 0;
    right: 0;
    font-family: var(--font-en-thin);
    font-size: clamp(24px, 3.33vw, 48px);
    font-weight: 500;
    line-height: 1.2;
    color: var(--color-white);
    display: block;
}

.flow-label {
    position: absolute;
    top: 60.3%;
    left: 0;
    right: 0;
    font-family: var(--font-ja);
    font-size: clamp(20px, 2.78vw, 40px);
    font-weight: 700;
    line-height: 1.5;
    color: var(--color-white);
    margin: 0;
}

/* ==========================================
   FAQ
   ========================================== */
.faq {
    background: var(--color-white);
}

.faq-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: clamp(60px, 6.94vw, 100px) clamp(24px, 8.33vw, 120px);
}

.faq-heading {
    margin-bottom: clamp(32px, 3.89vw, 56px);
}

.faq-title-en {
    font-family: var(--font-en-round);
    font-size: clamp(40px, 5.56vw, 80px);
    font-weight: 700;
    color: var(--color-blue);
    line-height: 1.23;
    letter-spacing: 0;
}

.faq-title-ja {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-blue);
    line-height: 1.02;
    margin-top: 0;
}

.faq-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(16px, 2.08vw, 30px) clamp(20px, 4.72vw, 68px);
}

.faq-item {
    background: var(--color-white);
    border: 1px solid var(--color-blue);
    border-radius: 15px;
    overflow: hidden;
}

.faq-q {
    display: block;
    width: 100%;
    background: #7AC0E8;
    color: #ffffff;
    font-family: var(--font-ja);
    font-size: clamp(18px, 1.67vw, 24px);
    font-weight: 700;
    line-height: 1.49;
    padding: clamp(12px, 1.11vw, 16px) clamp(20px, 2.08vw, 30px);
    margin: 0;
}

.faq-a {
    display: block;
    font-family: var(--font-ja);
    font-size: clamp(14px, 1.39vw, 20px);
    font-weight: 500;
    color: var(--color-brown);
    line-height: 1.49;
    padding: clamp(16px, 1.74vw, 25px) clamp(20px, 2.08vw, 30px);
    margin: 0;
}

/* ==========================================
   CTA
   ========================================== */
.cta {
    width: 100%;
    background-image: url('../images/bg_cta.svg');
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
}

.cta-inner {
    width: 100%;
    height: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: clamp(120px, 23.68vw, 341px) clamp(20px, 8.33vw, 120px) clamp(40px, 8.13vw, 117px) clamp(20px, 8.68vw, 125px);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: clamp(20px, 4.17vw, 60px);
}

.cta-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: clamp(20px, 7.78vw, 112px);
}

.cta-image {
    width: 45.19%;
    flex-shrink: 0;
    align-self: center;
}

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

.cta-body {
    width: 45.44%;
    flex-shrink: 0;
    color: var(--color-white);
}

.cta-text {
    font-size: clamp(16px, 1.67vw, 24px);
    font-weight: 500;
    color: var(--color-white);
    line-height: 1.8;
    margin: 0 0 1.5em;
}

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

.cta-btn-wrap {
    width: 41.84%;
    max-width: 500px;
    margin: 0 auto;
}

.cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    aspect-ratio: 500 / 70;
    background: #FAD852;
    color: #262626;
    font-size: clamp(16px, 1.67vw, 24px);
    font-weight: 700;
    border-radius: 5px;
    transition: opacity 0.2s;
}
.cta-btn:hover { opacity: 0.85; }

/* ==========================================
   Footer
   ========================================== */
.site-footer {
    width: 100%;
    aspect-ratio: 1440 / 573;
    background-color: var(--color-navy);
    background-image: url('../images/bg_footer.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    color: var(--color-white);
    margin-top: -1px;
}

.footer-inner {
    width: 100%;
    height: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: clamp(40px, 6.94vw, 100px) clamp(20px, 8.33vw, 120px) clamp(20px, 3.14vw, 45px);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: clamp(40px, 6.53vw, 94px);
    flex: 1;
}

/* --- Left column --- */
.footer-left {
    width: 30%;
    max-width: 319px;
    flex-shrink: 0;
}

.footer-company {
    display: flex;
    align-items: center;
    gap: clamp(8px, 0.35vw, 5px);
}

.footer-logo {
    width: clamp(48px, 4.86vw, 70px);
    flex-shrink: 0;
}
.footer-logo img {
    width: 100%;
    height: auto;
    display: block;
}

.footer-company-name {
    font-size: clamp(16px, 1.67vw, 24px);
    font-weight: 500;
    color: var(--color-white);
    line-height: 1;
    margin: 0;
    white-space: nowrap;
}

.footer-message {
    margin-top: clamp(20px, 2.08vw, 30px);
    width: 78.68%;
    max-width: 251px;
}
.footer-message img {
    width: 100%;
    height: auto;
    display: block;
}

.footer-address {
    margin-top: clamp(20px, 2.22vw, 32px);
    font-size: clamp(14px, 1.25vw, 18px);
    font-weight: 500;
    color: var(--color-white);
    line-height: 1.5;
}

/* --- Right column --- */
.footer-right {
    flex-shrink: 0;
}

.footer-nav {
    display: flex;
    gap: clamp(40px, 8.4vw, 121px);
}

.footer-nav-col {
    display: flex;
    flex-direction: column;
    gap: clamp(10px, 1.25vw, 18px);
}

.footer-nav-col a {
    font-size: clamp(14px, 1.11vw, 16px);
    font-weight: 500;
    color: var(--color-white);
    line-height: 1;
    transition: opacity 0.2s;
}
.footer-nav-col a:hover { opacity: 0.7; }

/* --- Bottom --- */
.footer-bottom {
    padding-top: clamp(16px, 2.15vw, 31px);
    margin-top: clamp(16px, 2.15vw, 31px);
    border-top: 1px solid rgba(255, 255, 255, 0.6);
    text-align: center;
}

.footer-copyright {
    font-size: clamp(10px, 0.83vw, 12px);
    font-weight: 300;
    color: var(--color-white);
    line-height: 1.5;
    margin: 0;
}

/* ==========================================
   Animation
   ========================================== */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.site-header.is-scrolled {
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

/* ==========================================
   Responsive — Tablet (768px – 1199px)
   ========================================== */
@media (min-width: 768px) and (max-width: 1199px) {

    /* --- Header (SPと同じ: ハンバーガーメニュー) --- */
    .header-nav,
    .header-btn,
    .header-entry {
        display: none;
    }
    .header-inner {
        height: 80px;
        padding: 0 24px;
    }
    .hamburger {
        display: flex;
        margin-left: auto;
    }
    .sp-nav.is-open {
        display: block;
    }

    /* --- Workplace (3カラム維持しつつ画面に収める) --- */
    .workplace-inner {
        padding: clamp(60px, 6.94vw, 100px) clamp(24px, 4vw, 48px);
    }
    .workplace-list {
        gap: clamp(12px, 1.67vw, 20px);
    }
    .workplace-card {
        aspect-ratio: auto;
        padding: 20px 16px;
    }
    .workplace-card-image {
        width: 80%;
        max-width: 180px;
        height: auto;
        aspect-ratio: 1 / 1;
        margin-bottom: 12px;
    }
    .workplace-card-image img {
        height: auto;
    }
    .workplace-card-title {
        font-size: clamp(18px, 2.2vw, 22px);
        margin-bottom: 10px;
    }
    .workplace-card-desc {
        font-size: clamp(12px, 1.4vw, 14px);
    }
    .workplace-etc {
        padding: 20px 24px;
    }
    .workplace-etc-list {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px 16px;
    }
    .workplace-etc-item {
        font-size: clamp(13px, 1.4vw, 16px);
        white-space: normal;
    }
    .workplace-etc-item--wide {
        grid-column: span 3;
    }

    /* --- Footer (content高さに合わせる) --- */
    .site-footer {
        aspect-ratio: auto;
        background-image: url('../images/bg_footer_sp.png');
        background-size: cover;
    }
    .footer-inner {
        padding: clamp(40px, 6vw, 72px) clamp(24px, 5vw, 60px) clamp(20px, 3vw, 36px);
    }
    .footer-top {
        gap: clamp(24px, 4vw, 48px);
    }
    .footer-nav {
        gap: clamp(24px, 4vw, 48px);
    }
    .footer-nav-col a {
        font-size: clamp(13px, 1.4vw, 15px);
    }
}

/* ==========================================
   Responsive — SP (max 767px)
   ========================================== */
@media (max-width: 767px) {
    :root { --section-py: 60px; }

    /* 全セクション見出しSP統一: 英字24px / 和文16px / 中央揃え */
    .section-title-en,
    .concept-movie-title-en,
    .about-title-en,
    .message-title-en,
    .message-hero-en,
    .interview-title-en,
    .service-title-en,
    .company-data-title-en,
    .workplace-title-en,
    .flow-title-en,
    .faq-title-en {
        font-size: 24px;
        font-weight: 700;
        line-height: 1.2;
        text-align: center;
    }
    .section-title-ja,
    .concept-movie-title-ja,
    .about-title-ja,
    .message-title-ja,
    .message-hero-ja,
    .interview-title-ja,
    .service-title-ja,
    .company-data-title-ja,
    .workplace-title-ja,
    .flow-title-ja,
    .faq-title-ja {
        font-size: 16px;
        font-weight: 700;
        line-height: 1.4;
        text-align: center;
        margin-top: 4px;
    }
    .section-heading,
    .concept-movie-heading,
    .about-heading,
    .message-heading,
    .interview-heading,
    .service-heading,
    .company-data-heading,
    .workplace-heading,
    .flow-heading,
    .faq-heading {
        text-align: center;
    }

    .header-inner { height: 70px; padding: 0 20px; gap: 12px; }
    .header-logo-name { font-size: 14px; }
    .header-logo-badge { font-size: 11px; padding: 2px 4px; }
    .header-logo-mark { width: 32px; height: 32px; }
    .header-nav, .header-btn, .header-entry { display: none; }
    .hamburger { display: flex; margin-left: auto; }

    .sp-nav.is-open { display: block; }

    .mv-concept {
        padding: 60px 0;
    }

    /* MV */
    .mv { padding: 0; }
    .mv-inner {
        padding: 0;
        flex-direction: column;
        align-items: flex-end;
    }
    .mv-image {
        width: calc(100% - 60px);
        max-width: none;
        margin-left: 60px;
        margin-right: 0;
        border-radius: 30px 0 0 50px;
    }
    .mv-image img { aspect-ratio: 380 / 209; }

    .mv-catch {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        width: calc(100% - 60px);
        max-width: 320px;
        margin: 60px auto 0 60px;
    }

    /* Concept Movie */
    .concept-movie {
        margin-top: 60px;
        text-align: center;
        padding: 0 30px;
    }
    .concept-movie-inner { padding: 0; }

    .concept-movie-heading { margin-bottom: 40px; }

    .concept-movie-thumb {
        max-width: 100%;
        aspect-ratio: 320 / 180;
    }
    .concept-movie-play { width: 55px; height: 55px; }

    .about-inner { grid-template-columns: 1fr; gap: 32px; padding: 60px 20px; }
    .about-heading { margin-bottom: 32px; }
    .about-text { font-size: 16px; line-height: 16px; }
    /* Message + Interview SP */
    .message-interview {
        background-image: url('../images/bg_message_interview.svg');
        background-size: contain;
        background-position: top center;
    }
    .message { padding: 60px 20px 30px; }
    .message-inner {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        column-gap: 0;
        row-gap: 24px;
    }
    .message-heading { grid-column: 1 / 2; grid-row: 1 / 2; }
    .message-portrait {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
        max-width: 320px;
        margin: 0 auto;
        border-radius: 12px;
    }
    .message-body { grid-column: 1 / 2; grid-row: 3 / 4; }
    .message-handwritten { max-width: 260px; margin: 0 auto 24px; }
    .message-btn { height: 56px; font-size: 16px; line-height: 1; max-width: 280px; display: flex; margin: 0 auto; }

    .interview { padding: 30px 20px 60px; }
    .interview-heading { margin-bottom: 30px; }
    .interview-list { grid-template-columns: 1fr; gap: 20px; }
    .interview-card { max-width: 320px; margin: 0 auto; width: 100%; }
    .interview-card-title-line { font-size: 28px; }
    .interview-btn-wrap { margin-top: 40px; }
    .interview-btn { height: 56px; font-size: 16px; line-height: 1; max-width: 280px; }

    .service-inner { padding: 60px 20px; }
    .service-heading { margin-bottom: 30px; }
    .service-detail { padding: 24px 20px; border-radius: 12px; }
    /* SPでは flex+order で並びを差し替え（label → name → images → desc） */
    .service-detail-inner {
        display: flex;
        flex-direction: column;
        gap: 0;
    }
    .service-detail-body { display: contents; }
    .service-label { order: 1; font-size: 20px; margin-bottom: 8px; }
    .service-name-wrap { order: 2; padding: 8px 14px; margin-bottom: 14px; }
    .service-name { font-size: 18px; }
    .service-detail-images {
        order: 3;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        padding-top: 0;
        margin-bottom: 16px;
    }
    .service-desc { order: 4; font-size: 14px; line-height: 1.8; }

    /* Company Data SP */
    .company-data-inner { padding: 60px 20px 0px 20px; }
    .company-data-heading { margin-bottom: 40px; }
    .data-list {
        grid-template-columns: 1fr;
        gap: 40px;
        width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
        padding: 100px 60px;
        background-image: url('../images/bg_data_sp.svg');
        background-size: cover;
        background-position: top center;
        background-repeat: no-repeat;
        box-sizing: border-box;
    }
    .data-card--03 { grid-column: auto; }

    /* Workplace SP */
    .workplace { background-image: url('../images/bg_workplace_sp.svg'); }
    .workplace-inner { padding: 60px; }
    .workplace-heading { margin-bottom: 32px; }
    .workplace-list { grid-template-columns: 1fr; gap: 40px; }
    .workplace-card { aspect-ratio: auto; padding: 24px 20px; }
    .workplace-card-image { height: auto; max-width: 220px; margin-bottom: 12px; }
    .workplace-card-image img { height: auto; }
    .workplace-card-title { font-size: 22px; margin-bottom: 12px; }
    .workplace-card-desc { font-size: 14px; }
    .workplace-etc { margin-top: 16px; padding: 20px; }
    .workplace-etc-list { grid-template-columns: repeat(2, 1fr); gap: 6px 16px; }
    .workplace-etc-item { font-size: 14px; }
    .workplace-etc-item--wide { grid-column: span 2; }

    /* Flow SP */
    .flow {
        aspect-ratio: auto;
        padding: 60px 20px;
        background-image: url('../images/bg_flow_sp.png');
        background-size: cover;
        background-position: top center;
        background-repeat: no-repeat;
    }
    .flow-inner { width: 100%; height: auto; }
    .flow-heading { position: static; margin-bottom: 32px; }
    .flow-list {
        position: static;
        display: flex;
        justify-content: space-between;
        gap: 0;
        margin: 0 auto;
    }
    .flow-item {
        width: 20%;
        max-width: none;
    }
    /* 矢印サイズは item に比例して小さく, gap の中央に配置 */
    .flow-item:not(:last-child)::after {
        margin-left: 0;
        /* flow-item 20% / gap 6.67% → gap/2 = item幅の約16.67% */
        left: calc(100% + 16.67%);
        transform: translate(-50%, -50%);
        border-top-width: 6px;
        border-bottom-width: 6px;
        border-left-width: 8px;
    }
    .flow-num { font-size: clamp(14px, 4vw, 20px); }
    .flow-label { font-size: clamp(12px, 3.6vw, 18px); }

    /* FAQ SP */
    .faq-inner { padding: 60px 20px; }
    .faq-heading { margin-bottom: 32px; }
    .faq-list { grid-template-columns: 1fr; gap: 40px; }
    .faq-item { border-radius: 12px; }
    .faq-q { font-size: 18px; padding: 12px 20px; }
    .faq-a { font-size: 14px; padding: 16px 20px; }

    /* CTA SP */
    .cta {
        aspect-ratio: auto;
        background-image: url('../images/bg_cta_sp.png');
    }
    .cta-inner {
        padding: 180px 40px 20px 40px;
        gap: 24px;
    }
    .cta-row {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    .cta-image {
        width: 100%;
    }
    .cta-body {
        width: 100%;
    }
    .cta-text {
        font-size: 14px;
        line-height: 1.8;
        margin: 0 0 1.2em;
    }
    .cta-btn-wrap {
        width: 100%;
        max-width: 400px;
    }
    .cta-btn {
        aspect-ratio: auto;
        font-size: 16px;
        padding: 16px 20px;
    }

    /* Footer SP */
    .site-footer {
        aspect-ratio: auto;
        background-image: url('../images/bg_footer_sp.png');
    }
    .footer-inner {
        padding: 60px 40px 32px;
    }
    .footer-top {
        flex-direction: column;
        align-items: stretch;
        gap: 40px;
    }
    .footer-left {
        width: 100%;
        max-width: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-company {
        gap: 12px;
        justify-content: center;
    }
    .footer-logo {
        width: 60px;
    }
    .footer-company-name {
        font-size: 20px;
    }
    .footer-message {
        width: 60%;
        max-width: none;
        margin-top: 20px;
    }
    .footer-address {
        font-size: 14px;
        margin-top: 20px;
    }
    .footer-nav {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    .footer-nav-col {
        align-items: center;
        gap: 12px;
        text-align: center;
    }
    .footer-nav-col a {
        font-size: 14px;
    }
    .footer-bottom {
        padding-top: 20px;
        margin-top: 24px;
    }
    .footer-copyright {
        font-size: 10px;
    }

    /* sub-pages SP */
    .subpage-hero-inner { grid-template-columns: 1fr; }
    .subpage-hero-image { display: none; }
    .interview-archive-list { grid-template-columns: 1fr; }
    .interview-profile-card { grid-template-columns: 1fr; }
}

/* ==========================================
   Sub-page: Hero
   ========================================== */
.subpage-hero {
    margin-top: 60px;
    position: relative;
    background: var(--color-navy);
    overflow: hidden;
    min-height: 400px;
}

.subpage-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    max-width: 1440px;
    margin: 0 auto;
    padding: 80px 60px;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.subpage-hero-en {
    font-family: var(--font-en-round);
    font-size: clamp(40px, 6vw, 80px);
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.1;
    margin-bottom: 16px;
}

.subpage-hero-ja {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-white);
}

.subpage-hero-catch {
    font-size: clamp(22px, 3vw, 36px);
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.6;
    margin-top: 16px;
}

.subpage-hero-image img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    border-radius: 8px;
}

.subpage-hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 80px;
    background: var(--color-white);
    clip-path: ellipse(55% 100% at 50% 100%);
}

/* ==========================================
   Sub-page: 代表メッセージ Hero
   ========================================== */
.message-hero {
    margin-top: 60px;
    position: relative;
    width: 100%;
    background-image: url('../images/bg_message_01.png');
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    aspect-ratio: 1440 / 852;
    overflow: hidden;
}

/* Base: Figma 1440px を基準に全サイズを vw で等比スケーリング */
.message-hero-inner {
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    padding: 0 8.33vw;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2.78vw;
}

.message-hero-text {
    padding-top: 18.06vw;
    flex: 0 0 auto;
    max-width: 38.89vw;
}

.message-hero-en {
    font-family: var(--font-en-thin);
    font-size: 5.56vw;
    font-weight: 300;
    color: var(--color-white);
    line-height: 1.23;
    letter-spacing: 0;
    margin: 0;
}

.message-hero-ja {
    font-size: 1.39vw;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.02;
    margin: 0 0 4.17vw;
}

.message-hero-illust {
    width: 100%;
    max-width: 38.19vw;
}

.message-hero-illust img {
    width: 100%;
    height: auto;
    display: block;
}

.message-hero-profile {
    padding-top: 13.89vw;
    flex: 0 0 auto;
    width: 28.19vw;
    max-width: 28.19vw;
    text-align: center;
}

.message-hero-profile-image {
    width: 100%;
    aspect-ratio: 406 / 452;
    overflow: hidden;
}

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

.message-hero-profile-name {
    margin-top: 2.08vw;
    font-size: 1.67vw;
    font-weight: 500;
    color: var(--color-white);
    line-height: 1.02;
    letter-spacing: 0;
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 1.67vw;
}

.message-hero-profile-position {
    font-family: var(--font-ja);
}

.message-hero-profile-fullname {
    font-family: var(--font-brush);
}

/* SP (max 767px) */
@media (max-width: 767px) {
    .message-hero {
        aspect-ratio: auto;
        padding: 60px 0 40px;
        background-image: url('../images/bg_message01_sp.png');
    }
    .message-hero-inner {
        flex-direction: column;
        padding: 0 20px;
        align-items: center;
        gap: 30px;
    }
    .message-hero-text {
        padding-top: 0;
        text-align: center;
        max-width: 100%;
    }
    .message-hero-en {
        font-size: 24px;
        font-weight: 700;
        line-height: 1.2;
        text-align: center;
    }
    .message-hero-ja {
        font-size: 16px;
        font-weight: 700;
        line-height: 1.4;
        text-align: center;
        margin: 4px 0 24px;
    }
    .message-hero-illust {
        width: 100%;
        max-width: none;
        margin: 0 auto;
        text-align: center;
    }
    .message-hero-illust img {
        width: 75%;
        max-width: none;
        margin: 0 auto;
    }
    .message-hero-profile {
        padding-top: 0;
        width: 260px;
        max-width: 80%;
    }
    .message-hero-profile-name {
        font-size: 18px;
        margin-top: 16px;
    }
    .message-hero-profile-fullname {
        font-size: 28px;
    }
}

/* ==========================================
   Sub-page: 社員インタビュー Hero
   (Figma node 287:516 / コンテンツ幅 1200px)
   ========================================== */
.interview-hero {
    margin-top: 60px;
    position: relative;
    width: 100%;
    background-image: url('../images/bg_interview01.png');
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    padding: 8.33vw 0 8.33vw;
    overflow: hidden;
}

.interview-hero-inner {
    position: relative;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 8.33vw;
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
        "text    image"
        "profile image";
    column-gap: 5vw;
    align-items: start;
}

.interview-hero-text {
    grid-area: text;
    width: 31.11vw;
    max-width: 448px;
}

.interview-hero-profile {
    grid-area: profile;
}

.interview-hero-image {
    grid-area: image;
}

.interview-hero-en {
    font-family: var(--font-en-round);
    font-size: 5.56vw;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.23;
    letter-spacing: 0;
    margin: 0;
}

.interview-hero-ja {
    font-size: 1.39vw;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.02;
    margin: 0;
}

.interview-hero-catch {
    font-family: var(--font-ja);
    font-size: 2.22vw;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.32;
    letter-spacing: 0;
    margin: 6.6vw 0 0;
}

.interview-hero-profile {
    margin-top: 4.17vw;
    color: var(--color-white);
    line-height: 1.87;
}

.interview-hero-profile-position,
.interview-hero-profile-year {
    font-size: 1.39vw;
    font-weight: 700;
    margin: 0;
}

.interview-hero-profile-name {
    font-size: 1.67vw;
    font-weight: 700;
    margin: 0;
}

.interview-hero-image {
    flex: 0 0 auto;
    width: 47.22vw;
    max-width: 680px;
    aspect-ratio: 680 / 452;
    margin-top: 6.94vw;
    overflow: hidden;
    border-radius: 30px;
}

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

/* SP (max 767px) */
@media (max-width: 767px) {
    .interview-hero {
        padding: 60px 0 40px;
    }
    .interview-hero-inner {
        display: flex;
        flex-direction: column;
        padding: 0 20px;
        align-items: center;
        gap: 30px;
        grid-template-areas: none;
        grid-template-columns: none;
    }
    .interview-hero-text {
        width: 100%;
        max-width: 100%;
        text-align: center;
    }
    .interview-hero-profile {
        width: 100%;
        text-align: center;
    }
    .interview-hero-en {
        font-size: 24px;
        line-height: 1.2;
    }
    .interview-hero-ja {
        font-size: 16px;
        margin-top: 4px;
    }
    .interview-hero-catch {
        font-size: 20px;
        margin-top: 24px;
    }
    .interview-hero-profile {
        margin-top: 24px;
    }
    .interview-hero-profile-position,
    .interview-hero-profile-year {
        font-size: 14px;
    }
    .interview-hero-profile-name {
        font-size: 18px;
    }
    .interview-hero-image {
        width: 90%;
        max-width: 100%;
        margin-top: 0;
        border-radius: 20px;
    }
}

/* ==========================================
   Sub-page: 代表メッセージ Article
   ========================================== */
.message-article {
    position: relative;
    width: 100%;
    background-image: url('../images/bg_message02.png');
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    padding: 101px 0 200px;
}

/* インタビューページのみ別背景 */
.subpage--interview .message-article {
    background-image: url('../images/bg_interview02.png');
}

.message-article-inner {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 184px;
}

.message-article-block {
    display: flex;
    align-items: center;
    gap: clamp(24px, 6.94vw, 100px);
}

.message-article-block--image-left {
    justify-content: flex-start;
}

.message-article-block--image-right {
    justify-content: flex-end;
}

.message-article-image {
    flex: 0 0 auto;
    width: 632px;
    max-width: 50%;
    overflow: hidden;
}

.message-article-block--image-left .message-article-image {
    border-radius: 0 30px 30px 0;
}

.message-article-block--image-right .message-article-image {
    border-radius: 30px 0 0 30px;
}

.message-article-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 632 / 470;
    object-fit: cover;
    display: block;
}

.message-article-text {
    flex: 0 1 auto;
}

.message-article-block--image-left .message-article-text {
    padding-right: 10%;
}

.message-article-block--image-right .message-article-text {
    padding-left: 10%;
}

.message-article-heading {
    font-family: var(--font-ja);
    font-size: 32px;
    font-weight: 700;
    line-height: 1.32;
    letter-spacing: 0;
    margin: 0 0 42px;
}

.message-article-block:nth-of-type(1) .message-article-heading {
    color: var(--color-white);
}

.message-article-block:nth-of-type(2) .message-article-heading,
.message-article-block:nth-of-type(3) .message-article-heading {
    color: #7AC0E8;
}

.message-article-body {
    font-family: var(--font-ja);
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    line-height: 1.87;
    letter-spacing: 0;
    margin: 0;
}

/* Tablet (768-1199px) */
@media (min-width: 768px) and (max-width: 1199px) {
    .message-article {
        padding: 80px 0 120px;
    }
    .message-article-inner {
        gap: 100px;
    }
    .message-article-heading {
        font-size: 24px;
        margin-bottom: 24px;
    }
    .message-article-body {
        font-size: 16px;
        line-height: 1.8;
    }
}

/* SP (max 767px) */
@media (max-width: 767px) {
    .message-article {
        padding: 60px 0 80px;
        background-image: url('../images/bg_message02_sp.png');
    }
    .subpage--interview .message-article {
        background-image: url('../images/bg_message02_sp.png');
    }
    .message-article-inner {
        gap: 60px;
        padding: 0 20px;
    }
    .message-article-block,
    .message-article-block--image-left,
    .message-article-block--image-right {
        flex-direction: column;
        align-items: stretch;
        gap: 24px;
        padding: 0;
    }
    .message-article-block--image-right .message-article-image {
        order: -1;
    }
    .message-article-image,
    .message-article-text {
        width: 100%;
        max-width: 100%;
    }
    .message-article-block--image-left .message-article-text,
    .message-article-block--image-right .message-article-text {
        padding-left: 0;
        padding-right: 0;
    }
    .message-article-block--image-left .message-article-image,
    .message-article-block--image-right .message-article-image {
        border-radius: 30px;
    }
    .message-article-heading {
        font-size: 20px;
        line-height: 1.4;
        margin-bottom: 16px;
    }
    .message-article-block:nth-of-type(1) .message-article-heading {
        color: #7AC0E8;
    }
    .message-article-body {
        font-size: 14px;
        line-height: 1.8;
    }
}

/* ==========================================
   Sub-page: 代表メッセージ Article2 (sec04)
   ========================================== */
.message-article2 {
    position: relative;
    width: 100%;
    background-image: url('../images/bg_cta.svg');
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    padding: 0 0 17.22vw;
    overflow: hidden;
}

.message-article2-inner {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 8.33vw;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.message-article2-illust {
    width: 34.31vw;
    max-width: 494px;
    margin: 0 auto;
}

.message-article2-illust img {
    width: 100%;
    height: auto;
    display: block;
}

.message-article2-block {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: clamp(30px, 10.63vw, 153px);
    padding-top: 300px;
}

.message-article2-image {
    flex: 0 0 auto;
    width: 28.19vw;
    max-width: 406px;
}

.message-article2-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 406 / 452;
    object-fit: cover;
    display: block;
    border-radius: 30px;
}

.message-article2-text {
    flex: 0 1 auto;
}

.message-article2-heading {
    font-family: var(--font-ja);
    font-size: clamp(22px, 2.22vw, 32px);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.32;
    letter-spacing: 0;
    margin: 0 0 clamp(20px, 2.92vw, 42px);
}

.message-article2-body {
    font-family: var(--font-ja);
    font-size: clamp(14px, 1.39vw, 20px);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.87;
    letter-spacing: 0;
    margin: 0;
}

/* SP (max 767px) */
@media (max-width: 767px) {
    .message-article2 {
        padding: 40px 0 80px;
        background-image: url('../images/bg_cta_sp.png');
    }
    .message-article2-inner {
        padding: 0 20px;
    }
    .message-article2-illust {
        width: 60%;
        max-width: 300px;
    }
    .message-article2-block {
        flex-direction: column;
        gap: 24px;
        margin-top: 30px;
        padding-top: 100px;
    }
    .message-article2-image,
    .message-article2-text {
        width: 100%;
        max-width: 100%;
    }
    .message-article2-heading {
        font-size: 20px;
        line-height: 1.4;
        margin-bottom: 16px;
        text-align: center;
    }
    .message-article2-body {
        font-size: 14px;
        line-height: 1.8;
    }
}

/* ==========================================
   Sub-page: インタビュー一覧
   ========================================== */
.interview-archive {
    padding: var(--section-py) 0;
    background: var(--color-white);
}

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

.interview-archive-link {
    display: block;
    transition: transform 0.2s;
}
.interview-archive-link:hover { transform: translateY(-4px); }

.interview-archive-image img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 16px;
}

.interview-archive-dept {
    font-size: 13px;
    color: var(--color-blue);
    font-weight: 700;
    margin-bottom: 4px;
}

.interview-archive-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.interview-archive-excerpt {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
}

/* ==========================================
   Sub-page: インタビュー詳細
   ========================================== */
.interview-single-dept {
    font-size: 14px;
    color: var(--color-blue);
    font-weight: 700;
    margin-bottom: 4px;
}

.interview-single-name {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 8px;
}

.interview-single-career {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
}

.interview-single-content {
    padding: var(--section-py) 0;
    background: var(--color-white);
}

.interview-single-content .section-inner {
    font-size: 16px;
    line-height: 2;
}

.interview-single-profile {
    padding: 60px 0;
    background: #f5f8fc;
}

.interview-profile-card {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 40px;
    align-items: start;
}

.interview-profile-image img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
}

.interview-profile-dept {
    font-size: 13px;
    color: var(--color-blue);
    font-weight: 700;
    margin-bottom: 4px;
}

.interview-profile-name {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.interview-profile-career {
    font-size: 14px;
    color: #555;
    margin-bottom: 16px;
}

.interview-profile-text {
    font-size: 15px;
    line-height: 1.8;
}

.interview-back-link {
    padding: 40px 0;
    background: var(--color-white);
}

.btn-back {
    display: inline-block;
    color: var(--color-navy);
    font-weight: 700;
    font-size: 15px;
    border: 2px solid var(--color-navy);
    padding: 12px 24px;
    border-radius: 4px;
    transition: all 0.2s;
}
.btn-back:hover {
    background: var(--color-navy);
    color: var(--color-white);
}

/* ==========================================
   Archive: 社員インタビュー一覧
   (Figma node 106:409 / コンテンツ幅 1200px / frame 1440px)
   ========================================== */
.interview-archive {
    position: relative;
    width: 100%;
    background-image: url('../images/bg_all-interview.png');
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    padding: 6.94vw 0 8.33vw;
}

.interview-archive-inner {
    position: relative;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 8.33vw;
}

.interview-archive-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 4.86vw;
}

.interview-archive-heading-text {
    flex: 0 0 auto;
}

.interview-archive-en {
    font-family: var(--font-en-round);
    font-size: 5.56vw;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.23;
    margin: 0;
}

.interview-archive-ja {
    font-size: 1.39vw;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1;
    margin-top: 4px;
}

.interview-archive-list {
    row-gap: clamp(24px, 5.56vw, 80px);
}

/* カードホバーで少しスケール */
.interview-archive-list .interview-card {
    transition: transform 0.3s ease;
}
.interview-archive-list .interview-card:hover {
    transform: scale(1.03);
}

/* Tablet (768-1199) */
@media (min-width: 768px) and (max-width: 1199px) {
    .interview-archive {
        padding: 60px 0 80px;
    }
    .interview-archive-heading {
        margin-bottom: 48px;
    }
}

/* SP (max 767px) */
@media (max-width: 767px) {
    .interview-archive {
        padding: 60px 0 80px;
        background-image: url('../images/bg_all-interview_sp.png');
    }
    .interview-archive-inner {
        padding: 0 20px;
    }
    .interview-archive-heading {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 16px;
        margin-bottom: 40px;
    }
    .interview-archive-en {
        font-size: 24px;
    }
    .interview-archive-ja {
        font-size: 16px;
    }
    .interview-archive-list {
        grid-template-columns: 1fr;
        row-gap: 32px;
    }
}
