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

/* ========== アニメーション定義 ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes floatScroll {

    0%,
    100% {
        /* transform: translateY(0); */
    }

    50% {
        /* transform: translateY(6px); */
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes supportGlow {

    0%,
    100% {
        text-shadow: 0 0 0 rgba(255, 255, 255, 0);
        transform: translateY(0);
    }

    50% {
        text-shadow: 0 10px 24px rgba(255, 255, 255, 0.18);
        transform: translateY(-3px);
    }
}

@keyframes supportLine {
    0% {
        transform: scaleX(0.2);
        opacity: 0.35;
    }

    50% {
        transform: scaleX(1);
        opacity: 1;
    }

    100% {
        transform: scaleX(0.2);
        opacity: 0.35;
    }
}

/* ヒーローセクション入場アニメーション */
.fv-title {
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0s both;
}

.fv-subtitle {
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.5s both;
}

.fv-button {
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.8s both;
}

/* スクロールアニメーション（初期状態：非表示） */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* カードの順次アニメーション */
.animate-on-scroll.visible .card:nth-child(1),
.animate-on-scroll.visible .value-item-small:nth-child(1) {
    transition-delay: 0.1s;
}

.animate-on-scroll.visible .card:nth-child(2),
.animate-on-scroll.visible .value-item-small:nth-child(2) {
    transition-delay: 0.2s;
}

.animate-on-scroll.visible .card:nth-child(3),
.animate-on-scroll.visible .value-item-small:nth-child(3) {
    transition-delay: 0.3s;
}

.animate-on-scroll.visible .card:nth-child(4),
.animate-on-scroll.visible .value-item-small:nth-child(4) {
    transition-delay: 0.4s;
}

.animate-on-scroll.visible .card:nth-child(5) {
    transition-delay: 0.5s;
}

.animate-on-scroll.visible .card:nth-child(6) {
    transition-delay: 0.6s;
}

.animate-on-scroll.visible .card:nth-child(7) {
    transition-delay: 0.7s;
}

.animate-on-scroll.visible .card:nth-child(8) {
    transition-delay: 0.8s;
}

.animate-on-scroll .card,
.animate-on-scroll .value-item-small {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.visible .card,
.animate-on-scroll.visible .value-item-small {
    opacity: 1;
    transform: translateY(0);
}

/* 選考フローステップの順次アニメーション */
.animate-on-scroll .flow-step {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll .flow-arrow {
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.visible .flow-step:nth-child(1) {
    transition-delay: 0.1s;
}

.animate-on-scroll.visible .flow-arrow:nth-child(2) {
    transition-delay: 0.25s;
}

.animate-on-scroll.visible .flow-step:nth-child(3) {
    transition-delay: 0.35s;
}

.animate-on-scroll.visible .flow-arrow:nth-child(4) {
    transition-delay: 0.5s;
}

.animate-on-scroll.visible .flow-step:nth-child(5) {
    transition-delay: 0.6s;
}

.animate-on-scroll.visible .flow-arrow:nth-child(6) {
    transition-delay: 0.75s;
}

.animate-on-scroll.visible .flow-step:nth-child(7) {
    transition-delay: 0.85s;
}

.animate-on-scroll.visible .flow-step,
.animate-on-scroll.visible .flow-arrow {
    opacity: 1;
    transform: translateY(0);
}

/* セクションタイトルのアニメーション */
.section-title {
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* カルチャーブロックのアニメーション */
.animate-on-scroll.culture-block {
    transform: translateY(30px) scale(0.98);
}

.animate-on-scroll.culture-block.visible {
    transform: translateY(0) scale(1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #333333;
    line-height: 1.8;
}

:root {
    --surface-radius: 20px;
    --surface-shadow: 0 8px 18px rgba(34, 34, 34, 0.05), 0 1px 6px rgba(34, 34, 34, 0.03);
    --surface-shadow-hover: 0 12px 24px rgba(34, 34, 34, 0.07), 0 2px 8px rgba(34, 34, 34, 0.04);
    --surface-border: 1px solid rgba(15, 23, 42, 0.06);
}

/* メッセージセクション */
.section-message {
    background-color: #FFFFFF;
    padding: 100px 40px;
    text-align: center;
}

.message-block {
    max-width: 800px;
    margin: 0 auto;
}

.message-label {
    font-size: 14px;
    font-weight: 600;
    color: #6B6E76;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.message-lead {
    font-size: 28px;
    font-weight: 700;
    color: #292A2E;
    line-height: 1.8;
}

.sp-br {
    display: none;
}

.message-sub {
    font-size: 16px;
    font-weight: 400;
    color: #505258;
    line-height: 1.8;
    margin-top: 24px;
}

/* CTAバナー */
.section-cta-banner {
    background-color: #333333;
    padding: 80px 40px;
    text-align: center;
}

.cta-banner-text {
    font-size: 24px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 32px;
}

@media (max-width: 768px) {
    .section-message {
        padding: 50px 20px;
    }

    .message-lead {
        font-size: 21px;
        color: #292A2E;
    }

    .sp-br {
        display: inline;
    }

    .section-cta-banner {
        padding: 40px 20px;
    }

    .cta-banner-text {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    br.pc-br {
        display: none;
    }
}

/* セクション共通 */
.section {
    padding: 80px 40px;
    margin-bottom: 0;
}

.section-important {
    padding: 100px 40px;
}

.section-white {
    background-color: #FFFFFF;
}

.section-gray {
    background-color: #F8F9FA;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}

/* セクションタイトル */
.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 40px;
    text-align: center;
}

.section-note {
    font-size: 14px;
    color: #666666;
    text-align: center;
    margin-bottom: 40px;
}

/* サブセクション */
.subsection {
    margin-bottom: 60px;
}

.subsection:last-child {
    margin-bottom: 0;
}

.position-group {
    border-radius: var(--surface-radius);
    padding: 28px 28px 24px;
}

/* プロダクト企画職: ダーク */
.position-group-product {
    background-color: #333333;
}

.position-group-product .subsection-title {
    background-color: #FFFFFF;
    color: #333333;
}

/* カード内文字は通常通り黒（白カード上で可読） */

/* プロダクト企画職: ホバー時は白枠シャドウで背景から浮き上がらせる */
.position-group-product .position-card:hover {
    box-shadow: var(--surface-shadow-hover);
}

/* コーポレート職: ライト + シャドウ */
.position-group-corporate {
    background-color: #C2C2C2;
    box-shadow: var(--surface-shadow);
}

.subsection-title {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    color: #FFFFFF;
    background-color: #333333;
    padding: 6px 20px;
    border-radius: 6px;
    margin-bottom: 10px;
    letter-spacing: 0.05em;
}

.subsection-note {
    font-size: 14px;
    color: #666666;
    margin-bottom: 24px;
    text-align: center;
}

/* カードグリッド */
.card-grid {
    display: grid;
    gap: 24px;
}

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

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.other-businesses {
    margin-top: 32px;
    padding: 24px 28px;
    border-radius: var(--surface-radius);
    background: #ffffff;
    border: var(--surface-border);
    box-shadow: var(--surface-shadow);
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 24px;
    align-items: start;
}

.other-businesses-title {
    font-size: 18px;
    font-weight: 700;
    color: #333333;
    line-height: 1.5;
    margin-bottom: 0;
}

.business-name-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.business-name-item {
    padding: 7px 12px;
    border-radius: 6px;
    background-color: #eeeeee;
    font-size: 14px;
    font-weight: 700;
    color: #333333;
    line-height: 1.3;
    white-space: nowrap;
}

.business-name-item::before {
    content: none;
}

/* カード - Atlassian Design風 */
.card {
    background-color: #FFFFFF;
    border-radius: var(--surface-radius);
    padding: 24px;
    border: var(--surface-border);
    box-shadow: var(--surface-shadow);
    display: flex;
    flex-direction: column;
    transition: transform 0.2s cubic-bezier(0, 0.4, 0, 1),
        box-shadow 0.2s cubic-bezier(0, 0.4, 0, 1);
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: var(--surface-shadow-hover);
}

/* 代表メッセージカードのhoverを無効化 */
.executive-card:hover {
    transform: none;
    box-shadow: var(--surface-shadow);
}

.card-category {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    color: #666666;
    background-color: #F0F1F2;
    border-radius: 4px;
    padding: 2px 8px;
    margin-bottom: 10px;
    letter-spacing: 0.04em;
}

.card-title {
    font-size: 18px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 10px;
}

.card-name {
    font-size: 16px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 8px;
}

.card-department {
    font-size: 14px;
    color: #666666;
    margin-bottom: 16px;
}

.card-text {
    font-size: 16px;
    color: #333333;
    line-height: 1.8;
    flex: 1;
    letter-spacing: -0.01em;
}

/* カード内画像プレースホルダー */
.card-image-placeholder {
    width: 100%;
    height: 200px;
    background-color: #F0F1F2;
    border-radius: var(--surface-radius);
    margin-bottom: 16px;
}

.card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--surface-radius);
    margin-bottom: 16px;
}

.card-image.img-top {
    object-position: center top;
}

.executive-card .card-image,
.interview-card .card-image {
    border-radius: var(--surface-radius) var(--surface-radius) 0 0;
    margin-bottom: 0;
}

.card-icon-placeholder {
    width: 60px;
    height: 60px;
    background-color: #E0E0E0;
    border-radius: 10px;
    margin-bottom: 16px;
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 16px;
}

/* テキストリスト */
.text-list {
    list-style: none;
    margin-bottom: 24px;
}

.text-list li {
    font-size: 16px;
    color: #333333;
    margin-bottom: 16px;
    line-height: 1.8;
}

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

/* 情報ボックス */
.info-box {
    background-color: #f8f8f8;
    border-radius: 10px;
    padding: 0;
    margin-top: 24px;
}

.info-box-text {
    font-size: 14px;
    color: #666666;
    line-height: 1.8;
}

/* バリューリスト */
.value-list {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
}

.value-list li {
    font-size: 16px;
    color: #333333;
    margin-bottom: 16px;
    padding-left: 24px;
    position: relative;
    line-height: 1.8;
    letter-spacing: -0.01em;
}

.value-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background-color: #333333;
    border-radius: 50%;
}

.value-list li:last-child {
    margin-bottom: 0;
}

/* 募集ポジション */
.position-block {
    background-color: #FFFFFF;
    border-radius: 10px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: var(--surface-shadow);
}

.position-block:last-of-type {
    margin-bottom: 0;
}

.position-title {
    font-size: 20px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 24px;
}

.position-leader {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.leader-image-placeholder {
    width: 60px;
    height: 60px;
    background-color: #E0E0E0;
    border-radius: 50%;
    flex-shrink: 0;
}

.leader-info {
    flex: 1;
}

.leader-name {
    font-size: 16px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 4px;
}

.leader-role {
    font-size: 14px;
    color: #666666;
}

.position-message {
    border-left: 4px solid #E0E0E0;
    padding-left: 20px;
    margin: 0 0 24px 0;
}

.position-message p {
    font-size: 16px;
    color: #333333;
    line-height: 1.8;
}

/* 選考フロー */
.flow-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.flow-step {
    text-align: center;
    flex: 0 0 auto;
}

.flow-number {
    width: 40px;
    height: 40px;
    background-color: #333333;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    margin: 0 auto 8px;
}

.flow-title {
    font-size: 16px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 4px;
}

.flow-text {
    font-size: 14px;
    color: #666666;
}

.flow-arrow {
    font-size: 24px;
    color: #333333;
    flex: 0 0 auto;
}

/* 応募リスト */
.application-list {
    list-style: decimal;
    padding-left: 24px;
    margin-bottom: 40px;
}

.application-list li {
    font-size: 16px;
    color: #333333;
    margin-bottom: 16px;
    line-height: 1.8;
}

.application-list li:last-child {
    margin-bottom: 0;
}

/* CTAボタン */
.cta-container {
    text-align: center;
}

.cta-button {
    display: inline-block;
    background-color: #333333;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    padding: 16px 48px;
    border-radius: 9999px;
    transition: transform 0.2s cubic-bezier(0, 0.4, 0, 1),
        box-shadow 0.2s cubic-bezier(0, 0.4, 0, 1),
        background-color 0.2s cubic-bezier(0, 0.4, 0, 1);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--surface-shadow-hover);
    background-color: #444444;
}

/* レスポンシブ - タブレット */
@media (max-width: 768px) {
    .section {
        padding: 40px 20px;
        margin-bottom: 0;
    }

    .section-important {
        padding: 80px 20px;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .grid-2,
    .grid-3,
    .card-grid.grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .flow-container {
        flex-direction: column;
    }

    .flow-arrow {
        transform: rotate(90deg);
    }

    .card-grid {
        gap: 16px;
    }

    .fv-content {
        padding: 0 24px;
    }

    .position-group {
        padding: 20px 16px 16px;
    }
}

/* レスポンシブ - スマホ */
@media (max-width: 480px) {

    .grid-2,
    .grid-3,
    .grid-4,
    .card-grid.grid-3,
    .card-grid.grid-2 {
        grid-template-columns: 1fr;
    }

    .other-businesses {
        padding: 22px 20px;
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .other-businesses-title {
        font-size: 18px;
    }

    .business-name-list {
        gap: 8px;
    }

    .business-name-item {
        padding: 7px 10px;
        font-size: 13px;
        white-space: normal;
    }
}

/* 選考フロー */
.flow-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.flow-step {
    text-align: center;
    flex: 0 0 auto;
    max-width: 200px;
}

.flow-number {
    width: 50px;
    height: 50px;
    background-color: #333333;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin: 0 auto 12px;
    box-shadow: var(--surface-shadow);
}

.flow-title {
    font-size: 16px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 8px;
}

.flow-text {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
}

.flow-arrow {
    font-size: 24px;
    color: #333333;
    flex: 0 0 auto;
    font-weight: 700;
}

/* レスポンシブ */
@media (max-width: 768px) {
    .flow-container {
        flex-direction: column;
        gap: 16px;
    }

    .flow-arrow {
        transform: rotate(90deg);
    }

    .flow-step {
        max-width: 100%;
    }
}

/* 応募リスト */
.application-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 40px;
    counter-reset: application-counter;
}

.application-list li {
    font-size: 16px;
    color: #333333;
    margin-bottom: 20px;
    line-height: 1.8;
    padding-left: 60px;
    position: relative;
    counter-increment: application-counter;
}

.application-list li::before {
    content: counter(application-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background-color: #333333;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    box-shadow: var(--surface-shadow);
}

.application-list li:last-child {
    margin-bottom: 0;
}

/* バリューリスト */
.value-list {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 0;
}

.value-list li {
    font-size: 16px;
    color: #333333;
    margin-bottom: 20px;
    padding-left: 24px;
    position: relative;
    line-height: 1.8;
}

.value-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background-color: #333333;
    border-radius: 50%;
}

.value-list li:last-child {
    margin-bottom: 0;
}

/* テキストリスト（勤務条件用） */
.text-list {
    list-style: none;
    margin-bottom: 24px;
    padding-left: 0;
}

.text-list li {
    font-size: 16px;
    color: #333333;
    margin-bottom: 16px;
    line-height: 1.8;
    padding-left: 32px;
    position: relative;
}

.text-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background-color: #333333;
    border-radius: 50%;
}

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

/* ヘッダー */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: none;
    z-index: 1000;
}

.header-container {
    max-width: none;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    font-size: 24px;
    font-weight: 700;
    color: #333333;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.header-nav {
    display: flex;
    gap: 32px;
    align-items: center;
}

.header-nav a {
    font-size: 16px;
    color: #333333;
    text-decoration: none;
    position: relative;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-nav a:not(.header-cta)::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #333333;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-nav a:not(.header-cta):hover {
    color: #666666;
}

.header-nav a:not(.header-cta):hover::after {
    width: 100%;
}



/* ファーストビュー */
.fv {
    position: relative;
    height: calc(100svh - 200px);
    min-height: 600px;
    margin: 100px 40px 0;
    background: linear-gradient(rgba(10, 10, 10, 0.15), rgba(10, 10, 10, 0.15)),
        url('img/fv_pc.webp') center/cover no-repeat;
    background-color: #333333;
    border-radius: var(--surface-radius);
    box-shadow: var(--surface-shadow);
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 0;
}

@media (min-width: 1200px) {
    .fv {
        background: linear-gradient(rgba(10, 10, 10, 0.15), rgba(10, 10, 10, 0.15)),
            url('img/fv_pc_la.webp') center/cover no-repeat;
    }
}

@media (max-width: 1024px) {
    .fv {
        margin: 72px 40px 0;
    }

    .header-container {
        padding: 16px 40px;
    }
}

.fv-content {
    color: #FFFFFF;
    background: none;
    text-align: left;
    width: 100%;
    max-width: 1100px;
    padding: 0 40px 60px;
}

.fv-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    opacity: 0.7;
    margin-bottom: 16px;
}

.fv-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 0;
    line-height: 1;
    color: #FFFFFF;
    display: inline;
}

.fv-title-line {
    display: inline;
    background: linear-gradient(to right, #E50111, #F07C4E);
    color: #FFFFFF;
    padding: 8px 16px;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    line-height: 2.1;
}

.fv-subtitle {
    font-size: 16px;
    font-weight: 400;
    opacity: 0.85;
    margin-bottom: 40px;
    line-height: 1.7;
}

.fv-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #FFFFFF;
    color: #333333;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    padding: 16px 48px;
    border-radius: 30px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.fv-button .btn-arrow::before,
.fv-button .btn-arrow::after {
    background-color: #333333;
}

.fv-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--surface-shadow-hover);
}

.fv-scroll {
    display: none;
    position: absolute;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #FFFFFF;
    text-decoration: none;
    z-index: 1;
}

.fv-scroll-text {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: lowercase;
}

.fv-scroll-arrow {
    width: 14px;
    height: 14px;
    border-right: 2px solid #FFFFFF;
    border-bottom: 2px solid #FFFFFF;
    transform: rotate(45deg);
    animation: floatScroll 1.8s ease-in-out infinite;
}

/* 事業紹介カードリンク */
.card-link {
    display: inline-block;
    color: #333333;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    margin-top: 16px;
    transition: opacity 0.3s;
}

.card-link:hover {
    opacity: 0.7;
}

/* カルチャーセクション */
.culture-block {
    margin-bottom: 60px;
    border-radius: 10px;
    overflow: hidden;
}

.culture-block:last-child {
    margin-bottom: 0;
}

/* ========== Mission / Vision - テキストベースレイアウト ========== */
.philosophy-mv-row {
    display: flex;
    gap: 24px;
    align-items: stretch;
    margin-bottom: 40px;
}

.philosophy-mv-row .philosophy-block {
    flex: 1;
    margin-bottom: 0;
    border-bottom: none;
    background: #FFFFFF;
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--surface-shadow);
}

.philosophy-block {
    margin-bottom: 64px;
    padding-bottom: 64px;
    border-bottom: 1px solid #E0E0E0;
}

.philosophy-block:last-of-type {
    border-bottom: none;
    background: #FFFFFF;
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--surface-shadow);
}

.philosophy-header {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 24px;
}

.philosophy-label {
    font-size: 40px;
    font-weight: 700;
    color: #333333;
    line-height: 1;
}

.philosophy-sub {
    font-size: 14px;
    color: #666666;
    line-height: 1.5;
    display: none;
}

.philosophy-main {
    font-size: 36px;
    font-weight: 700;
    color: #333333;
    line-height: 1.6;
    margin-bottom: 24px;
}

.philosophy-desc {
    font-size: 15px;
    color: #666666;
    line-height: 2;
    max-width: 800px;
}

/* Value リスト */
.philosophy-values {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.philosophy-value-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 22px 0;
    border-bottom: 1px solid #E0E0E0;
}

.philosophy-value-item:first-child {
    padding-top: 0;
}

.philosophy-value-item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.philosophy-value-num {
    width: 40px;
    height: 40px;
    border: 2px solid #333333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    background-color: #333333;
    color: #FFFFFF;
    flex-shrink: 0;
}

.philosophy-value-body {
    flex: 1;
}

.philosophy-value-title {
    font-size: 20px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 4px;
}

.philosophy-value-jp {
    font-size: 15px;
    font-weight: 700;
    color: #333333;
    margin-left: 12px;
}

.philosophy-value-desc {
    font-size: 15px;
    color: #666666;
    line-height: 1.8;
}

/* Anti-Value リスト */
.philosophy-antivalue-list {
    list-style: none;
    padding-left: 0;
    counter-reset: antivalue;
}

.philosophy-antivalue-list li {
    font-size: 16px;
    color: #333333;
    line-height: 1.8;
    margin-bottom: 16px;
    padding-left: 40px;
    position: relative;
    counter-increment: antivalue;
}

.philosophy-antivalue-list li::before {
    content: counter(antivalue) ".";
    position: absolute;
    left: 0;
    font-weight: 700;
    color: #333333;
}

.philosophy-antivalue-list li:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .philosophy-mv-row {
        flex-direction: column;
    }

    .philosophy-mv-row .philosophy-block,
    .philosophy-block:last-of-type {
        padding: 24px;
    }

    .philosophy-value-item {
        gap: 16px;
        padding: 16px;
    }

    .philosophy-value-title {
        font-size: 17px;
    }

    .philosophy-value-jp {
        display: block;
        margin-left: 0;
        margin-top: 2px;
    }
}

/* Value Block */
.value-block {
    background-color: #FFFFFF;
    box-shadow: var(--surface-shadow);
}

.value-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.value-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.value-number {
    width: 50px;
    height: 50px;
    background-color: #FFFFFF;
    color: #333333;
    border: 3px solid #333333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.value-content {
    flex: 1;
}

.value-title {
    font-size: 20px;
    font-weight: 700;
    color: #333333;
    background-color: #FFE066;
    display: inline-block;
    padding: 4px 12px;
    margin-bottom: 8px;
}

.value-subtitle {
    font-size: 18px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 8px;
}

.value-description {
    font-size: 16px;
    color: #333333;
    line-height: 1.8;
}

/* Anti-Value Block */
.anti-value-block {
    background: linear-gradient(135deg, rgba(139, 69, 69, 0.9) 0%, rgba(178, 34, 34, 0.9) 100%),
        url('anti-value-bg.jpg') center/cover;
    background-color: #8B4545;
}

.anti-value-block .culture-label {
    color: #FFFFFF;
}

.anti-value-list {
    list-style: none;
    padding-left: 0;
    counter-reset: anti-value-counter;
}

.anti-value-list li {
    font-size: 18px;
    color: #FFFFFF;
    margin-bottom: 16px;
    padding-left: 40px;
    position: relative;
    line-height: 1.8;
    counter-increment: anti-value-counter;
}

.anti-value-list li::before {
    content: counter(anti-value-counter) ".";
    position: absolute;
    left: 0;
    font-weight: 700;
}

.anti-value-list li:last-child {
    margin-bottom: 0;
}

/* 働く環境 - 勤務条件 */
.work-conditions-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 40px;
    align-items: start;
}

.work-conditions-image {
    width: 100%;
}

.work-image-placeholder {
    width: 100%;
    height: 300px;
    background-color: #E0E0E0;
    border-radius: 10px;
}

.work-conditions-text {
    flex: 1;
}

/* 選考フロー（前回の修正を含む） */
.flow-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.flow-step {
    text-align: center;
    flex: 0 0 auto;
    max-width: 200px;
}

.flow-number {
    width: 50px;
    height: 50px;
    background-color: #333333;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin: 0 auto 12px;
    box-shadow: var(--surface-shadow);
}

.flow-title {
    font-size: 16px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 8px;
}

.flow-text {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
}

.flow-arrow {
    font-size: 24px;
    color: #333333;
    flex: 0 0 auto;
    font-weight: 700;
}

/* 応募リスト（前回の修正を含む） */
.application-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 40px;
    counter-reset: application-counter;
}

.application-list li {
    font-size: 16px;
    color: #333333;
    margin-bottom: 20px;
    line-height: 1.8;
    padding-left: 60px;
    position: relative;
    counter-increment: application-counter;
}

.application-list li::before {
    content: counter(application-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background-color: #333333;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    box-shadow: var(--surface-shadow);
}

.application-list li:last-child {
    margin-bottom: 0;
}

/* バリューリスト（前回の修正を含む） */
.value-list {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 0;
}

.value-list li {
    font-size: 16px;
    color: #333333;
    margin-bottom: 20px;
    padding-left: 24px;
    position: relative;
    line-height: 1.8;
}

.value-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background-color: #333333;
    border-radius: 50%;
}

.value-list li:last-child {
    margin-bottom: 0;
}

/* テキストリスト */
.text-list {
    list-style: none;
    margin-bottom: 24px;
    padding-left: 0;
}

.text-list li {
    font-size: 16px;
    color: #333333;
    margin-bottom: 16px;
    line-height: 1.8;
    padding-left: 32px;
    position: relative;
}

.text-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background-color: #333333;
    border-radius: 50%;
}

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

/* レスポンシブ - タブレット */
@media (max-width: 768px) {
    .fv {
        height: calc(100svh - 100px);
        min-height: auto;
        margin: 72px 20px 0;
        padding: 0;
        background: linear-gradient(rgba(10, 10, 10, 0.15), rgba(10, 10, 10, 0.15)),
            url('img/fv_sp.webp') center/cover no-repeat;
        align-items: flex-end;
        justify-content: center;
    }

    .recruit-top .header {
        background-color: rgba(255, 255, 255, 0.95);
        box-shadow: none;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    .fv-content {
        width: 100%;
        max-width: none;
        margin: 0;
        padding: 0 30px 50px;
        transform: none;
    }

    .fv-title {
        font-size: 22px;
        line-height: 1;
        margin-bottom: 0;
        letter-spacing: -0.01em;
    }

    .fv-title-line {
        padding: 6px 14px;
        line-height: 2.4;
    }

    .fv-subtitle {
        font-size: 15px;
        line-height: 1.8;
        margin-bottom: 28px;
    }

    .fv-button {
        font-size: 16px;
        padding: 15px 40px;
    }

    .fv-scroll {
        display: inline-flex;
        bottom: 34px;
        gap: 6px;
    }

    .fv-scroll-text {
        font-size: 13px;
    }

    .fv-scroll-arrow {
        width: 16px;
        height: 16px;
        border-right-width: 3px;
        border-bottom-width: 3px;
        transform: rotate(45deg) translateY(-2px);
    }

    .section {
        padding: 40px 20px;
        margin-bottom: 0;
    }

    .section-important {
        padding: 50px 20px;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .grid-2,
    .grid-3,
    .card-grid.grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .card-grid {
        gap: 30px;
    }

    .value-list li {
        font-size: 15px;
        line-height: 1.65;
        letter-spacing: -0.02em;
        white-space: nowrap;
        margin-bottom: 10px;
    }

    .flow-container {
        flex-direction: column;
        gap: 16px;
    }

    .flow-arrow {
        transform: rotate(90deg);
    }

    .flow-step {
        max-width: 100%;
    }

    .card-grid {
        gap: 16px;
    }

    .culture-main-text {
        font-size: 28px;
    }

    .philosophy-header {
        flex-direction: column;
        gap: 4px;
    }

    .philosophy-label {
        font-size: 28px;
    }

    .philosophy-main {
        font-size: 24px;
    }

    .philosophy-block {
        margin-bottom: 40px;
        padding-bottom: 40px;
    }

    .work-conditions-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .value-item {
        flex-direction: column;
        gap: 16px;
    }
}

/* レスポンシブ - スマホ */
@media (max-width: 480px) {
    .section-title {
        font-size: 24px;
    }

    .grid-2,
    .grid-3,
    .grid-4,
    .card-grid.grid-3,
    .card-grid.grid-2 {
        grid-template-columns: 1fr;
    }
}

/* ヘッダー - LINEカラー適用 */
.header-cta {
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
    background-color: #06C755 !important;
    color: #FFFFFF !important;
    padding: 10px 30px;
    border-radius: 9999px;
    font-weight: 700;
    border: 2px solid #06C755;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.header-cta:hover {
    background-color: #FFFFFF !important;
    color: #06C755 !important;
    border-color: #06C755;
    transform: translateY(-2px);
    box-shadow: var(--surface-shadow-hover) !important;
}

.header-cta:hover .btn-arrow-white::before,
.header-cta:hover .btn-arrow-white::after {
    background-color: #06C755;
}

/* Value & Anti-Value 2カラムレイアウト */
.value-antivalue-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 60px;
}

/* Value Column（左側） */
.value-column {
    width: 100%;
}

.value-block-small {
    background-color: #FFFFFF;
    box-shadow: var(--surface-shadow);
    border-radius: 10px;
}

.culture-content-small {
    padding: 32px 24px;
}

.culture-label-small {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #333333;
}

.value-items-small {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.value-item-small {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.value-number-small {
    width: 32px;
    height: 32px;
    background-color: #FFFFFF;
    color: #333333;
    border: 2px solid #333333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    flex-shrink: 0;
}

.value-content-small {
    flex: 1;
}

.value-title-small {
    font-size: 16px;
    font-weight: 700;
    color: #333333;
    background-color: #FFE066;
    display: inline-block;
    padding: 2px 8px;
    margin-bottom: 4px;
}

.value-subtitle-small {
    font-size: 14px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 4px;
}

.value-description-small {
    font-size: 14px;
    color: #333333;
    line-height: 1.6;
}

/* Anti-Value Column（右側） */
.antivalue-column {
    width: 100%;
}

.anti-value-block-small {
    background: linear-gradient(135deg, rgba(139, 69, 69, 0.9) 0%, rgba(178, 34, 34, 0.9) 100%);
    background-color: #8B4545;
    border-radius: 10px;
    height: 100%;
}

.culture-label-small-white {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #FFFFFF;
}

.anti-value-list-small {
    list-style: none;
    padding-left: 0;
    counter-reset: anti-value-counter;
}

.anti-value-list-small li {
    font-size: 14px;
    color: #FFFFFF;
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
    line-height: 1.6;
    counter-increment: anti-value-counter;
}

.anti-value-list-small li::before {
    content: counter(anti-value-counter) ".";
    position: absolute;
    left: 0;
    font-weight: 700;
}

.anti-value-list-small li:last-child {
    margin-bottom: 0;
}

/* 応募方法 - 中央配置 */
.application-content {
    max-width: 600px;
    margin: 0 auto;
}

/* レスポンシブ */
@media (max-width: 768px) {
    .value-antivalue-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .culture-main-text {
        font-size: 28px;
    }

    .application-content {
        max-width: 100%;
    }
}

/* 詳細はこちらリンク */
.card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #333333;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    margin-top: 16px;
    transition: opacity 0.3s;
}

.card-link:hover {
    opacity: 0.7;
}

/* ========== 共通：丸の中に矢印アイコン ========== */
.circle-arrow {
    position: relative;
    display: inline-block;
    width: 24px;
    height: 24px;
    background-color: #333333;
    border-radius: 50%;
    flex-shrink: 0;
}

.circle-arrow::before,
.circle-arrow::after {
    content: "";
    position: absolute;
    top: calc(50% - 1px);
    right: 9px;
    width: 8px;
    height: 2px;
    border-radius: 9999px;
    background-color: #FFFFFF;
    transform-origin: calc(100% - 1px) 50%;
}

.circle-arrow::before {
    transform: rotate(45deg);
}

.circle-arrow::after {
    transform: rotate(-45deg);
}

/* パンくずリスト */
.breadcrumb {
    background-color: #f8f8f8;
    padding: 16px 40px;
    margin-top: 80px;
}

.breadcrumb a {
    color: #333333;
    text-decoration: none;
    font-size: 14px;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    color: #666666;
    font-size: 14px;
}

/* 事業概要（シンプル版） */
.business-simple {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.business-lead {
    font-size: 20px;
    font-weight: 700;
    color: #333333;
    line-height: 1.8;
    margin-bottom: 24px;
}

.business-description {
    font-size: 16px;
    color: #333333;
    line-height: 1.8;
}

/* サービス内容グリッド */
.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-item {
    text-align: center;
    padding: 32px 24px;
}

.service-icon-placeholder {
    width: 80px;
    height: 80px;
    background-color: #E0E0E0;
    border-radius: 50%;
    margin: 0 auto 24px;
}

.service-title {
    font-size: 18px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 16px;
}

.service-text {
    font-size: 14px;
    color: #666666;
    line-height: 1.8;
}

/* 実績セクション */
.achievements {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.achievement-item {
    text-align: center;
    padding: 32px 24px;
    background-color: #f8f8f8;
    border-radius: 10px;
}

.achievement-number {
    font-size: 32px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 8px;
}

.achievement-label {
    font-size: 14px;
    color: #666666;
}

/* 特徴セクション */
.features {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.feature-number {
    width: 50px;
    height: 50px;
    background-color: #333333;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
}

.feature-title {
    font-size: 18px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 8px;
}

.feature-text {
    font-size: 14px;
    color: #666666;
    line-height: 1.8;
}

/* 関連ポジションカード */
.related-positions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.related-position-card {
    background-color: #FFFFFF;
    border-radius: 10px;
    padding: 32px;
    box-shadow: var(--surface-shadow);
}

.related-position-title {
    font-size: 20px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 16px;
}

.related-position-text {
    font-size: 14px;
    color: #666666;
    line-height: 1.8;
    margin-bottom: 24px;
}

.related-position-link {
    display: inline-block;
    color: #333333;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: opacity 0.3s;
}

.related-position-link:hover {
    opacity: 0.7;
}

/* CTAセクション */
.section-cta {
    background: linear-gradient(135deg, rgba(51, 51, 51, 0.9) 0%, rgba(51, 51, 51, 0.9) 100%);
    padding: 80px 40px;
    margin-bottom: 0;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 32px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 16px;
    line-height: 1.5;
}

.cta-text {
    font-size: 16px;
    color: #FFFFFF;
    margin-bottom: 40px;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button-primary {
    display: inline-block;
    background-color: #06C755;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    padding: 16px 48px;
    border-radius: 30px;
    transition: opacity 0.3s;
}

.cta-button-primary:hover {
    opacity: 0.9;
}

.cta-button-secondary {
    display: inline-block;
    background-color: #FFFFFF;
    color: #333333;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    padding: 16px 48px;
    border-radius: 30px;
    transition: opacity 0.3s;
}

.cta-button-secondary:hover {
    opacity: 0.9;
}

/* テキストリンク */
.text-link {
    color: #333333;
    text-decoration: underline;
}

.text-link:hover {
    opacity: 0.7;
}

/* 関連ポジション注釈 */
.position-note {
    text-align: center;
    font-size: 14px;
    color: #666666;
    margin-top: 32px;
}

/* レスポンシブ（事業ページ用） */
@media (max-width: 768px) {
    .fv-title-business {
        font-size: 28px;
    }

    .fv-subtitle-business {
        font-size: 16px;
    }

    .breadcrumb {
        padding: 12px 20px;
    }

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

    .achievements {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .feature-item {
        flex-direction: column;
    }

    .related-positions {
        grid-template-columns: 1fr;
    }

    .cta-title {
        font-size: 24px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-button-primary,
    .cta-button-secondary {
        width: 100%;
        text-align: center;
    }
}

/* ========== 「詳細はこちら」右配置 ========== */
.card-link {
    margin-left: auto;
}

/* ========== 事業内容 - カードUI ========== */

/* ========== 代表メッセージ - カードUI ========== */
.executive-card {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    align-items: stretch;
}

.executive-card .card-image-placeholder {
    border-radius: 8px 8px 0 0;
    margin-bottom: 0;
}

.executive-image-wrap {
    width: 280px;
    flex-shrink: 0;
    align-self: stretch;
    overflow: hidden;
    border-radius: 12px 0 0 12px;
}

.executive-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.executive-image-wrap picture {
    display: block;
    width: 100%;
    height: 100%;
}

.executive-body {
    flex: 1;
    padding: 32px 40px;
}

@media (max-width: 768px) {
    .executive-card {
        flex-direction: column;
    }

    .executive-image-wrap {
        width: 100%;
        height: 240px;
        border-radius: 12px 12px 0 0;
        margin-top: 0;
    }

    .executive-body {
        padding: 24px 20px;
    }
}

/* ========== メンバーインタビュー - カードUI ========== */
.interview-card {
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow: hidden;
    color: inherit;
    text-decoration: none;
    transition: background-color 0.2s cubic-bezier(0, 0.4, 0, 1),
        transform 0.2s cubic-bezier(0, 0.4, 0, 1),
        box-shadow 0.2s cubic-bezier(0, 0.4, 0, 1);
}

.interview-card:hover {
    background-color: #333333;
    transform: translateY(-2px);
    box-shadow: var(--surface-shadow-hover);
}

.interview-card:focus-visible {
    outline: 3px solid #06C755;
    outline-offset: 4px;
}

.interview-card .card-image-placeholder {
    border-radius: 8px 8px 0 0;
    margin-bottom: 0;
}

.interview-title {
    font-size: 16px;
    font-weight: 700;
    color: #333333;
    line-height: 1.6;
    padding: 20px 20px 0;
    flex: 1;
    transition: color 0.3s;
}

.interview-card:hover .interview-title {
    color: #FFFFFF;
}

.interview-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 12px 20px 0;
}

.interview-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: #333333;
    background-color: #f8f8f8;
    padding: 4px 12px;
    border-radius: 4px;
    line-height: 1.4;
    transition: color 0.3s, background-color 0.3s;
}

.interview-card:hover .interview-tag {
    color: #FFFFFF;
    background-color: #555555;
}

.interview-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px 20px;
}

.interview-name {
    font-size: 15px;
    font-weight: 700;
    color: #333333;
    transition: color 0.3s;
}

.interview-card:hover .interview-name {
    color: #FFFFFF;
}

.interview-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 700;
    color: #333333;
    text-decoration: none;
    transition: color 0.3s;
}

.interview-link:hover {
    opacity: 0.7;
}

.interview-card:hover .interview-link {
    color: #FFFFFF;
}

.interview-card:hover .interview-link .circle-arrow {
    background-color: #FFFFFF;
}

.interview-card:hover .interview-link .circle-arrow::before,
.interview-card:hover .interview-link .circle-arrow::after {
    background-color: #333333;
}


/* ========== 選考フロー - 横並びフロー ========== */
.step-flow {
    display: flex;
    align-items: stretch;
    gap: 0;
    margin-bottom: 32px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
}

.step-card {
    background-color: #FFFFFF;
    border-radius: var(--surface-radius);
    padding: 24px;
    text-align: center;
    min-width: 200px;
    flex: 1;
    border: var(--surface-border);
    box-shadow: var(--surface-shadow);
    transition: transform 0.2s cubic-bezier(0, 0.4, 0, 1), box-shadow 0.2s cubic-bezier(0, 0.4, 0, 1);
}

.step-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--surface-shadow-hover);
}

.step-flow-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 40px;
    font-size: 24px;
    color: #333333;
}

.step-flow-arrow::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 14px solid #333333;
}

.step-label {
    font-size: 12px;
    font-weight: 700;
    color: #999999;
    letter-spacing: 0.1em;
}

.step-number {
    font-size: 40px;
    font-weight: 700;
    color: #333333;
    line-height: 1;
    margin-bottom: 16px;
}

.step-title {
    font-size: 18px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 12px;
}

.step-text {
    font-size: 14px;
    color: #666666;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .step-flow {
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 0;
        scroll-snap-type: x mandatory;
    }

    .step-card {
        min-width: 220px;
        scroll-snap-align: start;
    }
}

/* ========== 応募方法 - 横並びフロー ========== */
.apply-flow {
    display: flex;
    align-items: stretch;
    gap: 0;
    margin-bottom: 40px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
}

.apply-flow-card {
    background-color: #FFFFFF;
    border-radius: var(--surface-radius);
    padding: 32px 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    flex: 1;
    min-width: 200px;
    border: var(--surface-border);
    box-shadow: var(--surface-shadow);
    transition: transform 0.2s cubic-bezier(0, 0.4, 0, 1), box-shadow 0.2s cubic-bezier(0, 0.4, 0, 1);
}


.apply-flow-badge {
    display: inline-block;
    background-color: #333333;
    color: #FFFFFF;
    font-size: 13px;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 20px;
    margin-bottom: 16px;
    letter-spacing: 0.05em;
}

.apply-flow-title {
    font-size: 16px;
    font-weight: 600;
    color: #333333;
    line-height: 1.6;
    margin: 0;
    width: 100%;
    flex: 1;
}

.apply-flow-cta {
    margin-top: 16px;
    font-size: 14px;
    padding: 10px 18px;
    white-space: nowrap;
}

.apply-flow-cta .btn-arrow {
    margin-left: 10px;
}

.floating-entry-btn {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1100;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 148px;
    min-height: 50px;
    padding: 13px 22px;
    border-radius: 999px;
    background: #06C755;
    border: none;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.18);
    opacity: 0;
    pointer-events: none;
    white-space: nowrap;
    transform: translateY(16px);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
        background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-entry-btn-label {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.floating-entry-btn-en {
    font-size: 12px;
    letter-spacing: 0.08em;
}

.floating-entry-btn.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.floating-entry-btn:hover {
    transform: translateY(-4px);
    background: #05b94f;
    box-shadow: 0 0 25px rgba(6, 199, 85, 0.36);
}

@media (min-width: 769px) {
    .floating-entry-btn {
        right: 32px;
        bottom: 32px;
        flex-direction: column;
        width: 148px;
        height: 148px;
        min-width: 148px;
        min-height: 148px;
        padding: 30px 24px;
        border-radius: 50%;
    }

    .floating-entry-btn-label {
        line-height: 1;
    }

    .floating-entry-btn .btn-arrow {
        display: none;
    }
}

@media (max-width: 768px) {
    .apply-flow {
        flex-direction: column;
        overflow-x: visible;
        flex-wrap: wrap;
    }

    .apply-flow-card {
        min-width: 100%;
    }

    .step-flow-arrow {
        width: 100%;
        height: 36px;
        align-self: center;
    }

    .step-flow-arrow::after {
        border-top: 14px solid #333333;
        border-bottom: none;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
    }

    body.recruit-top {
        padding-bottom: 96px;
    }

    .fv {
        align-items: flex-end;
        justify-content: center;
    }

    .floating-entry-btn {
        left: 16px;
        right: 16px;
        bottom: calc(16px + env(safe-area-inset-bottom));
        width: calc(100% - 32px);
        min-height: 52px;
        padding: 14px 20px;
        background: #06C755;
        color: #FFFFFF;
    }

    .floating-entry-btn-en {
        display: none;
    }
}

/* ========== 求める人物像 - 2カラムレイアウト ========== */
.persona-layout {
    display: grid;
    grid-template-columns: minmax(420px, 1fr) minmax(380px, 1fr);
    gap: 56px;
    align-items: center;
    max-width: 980px;
    margin: 0 auto;
}

.persona-layout-reverse {
    grid-template-columns: minmax(420px, 1fr) minmax(380px, 1fr);
}

.persona-image {
    width: 100%;
    max-width: 620px;
    justify-self: end;
}

.persona-text {
    width: 100%;
    max-width: 460px;
    justify-self: start;
}

.persona-text .value-list {
    margin: 0;
    max-width: none;
}

.persona-image-placeholder {
    width: 100%;
    height: 300px;
    background-color: #E0E0E0;
    border-radius: 10px;
}

/* ========== 応募方法リスト中央配置 ========== */
.application-list-wrapper {
    max-width: 600px;
    margin: 0 auto 40px;
}

.application-list-wrapper .application-list {
    margin-bottom: 0;
}

/* ========== レスポンシブ追加 ========== */
@media (max-width: 768px) {
    .persona-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .persona-image {
        order: -1;
    }

    .persona-image-placeholder {
        height: 200px;
    }

    .application-list-wrapper {
        max-width: 100%;
    }
}

/* ========== 募集ポジション カードUI ========== */
.position-card {
    background-color: #FFFFFF;
    border-radius: var(--surface-radius);
    padding: 24px;
    border: var(--surface-border);
    box-shadow: var(--surface-shadow);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    transition: background-color 0.2s cubic-bezier(0, 0.4, 0, 1),
        transform 0.2s cubic-bezier(0, 0.4, 0, 1),
        box-shadow 0.2s cubic-bezier(0, 0.4, 0, 1);
}

.position-card:hover {
    background-color: #333333;
    transform: translateY(-2px);
    box-shadow: var(--surface-shadow-hover);
}

@media (max-width: 768px) {
    .position-card {
        padding: 16px;
    }
}

.position-card .card-image-placeholder,
.position-card .card-image {
    border-radius: var(--surface-radius);
}

.position-card-title {
    font-size: 18px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 12px;
    transition: color 0.3s;
}

.position-card:hover .position-card-title {
    color: #FFFFFF;
}

.position-card-desc {
    font-size: 14px;
    color: #666666;
    line-height: 1.7;
    flex: 1;
    margin-bottom: 20px;
    transition: color 0.3s;
}

.position-card:hover .position-card-desc {
    color: #CCCCCC;
}

.position-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #333333;
    align-self: flex-end;
    transition: color 0.3s;
}

.position-card:hover .position-card-btn {
    color: #FFFFFF;
}

.position-card:hover .position-card-btn .circle-arrow {
    background-color: #FFFFFF;
}

.position-card:hover .position-card-btn .circle-arrow::before,
.position-card:hover .position-card-btn .circle-arrow::after {
    background-color: #333333;
}


/* ========== モーダルウィンドウ ========== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
        visibility 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: #FFFFFF;
    border-radius: 16px;
    border: var(--surface-border);
    box-shadow: var(--surface-shadow-hover);
    max-width: 640px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(30px) scale(0.95);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.open .modal-content {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border: none;
    background-color: #f8f8f8;
    color: #333333;
    font-size: 24px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
    z-index: 1;
}

.modal-close:hover {
    background-color: #E0E0E0;
}

.modal-header {
    padding: 32px 32px 0;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.modal-title {
    font-size: 24px;
    font-weight: 700;
    color: #333333;
}

.modal-salary {
    display: inline-block;
    background-color: #333333;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 20px;
}

.modal-body {
    padding: 24px 32px;
}

.modal-body h4 {
    font-size: 16px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 12px;
    margin-top: 24px;
    padding-bottom: 8px;
    border-bottom: 2px solid #E0E0E0;
}

.modal-body h4:first-child {
    margin-top: 0;
}

.modal-body p {
    font-size: 15px;
    color: #333333;
    line-height: 1.8;
}

.modal-body ul {
    list-style: none;
    padding-left: 0;
}

.modal-body ul li {
    font-size: 15px;
    color: #333333;
    line-height: 1.8;
    padding-left: 24px;
    position: relative;
    margin-bottom: 8px;
}

.modal-body ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background-color: #333333;
    border-radius: 50%;
}

.modal-body ul li:last-child {
    margin-bottom: 0;
}

.modal-footer {
    padding: 0 32px 32px;
    text-align: center;
    margin-top: 8px;
}

.modal-apply-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #06C755;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    padding: 12px 36px;
    border-radius: 999px;
    border: 2px solid #06C755;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-apply-btn:hover {
    background-color: #FFFFFF;
    color: #06C755;
    border-color: #06C755;
    transform: translateY(-2px);
    box-shadow: var(--surface-shadow-hover);
}

.modal-apply-btn:hover .btn-arrow::before,
.modal-apply-btn:hover .btn-arrow::after {
    background-color: #06C755;
}

/* ========== 矢印（丸なし）========== */
.btn-arrow {
    position: relative;
    display: inline-block;
    width: 12px;
    height: 18px;
}

.btn-arrow::before,
.btn-arrow::after {
    content: "";
    position: absolute;
    top: calc(50% - 1px);
    right: 0;
    width: 10px;
    height: 2px;
    border-radius: 9999px;
    background-color: #FFFFFF;
    transform-origin: calc(100% - 1px) 50%;
}

.btn-arrow::before {
    transform: rotate(45deg);
}

.btn-arrow::after {
    transform: rotate(-45deg);
}

/* ========== モーダル レスポンシブ ========== */
@media (max-width: 768px) {
    .modal-overlay {
        padding: 16px;
        align-items: flex-end;
    }

    .modal-content {
        max-height: 85vh;
        border-radius: 12px 12px 0 0;
    }

    .modal-header {
        padding: 24px 20px 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .modal-salary {
        order: -1;
    }

    .modal-title {
        font-size: 20px;
    }

    .modal-body {
        padding: 20px;
    }

    .modal-footer {
        padding: 0 20px 24px;
    }

    .modal-apply-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ========== フッター ========== */
.site-footer {
    background-color: #333333;
    padding: 40px 0;
    text-align: center;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 16px;
}

.footer-logo-img {
    height: 32px;
    width: auto;
}

.footer-copy {
    color: #FFFFFF;
    font-size: 13px;
    letter-spacing: 0.05em;
}

/* ========== オフィス画像 ========== */
.work-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

/* ========== こんな方と働きたい - 画像 ========== */
.persona-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

/* ========== 応募フローカード テキスト中央揃え ========== */
.apply-flow-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* ========== リンクなしインタビュー hover無効 ========== */
.interview-link-disabled {
    cursor: default;
    opacity: 0.4;
}

.interview-link-disabled:hover {
    opacity: 0.4;
}

/* ========== ハンバーガーメニュー ========== */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1010;
    position: relative;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #333333;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* モバイルメニューオーバーレイ */
@media (max-width: 900px) {
    .hamburger {
        display: flex;
    }

    .header-container {
        padding: 16px 20px;
    }

    .header-nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: #FFFFFF;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 32px;
        z-index: 1005;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s, visibility 0.3s;
    }

    .header-nav.open {
        display: flex;
        opacity: 1;
        visibility: visible;
    }

    .header-nav a {
        font-size: 20px;
        font-weight: 600;
    }

    .header-nav a:not(.header-cta)::after {
        display: none;
    }

    .header-nav .header-cta {
        font-size: 18px;
        padding: 14px 40px;
    }
}

@media (max-width: 375px) {
    .persona-img {
        height: 200px;
    }
}

/* ========== インタビュー詳細ページ ========== */
.interview-detail {
    padding-top: 100px;
    background-color: #F8F9FA;
}

.interview-hero {
    background-color: #FFFFFF;
    margin: 0 40px;
    padding: 48px 0;
    border-radius: var(--surface-radius);
    box-shadow: var(--surface-shadow);
}

.interview-hero .container,
.interview-content .container,
.interview-nav-section .container,
.interview-apply-section .container {
    padding: 0 40px;
}

.interview-profile {
    display: flex;
    gap: 48px;
    align-items: flex-start;
}

.interview-profile-image {
    width: 320px;
    min-width: 320px;
    height: 400px;
    border-radius: var(--surface-radius);
    overflow: hidden;
}

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

.interview-profile-info {
    flex: 1;
}

.interview-profile-name {
    font-size: 32px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 12px;
}

.interview-profile-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.interview-profile-table {
    width: 100%;
    border-collapse: collapse;
}

.interview-profile-table th,
.interview-profile-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid #E0E0E0;
    font-size: 15px;
    color: #333333;
}

.interview-profile-table th {
    width: 100px;
    font-weight: 700;
    color: #333333;
    white-space: nowrap;
}

.interview-content {
    background-color: #F8F9FA;
    padding: 64px 0;
}

.interview-content-title {
    font-size: 28px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 48px;
    text-align: center;
}

.interview-qa {
    background-color: #FFFFFF;
    border-radius: var(--surface-radius);
    padding: 36px 40px;
    margin-bottom: 28px;
    border: var(--surface-border);
    box-shadow: var(--surface-shadow);
}

.interview-question {
    display: flex;
    gap: 12px;
    align-items: flex-end;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid #E0E0E0;
}

.interview-q-label {
    font-size: 24px;
    font-weight: 700;
    color: #333333;
    min-width: 32px;
}

.interview-question p {
    font-size: 18px;
    font-weight: 700;
    color: #333333;
    line-height: 1.6;
    padding-top: 2px;
}

.interview-answer {
    display: block;
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    margin-left: 0;
}

.interview-a-label {
    font-size: 20px;
    font-weight: 700;
    color: #333333;
    display: inline;
    margin-right: 6px;
}

.interview-answer p {
    font-size: 15px;
    color: #444444;
    line-height: 1.9;
}

.interview-answer p:first-of-type {
    display: inline;
}

.interview-answer p+p {
    display: block;
    margin-top: 14px;
}

.interview-nav-section {
    background-color: #F8F9FA;
    padding: 64px 0;
    border-top: none;
}

.interview-nav-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(320px, 360px));
    justify-content: center;
    gap: 24px;
    margin-bottom: 40px;
}

.interview-nav-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    background-color: #FFFFFF;
    padding: 20px 72px 20px 20px;
    border-radius: var(--surface-radius);
    text-decoration: none;
    box-shadow: var(--surface-shadow);
    transition: box-shadow 0.3s cubic-bezier(0, 0.4, 0, 1), transform 0.3s;
}

.interview-nav-card:hover {
    box-shadow: var(--surface-shadow-hover);
    transform: translateY(-2px);
}

.interview-nav-card img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.interview-nav-card::before {
    content: "";
    position: absolute;
    right: 20px;
    top: 50%;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #333333;
    transform: translateY(-50%);
}

.interview-nav-card::after {
    content: "";
    position: absolute;
    right: 31px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-top: 2px solid #FFFFFF;
    border-right: 2px solid #FFFFFF;
    transform: translateY(-50%) rotate(45deg);
}

.interview-nav-name {
    font-size: 15px;
    font-weight: 700;
    color: #333333;
}

.interview-nav-dept {
    font-size: 13px;
    color: #333333;
    opacity: 0.6;
    margin-top: 4px;
}

.interview-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
}

@media (max-width: 768px) {
    .interview-detail {
        padding-top: 72px;
    }

    .interview-hero {
        margin: 0 20px;
        padding: 32px 0;
    }

    .interview-hero .container,
    .interview-content .container,
    .interview-nav-section .container,
    .interview-apply-section .container {
        padding: 0 20px;
    }

    .interview-profile {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }

    .interview-profile-image {
        width: 100%;
        min-width: auto;
        max-width: 320px;
        margin: 0 auto;
        height: 350px;
    }

    .interview-profile-info {
        width: 100%;
    }

    .interview-profile-name {
        font-size: 26px;
        text-align: center;
    }

    .interview-profile-tags {
        justify-content: center;
        display: flex;
        gap: 8px;
    }

    .interview-content-title {
        font-size: 22px;
        margin-bottom: 32px;
    }

    .interview-qa {
        padding: 20px;
    }

    .interview-question p {
        font-size: 16px;
    }

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

    .interview-nav-card {
        padding: 16px 64px 16px 16px;
    }

    .interview-nav-card::before {
        right: 16px;
        width: 28px;
        height: 28px;
    }

    .interview-nav-card::after {
        right: 26px;
    }

    .interview-cta {
        flex-direction: column;
        align-items: center;
    }
}

/* ========== ヘッダーロゴ画像対応 ========== */
.header-logo-img {
    height: 28px;
    width: auto;
    display: block;
}
