@charset "UTF-8";

/* =========================
  Base
========================= */
:root {
  --color-text: #333;
  --color-bg: #f0f0f0;
  --color-white: #ffffff;
  --color-blue: #223a70;
  --color-blue-light: #2f4c8f;
  --color-blue-deep: #192f60;
  --color-accent: #f6a623;
  --color-accent-hover: #f2b84d;
  --color-border: #d9dfe5;
  --color-gray: #8f98a3;
  --color-gray-light: #f5f7fa;
  --color-check: #bb0600;

  --font-base: "Noto Sans JP", sans-serif;

  --content-width: 1200px;
  --content-narrow: 1080px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 999px;
  --shadow-sm: 0px 10px 10px -6px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 20px rgba(0, 0, 0, 0.08);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-text);
  font-family: var(--font-base);
  line-height: 1.75;
  background: var(--color-bg);
  -webkit-text-size-adjust: 100%;
  font-weight: 400;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  color: inherit;
  text-decoration: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

button,
summary {
  cursor: pointer;
}
summary::-webkit-details-marker {
  display: none;
}
.l-container {
  width: min(100% - 40px, var(--content-width));
  margin-inline: auto;
}

.l-container--narrow {
  width: min(100% - 40px, var(--content-narrow));
}

.c-sectionTitle {
  margin: 0 0 40px;
  font-size: 48px;
  line-height: 1.25;
  text-align: center;
  text-wrap: balance;
  font-weight: 700;
}

.c-sectionTitle span {
  font-size: 1.5em;
}

.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  padding: 14px 32px;
  border-radius: var(--radius-lg);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.4;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.6);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    background-color 0.3s ease;
}

.c-btn:hover {
  opacity: 0.95;
  transform: translateY(1px);
}

.c-btn--orange {
  color: #fff;
  background: linear-gradient(180deg, #f7b64e 0%, #f29e1f 100%);
  box-shadow: 0 6px 14px rgba(242, 158, 31, 0.26);
}

.c-btn--orange:hover {
  background: linear-gradient(180deg, #f8c05f 0%, #f3a935 100%);
}

.c-btn--lg {
  min-height: 68px;
  padding: 18px 38px;
  font-size: 20px;
}
.sp {
  display: none;
}
.marker-y {
  text-decoration: underline;
  text-decoration-thickness: 0.5em;
  text-decoration-color: rgb(251 227 0 / 66%);
  text-underline-offset: -0.2em;
  text-decoration-skip-ink: none;
}
.marker-r {
  text-decoration: underline;
  text-decoration-thickness: 0.35em;
  text-decoration-color: hsla(0, 97%, 65%, 0.9);
  text-underline-offset: -0.12em;
  text-decoration-skip-ink: none;
}
.individual{
  display: inline-block;
  background: #4a4a4a;
  color: var(--color-white);
  line-height: 1.1;
  padding: 0 .2em .15em;
  margin-left: 8px;
}

.js-bounceTitle.is-animated .individual {
  animation: bounceMini 0.6s ease;
  animation-fill-mode: both;
}
.js-bounceTitle.is-animated .individual:nth-of-type(1) { animation-delay: 0s; }
.js-bounceTitle.is-animated .individual:nth-of-type(2) { animation-delay: 0.05s; }
.js-bounceTitle.is-animated .individual:nth-of-type(3) { animation-delay: 0.1s; }
.js-bounceTitle.is-animated .individual:nth-of-type(4) { animation-delay: 0.15s; }
.js-bounceTitle.is-animated .individual:nth-of-type(5) { animation-delay: 0.2s; }

@keyframes bounceMini {
  0%   { transform: translateY(0); }
  30%  { transform: translateY(-8px); }
  60%  { transform: translateY(3px); }
  100% { transform: translateY(0); }
}

.solve {
  color: var(--color-blue);
}
.dots {
  -webkit-text-emphasis: filled;
  text-emphasis: filled;
}

/* =========================
  HEADER
========================= */
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}
.header {
  padding: 5px 0;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  max-width: 120px;
  height: auto;
}
/* =========================
  FV
========================= */
.fv {
  min-height: 650px;
  padding: 56px 0 28px;
  background: var(--color-bg);
  position: relative;
  display: grid;
  align-content: center;
}

.fv__inner {
  position: relative;
  z-index: 10;
}

.fv__title {
  margin: 0;
  font-size: 40px;
  line-height: 1.25;
  font-weight: 700;
}

.fv__title span {
  font-size: 0.75em;
  font-weight: 700;
}

.fv__lead {
  margin: 28px 0 0;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 500;
}

.fv__info {
  margin: 40px 0 0;
}

.fv__infoRow {
  display: flex;
  gap: 0;
  font-size: 18px;
}

.fv__info dt {
  font-weight: 700;
}

.fv__cta {
  width: 350px;
  max-width: 100%;
  margin-top: 40px;
}

.fv__ctaLead {
  margin: 0 auto 0;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}

.fv__cta .c-btn {
  width: 100%;
}
.fv__image01 {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: 58dvw;
  max-width: 1100px;
}

.fv__image01 img {
  width: 100%;
}

.fv__image01,
.fv__image01 img {
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
}

.fv__image02 {
  width: 100dvw;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  overflow: hidden;
  background-image: radial-gradient(circle at 0% 90%, hsl(190deg 100% 91.64% / 20%) 3%, transparent 91%), radial-gradient(circle at 62% 100%, hsla(211, 84%, 76%, 0.6) 4%, transparent 67%);
  background-blend-mode: normal, normal;
}


/* =========================
  CTA 共通
========================= */
.cta {
  color: #fff;
  background: linear-gradient(180deg, #223a70 0%, #2f4c8f 100%);
}

.cta--primary {
  padding: 36px 0;
}

.cta__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
  align-items: center;
}
.cta__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 8px 0;
}
.cta__meta {
  margin: 0;
}

.cta__metaRow {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 18px;
}

.cta__metaRow + .cta__metaRow {
  margin-top: 12px;
}
.mapLink {
  font-weight: 700;
  text-underline-offset: 0.12em;
}
.mapLink:hover {
  text-decoration: underline;
  color: var(--color-accent);
}
.cta__meta dt {
  width: 72px;
  padding: 2px 8px;
  background: #fff;
  color: var(--color-blue);
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  flex-shrink: 0;
}

.cta__meta dd {
  margin: 0;
  letter-spacing: 0.01em;
  font-weight: 500;
  line-height: 1.6;
}

.cta__metaNote {
  display: inline-block;
  margin-top: 4px;
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.95;
}

.cta__deadline {
  margin-top: 40px;
  text-align: center;
}

.cta__deadline .c-btn {
  margin-top: 8px;
  width: min(100%, 420px);
}

.cta__deadlineMain {
  margin: 0;
  font-size: 32px;
  line-height: 1.2;
  font-weight: 700;
}
.cta__deadlineDay {
  font-size: 52px;
}
.cta__deadlineSub {
  margin: 8px 0 0;
  font-size: 16px;
}

.cta__schedule {
  background: rgba(255, 255, 255, 0.96);
  color: var(--color-text);
  padding: 18px 22px 24px;
  border-radius: var(--radius-sm);
  width: fit-content;
  margin: auto;
}

.cta__scheduleLegend {
  margin-top: 18px;
  text-align: right;
  font-size: 14px;
  color: #666;
}

.cta__scheduleTitle {
  margin-left: -16px;
  font-size: 28px;
  line-height: 1.35;
  text-align: center;
  font-weight: 700;
}
.cta__scheduleTitle .schedule-icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-right: 0.25em;
  vertical-align: -0.1em;
}
.cta__scheduleLead {
  margin-bottom: 24px;
  text-align: center;
  font-size: 16px;
  color: #666;
  border-bottom: 2px solid #666;
}

.cta__scheduleNote {
  margin: 14px 0 0;
  font-size: 13px;
  color: #666;
  text-align: center;
}
.cta-closed {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: var(--color-accent);
}
.schedule__row {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 12px;
  align-items: center;
}

.schedule__row + .schedule__row {
  margin-top: 14px;
}

.schedule__date {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
}

.schedule__times {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.schedule__slot {
  min-width: 76px;
  height: 48px;
  border-radius: var(--radius-lg);
  border: 1px solid #d8dde3;
  background: #eef1f4;
  color: #9aa3ad;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 500;
}

.schedule__slot.is-active {
  background: #223a70;
  color: #fff;
  border-color: #223a70;
}

/* =========================
  Trouble
========================= */
.trouble {
  padding: 88px 0;
  overflow: hidden;
}

.trouble__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 0;
  align-items: center;
}

.trouble__listWrap {
  position: relative;
  z-index: 2;
}

.trouble__list {
  margin: 0;
  padding: 0;
  list-style: none;
  max-width: 800px;
}

.trouble__list li {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.8;
  white-space: nowrap;
}

.trouble__list li + li {
  margin-top: 10px;
}

.trouble__image {
  position: relative;
  z-index: 1;
  margin-left: -24px;
  margin-bottom: -48px;
}

.trouble__image img {
  width: 560px;
  max-width: 100%;
  margin-left: auto;
  display: block;
}

/* =========================
  Reason
========================= */
.reason {
  position: relative;
  padding: 88px 0 120px;
}

.reason::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 90px;
  background: #fff;
  clip-path: polygon(0 0, 50% 100%, 100% 0, 100% 100%, 0 100%);
}

.reason__inner {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 48px;
  align-items: center;
}

.reason__chart {
  display: grid;
  place-items: center;
}

.reason__circle {
  position: relative;
  display: grid;
  place-items: center;
  width: min(100%, 360px);
  aspect-ratio: 1 / 1;
  margin-inline: auto;
}

.reason__ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.reason__ringBase,
.reason__ringValue {
  fill: none;
  stroke-linecap: butt;
}

.reason__ringBase {
  stroke: #d9dde2;
  stroke-width: 10;
}

.reason__ringValue {
  stroke: #58abd7;
  stroke-width: 10;
  stroke-dasharray: 301.6;
  stroke-dashoffset: 301.6;
  transition: stroke-dashoffset 1.4s ease;
}

.reason__circle.is-animated .reason__ringValue {
  stroke-dashoffset: 147.8;
}

.reason__circle span {
  position: relative;
  z-index: 1;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 700;
  line-height: 1;
  color: var(--color-blue);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.reason__circle.is-label-show span {
  opacity: 1;
}

.reason__headline {
  margin: 0;
  font-size: 32px;
  line-height: 1.4;
  font-weight: 700;
}

.reason__headline--sub {
  margin-top: 20px;
}

.reason__text {
  margin: 24px 0 0;
  font-size: 15px;
  color: #666;
}

@media (max-width: 767.98px) {
  .pc { display: none; }
  .sp { display: block;}
}
/* =========================
  Solution
========================= */
.solution {
  padding: 96px 0 120px;
  background: #fff;
}

.solution__lead {
  margin: 0 auto 40px;
  text-align: center;
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 700;
}

.solution__intro {
  display: grid;
  grid-template-columns: 480px 1fr;
  gap: 24px;
  align-items: start;
}

.solution__text {
  font-size: 18px;
  line-height: 1.8;
  margin-top: 32px;
}

.solution__custom {
  margin-top: 64px;
}

.solution__subTitle {
  margin: 0;
  text-align: center;
  text-wrap: balance;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
}

.solution__subNote {
  margin: 8px 0 0;
  text-align: center;
  color: #666;
  font-size: 14px;
}
.solution__Text {
  margin-top: 24px;
  font-size: 22px;
  line-height: 1.75;
  text-align: center;
  text-wrap: balance;
}
.solution__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.solutionCard {
  position: relative;
  padding: 32px 24px 28px;
  background: var(--color-gray-light);
  box-shadow: var(--shadow-sm);
}

.solutionCard__num {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  background: #364e95;
  color: #fff;
  font-weight: 700;
  font-size: 22px;
}

.solutionCard__title {
  margin: 20px 0 18px;
  text-align: center;
  color: var(--color-blue);
  font-size: 24px;
  line-height: 1.5;
  font-weight: 700;
}

.solutionCard__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.75;
}

.solution__benefits {
  margin-top: 120px;
}

.solution__benefitsTitle {
  margin: 0 0 26px;
  text-align: center;
  font-size: clamp(24px, 3vw, 46px);
  font-weight: 700;
}

.solution__benefitsList {
  width: fit-content;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.solution__benefitsList li {
  position: relative;
  padding-left: 40px;
  font-size: 24px;
  font-weight: 700;
}

.solution__benefitsList li + li {
  margin-top: 14px;
}

.solution__benefitsList li::before {
  content: "✔";
  position: absolute;
  top: 0;
  left: 0;
  color: #d23a2e;
  font-size: 26px;
  transform: rotate(13deg);
}

/* =========================
  CTA Banner
========================= */
.cta--middle {
  padding: 0;
}

.ctaBanner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  padding: 28px 0;
}

.ctaBanner__content {
  min-width: 0;
}

.ctaBanner__lead {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.55;
}

.ctaBanner__text {
  margin: 14px 0 0;
  font-size: 14px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.92);
}

.ctaBanner__action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  min-width: 310px;
}

.ctaBanner__deadline {
  margin: 0 auto;
  line-height: 1;
  font-weight: 700;
  font-size: 32px;
  color: var(--color-white);
}

.ctaBanner__deadlineText {
  font-size: .75em;
  color: #fff;
}

.ctaBanner__btn {
  min-width: 310px;
  min-height: 56px;
  padding: 14px 26px;
  gap: 10px;
  font-size: 17px;
}

/* =========================
  Case
========================= */
.case {
  padding: 96px 0 88px;
  background: #fff;
}

.case .c-sectionTitle span {
  display: inline-block;
  font-size: 1.35em;
  font-weight: 700;
  color: var(--color-blue);
  line-height: 1;
}
.case__intro {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 24px;
  align-items: end;
  margin-top: 48px;
}

.case__introImage img {
  width: 100%;
  display: block;
}

.case__introText {
  font-size: 16px;
  line-height: 1.9;
}

.case__introText p + p {
  margin-top: 16px;
}

.case__examples {
  margin-top: 48px;
}

.case__examplesTitle {
  margin: 0;
  font-size: 36px;
  line-height: 1.4;
  text-align: center;
  font-weight: 700;
}

.case__examplesLead {
  margin: 12px 0 28px;
  text-align: center;
  font-size: 18px;
  line-height: 1.8;
}

.caseMain {
  padding: 32px;
  background: #f8fbff;
  border: 1px solid var(--color-blue);
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
}

.caseMain__school {
  margin: 0;
  font-size: 20px;
  line-height: 1.6;
  font-weight: 700;
}

.caseMain__result {
  margin: 10px 0 22px;
  font-size: clamp(26px, 2.4vw, 32px);
  font-weight: 700;
  color: var(--color-blue);
  line-height: 1.5;
}

.caseMain__detail {
  margin: 0;
}

.caseMain__detail div + div {
  margin-top: 18px;
}

.caseMain__detail dt,
.caseItem__body dt {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 4px 12px;
  margin-bottom: 8px;
  border-radius: 999px;
  background: #eaf2ff;
  color: var(--color-blue);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
}

.caseMain__detail dd,
.caseItem__body dd {
  margin: 0;
  font-size: 18px;
  line-height: 1.89;
  color: var(--color-text);
}

.caseAccordion {
  margin-top: 20px;
}

.caseItem {
  border: 1px solid #d8dee6;
  background: #fff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.caseItem + .caseItem {
  margin-top: 10px;
}

.caseItem:hover {
  border-color: #c7d1dc;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.04);
}

.caseItem__summary {
  position: relative;
  display: grid;
  grid-template-columns: 450px 1fr;
  align-items: center;
  gap: 24px;
  padding: 22px 72px 22px 24px;
  cursor: pointer;
  list-style: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.caseItem__summary::-webkit-details-marker {
  display: none;
}

.caseItem__summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  font-size: 34px;
  line-height: 1;
  font-weight: 400;
  color: var(--color-blue);
}

.caseItem[open] .caseItem__summary::after {
  content: "−";
}

.caseItem__school {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.6;
  color: var(--color-text);
  word-break: break-word;
}

.caseItem__result {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 8px;
}

.caseItem__resultLabel {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border: 1px solid #970101;
  color: #970101;
  font-weight: 500;
}

.caseItem__resultText {
  display: block;
  min-width: 0;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.6;
  color: var(--color-text);
}

.caseItem[open] {
  border-color: var(--color-blue);
  background: #fbfdff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.caseItem[open] .caseItem__summary {
  background: #f7faff;
}

.caseItem[open] .caseItem__school {
  color: var(--color-blue);
}

.caseItem__body {
  padding: 20px 24px 24px;
  border-top: 1px solid #dfe5ec;
  background: #fbfdff;
}

.caseItem__body dl {
  margin: 0;
}

.caseItem__body dl > div + div {
  margin-top: 18px;
}

.caseItem__body dt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 240px;
  min-height: 32px;
  padding: 4px 12px;
  margin-bottom: 8px;
  background: var(--color-gray);
  color: var(--color-blue);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: .1em;
  border: 1px solid var(--color-blue);
  border-radius: 0;
}
dt.challenges {
  background-color: #fff;
}
dt.mechanism {
  background-color: #D8E4FF;

}
dt.results {
  background-color: var(--color-blue);
  color: var(--color-white);
}

.caseItem__body dd {
  margin: 0;
  font-size: 18px;
  line-height: 1.8;
  color: var(--color-text);
  font-weight: 500;
}

.caseItem__body dl {
  display: grid;
  gap: 28px;
}

.caseItem__body dl > div {
  position: relative;
  display: flex;
  gap: 24px;
}

.caseItem__body dl > div:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 120px;
  bottom: -32px;

  width: 2px;
  height: 32px;
  border-radius: 9999px;
  background-color: #888;
  opacity: .7;
}

.caseItem__body dl > div:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 120px;
  bottom: -32px;
  width: 2px;
  height: 20px;
  border-radius: 9999px;
  background-color: #888;

  transform: rotate(-45deg);
  transform-origin: 50% calc(100% - 1px);
  opacity: .7;
}


/* =========================
  Zeus
========================= */
.zeus {
  padding: 96px 0;
  background: #fff;
}

.zeusIntro + .zeusManage,
.zeusManage + .zeusReason {
  margin-top: 80px;
}

.zeusIntro__lead {
  margin: 0 auto;
  text-align: center;
  text-wrap: balance;
  font-size: 22px;
  line-height: 1.8;
}

.zeusIntro__image {
  margin-top: 40px;
}

.zeusIntro__image img {
  width: 100%;
  display: block;
}

.zeusBlockTitle {
  margin: 0 0 28px;
  text-align: center;
  text-wrap: balance;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.5;
  font-weight: 700;
}
.zeusBlockTitle span {
  display: inline-block;
  font-size: 1.5em;
  color: var(--color-check);
  transform: translateY(3px);
}

.zeusSystem {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}

.zeusSystem .zeusBlockTitle {
  margin: 0;
  font-size: 36px;
  line-height: 1.6;
  font-weight: 700;
  color: var(--color-text);
}

.zeusLink {
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  gap: 24px 32px;
  align-items: center;
  margin-top: 60px;
}

.zeusLink__image img {
  width: 100%;
  display: block;
}

.zeusLink__title {
  margin: 0 0 12px;
  font-size: 32px;
  line-height: 1.5;
  font-weight: 700;
}

.zeusLink__text {
  font-size: 20px;
  line-height: 1.8;
}

.zeusLink__note {
  margin-top: 16px;
  font-size: 13px;
  color: #666;
}

.zeusReason__grid {
  display: grid;
  gap: 20px;
}

.zeusReasonCard {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 24px;
  align-items: center;
  padding: 24px 28px;
  border-radius: 16px;
}

.zeusReasonCard__badge {
  width: 132px;
  height: 132px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  background: var(--color-blue-light);
  color: var(--color-gray-light);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
}

.zeusReasonCard__title {
  margin: 0 0 8px;
  font-size: 28px;
  line-height: 1.5;
  font-weight: 700;
  color: var(--color-blue);
}

.zeusReasonCard__text {
  font-size: 17px;
  line-height: 1.9;
  color: #555;
}


/* =========================
  Gift
========================= */
.gift {
  padding: 96px 0 96px;
  background: var(--color-bg);
}
.gift .c-sectionTitle {
  color: var(--color-accent);
}
.gift__headline {
  margin: 0;
  text-align: center;
  text-wrap: balance;
  font-size: 36px;
  line-height: 1.6;
  font-weight: 700;
}
.gift__headline span {
  font-size: 1.2em;
}

.gift__highlight {
  max-width: 980px;
  margin: 34px auto 0;
  padding: 18px 24px;
  background: #fff7e8;
  border: 1px solid #f3d39b;
  border-radius: var(--radius-sm);
}

.gift__highlight p {
  margin: 0;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.7;
}

.gift__inner {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 24px;
  align-items: center;
  margin-top: 40px;
}

.gift__featuresTitle {
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 700;
}

.gift__features ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.gift__features li {
  position: relative;
  padding-left: 24px;
  font-size: 17px;
  line-height: 1.8;
}

.gift__features li + li {
  margin-top: 8px;
}

.gift__features li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--color-blue);
  font-weight: 700;
}

.gift__note {
  margin: 24px 0 0;
  font-size: 14px;
  color: #333;
  padding-left: 1.5em;
  text-indent: -1.5em;
}

.gift__image img {
  width: 100%;
  display: block;
}

/* =========================
  Footer CTA
========================= */
.cta--footer {
  padding: 56px 0 64px;
}

.ctaFooter__head {
  text-align: center;
}

.ctaFooter__title {
  margin: 0;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.35;
  font-weight: 700;
}

.ctaFooter__lead {
  margin: 20px 0 0;
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1.7;
}

.ctaFooter__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: center;
  margin-top: 40px;
}

.ctaFooter__deadline {
  width: fit-content;
  margin: 30px auto 0;
  padding: 18px 48px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.1);
  text-align: center;
}

.ctaFooter__deadlineMain {
  margin: 0;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 700;
  line-height: 1.2;
}

.ctaFooter__deadlineSub {
  margin: 8px 0 0;
  font-size: 15px;
}

.ctaFooter__action .c-btn {
  margin-top: 28px;
  width: 100%;
}
/* =========================
  Footer
========================= */
footer {
  background: #000;
  padding: 8px 0;
}
.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  line-height: 1.25;
  color: #fff;
}

/* =========================
  Responsive
========================= */
@media (max-width: 1024px) {
  .fv__inner,
  .reason__inner,
  .gift__inner,
  .trouble__inner {
    grid-template-columns: 1fr;
  }

  .solution__cards {
    grid-template-columns: 1fr;
  }

  .ctaBanner {
    flex-direction: column;
    align-items: flex-start;
  }

  .ctaBanner .c-btn {
    width: 100%;
  }

  .gift__image {
    max-width: 420px;
    margin-inline: auto;
  }
}

@media (max-width: 767.98px) {

  /* =========================
    Base
  ========================= */
  .pc { display: none; }
  .sp { display: block; }

  .l-container,
  .l-container--narrow {
    width: min(100% - 24px, 100%);
  }

  body {
    font-size: 14px;
    line-height: 1.7;
  }

  .c-sectionTitle {
    margin-bottom: 20px;
    font-size: 26px;
    line-height: 1.35;
  }

  /* =========================
    FV
  ========================= */
  .fv {
    min-height: auto;
    padding: 72px 0 24px;
    overflow: hidden;
  }

  .fv__title {
    font-size: 26px;
    line-height: 1.35;
  }

  .fv__title span {
    display: inline-block;
  }

  .fv__lead {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.7;
  }

  .fv__info {
    margin-top: 18px;
  }

  .fv__infoRow {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
  }

  .fv__cta {
    width: 100%;
    margin-top: 24px;
  }

  .fv__ctaLead {
    font-size: 14px;
  }

  .fv__image01 {
    position: relative;
    width: 100%;
  }

  /* =========================
    Button
  ========================= */
  .c-btn,
  .c-btn--lg {
    width: 100%;
    font-size: 15px;
    min-height: 52px;
  }

  /* =========================
    CTA
  ========================= */
  .cta__inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .cta__metaRow {
    font-size: 13px;
  }

  .cta__meta dt {
    width: 52px;
    font-size: 11px;
  }

  .cta__deadlineMain {
    font-size: 22px;
  }

  .cta__deadlineDay {
    font-size: 34px;
  }

  .cta__schedule {
    width: 100%;
    padding: 14px 12px;
  }

  .cta__scheduleTitle {
    font-size: 20px;
  }

  .schedule__row {
    grid-template-columns: 48px 1fr;
    padding-bottom: 10px;
    border-bottom: 1px dotted var(--color-gray);
  }

  .schedule__date {
    font-size: 18px;
  }

  .schedule__slot {
    min-width: 58px;
    height: 34px;
    font-size: 12px;
  }

  /* =========================
    Trouble
  ========================= */
  .trouble {
    padding: 56px 0;
  }

  .trouble__inner {
    grid-template-columns: 1fr;
  }

  .trouble .c-sectionTitle {
    font-size: 32px;
  }

  .trouble__list li {
    font-size: 20px;
    line-height: 1.5;
    white-space: normal;
    padding-left: 1em;
  }

  .trouble__image {
    margin: 0;
  }

  /* =========================
    Reason
  ========================= */
  .reason {
    padding: 56px 0 80px;
  }

  .reason__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .reason__circle {
    width: 220px;
  }

  .reason__headline {
    font-size: 22px;
  }

  .reason__text {
    font-size: 13px;
    margin-bottom: 24px;
  }

  /* =========================
    Solution
  ========================= */
  .solution {
    padding: 56px 0;
  }

  .solution__intro {
    grid-template-columns: 1fr;
  }

  .solution__Text {
    margin-top: 20px;
    font-size: 18px;
  }

  .solution__cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .solutionCard {
    padding: 20px 16px;
  }

  .solutionCard__title {
    font-size: 18px;
  }

  .solution__benefits {
    margin-top: 56px;
  }

  .solution__benefitsList li {
    font-size: 18px;
  }

  /* =========================
    Case
  ========================= */
  .case {
    padding: 56px 0;
  }

  .case__intro {
    grid-template-columns: 1fr;
  }

  .case__examplesTitle {
    font-size: 24px;
  }

  .caseItem__summary {
    grid-template-columns: 1fr;
    padding: 14px 44px 14px 14px;
  }

  .caseItem__school {
    font-size: 18px;
  }

  .caseItem__resultText {
    font-size: 14px;
  }

  .caseItem__body dl > div {
    display: block;
  }

  .caseItem__summary::after {
    right: 10px;
  }

  .caseItem__body dd {
    font-size: 16px;
  }

  /* =========================
    Zeus
  ========================= */
  .zeus {
    padding: 56px 0;
  }

  .zeusIntro__lead {
    font-size: 16px;
  }
  .zeusSystem {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .zeusSystem .zeusBlockTitle {
    font-size: 22px;
  }
  .zeusSystem__image {
    width: 100%;
  }

  .zeusLink {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .zeusLink__title {
    font-size: 22px;
  }

  .zeusLink__text {
    font-size: 14px;
  }

  .zeusReasonCard {
    grid-auto-flow: row;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px;
  }

  .zeusReasonCard__badge {
    width: 80px;
    height: 80px;
    font-size: 14px;
  }

  /* =========================
    Gift
  ========================= */
  .gift {
    padding: 56px 0;
  }

  .gift__headline {
    font-size: 22px;
  }

  .gift__inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .gift__features li {
    font-size: 14px;
  }

  /* =========================
    CTA Banner
  ========================= */
  .ctaBanner {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .ctaBanner__lead {
    font-size: 16px;
  }

  .ctaBanner__action {
    width: 100%;
  }

  /* =========================
    Footer CTA
  ========================= */
  .ctaFooter__body {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .ctaFooter__title {
    font-size: 24px;
  }
  .ctaFooter__title > span {
    display: inline-block;
  }

  .ctaFooter__lead {
    font-size: 15px;
    text-align: left;
  }

  /* =========================
    Footer
  ========================= */
  .footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}