:root {
    --bg: #F7F5F2;
    --surface: #FFFFFF;
    --text-primary: #1C1C1A;
    --text-secondary: #6A6860;
    --border: #E4E0DA;
    --tab-bg: #EDEAE5;

    --orange: #EF793D;
    --orange-light: #FEF0E8;
    --orange-border: #F5C4A4;

    --blue: #0074BE;
    --blue-light: #E6F2FA;
    --blue-border: #A0CCE8;

    --fukuoka: #c70b0b;
    --fukuoka-light: #FDEAEA;
    --fukuoka-border: #F0AAAA;

    --accent: #007aff;
}

.eyebrow {
    font-size: clamp(13px, 2vw, 14px);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 10px;
}



/* ── Tabs ── */
.tab-wrapper {
    max-width: 1040px;
    margin: 32px auto 0;
    padding: 0 24px;
}

.tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: var(--surface);
    border-radius: 12px;
    padding: 5px;
    gap: 5px;
    border: 1px solid var(--border);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    width: 100%;
}

.tab-btn {
    font-size: clamp(11px, 2vw, 14px);
    font-weight: 500;
    letter-spacing: 0.03em;
    padding: 10px 8px;
    border-radius: 8px;
    border: none;
    background: transparent;
    color: var(--text-secondary);
    cursor: pointer;
    transition: background 0.22s, color 0.22s, box-shadow 0.22s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    white-space: nowrap;
    width: 100%;
    overflow: hidden;
}

@media (max-width: 400px) {
    .tab-btn {

        gap: 4px;
    }

    .tab-btn .count {
        padding: 1px 6px;

    }
}

.tab-btn .count {
    font-weight: 700;
    background: #E0DDD8;
    color: var(--text-secondary);
    border-radius: 20px;
    padding: 1px 8px;
    transition: background 0.22s, color 0.22s;
}

/* すべて：アクティブ時グレー */
.tab-btn[data-tab="all"].active {
    background: #a1a1a1;
    color: #fff;
}

.tab-btn[data-tab="all"].active .count {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
}

/* 対面：アクティブ時オレンジ */
.tab-btn[data-tab="taimen"].active {
    background: var(--orange);
    color: #fff;
    box-shadow: 0 3px 12px rgba(239, 121, 61, 0.35);
}

.tab-btn[data-tab="taimen"].active .count {
    background: rgba(255, 255, 255, 0.28);
    color: #fff;
}

/* WEB：アクティブ時ブルー */
.tab-btn[data-tab="web"].active {
    background: var(--blue);
    color: #fff;
    box-shadow: 0 3px 12px rgba(0, 116, 190, 0.35);
}

.tab-btn[data-tab="web"].active .count {
    background: rgba(255, 255, 255, 0.28);
    color: #fff;
}

/* 福岡：アクティブ時レッド */
.tab-btn[data-tab="fukuoka"].active {
    background: var(--fukuoka);
    color: #fff;
    box-shadow: 0 3px 12px rgba(199, 11, 11, 0.35);
}

.tab-btn[data-tab="fukuoka"].active .count {
    background: rgba(255, 255, 255, 0.28);
    color: #fff;
}

/* ── Content ── */
.content {
    max-width: 1040px;
    margin: 28px auto 0;
    padding: 0 24px;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

/* ── Grid ── */
.grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    align-items: start;
}

/* ── Card ── */
.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
    height: 100%;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.09);
    border-color: #C8C4BC;
}

/* カラーバー */
.card-bar {
    height: 5px;
    width: 100%;
    flex-shrink: 0;
}

.bar-taimen {
    background: linear-gradient(90deg, #EF793D, #F5A06A);
}

.bar-web {
    background: linear-gradient(90deg, #0074BE, #007aff);
}

.bar-fukuoka {
    background: linear-gradient(90deg, #c70b0b, #e83535);
}

/* ボディ */
.card-body {
    padding: 22px 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    width: 100%;
}

/* メタ行 */
.card-meta {
    display: flex;
    align-items: center;
    gap: 7px;
    flex-wrap: wrap;
}

.badge {
    font-size: clamp(13px, 2vw, 14px);
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 3px 10px;
    border-radius: 20px;
    flex-shrink: 0;
}

.badge-taimen {
    background: var(--orange-light);
    color: var(--orange);
    border: 1px solid var(--orange-border);
}



.badge-web {
    background: var(--blue-light);
    color: var(--blue);
    border: 1px solid var(--blue-border);
}

.badge-fukuoka {
    background: var(--fukuoka-light);
    color: var(--fukuoka);
    border: 1px solid var(--fukuoka-border);
}

.meta-sub {
    font-size: clamp(13px, 2vw, 14px);
    color: var(---secondary);
    line-height: 1.4;
    font-weight: 900;
    margin-top: 10px;

}

/* 会場バッジ */
.location-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: clamp(13px, 2vw, 14px);
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 3px 10px;
    border-radius: 20px;
}

.location-badge-taimen {
    /* background: #FFF3ED;*/
    color: var(--orange);
    /* border: 1px solid #F5C4A4;*/
}

.location-badge-web {
    /* background: var(--blue-light);*/
    color: var(--blue);
    /*  border: 1px solid var(--blue-border);*/
}

.location-badge-fukuoka {
    color: var(--fukuoka);
}

.meta-sub-title {
    color: var(--orange);
    letter-spacing: .5px;
}

.meta-sub-title-blue {
    color: var(--blue);
    letter-spacing: .5px;
}

.meta-sub-title-fukuoka {
    color: var(--fukuoka);
    letter-spacing: .5px;
}


/* タイトル */
.card-title {
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-weight: 900;
    font-size: clamp(18px, 4px + 2.5vw, 29px);
    line-height: 1.5;
    color: var(--text-primary);
    margin-top: 2px;
    letter-spacing: 2.5px;
}

.title-taimen {
    color: var(--orange);
    position: relative;
    background: var(--orange-light);
    border-radius: 8px;
    padding: 0.5em 0.8em;
}


/*.title-taimen:after {
      position: absolute;
      content: '';
      top: 100%;
      left: 30px;
      border: 15px solid transparent;
      border-top: 15px solid var(--orange);
      width: 0;
      height: 0;
  }
*/

.title-web {
    color: var(--blue);
    position: relative;
    background: var(--blue-light);
    border-radius: 8px;
    padding: 0.5em 0.8em;

}

.title-fukuoka {
    color: var(--fukuoka);
    position: relative;
    background: var(--fukuoka-light);
    border-radius: 8px;
    padding: 0.5em 0.8em;
}

/*
  .title-web:after {
      position: absolute;
      content: '';
      top: 100%;
      left: 30px;
      border: 15px solid transparent;
      border-top: 15px solid var(--blue);
      width: 0;
      height: 0;
  }
      */

/* 説明 */
.card-desc {
    font-size: clamp(13px, 2vw, 14px);
    color: var(--text-secondary);
    line-height: 1.9;
    flex: 1;
}

.card-desc .point {
    display: block;
    padding-left: 1em;
    text-indent: -1em;
}

/* 区切り */
.card-divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 4px 0 2px;
}

/* 開催日 */
.card-date {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    font-size: clamp(13px, 2vw, 14px);
    color: var(--text-secondary);
}

.card-date svg {
    flex-shrink: 0;
    margin-top: 1px;
}

.date-list.date-list li {
    position: relative;
    list-style-type: none;
    counter-increment: list-item;
}

.date-list.date-list li::before {
    position: absolute;
    right: calc(100% + 0.5rem);
    content: "(" counter(list-item) ")";
}

/* カメラ・マイクOFFバッジ */
.icon-badges {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 2px;
}

.icon-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: clamp(13px, 2vw, 14px);
    font-weight: 500;
    color: var(--blue);
    background: var(--blue-light);
    border: 1px solid var(--blue-border);
    border-radius: 20px;
    padding: 3px 10px 3px 8px;
    letter-spacing: 0.03em;
}

.icon-badge i {
    font-size: clamp(13px, 2vw, 14px);
}

.card-date-text {
    line-height: 1.6;
}

/* フッター */
.card-footer {
    padding-top: 12px;
    display: flex;
    justify-content: flex-end;
}

.btn-event {

    font-size: clamp(13px, 2vw, 14px);
    font-weight: 500;
    letter-spacing: 0.06em;
    padding: 7px 20px;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, transform 0.15s;
}

.btn-event:hover {
    transform: scale(1.03);
}

.btn-taimen {
    background: var(--orange-light);
    color: var(--orange);
    border: 1px solid var(--orange-border);
}

.btn-taimen:hover {
    background: var(--orange);
    color: #fff;
    border-color: var(--orange);
}

.btn-web {
    background: var(--blue-light);
    color: var(--blue);
    border: 1px solid var(--blue-border);
}

.btn-web:hover {
    background: var(--blue);
    color: #fff;
    border-color: var(--blue);
}

.btn-fukuoka {
    background: var(--fukuoka-light);
    color: var(--fukuoka);
    border: 1px solid var(--fukuoka-border);
}

.btn-fukuoka:hover {
    background: var(--fukuoka);
    color: #fff;
    border-color: var(--fukuoka);
}

/* アニメ */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

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

.tab-panel.active .card {
    animation: fadeUp 0.36s ease both;
}

.tab-panel.active .card:nth-child(1) {
    animation-delay: 0.03s;
}

.tab-panel.active .card:nth-child(2) {
    animation-delay: 0.09s;
}

.tab-panel.active .card:nth-child(3) {
    animation-delay: 0.15s;
}

.tab-panel.active .card:nth-child(4) {
    animation-delay: 0.21s;
}

.tab-panel.active .card:nth-child(5) {
    animation-delay: 0.27s;
}

/* ── Responsive ── */
@media (max-width: 620px) {
    header {
        padding: 36px 20px 32px;
    }

    .tab-wrapper,
    .content {
        padding: 0 16px;
    }

    .card-title {
        letter-spacing: .5px;
    }

    .tab-wrapper {
        margin-top: 24px;
    }

    .content {
        margin-top: 20px;
    }

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

    .tab-wrapper,
    .content {
        padding: 0 16px;
    }

    .tab-wrapper {
        margin-top: 24px;
    }
}


.card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
    width: 100%;
}

/* ── Date Block ── */
.date-block {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100%;
}

/* ラベル（「開催日程」「2026年4月〜」など）：小さめグレー */
.date-label {
    font-size: clamp(12px, 1.8vw, 13px);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 6px;
}

/* 日付リスト */
.date-list-styled {
    list-style: none;
    padding: 0;
    margin: 2px 22px 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
    counter-reset: date-counter;
}

.date-list-styled li {
    counter-increment: date-counter;
    display: flex;
    align-items: center;
    gap: 6px;
}

.date-list-styled li::before {
    content: "(" counter(date-counter) ")";
    font-size: clamp(11px, 1.6vw, 12px);
    color: var(--text-secondary);
    flex-shrink: 0;
}

/* 日付本体：大きく・濃い色 */
.date-item {
    font-size: clamp(15px, 2.4vw, 17px);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.6;
    letter-spacing: 0.02em;
}

/* 時刻行：小さめグレー */
.date-time {
    font-size: clamp(12px, 1.8vw, 13px);
    color: var(--text-secondary);
    margin-top: 4px;
    display: flex;
    align-items: baseline;
    gap: 6px;
}

/* 毎月開催パターン：目立つテキスト */
.date-highlight {
    font-size: clamp(17px, 2.6vw, 20px);
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: 0.04em;
    line-height: 1.4;
}

.date-sub {
    font-size: clamp(12px, 1.8vw, 13px);
    color: var(--text-secondary);
}

/*============================================================新卒サポート セクション============================================================*/
.support {
    padding: 80px 0;
    background: #F7FBFF;
}

.support__inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---- ヘッダー ---- */
.support__header {
    text-align: center;
    margin-bottom: 48px;
}

.support__label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--blue);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.support__title {
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 10px;
    line-height: 1.4;
}

.support__subtitle {
    font-size: clamp(14px, 2vw, 17px);
    color: var(--text-secondary);
    margin: 0;
}

/* ---- メイン画像 ---- */
.support__image {
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 56px;
    /*   background: var(--blue);*/
}

.support__image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ---- ポイント ---- */
.support__points {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.support__point {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 36px 0;
    border-bottom: 1px solid var(--border);
}

.support__point:first-child {
    border-top: 1px solid var(--border);
}

.support__point-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--blue-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    font-size: 20px;
    margin-top: 2px;
}

.support__point-body {
    flex: 1;
}

.support__point-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 10px;
    line-height: 1.4;
}

.support__point-text {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
}

/* ---- レスポンシブ ---- */
@media (max-width: 600px) {
    .support {
        padding: 60px 0;
    }

    .support__point {
        flex-direction: column;
        gap: 16px;
        padding: 28px 0;
    }

    .support__point-icon {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
}