/* ================================================================
   つながる"ば" LP — BEM CSS
   ================================================================ */

:root {
  --tnb-orange: #e85020;
  --tnb-orange-dark: #d1441a;
  --tnb-navy: #2a2f34;
  --tnb-ink: #222222;
  --tnb-ink-soft: #444444;
  --tnb-ink-muted: #555555;
  --tnb-muted: #666666;
  --tnb-muted-2: #888888;
  --tnb-line: #eeeeee;
  --tnb-line-soft: #e0e0e0;
  --tnb-bg: #ffffff;
  --tnb-bg-gray: #f5f5f5;
  --tnb-bg-input: #fafafa;
  --tnb-border-input: #dddddd;
  --tnb-footer-bg: #17172b;
  --tnb-radius-sm: 2px;
  --tnb-radius: 4px;
  --tnb-radius-md: 6px;
  --tnb-radius-lg: 8px;
  --tnb-shadow: 0 2px 14px rgba(0, 0, 0, 0.07);
  --tnb-shadow-lg: 0 4px 20px rgba(0, 0, 0, 0.09);
  --tnb-shadow-soft: 0 2px 10px rgba(0, 0, 0, 0.12);
  --tnb-maxw: 1200px;
  --tnb-header-h: 62px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--tnb-header-h);
}

body {
  margin: 0;
  font-family:
    "Noto Sans JP",
    -apple-system,
    "Hiragino Kaku Gothic ProN",
    "Yu Gothic",
    sans-serif;
  color: var(--tnb-ink);
  background: var(--tnb-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

input,
textarea,
select,
button {
  font-family: inherit;
}

button {
  cursor: pointer;
}

/* ─── Layout utilities ───────────────────────────────────────── */

.l-wrap {
  max-width: var(--tnb-maxw);
  margin: 0 auto;
  padding: 0 40px;
}

.band {
  padding: 80px 0;
  background: var(--tnb-bg);
}

.band--gray {
  background: var(--tnb-bg-gray);
}

.band--dark {
  background: var(--tnb-navy);
  color: var(--tnb-bg);
}

/* ─── Section head ────────────────────────────────────────────── */

.sec-head__eyebrow {
  display: inline-block;
  background: var(--tnb-navy);
  color: var(--tnb-orange);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  padding: 4px 12px;
  border-radius: var(--tnb-radius-sm);
  margin-bottom: 20px;
}

.band--dark .sec-head__eyebrow {
  background: var(--tnb-orange);
  color: var(--tnb-bg);
}

.sec-head__title {
  font-size: 34px;
  font-weight: 900;
  line-height: 1.3;
  margin: 0 0 8px;
}

.sec-head__title--tight {
  margin-bottom: 28px;
}

.sec-head__lead {
  font-size: 16px;
  color: var(--tnb-ink-muted);
  margin: 0 0 44px;
}

.band--dark .sec-head__lead {
  color: var(--tnb-bg);
}

/* ================================================================
   HEADER
   ================================================================ */

.header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--tnb-bg);
  box-shadow: 0 1px 0 var(--tnb-line);
}

.header__inner {
  max-width: var(--tnb-maxw);
  margin: 0 auto;
  padding: 0 32px;
  height: var(--tnb-header-h);
  display: flex;
  align-items: center;
  gap: 20px;
}

.header__brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.header__brand img {
  height: 38px;
  width: auto;
}

.header__nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}

.header__nav-link {
  font-size: 12px;
  font-weight: 500;
  color: var(--tnb-ink-soft);
  white-space: nowrap;
}

.header__cta {
  background: var(--tnb-orange);
  color: var(--tnb-bg);
  padding: 10px 20px;
  border-radius: 24px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
}

.header__cta:hover {
  background: var(--tnb-orange-dark);
  transform: translateY(-1px);
}

.header__hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  padding: 6px;
  flex-shrink: 0;
  margin-left: auto;
}

.header__hamburger-line {
  display: block;
}

/* ================================================================
   MOBILE NAV
   ================================================================ */

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--tnb-navy);
  flex-direction: column;
  overflow-y: auto;
}

.mobile-nav--open {
  display: flex;
}

.mobile-nav__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: var(--tnb-header-h);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.mobile-nav__logo-box {
  background: var(--tnb-bg);
  border-radius: var(--tnb-radius-lg);
  padding: 4px 10px;
  display: flex;
  align-items: center;
}

.mobile-nav__logo {
  height: 26px;
  width: auto;
}

.mobile-nav__close {
  background: none;
  border: none;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav__links {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 16px 0;
}

.mobile-nav__link {
  font-size: 15px;
  font-weight: 700;
  color: var(--tnb-bg);
  padding: 16px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.mobile-nav__cta-wrap {
  padding: 24px;
  flex-shrink: 0;
}

.mobile-nav__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--tnb-orange);
  color: var(--tnb-bg);
  padding: 16px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  transition: background-color 0.2s ease;
}

.mobile-nav__cta:hover {
  background: var(--tnb-orange-dark);
}

/* ================================================================
   HERO
   ================================================================ */

.hero {
  position: relative;
  overflow: hidden;
  min-height: 720px;
  display: flex;
  align-items: center;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  height: 600px;
  z-index: 1;
}

.hero__inner {
  max-width: var(--tnb-maxw);
  margin: 0 auto;
  padding: 60px 32px 56px;
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero__content {
  flex: 1;
  padding-right: 32px;
}

.hero__partner-logo {
  margin-bottom: 14px;
}

.hero__partner-logo img {
  height: 40px;
  width: auto;
}

.hero__eyebrow {
  font-size: 11px;
  font-weight: 700;
  color: var(--tnb-orange);
  letter-spacing: 0.22em;
  margin: 0 0 18px;
}

.hero__heading {
  font-size: clamp(32px, 4.2vw, 54px);
  font-weight: 900;
  line-height: 1.1;
  margin: 0 0 20px;
  white-space: nowrap;
}

.hero__heading-line {
  display: block;
  color: #1a1a1a;
}

.hero__heading-line--accent {
  color: var(--tnb-orange);
}

.hero__meta {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(42, 47, 52, 0.15);
  border-radius: var(--tnb-radius-md);
  margin-bottom: 28px;
  overflow: hidden;
}

.hero__meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
}

.hero__meta-item svg {
  flex-shrink: 0;
}

.hero__meta-date-year {
  font-size: 9px;
  font-weight: 700;
  color: var(--tnb-muted-2);
  line-height: 1.2;
}

.hero__meta-date-value {
  font-size: 18px;
  font-weight: 900;
  color: var(--tnb-navy);
  line-height: 1.1;
  white-space: nowrap;
}

.hero__meta-date-day {
  font-size: 11px;
  font-weight: 700;
  margin-left: 3px;
}

.hero__meta-time {
  font-size: 16px;
  font-weight: 900;
  color: var(--tnb-navy);
  white-space: nowrap;
}

.hero__meta-venue {
  font-size: 13px;
  font-weight: 700;
  color: var(--tnb-navy);
  line-height: 1.4;
  white-space: nowrap;
}

.hero__meta-divider {
  width: 1px;
  height: 36px;
  background: var(--tnb-line-soft);
  flex-shrink: 0;
}

.hero__logos {
  display: flex;
  align-items: center;
  gap: 18px;
}

.hero__logo-box {
  background: var(--tnb-bg);
  border-radius: var(--tnb-radius-lg);
  padding: 6px 12px;
  display: flex;
  align-items: center;
  box-shadow: var(--tnb-shadow-soft);
}

.hero__logo-box img {
  height: 36px;
  width: auto;
}

.hero__logos-x {
  font-size: 22px;
  font-weight: 700;
  color: var(--tnb-orange);
}

.hero__visual {
  flex-shrink: 0;
  width: 520px;
  position: relative;
  align-self: stretch;
}

.hero__person {
  position: absolute;
  bottom: 0;
  left: 20px;
  background: rgba(0, 0, 0, 0.52);
  backdrop-filter: blur(6px);
  border-left: 3px solid var(--tnb-orange);
  padding: 10px 16px;
  border-radius: 0 var(--tnb-radius) var(--tnb-radius) 0;
}

.hero__person--sp {
  display: none;
}

.hero__person-role {
  display: block;
  font-size: 10px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.12em;
  margin-bottom: 3px;
}

.hero__person-name {
  display: block;
  font-size: 18px;
  font-weight: 900;
  color: var(--tnb-bg);
  letter-spacing: 0.04em;
}

/* ================================================================
   CTA BANNER
   ================================================================ */

.cta-banner {
  background: var(--tnb-bg);
  border-top: 3px solid var(--tnb-orange);
  border-bottom: 1px solid var(--tnb-line);
}

.cta-banner__inner {
  max-width: var(--tnb-maxw);
  margin: 0 auto;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.cta-banner__icon {
  background: var(--tnb-orange);
  width: 44px;
  height: 44px;
  border-radius: var(--tnb-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cta-banner__free {
  font-size: 22px;
  font-weight: 900;
  color: var(--tnb-ink);
  white-space: nowrap;
}

.cta-banner__divider {
  width: 1px;
  height: 50px;
  background: var(--tnb-line-soft);
  margin: 0 8px;
  flex-shrink: 0;
}

.cta-banner__quota {
  display: flex;
  align-items: baseline;
  gap: 4px;
  flex-shrink: 0;
}

.cta-banner__quota-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--tnb-ink-muted);
}

.cta-banner__quota-num {
  font-size: 44px;
  font-weight: 900;
  color: var(--tnb-orange);
  line-height: 1;
}

.cta-banner__spacer {
  flex: 1;
}

.cta-banner__btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--tnb-orange);
  color: var(--tnb-bg);
  padding: 16px 38px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
  transition:
    background-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.cta-banner__btn:hover {
  background: var(--tnb-orange-dark);
  transform: translateY(-2px);
  box-shadow: var(--tnb-shadow-lg);
}

/* ================================================================
   ABOUT
   ================================================================ */

.about__grid {
  display: flex;
  gap: 64px;
  align-items: flex-start;
}

.about__body {
  flex: 1;
}

.about__body p {
  font-size: 16px;
  color: var(--tnb-ink-soft);
  line-height: 1.95;
  margin: 0 0 14px;
}

.about__body p:last-child {
  margin-bottom: 0;
}

.about__photo {
  flex-shrink: 0;
  width: 420px;
}

.about__photo-frame {
  width: 100%;
  height: 280px;
  border-radius: var(--tnb-radius);
  overflow: hidden;
}

.about__photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ================================================================
   FOR YOU
   ================================================================ */

.foryou__layout {
  display: flex;
  align-items: flex-start;
}

.foryou__question {
  width: 260px;
  flex-shrink: 0;
  margin-right: 56px;
}

.foryou__question p {
  font-size: 16px;
  color: var(--tnb-ink-soft);
  line-height: 1.95;
  margin: 0;
}

.foryou__list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.foryou__item {
  background: var(--tnb-bg);
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

.foryou__item-num {
  width: 84px;
  background: var(--tnb-orange);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.foryou__item-num-bg {
  position: absolute;
  font-size: 64px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.08);
  line-height: 1;
  user-select: none;
}

.foryou__item-num-label {
  font-size: 8px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.14em;
  position: relative;
}

.foryou__item-num-value {
  font-size: 30px;
  font-weight: 900;
  color: var(--tnb-bg);
  line-height: 1;
  position: relative;
}

.foryou__item-body {
  flex: 1;
  padding: 18px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.foryou__item-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--tnb-ink);
  margin-bottom: 4px;
}

.foryou__item-desc {
  font-size: 12px;
  color: var(--tnb-muted);
  line-height: 1.7;
}

/* ================================================================
   BENEFITS
   ================================================================ */

.benefits__grid {
  display: flex;
  gap: 22px;
}

.benefits__card {
  flex: 1;
  border-radius: var(--tnb-radius-md);
  overflow: hidden;
  box-shadow: var(--tnb-shadow-lg);
}

.benefits__card-head {
  padding: 20px 20px 18px;
  position: relative;
  min-height: 92px;
  overflow: hidden;
  background: var(--tnb-navy);
}

.benefits__card-head-inner {
  position: relative;
  z-index: 1;
}

.benefits__card-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--tnb-orange);
  letter-spacing: 0.18em;
  margin-bottom: 3px;
}

.benefits__card-num {
  font-size: 20px;
  font-weight: 900;
  color: var(--tnb-bg);
  line-height: 1;
}

.benefits__card-num-bg {
  position: absolute;
  right: -6px;
  top: -10px;
  font-size: 88px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.07);
  line-height: 1;
  user-select: none;
  pointer-events: none;
}

.benefits__card-body {
  background: var(--tnb-bg);
  padding: 22px;
}

.benefits__card-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--tnb-ink);
  margin-bottom: 10px;
  line-height: 1.45;
}

.benefits__card-desc {
  font-size: 13px;
  color: var(--tnb-muted);
  line-height: 1.85;
}

/* ================================================================
   PROGRAM
   ================================================================ */

.program__grid {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

.program__intro {
  flex: 1;
}

.program__intro .sec-head__title {
  margin-bottom: 20px;
}

.program__lead {
  font-size: 16px;
  font-weight: 700;
  color: var(--tnb-ink);
  margin: 0 0 14px;
  line-height: 1.6;
}

.program__desc {
  font-size: 14px;
  color: var(--tnb-ink-muted);
  line-height: 1.9;
  margin: 0;
}

.program__list {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-top: 4px;
}

.program__item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.program__item-marker {
  width: 18px;
  height: 18px;
  background: var(--tnb-orange);
  transform: rotate(45deg);
  flex-shrink: 0;
  margin-top: 4px;
}

.program__item-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--tnb-ink);
  margin-bottom: 7px;
}

.program__item-desc {
  font-size: 13px;
  color: var(--tnb-ink-muted);
  line-height: 1.85;
}

/* ================================================================
   OVERVIEW
   ================================================================ */

.overview__grid {
  display: flex;
  gap: 64px;
  align-items: flex-start;
}

.overview__col {
  flex: 1;
}

.overview__col-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--tnb-bg);
  margin: 0 0 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--tnb-orange);
}

.overview__table {
  display: flex;
  flex-direction: column;
}

.overview__row {
  display: flex;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.overview__row:last-child {
  border-bottom: none;
}

.overview__row-label {
  width: 108px;
  font-size: 12px;
  color: var(--tnb-bg);
  font-weight: 500;
  flex-shrink: 0;
}

.overview__row-label--top {
  padding-top: 2px;
}

.overview__row-value {
  font-size: 14px;
  color: var(--tnb-bg);
  font-weight: 500;
}

.overview__row-value--multiline {
  line-height: 1.75;
}

.overview__schedule {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.overview__schedule-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.overview__schedule-time {
  background: var(--tnb-orange);
  color: var(--tnb-bg);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 60px;
  text-align: center;
}

.overview__schedule-label {
  font-size: 14px;
  color: var(--tnb-bg);
}

/* ================================================================
   SPEAKERS
   ================================================================ */

.speakers__grid {
  display: flex;
  gap: 28px;
}

.speakers__card {
  flex: 1;
  background: var(--tnb-bg);
  border-radius: var(--tnb-radius-md);
  padding: 28px;
  box-shadow: var(--tnb-shadow);
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.speakers__photo {
  width: 120px;
  height: 140px;
  flex-shrink: 0;
  border-radius: var(--tnb-radius);
  overflow: hidden;
  background: #e8ecf0;
}

.speakers__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.speakers__body {
  flex: 1;
}

.speakers__badge {
  display: inline-block;
  background: #1a1a1a;
  color: var(--tnb-bg);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding: 3px 10px;
  border-radius: var(--tnb-radius-sm);
  margin-bottom: 8px;
}

.speakers__role {
  font-size: 11px;
  color: var(--tnb-orange);
  font-weight: 700;
  margin-bottom: 4px;
  line-height: 1.6;
}

.speakers__name {
  font-size: 20px;
  font-weight: 900;
  color: var(--tnb-ink);
  margin-bottom: 13px;
}

.speakers__desc {
  font-size: 13px;
  color: var(--tnb-ink-muted);
  line-height: 1.85;
  margin: 0;
}

/* ================================================================
   HOW TO JOIN (flow)
   ================================================================ */

.flow__grid {
  display: flex;
  align-items: flex-start;
}

.flow__step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 12px;
}

.flow__step-circle {
  width: 56px;
  height: 56px;
  background: var(--tnb-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
}

.flow__step-circle span {
  font-size: 22px;
  font-weight: 900;
  color: var(--tnb-bg);
}

.flow__step-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--tnb-ink);
  margin-bottom: 8px;
}

.flow__step-desc {
  font-size: 13px;
  color: var(--tnb-muted);
  line-height: 1.75;
  margin: 0;
}

.flow__arrow {
  padding-top: 22px;
  color: #cccccc;
  font-size: 30px;
  line-height: 1;
  flex-shrink: 0;
}

/* ================================================================
   APPLY FORM
   ================================================================ */

.apply-form {
  background: var(--tnb-bg);
  border-radius: var(--tnb-radius-md);
  padding: 48px 52px;
  box-shadow: var(--tnb-shadow);
}

.apply-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 36px;
  margin-bottom: 20px;
}

.apply-form__field--full {
  grid-column: 1 / -1;
}

.apply-form__label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--tnb-ink);
  margin-bottom: 8px;
}

.apply-form__label--tight {
  margin-bottom: 12px;
}

.apply-form__badge {
  font-size: 10px;
  padding: 2px 7px;
  border-radius: var(--tnb-radius-sm);
  margin-left: 6px;
  color: var(--tnb-bg);
}

.apply-form__badge--required {
  background: var(--tnb-orange);
}

.apply-form__badge--optional {
  background: var(--tnb-muted-2);
}

.apply-form__input,
.apply-form__textarea {
  width: 100%;
  padding: 11px 13px;
  border: 1px solid var(--tnb-border-input);
  border-radius: var(--tnb-radius);
  font-size: 14px;
  color: #333333;
  background: var(--tnb-bg-input);
}

.apply-form__textarea {
  resize: vertical;
}

.apply-form__checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
}

.apply-form__checkbox-item,
.apply-form__checkbox-group .wpcf7-list-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #333333;
  cursor: pointer;
  margin: 0;
}

.apply-form__checkbox-item input,
.apply-form__checkbox-group input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--tnb-orange);
  flex-shrink: 0;
}

.apply-form__agreement {
  background: var(--tnb-bg-input);
  border: 1px solid var(--tnb-line);
  border-radius: var(--tnb-radius-md);
  padding: 18px 20px;
  margin-bottom: 24px;
}

.apply-form__agreement-label,
.apply-form__agreement .wpcf7-list-item label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.apply-form__agreement-label input,
.apply-form__agreement input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--tnb-orange);
  flex-shrink: 0;
  margin-top: 2px;
}

.apply-form__agreement-text,
.apply-form__agreement .wpcf7-list-item-label {
  font-size: 13px;
  color: #333333;
  line-height: 1.7;
}

.apply-form__submit-wrap {
  position: relative;
  text-align: center;
  margin-top: 8px;
}

.apply-form__submit {
  appearance: none;
  background: var(--tnb-orange);
  color: var(--tnb-bg);
  padding: 18px 90px;
  border: none;
  border-radius: 50px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.apply-form__note {
  font-size: 12px;
  color: #aaaaaa;
  text-align: center;
  margin: 16px 0 0;
}

.apply-form__note a {
  color: var(--tnb-orange);
  text-decoration: underline;
}

/* Contact Form 7 の既定マークアップ(バリデーション表示・送信結果)への対応 */

.apply-form .wpcf7-not-valid-tip {
  display: block;
  font-size: 12px;
  color: var(--tnb-orange);
  margin-top: 6px;
}

.apply-form .wpcf7-response-output {
  margin: 20px 0 0;
  padding: 12px 16px;
  border-radius: var(--tnb-radius);
  font-size: 13px;
  border: 1px solid var(--tnb-line-soft);
}

.apply-form form.sent .wpcf7-response-output {
  border-color: var(--tnb-orange);
  color: var(--tnb-orange);
}

.apply-form .wpcf7-spinner {
  position: absolute;
  margin-left: 10px;
}

/* ================================================================
   FOOTER
   ================================================================ */

.footer {
  background: var(--tnb-footer-bg);
  color: var(--tnb-bg);
  padding: 56px 0 0;
}

.footer__inner {
  max-width: var(--tnb-maxw);
  margin: 0 auto;
  padding: 0 40px;
}

.footer__top {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer__logos {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
}

.footer__logo-box {
  background: var(--tnb-bg);
  border-radius: var(--tnb-radius-lg);
  padding: 8px 16px;
  display: flex;
  align-items: center;
}

.footer__logo-box-img {
  width: auto;
}

/* logo.png と wakuba-logo.png は余白の取り方が異なり(前者はロゴ周囲の余白が広い)、
   同じ height では見た目のロゴサイズが揃わないため、実際のロゴ部分の高さが
   同程度になるよう画像ごとに height を変えている */

.footer__logo-box-img--tsunagaruba {
  height: 32px;
}

.footer__logo-box-img--wakuba {
  height: 32px;
}

.footer__spacer {
  flex: 1;
}

.footer__nav {
  display: flex;
  gap: 44px;
  flex-shrink: 0;
  align-items: flex-start;
}

.footer__nav-col-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--tnb-bg);
  margin-bottom: 16px;
}

.footer__nav-links {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer__nav-link {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.42);
}

.footer__nav-link--underline {
  text-decoration: underline;
}

.footer__bottom {
  padding: 20px 0;
  text-align: center;
}

.footer__copy {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.22);
  margin: 0;
}

/* ================================================================
   SP固定CTA(SPのみ表示。詳細は下部の@mediaブロックを参照)
   ================================================================ */

.sp-fixed-cta {
  display: none;
}

.sp-fixed-cta__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--tnb-orange);
  color: var(--tnb-bg);
  font-size: 14px;
  font-weight: 700;
  border-radius: 50px;
  transition: background-color 0.2s ease;
}

.sp-fixed-cta__btn:hover {
  background: var(--tnb-orange-dark);
}

/* ================================================================
   SP (max-width: 768px)
   ================================================================ */

@media (max-width: 768px) {
  /* ---- HEADER ---- */
  .header__inner {
    padding: 0 16px;
  }
  .header__nav,
  .header__cta {
    display: none;
  }
  .header__hamburger {
    display: flex;
  }
  /* ---- HERO ---- */
  .hero {
    min-height: 520px;
    align-items: flex-start;
  }
  .hero__bg {
    object-position: 65% top;
  }
  .hero__overlay {
    height: 100%;
    background: linear-gradient(
      to right,
      rgba(220, 235, 245, 0.94) 0%,
      rgba(210, 228, 240, 0.88) 38%,
      rgba(210, 228, 240, 0.25) 58%,
      transparent 72%
    );
  }
  .hero__inner {
    flex-direction: column;
    padding: 32px 20px 60px;
  }
  .hero__content {
    padding-right: 0;
    flex: none;
    width: 100%;
  }
  .hero__visual {
    display: none;
  }
  .hero__heading {
    font-size: 30px;
    white-space: normal;
    line-height: 1.25;
    margin-bottom: 16px;
  }
  .hero__meta {
    display: flex;
    flex-direction: column;
    width: 50%;
    min-width: 190px;
    align-self: flex-start;
    border-radius: var(--tnb-radius-md);
    margin-bottom: 20px;
  }
  .hero__meta-item {
    padding: 10px 12px;
  }
  .hero__meta-divider {
    width: 100%;
    height: 1px;
  }
  .hero__person--sp {
    display: block;
    position: absolute;
    top: 46%;
    bottom: auto;
    left: 60%;
    right: auto;
    z-index: 3;
    max-width: 32%;
    padding: 7px 10px;
  }
  .hero__person--sp .hero__person-role {
    font-size: 8px;
    margin-bottom: 2px;
  }
  .hero__person--sp .hero__person-name {
    font-size: 13px;
  }
  .hero__logos {
    flex-wrap: wrap;
    gap: 12px;
  }
  /* ---- CTA BANNER ---- */
  .cta-banner__inner {
    flex-wrap: wrap;
    padding: 16px 20px;
    gap: 12px;
  }
  .cta-banner__free {
    font-size: 18px;
  }
  .cta-banner__quota-num {
    font-size: 34px;
  }
  .cta-banner__divider {
    display: none;
  }
  .cta-banner__btn {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
  }
  /* ---- SECTIONS ---- */
  .band {
    padding: 48px 0;
  }
  .l-wrap {
    padding: 0 20px;
  }
  .sec-head__title {
    font-size: 26px;
  }
  .overview__col-title {
    font-size: 15px;
  }
  /* ---- ABOUT ---- */
  .about__grid {
    flex-direction: column;
    gap: 28px;
  }
  .about__photo {
    width: 100%;
  }
  /* ---- FOR YOU ---- */
  .foryou__layout {
    flex-direction: column;
    gap: 20px;
  }
  .foryou__question {
    width: 100%;
    margin-right: 0;
  }
  /* ---- BENEFITS ---- */
  .benefits__grid {
    flex-direction: column;
    gap: 16px;
  }
  /* ---- PROGRAM ---- */
  .program__grid {
    flex-direction: column;
    gap: 36px;
  }
  /* ---- OVERVIEW ---- */
  .overview__grid {
    flex-direction: column;
    gap: 40px;
  }
  /* ---- SPEAKERS ---- */
  .speakers__grid {
    flex-direction: column;
    gap: 20px;
  }
  .speakers__card {
    flex-direction: column;
    padding: 20px;
  }
  .speakers__photo {
    width: 100%;
    height: 200px;
    flex-shrink: 0;
  }
  /* ---- HOW TO JOIN ---- */
  .flow__grid {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  .flow__arrow {
    transform: rotate(90deg);
    padding: 0;
  }
  /* ---- APPLY FORM ---- */
  .apply-form {
    padding: 28px 20px;
  }
  .apply-form__grid {
    grid-template-columns: 1fr;
  }
  /* ---- FOOTER ---- */
  .footer__top {
    flex-direction: column;
    gap: 32px;
    padding-bottom: 32px;
  }
  .footer__logos {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer__nav {
    flex-direction: column;
    gap: 28px;
  }
  /* ---- SP固定CTA ---- */
  .sp-fixed-cta {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 150;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    background: var(--tnb-bg);
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.1);
    transition:
      transform 0.25s ease,
      opacity 0.25s ease;
  }
  .sp-fixed-cta--hidden {
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
  }
  .sp-fixed-cta__btn {
    padding: 14px;
  }
}
