/* ========================================
   リセット & 基本設定
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.8;
    color: #333;
    overflow-x: hidden;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
/* ========================================
   ナビゲーションバー
======================================== */
.navbar {
    position: sticky;
    top: 0;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 15px 0;
}
.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.nav-logo {
    font-size: 16px;
    font-weight: 700;
    color: #2c5f9e;
    white-space: nowrap;
}
.nav-right {
    display: flex;
    align-items: center;
    gap: 30px;
}
.nav-contact {
    display: flex;
    gap: 20px;
}
.contact-item {
    display: flex;
    align-items: center;
    font-size: 14px;
    white-space: nowrap;
}
.office-label {
    font-weight: 700;
    color: #666;
}
.phone-link {
    color: #2c5f9e;
    font-weight: 700;
    font-size: 16px;
    margin-left: 5px;
}
.phone-link:hover {
    color: #1e4477;
}
.nav-btn {
    background: linear-gradient(135deg, #ff8c00 0%, #e65c00 100%);
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(230, 92, 0, 0.3);
    transition: all 0.3s ease;
}
.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 92, 0, 0.5);
}
@media (max-width: 768px) {
    .navbar {
        padding: 6px 0;
        background: rgba(255,255,255,0.92);
        backdrop-filter: blur(6px);
    }
    .nav-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 0 14px;
        gap: 8px;
    }
    .nav-logo {
        font-size: 11px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 160px;
    }
    .nav-right {
        flex-direction: row;
        gap: 8px;
        align-items: center;
    }
    .nav-contact {
        display: none; /* スマホでは電話番号非表示（スペース確保） */
    }
    .nav-btn {
        padding: 7px 16px;
        font-size: 12px;
        border-radius: 20px;
        white-space: nowrap;
    }
}
/* ========================================
   セクション共通スタイル
======================================== */
section {
    padding: 100px 0;
    position: relative;
}
.section-header {
    text-align: center;
    margin-bottom: 60px;
}
.section-label {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    color: #2c5f9e;
    margin-bottom: 15px;
}
.section-title {
    font-size: 42px;
    font-weight: 900;
    line-height: 1.4;
    color: #1a1a1a;
    margin-bottom: 20px;
}
.section-subtitle {
    font-size: 18px;
    color: #666;
}
.txt-white {
    color: #fff !important;
}
/* ========================================
   1. ファーストビュー
======================================== */
.fv {
    height: 100vh;
    min-height: 700px;
    background: linear-gradient(135deg, rgba(30, 68, 119, 0.85) 0%, rgba(44, 95, 158, 0.85) 100%),
                url('写真/ファーストビュー/ファーストビュー.webp') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.fv-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.3) 100%);
}
.fv-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}
.fv-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid #fff;
    padding: 8px 24px;
    border-radius: 30px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 3px;
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease;
}
.fv-title {
    font-size: 52px;
    font-weight: 900;
    line-height: 1.5;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
    animation: fadeInUp 0.8s ease 0.2s both;
}
.fv-subtitle {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.95;
}
.btn-main {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #ff8c00 0%, #e65c00 100%);
    color: #fff;
    padding: 20px 50px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    box-shadow: 0 10px 40px rgba(230, 92, 0, 0.4);
    transition: all 0.3s ease;
}
.btn-main:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(230, 92, 0, 0.6);
}
.btn-arrow {
    font-size: 24px;
    transition: transform 0.3s ease;
}
.btn-main:hover .btn-arrow {
    transform: translateX(5px);
}
/* ファーストビュー：数字バッジ */
.fv-stats {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 24px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.4s both;
}
.fv-stat-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.18);
    border: 2px solid rgba(255,255,255,0.85);
    color: #fff;
    font-weight: 900;
    font-size: 18px;
    padding: 10px 28px;
    border-radius: 50px;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.25);
    backdrop-filter: blur(4px);
}
.fv-subtitle {
    animation: fadeInUp 0.8s ease 0.6s both;
}
.btn-main {
    animation: fadeInUp 0.8s ease 0.8s both;
}
@media (max-width: 768px) {
    .fv-stats {
        gap: 10px;
    }
    .fv-stat-badge {
        font-size: 14px;
        padding: 8px 18px;
    }
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* ========================================
   2. 共感セクション
======================================== */
.empathy {
    background: #f8f9fa;
}
.empathy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}
.empathy-card {
    background: #fff;
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}
.empathy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}
.empathy-icon {
    font-size: 48px;
    margin-bottom: 15px;
}
.empathy-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}
/* ========================================
   3. 代表メッセージ
======================================== */
.message {
    background: #fff;
}
.message-wrapper {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 60px;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}
.message-photo {
    position: sticky;
    top: 120px;
}
.photo-frame {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    margin-bottom: 20px;
}
.photo-frame img {
    width: 100%;
    height: auto;
    display: block;
}
.photo-info {
    text-align: center;
}
.photo-title {
    font-size: 13px;
    color: #666;
    margin-bottom: 5px;
}
.photo-name {
    font-size: 20px;
    font-weight: 700;
    color: #2c5f9e;
}
.message-content {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 20px;
}
.message-lead {
    background: linear-gradient(135deg, #2c5f9e 0%, #1e4477 100%);
    color: #fff;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    font-size: 17px;
    line-height: 1.8;
}
.message-lead strong {
    font-size: 19px;
    border-bottom: 2px solid #fff;
    padding-bottom: 2px;
}
.message-text {
    font-size: 16px;
    line-height: 1.9;
    color: #444;
}
.message-text p {
    margin-bottom: 25px;
}
.message-text strong {
    color: #2c5f9e;
    font-weight: 700;
}
.message-highlight {
    background: #fff;
    border-left: 5px solid #2c5f9e;
    padding: 20px 25px;
    margin: 30px 0;
    border-radius: 0 10px 10px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}
.message-highlight strong {
    font-size: 17px;
    color: #1e4477;
}
@media (max-width: 768px) {
    .message-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .message-photo {
        position: static;
    }
    .photo-frame {
        max-width: 250px;
        margin: 0 auto 20px;
    }
    .message-content {
        padding: 30px 25px;
    }
    .message-lead {
        padding: 25px 20px;
        font-size: 15px;
    }
    .message-lead strong {
        font-size: 16px;
    }
    .message-text {
        font-size: 15px;
    }
}
/* ========================================
   ① 会社説明セクション（新規追加）
======================================== */
.about-company {
    background: #f8f9fa;
}
.about-company .section-subtitle {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.9;
}
.about-services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.service-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}
.service-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}
.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.service-card:hover .service-img img {
    transform: scale(1.1);
}
.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.6) 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
}
.service-badge {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}
.service-content {
    padding: 25px 30px 30px;
}
.service-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #2c5f9e;
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e3f2fd;
}
.service-content p {
    font-size: 14px;
    line-height: 1.9;
    color: #555;
}
@media (max-width: 768px) {
    .about-services {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .service-img {
        height: 200px;
    }
    .service-content {
        padding: 20px 25px 25px;
    }
}
/* ========================================
   4. 3つのベネフィット
======================================== */
.benefits {
    position: relative;
    color: #fff;
}
.benefits-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #1e4477 0%, #2c5f9e 100%);
    z-index: -1;
}
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}
.benefit-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 40px 30px;
    border-radius: 20px;
    transition: all 0.3s ease;
}
.benefit-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
}
.benefit-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 15px;
}
.benefit-icon {
    font-size: 56px;
    margin-bottom: 20px;
}
.benefit-img {
    width: 100%;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}
.benefit-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.benefit-card:hover .benefit-img img {
    transform: scale(1.05);
}
.benefit-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    line-height: 1.5;
}
.benefit-card p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 25px;
    opacity: 0.95;
}
.benefit-highlight {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.highlight-item {
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}
.highlight-item strong {
    font-size: 18px;
    font-weight: 900;
}
/* ========================================
   5. 社員インタビュー
======================================== */
.interview {
    background: #f8f9fa;
}
.interview-box {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 40px;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}
.interview-box.reverse {
    grid-template-columns: 1fr 378px;
}
.interview-img {
    width: 100%;
    height: 400px;
    overflow: hidden;
    flex-shrink: 0;
}
.interview-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.5s ease;
}
.interview-box:hover .interview-img img {
    transform: scale(1.05);
}
.interview-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.interview-label {
    display: inline-block;
    background: #e3f2fd;
    color: #2c5f9e;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
    width: fit-content;
}
.interview-title {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #1a1a1a;
}
.interview-text {
    font-size: 15px;
    line-height: 1.9;
    color: #555;
}
.interview-text strong {
    color: #2c5f9e;
    font-weight: 700;
    background: linear-gradient(transparent 60%, #fff3cd 60%);
}
@media (max-width: 768px) {
    .interview-box,
    .interview-box.reverse {
        grid-template-columns: 1fr;
    }
    .interview-img {
        height: 250px;
    }
    .interview-content {
        padding: 30px 25px;
    }
}
/* ========================================
   応募ボタンセクション
======================================== */
.cta-section {
    text-align: center;
    margin-top: 60px;
    padding-top: 60px;
    border-top: 2px solid #e0e0e0;
}
.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #ff8c00 0%, #e65c00 100%);
    color: #fff;
    padding: 25px 60px;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 700;
    box-shadow: 0 10px 40px rgba(230, 92, 0, 0.4);
    transition: all 0.3s ease;
}
.btn-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(230, 92, 0, 0.6);
}
.btn-cta .btn-arrow {
    font-size: 28px;
    transition: transform 0.3s ease;
}
.btn-cta:hover .btn-arrow {
    transform: translateX(8px);
}
@media (max-width: 768px) {
    .btn-cta {
        padding: 20px 40px;
        font-size: 18px;
    }
}
/* ========================================
   6. 1日の流れ
======================================== */
.schedule {
    background: #fff;
}
.schedule-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}
.schedule-tab {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    background: #f5f5f5;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s ease;
}
.schedule-tab:hover {
    background: #e0e0e0;
}
.schedule-tab.active {
    background: linear-gradient(135deg, #2c5f9e 0%, #1e4477 100%);
    color: #fff;
}
.tab-icon {
    font-size: 24px;
}
.schedule-content {
    position: relative;
}
.schedule-panel {
    display: none;
    animation: fadeIn 0.5s ease;
}
.schedule-panel.active {
    display: block;
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.schedule-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}
.schedule-timeline::before {
    content: '';
    position: absolute;
    left: 140px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #2c5f9e 0%, #1e4477 100%);
}
.schedule-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
}
.schedule-item::before {
    content: '';
    position: absolute;
    left: 133px;
    top: 8px;
    width: 17px;
    height: 17px;
    background: #fff;
    border: 3px solid #2c5f9e;
    border-radius: 50%;
    z-index: 2;
}
.schedule-time {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #2c5f9e;
    text-align: right;
}
.schedule-desc {
    background: #f8f9fa;
    padding: 20px 25px;
    border-radius: 15px;
    border-left: 4px solid #2c5f9e;
}
.schedule-desc h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #1a1a1a;
}
.schedule-desc p {
    font-size: 14px;
    color: #666;
}
.schedule-item.lunch .schedule-desc {
    background: #fff3cd;
    border-left-color: #ffc107;
}
.schedule-item.end .schedule-desc {
    background: #e3f2fd;
    border-left-color: #2196f3;
}
@media (max-width: 768px) {
    .schedule-tabs {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    .schedule-tab {
        justify-content: center;
    }
    .schedule-timeline::before {
        left: 80px;
    }
    .schedule-item {
        grid-template-columns: 70px 1fr;
        gap: 20px;
    }
    .schedule-item::before {
        left: 73px;
    }
    .schedule-time {
        font-size: 16px;
    }
    .schedule-desc {
        padding: 15px 20px;
    }
}
/* ========================================
   7. 教育ステップ
======================================== */
.education {
    position: relative;
    color: #fff;
}
.education-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #1e4477 0%, #2c5f9e 100%);
    z-index: -1;
}
.step-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}
.step-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}
.step-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}
.step-img {
    position: relative;
    height: 250px;
    overflow: hidden;
}
.step-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.step-card:hover .step-img img {
    transform: scale(1.1);
}
.step-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.6) 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
}
.step-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 900;
    color: #fff;
}
.step-content {
    padding: 30px;
}
.step-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
}
.step-content p {
    font-size: 15px;
    line-height: 1.8;
    opacity: 0.95;
}
/* ========================================
   8. 会社概要
======================================== */
.company {
    background: #f8f9fa;
}
.company-table {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}
.company-table tr {
    border-bottom: 1px solid #e0e0e0;
}
.company-table tr:last-child {
    border-bottom: none;
}
.company-table th,
.company-table td {
    padding: 25px 30px;
    text-align: left;
}
.company-table th {
    background: #f8f9fa;
    font-weight: 700;
    color: #2c5f9e;
    width: 180px;
}
.company-table td {
    line-height: 1.8;
}
.company-link {
    color: #2c5f9e;
    text-decoration: underline;
}
.company-link:hover {
    color: #1e4477;
}
@media (max-width: 768px) {
    .company-table {
        display: block;
    }
    .company-table tr {
        display: block;
        margin-bottom: 20px;
    }
    .company-table th,
    .company-table td {
        display: block;
        width: 100%;
        padding: 15px 20px;
    }
    .company-table th {
        border-bottom: 2px solid #2c5f9e;
    }
}
/* ========================================
   ② 募集要項（リスト形式に変更）
======================================== */
.requirements {
    background: #fff;
}
.requirements-list-container {
    max-width: 900px;
    margin: 0 auto;
}
.requirements-table {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.req-row {
    display: flex;
    border-bottom: 1px solid #e8e8e8;
}
.req-row:last-child {
    border-bottom: none;
}
.req-label {
    width: 180px;
    min-width: 180px;
    background: #f0f4f8;
    padding: 25px 30px;
    font-weight: 700;
    color: #2c5f9e;
    font-size: 15px;
    display: flex;
    align-items: flex-start;
    padding-top: 28px;
}
.req-value {
    flex: 1;
    padding: 25px 30px;
    font-size: 15px;
    line-height: 1.8;
    color: #333;
}
.req-row.highlight-row {
    background: #fafbff;
}
.req-badge {
    display: inline-block;
    background: linear-gradient(135deg, #2c5f9e 0%, #1e4477 100%);
    color: #fff;
    padding: 5px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 12px;
}
.req-office-block {
    margin-top: 10px;
    padding: 12px 0;
    border-top: 1px dashed #ddd;
}
.req-office-block:first-of-type {
    border-top: none;
    margin-top: 5px;
}
.req-access {
    font-size: 13px;
    color: #666;
    margin-top: 5px;
}
.req-note {
    margin-top: 10px;
    background: #e3f2fd;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 14px;
    color: #555;
}
.req-salary-grid {
    display: flex;
    gap: 15px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}
.req-salary-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 2px solid #e3f2fd;
    padding: 10px 18px;
    border-radius: 10px;
}
.req-salary-label {
    font-size: 13px;
    font-weight: 700;
    color: #666;
    white-space: nowrap;
}
.req-salary-amount {
    font-size: 20px;
    font-weight: 900;
    color: #2c5f9e;
    white-space: nowrap;
}
.req-salary-plus {
    font-weight: 700;
    color: #2c5f9e;
    margin-bottom: 10px;
    font-size: 14px;
}
.req-small {
    font-size: 12px;
    color: #888;
    line-height: 1.7;
}
.req-income-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.req-income-item {
    display: flex;
    align-items: baseline;
    gap: 10px;
    background: #e8f5e9;
    padding: 12px 20px;
    border-radius: 10px;
}
.req-income-amount {
    font-size: 28px;
    font-weight: 900;
    color: #2c5f9e;
}
.req-income-detail {
    font-size: 13px;
    color: #666;
    white-space: nowrap;
}
@media (max-width: 768px) {
    .req-row {
        flex-direction: column;
    }
    .req-label {
        width: 100%;
        min-width: unset;
        padding: 15px 20px;
        border-bottom: 2px solid #2c5f9e;
    }
    .req-value {
        padding: 15px 20px;
    }
    .req-salary-grid {
        flex-direction: column;
    }
    .req-salary-amount {
        font-size: 18px;
    }
    .req-income-grid {
        flex-direction: column;
    }
    .req-income-amount {
        font-size: 24px;
    }
}
/* ========================================
   10. 選考フロー
======================================== */
.selection-flow {
    background: #f8f9fa;
}
.flow-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: wrap;
}
.flow-step {
    flex: 1;
    min-width: 150px;
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}
.flow-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.flow-step.highlight {
    background: linear-gradient(135deg, #2c5f9e 0%, #1e4477 100%);
    color: #fff;
}
.flow-icon {
    font-size: 48px;
    margin-bottom: 15px;
}
.flow-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #2c5f9e;
    margin-bottom: 10px;
    letter-spacing: 1px;
}
.flow-step.highlight .flow-number {
    color: rgba(255,255,255,0.8);
}
.flow-step h4 {
    font-size: 18px;
    margin-bottom: 10px;
}
.flow-step p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}
.flow-step.highlight p {
    color: rgba(255,255,255,0.9);
}
.flow-step small {
    display: block;
    margin-top: 5px;
    opacity: 0.8;
}
.flow-arrow {
    font-size: 36px;
    color: #2c5f9e;
    margin: 0 10px;
    font-weight: 700;
}
@media (max-width: 768px) {
    .flow-container {
        flex-direction: column;
        gap: 20px;
    }
    .flow-step {
        width: 100%;
    }
    .flow-arrow {
        transform: rotate(90deg);
        margin: 0;
    }
}
/* ========================================
   11. Q&A
======================================== */
.faq {
    background: #fff;
}
.faq-list {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.faq-item {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
}
.faq-question {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: linear-gradient(135deg, #1e4477 0%, #2c5f9e 100%);
    padding: 24px 30px;
}
.faq-question p {
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.6;
    margin: 0;
}
.faq-answer {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: #f0f5fb;
    padding: 24px 30px;
}
.faq-answer p {
    color: #333;
    font-size: 15px;
    line-height: 1.9;
    margin: 0;
}
.faq-icon {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 900;
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
.faq-question .faq-icon {
    background: rgba(255,255,255,0.25);
    color: #fff;
}
.faq-answer .faq-icon {
    background: #2c5f9e;
    color: #fff;
}
@media (max-width: 768px) {
    .faq-question,
    .faq-answer {
        padding: 20px;
        gap: 15px;
    }
    .faq-question p {
        font-size: 15px;
    }
    .faq-answer p {
        font-size: 14px;
    }
}
/* ========================================
   求める人物像セクション
======================================== */
.persona {
    background: #f8f9fa;
}
.persona-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 860px;
    margin: 0 auto 50px;
}
.persona-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px 30px 30px 24px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    box-shadow: 0 4px 18px rgba(44,95,158,0.10);
    border-left: 5px solid #2c5f9e;
    transition: all 0.3s ease;
}
.persona-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(44,95,158,0.16);
}
.persona-check {
    font-size: 26px;
    font-weight: 900;
    color: #2c5f9e;
    flex-shrink: 0;
    line-height: 1.4;
}
.persona-card p {
    font-size: 17px;
    line-height: 1.7;
    color: #333;
}
.persona-card p strong {
    color: #1e4477;
    font-weight: 900;
}
.persona-cta {
    text-align: center;
}
.persona-cta-text {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.7;
}
.persona-cta-text strong {
    color: #2c5f9e;
}
@media (max-width: 768px) {
    .persona-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .persona-card {
        padding: 22px 20px 22px 18px;
    }
    .persona-card p {
        font-size: 15px;
    }
    .persona-cta-text {
        font-size: 16px;
    }
}
/* ========================================
   Googleマップ展開ボタン
======================================== */
.map-open-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    padding: 10px 22px;
    background: linear-gradient(135deg, #2c5f9e 0%, #1e4477 100%);
    color: #fff;
    border: none;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(44,95,158,0.25);
}
.map-open-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(44,95,158,0.4);
}
.req-map {
    margin-top: 12px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
/* ========================================
   13. オフィスギャラリー
======================================== */
.gallery {
    background: #fff;
    padding: 100px 0 0 0;
}
.gallery-scroll {
    overflow: hidden;
    margin-top: 60px;
}
.gallery-track {
    display: flex;
    gap: 20px;
    animation: scroll 15s linear infinite;
}
.gallery-track:hover {
    animation-play-state: paused;
}
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
.gallery-item {
    flex-shrink: 0;
    width: 400px;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-item:hover img {
    transform: scale(1.1);
}
@media (max-width: 768px) {
    .gallery-item {
        width: 300px;
        height: 225px;
    }
}
/* ========================================
   12. 応募フォーム
======================================== */
.entry {
    position: relative;
    color: #fff;
}
.entry-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #1e4477 0%, #2c5f9e 100%);
    z-index: -1;
}
.entry-form {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 50px;
    border-radius: 20px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}
.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 25px;
}
.form-row .form-group {
    margin-bottom: 0;
}
.form-group.full {
    grid-column: 1 / -1;
}
.form-group label {
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 16px;
}
.required {
    background: #ff4444;
    color: #fff;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 12px;
    margin-left: 10px;
}
.optional {
    background: rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 12px;
    margin-left: 10px;
}
.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    transition: all 0.3s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #fff;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}
.form-group textarea {
    resize: vertical;
    font-family: inherit;
}
.btn-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 100%;
    background: linear-gradient(135deg, #ff8c00 0%, #e65c00 100%);
    color: #fff;
    padding: 20px;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(230, 92, 0, 0.4);
}
.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(230, 92, 0, 0.6);
}
@media (max-width: 768px) {
    .entry-form {
        padding: 30px 25px;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
/* ========================================
   ファイル添付エリア
======================================== */
.required-either {
    background: #e67e00;
    color: #fff;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 12px;
    margin-left: 10px;
}
.file-upload-area {
    position: relative;
    border: 2px dashed rgba(255,255,255,0.5);
    border-radius: 12px;
    background: rgba(255,255,255,0.08);
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}
.file-upload-area:hover {
    border-color: rgba(255,255,255,0.9);
    background: rgba(255,255,255,0.15);
}
.file-upload-area input[type="file"] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
    padding: 0;
    border: none;
    background: transparent;
    box-shadow: none;
}
.file-upload-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 28px 20px;
    pointer-events: none;
}
.file-upload-icon {
    font-size: 32px;
}
.file-upload-text {
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    margin: 0;
}
.file-upload-note {
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    margin: 0;
}
.file-selected {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    background: rgba(255,255,255,0.15);
}
.file-selected-icon {
    font-size: 20px;
    flex-shrink: 0;
}
.file-selected-name {
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    flex: 1;
    word-break: break-all;
}
.file-remove-btn {
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.5);
    color: #fff;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    font-size: 14px;
    cursor: pointer;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 3;
    position: relative;
}
.file-remove-btn:hover {
    background: rgba(255,0,0,0.4);
}
.career-or-note {
    color: rgba(255,255,255,0.75);
    font-size: 13px;
    margin-top: 8px;
}
/* ========================================
   確認画面
======================================== */
.confirm-form {
    text-align: left;
}
.confirm-title {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    text-align: center;
}
.confirm-lead {
    color: rgba(255,255,255,0.85);
    text-align: center;
    margin-bottom: 30px;
    font-size: 15px;
}
.confirm-table {
    background: rgba(255,255,255,0.95);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 30px;
}
.confirm-row {
    display: flex;
    border-bottom: 1px solid #e5e7eb;
}
.confirm-row:last-child {
    border-bottom: none;
}
.confirm-label {
    width: 160px;
    min-width: 160px;
    background: #f3f6fb;
    color: #1e4477;
    font-weight: 700;
    padding: 16px 20px;
    font-size: 14px;
    display: flex;
    align-items: flex-start;
}
.confirm-value {
    flex: 1;
    padding: 16px 20px;
    color: #333;
    font-size: 15px;
    white-space: pre-wrap;
    word-break: break-all;
}
.confirm-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}
.btn-back {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 40px;
    border: 2px solid rgba(255,255,255,0.6);
    border-radius: 50px;
    background: transparent;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-back:hover {
    background: rgba(255,255,255,0.15);
    border-color: #fff;
}
.btn-send {
    flex: 1;
    max-width: 400px;
}
@media (max-width: 768px) {
    .confirm-label {
        width: 100px;
        min-width: 100px;
        font-size: 13px;
        padding: 14px 12px;
    }
    .confirm-value {
        padding: 14px 12px;
        font-size: 14px;
    }
    .confirm-btns {
        flex-direction: column;
    }
    .btn-send {
        max-width: 100%;
    }
}
/* ========================================
   お礼画面
======================================== */
.thanks-form {
    text-align: center;
    padding: 60px 50px;
}
.thanks-icon {
    font-size: 64px;
    margin-bottom: 20px;
}
.thanks-title {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
}
.thanks-text {
    color: rgba(255,255,255,0.9);
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 30px;
}
.thanks-contact {
    background: rgba(255,255,255,0.15);
    border-radius: 12px;
    padding: 20px 30px;
    display: inline-block;
}
.thanks-contact p {
    color: rgba(255,255,255,0.9);
    font-size: 15px;
    margin: 6px 0;
}
.thanks-link {
    color: #fff;
    font-weight: 700;
    text-decoration: none;
}
.thanks-link:hover {
    text-decoration: underline;
}
@media (max-width: 768px) {
    .thanks-form {
        padding: 40px 25px;
    }
    .thanks-title {
        font-size: 20px;
    }
}
/* ========================================
   フッター
======================================== */
.footer {
    background: #1a1a1a;
    padding: 30px 0;
    text-align: center;
}
.footer-text {
    color: #999;
    font-size: 14px;
}
/* ========================================
   レスポンシブ（SP用）
======================================== */
.sp-only {
    display: none;
}
@media (max-width: 768px) {
    .sp-only {
        display: inline;
    }
    section {
        padding: 60px 0;
    }
    .section-title {
        font-size: 32px;
    }
    .fv {
        min-height: 600px;
        margin-top: 0;
    }
    .fv-title {
        font-size: 32px;
    }
    .fv-subtitle {
        font-size: 16px;
    }
    .btn-main {
        padding: 18px 40px;
        font-size: 16px;
    }
}
