@font-face {
  font-family: "Zen Kaku Gothic New";
  src: url("./assets/fonts/ZenKakuGothicNew-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Zen Kaku Gothic New";
  src: url("./assets/fonts/ZenKakuGothicNew-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Zen Kaku Gothic New";
  src: url("./assets/fonts/ZenKakuGothicNew-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Zen Kaku Gothic New";
  src: url("./assets/fonts/ZenKakuGothicNew-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --primary: #085585;
  --text: #454a4d;
  --secondary: #747e85;
  --border: #d8e6ec;
  --pale: #eaf4ff;
  --soft: #f5f5f5;
  --muted: #9e9e9e;
  --white: #ffffff;
  --font: "Zen Kaku Gothic New", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: var(--font);
  font-weight: 700;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  padding: 0 4vw;
  border-bottom: 1px solid rgba(216, 230, 236, 0.9);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}

.brand > img {
  width: 124px;
  height: auto;
}

.brand-divider {
  width: 1px;
  height: 34px;
  background: var(--border);
}

.event-logo {
  display: grid;
  line-height: 1.05;
}

.event-logo strong {
  color: var(--primary);
  font-size: 18px;
  font-weight: 900;
}

.event-logo small {
  margin-top: 5px;
  color: var(--secondary);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.button {
  position: relative;
  z-index: 0;
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 0 34px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: var(--white);
  background-color: var(--primary);
  background-image: linear-gradient(
    115deg,
    #064d7c 0%,
    #0d6ba8 32%,
    #2f95d0 62%,
    #59c8ef 100%
  );
  background-size: 210% 100%;
  background-position: 0% 50%;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 14px 32px rgba(8, 85, 133, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  transition: transform 200ms ease, box-shadow 200ms ease,
    background-position 520ms ease;
}

/* 光がすっと横切る演出（ホバー時のみ） */
.button::after {
  position: absolute;
  z-index: -1;
  top: 0;
  left: -60%;
  width: 45%;
  height: 100%;
  background: linear-gradient(
    100deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.38) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  content: "";
  transform: skewX(-18deg);
  transition: left 620ms ease;
}

.button-arrow {
  display: inline-block;
  transition: transform 200ms ease;
}

.button:hover {
  transform: translateY(-3px);
  background-position: 100% 50%;
  box-shadow: 0 20px 42px rgba(8, 85, 133, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.button:hover::after {
  left: 130%;
}

.button:hover .button-arrow {
  transform: translateX(5px);
}

.button:active {
  transform: translateY(0) scale(0.99);
  box-shadow: 0 8px 20px rgba(8, 85, 133, 0.3);
}

.button:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px rgba(8, 85, 133, 0.45);
}

.button-small {
  min-height: 44px;
  gap: 0;
  padding-inline: 26px;
  font-size: 14px;
  box-shadow: 0 8px 20px rgba(8, 85, 133, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.button-small:hover {
  box-shadow: 0 12px 26px rgba(8, 85, 133, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.button-outline {
  border-color: var(--primary);
  color: var(--primary);
  background-color: var(--white);
  background-image: none;
  box-shadow: none;
}

.button-outline:hover {
  background-color: var(--pale);
  box-shadow: 0 10px 24px rgba(8, 85, 133, 0.16);
}

.button-outline::after {
  display: none;
}

/* FV直下と画面下固定の主要CTAだけ、ゆっくり呼吸させて視線を集める */
@keyframes cta-breathe {
  0%,
  100% {
    box-shadow: 0 14px 32px rgba(8, 85, 133, 0.32),
      0 0 0 0 rgba(89, 200, 239, 0.5),
      inset 0 1px 0 rgba(255, 255, 255, 0.28);
  }
  50% {
    box-shadow: 0 14px 32px rgba(8, 85, 133, 0.32),
      0 0 0 12px rgba(89, 200, 239, 0),
      inset 0 1px 0 rgba(255, 255, 255, 0.28);
  }
}

.hero-cta .button,
.mobile-cta a {
  animation: cta-breathe 2800ms ease-out infinite;
}

.hero-cta .button:hover,
.mobile-cta a:hover {
  animation: none;
}

.section-shell {
  width: min(1180px, calc(100% - 56px));
  margin-inline: auto;
}

.narrow-shell {
  width: min(960px, calc(100% - 56px));
}

.section-block {
  padding-block: 112px;
}

.hero-media,
.companies-media {
  position: relative;
  width: 100%;
  background: var(--pale);
}

.hero-media picture,
.companies-media picture,
.hero-media img,
.companies-media img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-media-inner,
.companies-media-inner {
  position: relative;
  z-index: 1;
  width: 100%;
}

/* ==========================================================
   PC（681px以上）でもSP版の画像・文言を表示する
   縦長のSP画像は中央に額装し、左右をブランド色で埋める
   ========================================================== */
@media (min-width: 681px) {
  /* ---- FV ---- */
  .hero-media {
    overflow: hidden;
    background: #002647;
    padding-block: 0;
  }

  /* 同じFV画像を大きくぼかして背景に敷き、左右の余白をなじませる */
  .hero-media::before {
    content: "";
    position: absolute;
    inset: -6%;
    z-index: 0;
    background-image: url("./assets/hero-fv-sp-20260805-2.png");
    background-image: image-set(
      url("./assets/hero-fv-sp-20260805-2.webp") type("image/webp"),
      url("./assets/hero-fv-sp-20260805-2.png") type("image/png")
    );
    background-position: center;
    background-size: cover;
    filter: blur(38px) brightness(0.55) saturate(0.9);
    transform: scale(1.08);
  }

  .hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(
      180deg,
      rgba(0, 26, 50, 0.35) 0%,
      rgba(0, 26, 50, 0.15) 45%,
      rgba(0, 26, 50, 0.45) 100%
    );
  }

  .hero-media-inner {
    display: flex;
    justify-content: center;
    width: min(640px, 100%);
    margin-inline: auto;
  }

  .hero-media-inner picture {
    display: contents;
  }

  /* 縦横比を保ったまま、初回表示で全体が収まる高さに抑える */
  .hero-media-inner img {
    width: auto;
    max-width: 100%;
    max-height: calc(100vh - 96px);
    box-shadow: 0 24px 60px rgba(0, 20, 40, 0.35);
  }

  /* ---- 参加企業 ---- */
  .companies-media {
    padding-block: 64px;
    background: var(--pale);
  }

  .companies-media-inner {
    width: min(620px, 100% - 48px);
    margin-inline: auto;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 18px 44px rgba(8, 85, 133, 0.12);
  }

  .companies-media-inner img {
    display: block;
    width: 100%;
    height: auto;
  }
}

.hero-image-cta {
  display: none;
  position: absolute;
  z-index: 2;
  top: 79.6%;
  left: 73%;
  width: 24.7%;
  height: 11.5%;
  border-radius: 999px;
}

.hero-image-cta:focus-visible {
  outline: 5px solid var(--white);
  outline-offset: -7px;
  box-shadow: 0 0 0 9px var(--primary);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero {
  display: grid;
  min-height: calc(100vh - 76px);
  grid-template-columns: 1.04fr 0.96fr;
  align-items: center;
  gap: 6vw;
  padding-block: 76px 96px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 20px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.eyebrow span {
  display: inline-flex;
  margin-right: 12px;
  padding: 5px 11px;
  border-radius: 6px;
  color: var(--white);
  background: var(--primary);
  letter-spacing: 0.08em;
}

.hero h1,
.section-block h2 {
  margin: 0;
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.42;
}

.hero h1 {
  font-size: clamp(38px, 4.2vw, 68px);
}

.hero h1 em,
.section-block h2 em {
  color: var(--primary);
  font-style: normal;
}

.hero-lead {
  margin: 30px 0 0;
  color: var(--secondary);
  font-size: clamp(16px, 1.4vw, 19px);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 38px;
}

.hero-actions p {
  margin: 0;
  color: var(--secondary);
  font-size: 12px;
}

.event-facts {
  display: grid;
  gap: 10px;
  margin: 36px 0 0;
}

.event-facts > div {
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: baseline;
}

.event-facts dt {
  color: var(--secondary);
  font-size: 12px;
  font-weight: 700;
}

.event-facts dd {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  padding: 72px 0 46px 34px;
}

.hero-ring {
  position: absolute;
  z-index: 0;
  top: 0;
  right: -6%;
  width: 70%;
  opacity: 0.24;
}

.hero-photo-wrap {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 10px solid var(--white);
  border-radius: 44% 44% 24px 24px;
  background: var(--pale);
  box-shadow: 0 32px 70px rgba(69, 74, 77, 0.18);
}

.hero-photo {
  width: 100%;
  min-height: 480px;
  object-fit: cover;
}

.photo-label {
  position: absolute;
  right: 20px;
  bottom: 20px;
  display: grid;
  min-width: 190px;
  margin: 0;
  padding: 16px 20px;
  border-radius: 14px;
  color: var(--white);
  background: rgba(8, 85, 133, 0.94);
  line-height: 1.3;
}

.photo-label strong {
  font-size: 28px;
  font-weight: 900;
}

.photo-label span {
  font-size: 11px;
}

.empathy {
  background: var(--pale);
  text-align: center;
}

.section-block h2 {
  font-size: clamp(32px, 3.6vw, 54px);
}

.section-intro {
  margin: 28px auto 0;
  color: var(--secondary);
  font-size: 17px;
}

.thought-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 54px;
  text-align: left;
}

.thought-grid article {
  min-height: 180px;
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--white);
}

.thought-grid span,
.process-list > li > span {
  color: var(--primary);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.thought-grid p {
  margin: 38px 0 0;
  font-weight: 700;
  line-height: 1.7;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  gap: 7vw;
}

.section-heading > p {
  margin: 0 0 8px;
  color: var(--secondary);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 64px 0 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--border);
  list-style: none;
}

.process-list li {
  min-height: 290px;
  padding: 38px;
  background: var(--white);
}

.process-list strong {
  display: block;
  margin-top: 48px;
  color: var(--primary);
  font-size: 34px;
  font-weight: 900;
}

.process-list p {
  margin: 12px 0 0;
  color: var(--secondary);
  font-size: 14px;
}

.center-action {
  margin-top: 44px;
  text-align: center;
}

.scale {
  color: var(--white);
  background: var(--primary);
}

.scale-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 6vw;
}

.scale-photo {
  overflow: hidden;
  border: 8px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
}

.scale-photo img {
  width: 100%;
  min-height: 390px;
  object-fit: cover;
}

.section-kicker.light {
  color: var(--border);
}

.big-number {
  margin: 0;
  font-size: clamp(80px, 10vw, 146px);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.95;
}

.big-number span {
  margin-left: 10px;
  font-size: 22px;
  letter-spacing: 0;
}

.scale-copy h2 {
  margin-top: 24px;
  font-size: clamp(30px, 3.1vw, 46px);
}

.scale-copy > p:last-child {
  color: var(--border);
}

.final-cta {
  position: relative;
  overflow: hidden;
  text-align: center;
}

.final-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(720px, 70vw);
  transform: translate(-50%, -50%);
  opacity: 0.07;
}

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

.final-inner > p:not(.section-kicker) {
  margin: 20px 0 32px;
  color: var(--secondary);
}

footer {
  display: grid;
  min-height: 190px;
  place-items: center;
  align-content: center;
  gap: 12px;
  padding: 36px 24px;
  border-top: 1px solid var(--border);
  background: var(--soft);
  text-align: center;
}

footer img {
  width: 150px;
}

footer p,
footer small {
  margin: 0;
  color: var(--secondary);
  font-size: 12px;
}

.footer-organizer {
  color: var(--text);
  font-weight: 700;
}

.mobile-cta {
  display: none;
}

@media (max-width: 900px) {
  .hero,
  .section-heading,
  .scale-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 32px;
    padding-block: 54px 76px;
  }

  .hero-visual {
    padding-left: 0;
  }

  .hero-photo {
    min-height: 420px;
  }

  .section-heading {
    align-items: start;
    gap: 22px;
  }
}

@media (max-width: 680px) {
  body {
    padding-bottom: 72px;
  }

  .site-header {
    height: 64px;
    padding-inline: 18px;
  }

  .site-header > .button {
    display: none;
  }

  .brand {
    gap: 10px;
  }

  .brand > img {
    width: 96px;
  }

  .brand-divider {
    height: 26px;
  }

  .event-logo strong {
    font-size: 14px;
  }

  .event-logo small {
    font-size: 7px;
  }

  .section-shell,
  .narrow-shell {
    width: min(100% - 36px, 1180px);
  }

  .section-block {
    padding-block: 76px;
  }

  /* 新SP版FVは画像内にボタンを持たないため、画像内クリック領域は無効化。
     スマホのエントリー導線は画面下の固定バー（.mobile-cta）が担う */
  .hero-image-cta {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 48px;
  }

  .hero h1 {
    font-size: clamp(34px, 10vw, 48px);
    line-height: 1.4;
  }

  .hero-lead br,
  .section-intro br {
    display: none;
  }

  .hero-actions {
    display: block;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-actions p {
    margin-top: 10px;
    text-align: center;
  }

  .event-facts > div {
    grid-template-columns: 46px 1fr;
  }

  .hero-visual {
    padding-top: 42px;
  }

  .hero-ring {
    width: 76%;
  }

  .hero-photo-wrap {
    border-width: 6px;
    border-radius: 40% 40% 18px 18px;
  }

  .hero-photo {
    min-height: 330px;
  }

  .photo-label {
    right: 12px;
    bottom: 12px;
    min-width: 160px;
    padding: 12px 15px;
  }

  .photo-label strong {
    font-size: 24px;
  }

  .thought-grid,
  .process-list {
    grid-template-columns: 1fr;
  }

  .thought-grid {
    margin-top: 38px;
  }

  .thought-grid article {
    min-height: 145px;
  }

  .thought-grid p {
    margin-top: 24px;
  }

  .process-list li {
    min-height: auto;
    padding: 30px;
  }

  .process-list strong {
    margin-top: 24px;
  }

  .scale-photo img {
    min-height: 260px;
  }

  .mobile-cta {
    position: fixed;
    z-index: 30;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 -10px 30px rgba(69, 74, 77, 0.12);
  }

  .mobile-cta a {
    display: flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: var(--white);
    background-color: var(--primary);
    background-image: linear-gradient(
      115deg,
      #064d7c 0%,
      #0d6ba8 32%,
      #2f95d0 62%,
      #59c8ef 100%
    );
    font-weight: 900;
    text-decoration: none;
  }

  .mobile-cta a:active {
    transform: scale(0.99);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button {
    transition: none;
  }

  .button::after,
  .button-arrow {
    transition: none;
  }

  .hero-cta .button,
  .mobile-cta a {
    animation: none;
  }
}

/* ============================================
   ENTRY FORM
   ============================================ */
.entry {
  background: var(--pale);
  text-align: center;
}

.entry-lead {
  margin-bottom: 48px;
}

.entry-card {
  padding: 48px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--white);
  text-align: left;
  box-shadow: 0 18px 48px rgba(69, 74, 77, 0.08);
}

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 22px;
}

.field label {
  font-size: 14px;
  font-weight: 700;
}

.field .req,
.field .opt {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  vertical-align: 2px;
}

.field .req {
  color: var(--white);
  background: #d4553f;
}

.field .opt {
  color: var(--secondary);
  background: var(--soft);
}

.field input,
.field select {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  background: var(--white);
  font-family: var(--font);
  font-size: 16px;
  font-weight: 500;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.field select {
  appearance: none;
  padding-right: 40px;
  background-image: linear-gradient(45deg, transparent 50%, var(--primary) 50%),
    linear-gradient(135deg, var(--primary) 50%, transparent 50%);
  background-repeat: no-repeat;
  background-position: calc(100% - 20px) 24px, calc(100% - 14px) 24px;
  background-size: 6px 6px, 6px 6px;
}

.field input::placeholder {
  color: #c2c9cd;
}

.field input:focus,
.field select:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(8, 85, 133, 0.14);
}

.field.hp {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 30px 0 0;
  font-size: 14px;
  cursor: pointer;
}

.consent input {
  width: 20px;
  height: 20px;
  flex: none;
  margin-top: 2px;
  accent-color: var(--primary);
}

.consent a {
  color: var(--primary);
  font-weight: 700;
}

.form-error {
  margin: 18px 0 0;
  padding: 12px 16px;
  border-radius: 8px;
  color: #b83a24;
  background: #fdeeea;
  font-size: 14px;
  font-weight: 700;
}

.entry-submit {
  width: 100%;
  margin-top: 26px;
  gap: 0;
  font-size: 17px;
}

.entry-submit:disabled {
  cursor: not-allowed;
  opacity: 0.6;
  transform: none;
}

.form-note {
  margin: 14px 0 0;
  color: var(--secondary);
  font-size: 12px;
  text-align: center;
}

.entry-thanks {
  padding: 30px 0;
  text-align: center;
}

.thanks-mark {
  display: grid;
  width: 68px;
  height: 68px;
  margin: 0 auto 24px;
  border-radius: 999px;
  color: var(--white);
  background: var(--primary);
  font-size: 32px;
  font-weight: 900;
  place-items: center;
}

.entry-thanks h3 {
  margin: 0 0 16px;
  font-size: 26px;
  font-weight: 900;
}

.entry-thanks p {
  margin: 0;
  color: var(--secondary);
}

.thanks-sub {
  margin-top: 18px !important;
  font-size: 12px;
}

@media (max-width: 680px) {
  .entry-card {
    padding: 26px 20px;
  }

  .entry-lead {
    margin-bottom: 32px;
  }

  .field input,
  .field select {
    min-height: 50px;
  }

  .field select {
    background-position: calc(100% - 20px) 22px, calc(100% - 14px) 22px;
  }
}

/* ============================================
   VOICES / OUTLINE / HOWTO / FAQ
   ============================================ */

/* 仮置き箇所の見た目（差し替え後はこのCSSごと消してOK） */
[data-placeholder] {
  outline: 1px dashed #d4553f;
  outline-offset: 3px;
  color: #b83a24;
}

.placeholder-note {
  margin: 28px 0 0;
  color: #b83a24;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

/* ---- 参加者の声 ---- */
.voices {
  background: var(--white);
}

.result-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 56px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--border);
}

.result-item {
  display: grid;
  gap: 4px;
  padding: 32px 20px;
  background: var(--pale);
  text-align: center;
}

.result-item strong {
  color: var(--primary);
  font-size: clamp(34px, 4.4vw, 54px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.result-item span {
  color: var(--secondary);
  font-size: 12px;
  font-weight: 700;
}

.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 20px;
}

.voice-card {
  display: grid;
  align-content: space-between;
  min-height: 230px;
  padding: 30px 26px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--white);
}

.voice-body {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.85;
}

.voice-meta {
  display: grid;
  gap: 2px;
  margin: 24px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.voice-meta strong {
  color: var(--primary);
  font-size: 14px;
  font-weight: 900;
}

.voice-meta span {
  color: var(--secondary);
  font-size: 12px;
}

.voice-photo {
  margin-top: 20px;
  overflow: hidden;
  border-radius: 20px;
}

.voice-photo img {
  width: 100%;
  max-height: 340px;
  object-fit: cover;
}

/* ---- 開催概要 ---- */
/* 参加者の声（白）と隣り合うため、開催概要は淡い青にして境目を作る */
.outline {
  background: var(--pale);
  text-align: center;
}

.outline-list {
  display: grid;
  gap: 1px;
  margin: 48px 0 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--border);
  text-align: left;
}

.outline-list > div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 20px;
  padding: 22px 28px;
  background: var(--white);
}

.outline-list dt {
  color: var(--primary);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.outline-list dd {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
}

.outline-list dd small {
  display: block;
  margin-top: 4px;
  color: var(--secondary);
  font-size: 12px;
  font-weight: 500;
}

/* ---- 参加までの3ステップ ---- */
.howto {
  background: var(--white);
}

.howto-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 56px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: howto;
}

.howto-list li {
  position: relative;
  min-height: 240px;
  padding: 34px 28px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--pale);
}

.howto-num {
  display: inline-flex;
  padding: 5px 12px;
  border-radius: 999px;
  color: var(--white);
  background: var(--primary);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.howto-list strong {
  display: block;
  margin-top: 26px;
  font-size: 21px;
  font-weight: 900;
  line-height: 1.5;
}

.howto-list p {
  margin: 12px 0 0;
  color: var(--secondary);
  font-size: 14px;
}

/* ---- FAQ ---- */
.faq {
  background: var(--pale);
  text-align: center;
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 48px;
  text-align: left;
}

.faq-list details {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--white);
}

.faq-list summary {
  position: relative;
  padding: 22px 56px 22px 26px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 24px;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--primary);
  border-bottom: 2px solid var(--primary);
  content: "";
  transform: translateY(-70%) rotate(45deg);
  transition: transform 200ms ease;
}

.faq-list details[open] summary::after {
  transform: translateY(-30%) rotate(-135deg);
}

.faq-list details p {
  margin: 0;
  padding: 0 26px;
  color: var(--secondary);
  font-size: 14px;
}

.faq-list details p + p {
  margin-top: 14px;
}

.faq-list details p:last-of-type {
  padding-bottom: 24px;
}

/* ---- FAQ末尾：担当アドバイザーのご案内 ---- */
.faq-advisor {
  margin-top: 40px;
  padding: 36px 40px 34px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--white);
  text-align: left;
}

.faq-advisor-title {
  margin: 0 0 16px;
  color: var(--primary);
  font-size: clamp(18px, 2.4vw, 22px);
  font-weight: 900;
  line-height: 1.6;
}

.faq-advisor p {
  margin: 0 0 12px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.9;
}

.faq-advisor p:last-of-type {
  margin-bottom: 0;
}

.faq-advisor .center-action {
  margin-top: 28px;
  text-align: center;
}

@media (max-width: 680px) {
  .faq-advisor {
    margin-top: 28px;
    padding: 26px 20px 24px;
  }

  .faq-advisor p {
    font-size: 14px;
  }

  .faq-advisor .center-action .button {
    width: 100%;
  }
}

@media (max-width: 900px) {
  .voice-grid,
  .howto-list {
    grid-template-columns: 1fr;
  }

  .voice-card,
  .howto-list li {
    min-height: auto;
  }
}

@media (max-width: 680px) {
  .result-row {
    grid-template-columns: 1fr;
  }

  .result-item {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding: 18px 24px;
    text-align: left;
  }

  .result-item strong {
    font-size: 32px;
  }

  .outline-list > div {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 18px 20px;
  }

  .voice-photo img {
    max-height: 220px;
  }

  .faq-list summary {
    padding: 18px 48px 18px 20px;
    font-size: 14px;
  }

  .faq-list details p {
    padding: 0 20px 20px;
  }
}

/* ============================================
   WHAT IS GRIT
   ============================================ */
.grit {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--primary);
  text-align: center;
}

.grit-ring-bg {
  position: absolute;
  top: -12%;
  right: -14%;
  width: min(620px, 60vw);
  opacity: 0.08;
  pointer-events: none;
}

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

.grit h2 em {
  color: #8fd0f2;
  font-style: normal;
}

.grit-lead {
  width: min(720px, 100%);
  margin: 28px auto 0;
  color: var(--border);
  font-size: 16px;
}

.grit-letters {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 60px 0 0;
  padding: 0;
  list-style: none;
  text-align: left;
}

.grit-letters li {
  padding: 30px 24px 28px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
}

.grit-letters span {
  display: block;
  color: #8fd0f2;
  font-size: 46px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
}

.grit-letters strong {
  display: block;
  margin-top: 18px;
  font-size: 15px;
  font-weight: 900;
}

.grit-letters p {
  margin: 8px 0 0;
  color: var(--border);
  font-size: 13px;
  line-height: 1.7;
}

.grit-why {
  width: min(760px, 100%);
  margin: 64px auto 0;
  padding: 40px 36px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.16);
}

.grit-why h3 {
  margin: 0;
  font-size: clamp(21px, 2.4vw, 30px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.5;
}

.grit-why p {
  margin: 20px 0 0;
  color: var(--border);
  font-size: 15px;
}

.grit-you {
  margin-top: 64px;
}

.grit-you > p {
  margin: 0 0 10px;
  color: var(--border);
  font-size: clamp(16px, 1.9vw, 20px);
  font-weight: 700;
}

.grit-punch {
  margin: 36px 0 0 !important;
  color: var(--white) !important;
  font-size: clamp(24px, 3.2vw, 40px) !important;
  font-weight: 900 !important;
  letter-spacing: -0.03em;
  line-height: 1.55;
}

.grit .center-action {
  margin-top: 48px;
}

@media (max-width: 900px) {
  .grit-letters {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .grit-letters {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 40px;
  }

  .grit-letters li {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 4px 16px;
    padding: 20px 22px;
  }

  .grit-letters span {
    grid-row: span 2;
    align-self: center;
    font-size: 40px;
  }

  .grit-letters strong {
    margin-top: 0;
    align-self: end;
  }

  .grit-why {
    margin-top: 44px;
    padding: 28px 22px;
  }

  .grit-you {
    margin-top: 48px;
  }

  .grit-you > p br {
    display: none;
  }
}

/* ---- GRIT：あなたの経験ブロック ---- */
.grit-you-lead {
  margin: 0;
  font-size: clamp(18px, 2.1vw, 24px);
  font-weight: 900;
  letter-spacing: -0.02em;
}

.grit-you-list {
  display: grid;
  gap: 10px;
  width: min(680px, 100%);
  margin: 28px auto 0;
  padding: 0;
  list-style: none;
  text-align: left;
}

.grit-you-list li {
  padding: 18px 24px;
  border-left: 3px solid #8fd0f2;
  border-radius: 0 12px 12px 0;
  background: rgba(255, 255, 255, 0.08);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.7;
}

.grit-you-note {
  width: min(680px, 100%);
  margin: 26px auto 0;
  color: var(--border);
  font-size: 15px;
}

@media (max-width: 680px) {
  .grit-you-list li {
    padding: 15px 18px;
    font-size: 14px;
  }
}

/* ---- GRIT 短縮版 ---- */
.grit-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 56px 0 0;
  padding: 0;
  list-style: none;
  text-align: left;
}

.grit-points li {
  padding: 30px 26px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
}

.grit-points strong {
  display: block;
  color: #8fd0f2;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.5;
}

.grit-points p {
  margin: 14px 0 0;
  color: var(--border);
  font-size: 14px;
  line-height: 1.8;
}

/* ---- 会場写真とマップ ---- */
.venue-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}

.venue-photo {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--white);
}

.venue-photo img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  object-position: center 30%;
}

.venue-caption {
  position: absolute;
  right: 10px;
  bottom: 10px;
  margin: 0;
  padding: 6px 12px;
  border-radius: 8px;
  color: var(--white);
  background: rgba(8, 85, 133, 0.88);
  font-size: 11px;
  font-weight: 700;
}

.venue-map {
  overflow: hidden;
  min-height: 260px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--white);
}

.venue-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 260px;
  border: 0;
}

.outline .center-action {
  margin-top: 28px;
}

@media (max-width: 900px) {
  .grit-points {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 40px;
  }

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

/* ---- FV直下のCTA ---- */
.hero-cta {
  padding-block: 36px;
  background: var(--white);
  text-align: center;
}

.hero-cta .button {
  min-width: min(360px, 100%);
}

.hero-cta p {
  margin: 14px 0 0;
  color: var(--secondary);
  font-size: 12px;
}

/* ---- 企業と出会う2つの体験 ---- */
.encounters-sp-media {
  display: block;
  width: 100%;
  background: var(--white);
}

.encounters-sp-media img {
  display: block;
  width: 100%;
  height: auto;
}

.encounters-grid {
  background: var(--white);
}

/* PC：導入は横長のまま、体験2枚は2カラムのカードに */
@media (min-width: 681px) {
  .encounters-intro {
    padding-block: 72px 0;
  }

  .encounters-intro img {
    width: min(900px, 100% - 48px);
    margin-inline: auto;
  }

  .encounters-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    width: min(1000px, 100% - 48px);
    margin-inline: auto;
    padding-block: 32px 72px;
  }

  .encounters-card {
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 18px 44px rgba(8, 85, 133, 0.14);
  }
}

/* ---- メリット画像セクション ---- */

.benefit-media {
  padding-block: 0 72px;
  background: var(--pale);
  text-align: center;
}

.benefit-media img {
  width: min(660px, 100%);
  margin-inline: auto;
}

.benefit-media .center-action {
  margin-top: 40px;
}

@media (max-width: 680px) {
  .hero-cta {
    padding-block: 26px;
  }

  .hero-cta .button {
    width: 100%;
  }

  .benefit-media {
    display: none;
  }

  .benefit-media .center-action {
    padding-inline: 18px;
  }

  .benefit-media .center-action .button {
    width: 100%;
  }
}

/* ---- 参加者の声（画像） ---- */
.voices-media {
  padding-block: 0 72px;
  background: var(--white);
  text-align: center;
}

.voices-media picture {
  display: block;
}

.voices-media img {
  width: min(1080px, 100%);
  margin-inline: auto;
}

.voices-media .center-action {
  margin-top: 40px;
}

@media (max-width: 680px) {
  .voices-media {
    padding-block: 0 52px;
  }

  .voices-media img {
    width: 100%;
  }

  .voices-media .center-action {
    padding-inline: 18px;
  }

  .voices-media .center-action .button {
    width: 100%;
  }

  /* 最終CTAはSPでも表示する（画面下の固定バーとあわせて最後の一押しを残す） */
  .final-cta {
    display: block;
  }

  /* 画面下の固定エントリーバーにフッターが隠れないようにする */
  footer {
    padding-bottom: calc(96px + env(safe-area-inset-bottom));
  }
}
