/* リセットと基本設定 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* マリンスポーツをイメージした水色寄りのカラーパレット */
    --ocean-deep: #1B8DE6;
    --ocean-primary: #ABE1FA;
    --ocean-accent: #53CFFE;
    --ocean-sidebar: #4BC6FF;
    --ocean-light: #E5F6FF;
    --wave-gradient: linear-gradient(135deg, #1B8DE6 0%, #53CFFE 45%, #ABE1FA 100%);
    --dark-bg: #0F5EAA;
}

body {
    font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    display: flex;
}

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

/* 左サイドバー */
.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 200px;
    height: 100vh;
    background: var(--ocean-sidebar);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    border-right: 3px solid var(--ocean-accent);
}

.sidebar-header {
    padding: 40px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
    font-size: 20px;
    font-weight: bold;
    color: white;
    letter-spacing: 2px;
    text-align: center;
    line-height: 1.4;
}

.sidebar-nav {
    flex: 1;
}

.sidebar-nav ul {
    list-style: none;
}

.sidebar-nav li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-nav a {
    display: flex;
    align-items: center;
    min-height: 60px;
    padding: 0 25px;
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
}

.sidebar-nav a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--ocean-light);
    transform: scaleY(0);
    transition: transform 0.3s;
}

.sidebar-nav a:hover {
    background: rgba(0, 168, 204, 0.1);
}

.sidebar-nav a:hover::before {
    transform: scaleY(1);
}

/* メインコンテンツエリア */
.main-content {
    margin-left: 200px;
    flex: 1;
    width: calc(100% - 200px);
}

/* パンくずリスト */
.breadcrumb {
    padding: 20px 30px;
    background: #f8f9fa;
}

.breadcrumb a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: var(--ocean-accent);
    text-decoration: underline;
}

/* ハンバーガーメニュー（モバイル用） */
.hamburger {
    display: none;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1001;
    flex-direction: column;
    background: var(--ocean-deep);
    border: 2px solid var(--ocean-accent);
    border-radius: 4px;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* メインビジュアル */
.hero {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 100px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,0 Q300,60 600,30 T1200,0 L1200,120 L0,120 Z' fill='%23ffffff'/%3E%3C/svg%3E");
    background-size: cover;
    z-index: 5;
}

.hero-slider {
    position: relative;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--wave-gradient);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.hero-overlay {
    position: absolute;
    left: 60px;
    bottom: 120px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    color: #fff;
    padding-left: 22px;
    max-width: 520px;
    z-index: 10;
}

.hero-overlay::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    border-radius: 2px;
    background: linear-gradient(180deg, var(--ocean-light), var(--ocean-accent));
}

.hero-overlay-label {
    font-size: 12px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}

.hero-overlay h2 {
    font-size: 32px;
    line-height: 1.4;
    letter-spacing: 0.03em;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.55);
}

.workplace-highlights {
    position: relative;
    padding: 110px 0 96px;
    background: linear-gradient(150deg, #1B8DE6 0%, #53CFFE 45%, #ABE1FA 100%);
    color: #f5f7fa;
    overflow: hidden;
}

.workplace-highlights::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1600&q=60') center/cover no-repeat;
    opacity: 0.18;
    mix-blend-mode: lighten;
    pointer-events: none;
}

.workplace-highlights .container {
    position: relative;
    z-index: 1;
}

.section-heading {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 56px;
}

.section-heading h2 {
    font-size: 34px;
    margin: 20px 0 16px;
    letter-spacing: 0.04em;
}

.section-lead {
    font-size: 16px;
    line-height: 1.9;
    color: rgba(245, 247, 250, 0.85);
}

.highlight-panels {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.highlight-card {
    position: relative;
    min-height: 320px;
    padding: 32px;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.22), inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.highlight-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--card-image, none);
    background-size: cover;
    background-position: center;
    filter: saturate(1.2) brightness(0.9);
    opacity: 0.65;
    transform: scale(1.1);
    z-index: 0;
}

.highlight-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(3, 25, 40, 0.15) 0%, rgba(3, 25, 40, 0.55) 60%, rgba(3, 25, 40, 0.9) 100%);
    backdrop-filter: blur(2px);
    z-index: 1;
}

.highlight-card__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 14px;
    height: 100%;
}

.highlight-card h3 {
    font-size: 22px;
    line-height: 1.55;
    margin: 4px 0;
}

.highlight-card p {
    font-size: 15px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.82);
}

.card-meta {
    margin-top: auto;
    list-style: none;
    padding: 0;
    display: grid;
    gap: 8px;
}

.card-meta li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    letter-spacing: 0.01em;
    color: rgba(255, 255, 255, 0.75);
}

.card-meta li::before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(64, 181, 219, 0.9), rgba(11, 107, 152, 0.9));
    box-shadow: 0 6px 16px rgba(7, 70, 104, 0.45);
}

.highlight-stats {
    margin: 58px auto 0;
    max-width: 780px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    text-align: center;
    list-style: none;
    padding: 0;
}

.highlight-stats li {
    padding: 24px 12px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 12px;
    background: rgba(3, 32, 50, 0.55);
    backdrop-filter: blur(6px);
}

.stat-value {
    display: block;
    font-size: 30px;
    font-weight: 600;
    letter-spacing: 0.12em;
}

.stat-label {
    display: block;
    margin-top: 8px;
    font-size: 12px;
    letter-spacing: 0.26em;
    color: rgba(255, 255, 255, 0.64);
    text-transform: uppercase;
}

.slider-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s;
}

.slider-indicator.active {
    background: white;
}


/* 職場の魅力に関するテキスト */
.workplace-appeal {
    padding: 48px 0;
    background: #f3f8fc;
}

.appeal-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 640px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.appeal-list li {
    padding-left: 26px;
    font-size: 1.05rem;
    color: #1f2d3d;
    line-height: 1.7;
    position: relative;
}

.appeal-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: 2px solid var(--ocean-deep);
}

.appeal-highlight {
    position: relative;
    display: inline-block;
    padding-bottom: 4px;
    font-weight: 600;
    color: #082038;
}

.appeal-highlight::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 12px;
    background: url("data:image/svg+xml,%3Csvg width='120' height='12' viewBox='0 0 120 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 6c10-6 20 6 30 0s20 6 30 0 20 6 30 0 20 6 30 0v6H0z' fill='%231B8DE6' fill-opacity='0.25'/%3E%3C/svg%3E") repeat-x;
    background-size: 80px 12px;
    border-radius: 999px;
}

@media (max-width: 640px) {
    .workplace-appeal {
        padding: 56px 0;
    }

    .appeal-list li {
        padding-left: 24px;
    }
}

/* 募集告知 */
.recruit-announcement {
    position: relative;
    padding: 110px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
}

.recruit-announcement .container {
    position: relative;
    z-index: 1;
}

.recruit-announcement .section-heading {
    margin-bottom: 64px;
}

.recruit-announcement .section-heading h2 {
    color: #04283c;
}

.recruit-table-container {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(3, 36, 54, 0.15);
    border: 1px solid rgba(3, 88, 113, 0.08);
}

.recruit-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.recruit-table tr {
    position: relative;
}

.recruit-table tr::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 24px;
    right: 24px;
    height: 1px;
    background: linear-gradient(90deg, rgba(3, 88, 113, 0.08) 0%, rgba(3, 88, 113, 0.15) 50%, rgba(3, 88, 113, 0.08) 100%);
}

.recruit-table tr:last-child::after {
    display: none;
}

.recruit-table th,
.recruit-table td {
    padding: 28px 32px;
    text-align: left;
    vertical-align: middle;
}

.recruit-table th {
    width: 200px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ocean-deep);
    background: linear-gradient(135deg, rgba(3, 54, 84, 0.04) 0%, rgba(3, 88, 113, 0.06) 100%);
    position: relative;
}

.recruit-table th::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--ocean-deep), var(--ocean-accent));
}

.recruit-table td {
    font-size: 16px;
    line-height: 1.75;
    color: #2c3e50;
    font-weight: 400;
}

.recruit-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--ocean-deep), var(--ocean-accent));
    color: white;
    text-decoration: none;
    border-radius: 0;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.06em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 168, 204, 0.25);
}

.recruit-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 168, 204, 0.35);
    background: linear-gradient(135deg, var(--ocean-accent), var(--ocean-light));
}

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

.section-heading--left {
    text-align: left;
    margin: 0 0 56px;
}

.section-heading--left .section-label {
    margin-left: 0;
}

.section-lead--dark {
    color: rgba(38, 51, 63, 0.85);
}

.section-heading--center .section-lead {
    color: inherit;
}

/* ナビゲーション */
.navigation-showcase {
    position: relative;
    padding: 110px 0;
    background: linear-gradient(155deg, #1B8DE6 0%, #53CFFE 45%, #ABE1FA 100%);
    color: #f2f8fb;
    overflow: hidden;
}

.navigation-showcase::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(83, 207, 254, 0.35), transparent 55%), radial-gradient(circle at bottom right, rgba(24, 123, 177, 0.55), transparent 60%);
    opacity: 0.9;
}

.navigation-showcase .container {
    position: relative;
    z-index: 1;
}

.navigation-showcase__inner {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 48px;
    align-items: center;
}

.navigation-copy {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.navigation-copy h2 {
    font-size: 32px;
    line-height: 1.4;
    letter-spacing: 0.03em;
}

.navigation-copy p {
    font-size: 15px;
    line-height: 1.9;
    color: rgba(242, 248, 251, 0.8);
}

.navigation-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.navigation-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 30px;
    border-radius: 18px;
    text-decoration: none;
    color: #0F5EAA;
    background: rgba(245, 240, 230, 0.95);
    border: 1px solid rgba(200, 190, 180, 0.4);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.navigation-card::after {
    content: '';
    position: absolute;
    inset: -20% -40% auto auto;
    height: 140px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.45), transparent 55%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.navigation-card__label {
    font-size: 12px;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: rgba(15, 94, 170, 0.6);
}

.navigation-card h3 {
    font-size: 20px;
    line-height: 1.6;
}

.navigation-card p {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(44, 62, 80, 0.75);
}

.navigation-card:hover {
    transform: translateY(-6px);
    border-color: rgba(200, 190, 180, 0.6);
    background: rgba(250, 245, 235, 1);
}

.navigation-card:hover::after {
    opacity: 1;
}

/* コンパクトCTA - 3カラムボックススタイル */
.compact-cta {
    position: relative;
    padding: 80px 0;
    background: #ffffff;
}

.cta-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.cta-box {
    padding: 40px 32px;
    border-radius: 0;
    text-align: left;
    transition: transform 0.3s ease;
}

.cta-box--dark {
    background: #04283c;
    color: #ffffff;
}

.cta-box--accent {
    background: var(--ocean-deep);
    color: #ffffff;
}

.cta-box:hover {
    transform: translateY(-4px);
}

.cta-box__icon {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.cta-box__icon svg {
    width: 28px;
    height: 28px;
}

.cta-box h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: 0.02em;
}

.cta-box p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.9;
}

.cta-box__link {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-decoration: underline;
    color: inherit;
    transition: opacity 0.3s ease;
}

.cta-box__link:hover {
    opacity: 0.7;
}

/* CTA */
.cta {
    position: relative;
    padding: 100px 0;
    text-align: center;
    background:
        linear-gradient(140deg, rgba(255, 255, 255, 0.75), rgba(212, 238, 246, 0.78)),
        url('https://images.unsplash.com/photo-1505142468610-359e7d316be0?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
}

.cta::before {
    content: '';
    position: absolute;
    top: -60px;
    left: 0;
    width: 100%;
    height: 60px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,60 Q300,0 600,30 T1200,60 L1200,0 L0,0 Z' fill='%232A7DB8'/%3E%3C/svg%3E");
    background-size: cover;
}

.cta h2 {
    font-size: 34px;
    margin-bottom: 22px;
    color: #06324d;
}

.cta-text {
    max-width: 720px;
    margin: 0 auto 42px;
    font-size: 16px;
    line-height: 1.9;
    color: #3c4a56;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #0F5EAA, #52C4F9);
    color: white;
    border: 1px solid transparent;
    border-radius: 0;
    padding: 18px 52px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    text-decoration: none;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 30px rgba(10, 97, 130, 0.3);
}

/* インタビュー */
.interviews {
    position: relative;
    padding: 110px 0;
    background: #f4f8fb;
}

.interviews .section-heading {
    margin-bottom: 50px;
}

.interview-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.interview-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 380px;
    padding: 32px;
    border-radius: 20px;
    text-decoration: none;
    overflow: hidden;
    color: #f6fbff;
    background: rgba(0, 0, 0, 0.4);
    transition: transform 0.35s ease;
}

.interview-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--interview-image, none);
    background-size: cover;
    background-position: center;
    transform: scale(1.08);
    filter: saturate(1.1) brightness(0.85);
    transition: transform 0.35s ease;
}

.interview-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(3, 22, 38, 0.1) 0%, rgba(3, 22, 38, 0.6) 60%, rgba(3, 22, 38, 0.95) 100%);
    z-index: 1;
    transition: opacity 0.35s ease;
}

.interview-card__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.interview-card__role {
    font-size: 12px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(246, 251, 255, 0.75);
}

.interview-card h3 {
    font-size: 22px;
    line-height: 1.6;
}

.interview-card p {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(246, 251, 255, 0.82);
}

.interview-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 13px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(246, 251, 255, 0.8);
}

.interview-link::after {
    content: '';
    width: 32px;
    height: 1px;
    background: rgba(246, 251, 255, 0.6);
    transition: width 0.3s ease;
}

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

.interview-card:hover::before {
    transform: scale(1.14);
}

.interview-card:hover .interview-card__overlay {
    opacity: 0.85;
}

.interview-card:hover .interview-link::after {
    width: 48px;
}

/* 職場の特徴 */
.workplace-features {
    position: relative;
    padding: 110px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f1f6fa 100%);
}

.workplace-features .section-heading {
    margin-bottom: 64px;
}

.feature-layout {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

/* 統合カード */
.feature-card {
    position: relative;
    display: grid;
    gap: 0;
    align-items: stretch;
    border-radius: 20px;
    overflow: hidden;
    background: white;
    box-shadow: 0 16px 48px rgba(3, 36, 54, 0.12);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 64px rgba(3, 36, 54, 0.18);
}

/* 画像左配置 */
.feature-card--image-left {
    grid-template-columns: 1.2fr 1fr;
}

/* 画像右配置 */
.feature-card--image-right {
    grid-template-columns: 1fr 1fr;
}

/* 中サイズカード */
.feature-card--medium .feature-card__image {
    min-height: 320px;
}

/* 画像エリア */
.feature-card__image {
    position: relative;
    min-height: 380px;
    overflow: hidden;
}

.feature-card__image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--card-image, none);
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    filter: saturate(1.2) brightness(0.92);
    transition: transform 0.5s ease, filter 0.5s ease;
}

.feature-card:hover .feature-card__image::before {
    transform: scale(1.12);
    filter: saturate(1.3) brightness(0.98);
}

.feature-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(3, 25, 40, 0.08) 0%, rgba(3, 25, 40, 0.35) 50%, rgba(3, 25, 40, 0.65) 100%);
    z-index: 1;
    transition: background 0.35s ease;
}

.feature-card:hover .feature-card__overlay {
    background: linear-gradient(180deg, rgba(3, 25, 40, 0.15) 0%, rgba(3, 25, 40, 0.45) 50%, rgba(3, 25, 40, 0.75) 100%);
}

/* テキストエリア */
.feature-card__text {
    padding: 48px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
    background: white;
}

.feature-card__text h3 {
    font-size: 26px;
    line-height: 1.5;
    color: var(--ocean-deep);
    letter-spacing: 0.02em;
}

.feature-card__text p {
    font-size: 15px;
    line-height: 1.9;
    color: #3c4a56;
}

/* フッターCTA */
.footer-cta {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(160deg, #1B8DE6 0%, #53CFFE 45%, #ABE1FA 100%);
    color: white;
    position: relative;
}

.footer-cta::before {
    content: '';
    position: absolute;
    top: -60px;
    left: 0;
    width: 100%;
    height: 60px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,60 Q300,0 600,30 T1200,60 L1200,0 L0,0 Z' fill='%23f4f8fb'/%3E%3C/svg%3E");
    background-size: cover;
}

.footer-cta h2 {
    font-size: 32px;
    margin-bottom: 22px;
    letter-spacing: 0.04em;
}

.footer-cta-text {
    max-width: 660px;
    margin: 0 auto 42px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.75);
}

.footer-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.footer-cta .cta-button {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.45);
    color: #fff;
}

.footer-cta .cta-button:hover {
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 18px 30px rgba(8, 77, 108, 0.35);
}

.footer-cta .cta-button.secondary {
    border-color: rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.8);
}

.footer-cta .cta-button.secondary:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.55);
}

/* レスポンシブ */
@media (max-width: 1024px) {
    .hero-overlay {
        left: 40px;
        bottom: 90px;
        max-width: 380px;
        padding-left: 20px;
    }

    .hero-overlay h2 {
        font-size: 28px;
    }

    .appeal-list {
        gap: 18px;
    }

    .cta-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

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

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

    .navigation-showcase__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .interview-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
    }

    .feature-card--image-left,
    .feature-card--image-right {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
    }

    /* 画像を常に上に配置 */
    .feature-card--image-left .feature-card__image,
    .feature-card--image-right .feature-card__image {
        order: 1;
    }

    .feature-card--image-left .feature-card__text,
    .feature-card--image-right .feature-card__text {
        order: 2;
    }

    .feature-card__image {
        min-height: 280px;
    }

    .feature-card--medium .feature-card__image {
        min-height: 240px;
    }

    .feature-card__text {
        padding: 36px 32px;
    }

    .footer-cta h2 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    body {
        display: block;
    }

    .sidebar {
        position: fixed;
        left: -100%;
        width: 250px;
        transition: left 0.3s;
        z-index: 1001;
    }

    .sidebar.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .main-content {
        margin-left: 0;
        width: 100%;
    }

    .hero {
        height: 420px;
    }

    .workplace-appeal {
        padding: 80px 20px;
    }

    .appeal-list {
        gap: 16px;
    }

    .appeal-list li {
        font-size: 15px;
        padding-left: 28px;
    }

    .compact-cta {
        padding: 60px 20px;
    }

    .cta-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .cta-box {
        padding: 32px 28px;
    }

    .workplace-highlights,
    .recruit-announcement,
    .cta,
    .interviews,
    .workplace-features,
    .footer-cta,
    .navigation-showcase {
        padding: 60px 20px;
    }

    .hero-overlay {
        left: 18px;
        right: 18px;
        bottom: 28px;
        max-width: none;
        padding-left: 18px;
        gap: 8px;
    }

    .hero-overlay::before {
        width: 3px;
    }

    .hero-overlay h2 {
        font-size: 24px;
        line-height: 1.4;
    }

    .highlight-panels {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .highlight-card {
        min-height: 0;
        padding: 28px;
    }

    .card-meta {
        gap: 12px;
    }

    .highlight-stats {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .recruit-table th,
    .recruit-table td {
        display: block;
        width: 100%;
        padding: 20px 24px;
    }

    .recruit-table th {
        border-bottom: none;
    }

    .recruit-table th::before {
        width: 3px;
    }

    .recruit-link {
        width: 100%;
        justify-content: center;
    }

    .navigation-showcase__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .navigation-card {
        text-align: left;
        padding: 24px;
    }

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

    .feature-layout {
        gap: 24px;
    }

    .feature-card__image {
        min-height: 240px;
    }

    .feature-card--medium .feature-card__image {
        min-height: 220px;
    }

    .feature-card__text {
        padding: 32px 28px;
    }

    .feature-card__text h3 {
        font-size: 22px;
    }

    .feature-card__text p {
        font-size: 14px;
    }

    .cta h2,
    .footer-cta h2 {
        font-size: 24px;
    }

    .cta-button {
        padding: 16px 30px;
        font-size: 14px;
    }

    .footer-cta-actions {
        flex-direction: column;
    }
}

@media (max-width: 540px) {
    .navigation-card h3 {
        font-size: 18px;
    }

    .interview-card {
        min-height: 300px;
        padding: 26px;
    }

    .feature-card__image {
        min-height: 200px;
    }

    .feature-card--medium .feature-card__image {
        min-height: 180px;
    }

    .feature-card__text {
        padding: 28px 24px;
    }

    .feature-card__text h3 {
        font-size: 20px;
    }

    .feature-card__text p {
        font-size: 13px;
    }

    .recruit-table th,
    .recruit-table td {
        padding: 16px 20px;
        font-size: 14px;
    }
}
