@charset "UTF-8";

/*==========================================================================
  Common
==========================================================================*/
html {
    scroll-behavior: smooth;
}

:root {
  --color-navy: #3a3f7c;
  --color-blue: #6d72aa;
  --color-pink: #ed1e79;
  --color-gold: #d1b375;
  --color-brown: #bf9c50;
  --color-cream: #f7f1e7;
  --color-soft-pink: #ffe9f5;
  --color-text: #505050;
  --inner: min(72vw, 1440px);
  --side-gap: clamp(20px, 5vw, 80px);
  --radius-lg: clamp(22px, 3vw, 48px);
  --shadow-card: 0 24px 60px rgba(58, 63, 124, 0.14);
}

body {
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', Meiryo, 'メイリオ', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text);
  background: #ffffff;
  overflow-x: hidden;
}

.clear:after {
  content: "";
  display: block;
  clear: both;
}

a { text-decoration: none; }
a:hover { opacity: 0.86; }
.txt_center { text-align: center; }
.txt_right { text-align: right; }

input,
button,
textarea,
select,
submit {
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

img { height: auto; }
.lp-page {
  position: relative;
  max-width: 2000px;
  margin: 0 auto;
  overflow: hidden;
  background: #ffffff;
}
.inner {
  width: min(var(--inner), calc(100% - var(--side-gap) * 2));
  margin-inline: auto;
  position: relative;
  z-index: 2;
}
.inner-bg {
  position: relative;
  z-index: 1;
  overflow: visible;
  width: min(100%, 1438px);
  min-height: clamp(560px, 40.45vw, 809px);
  margin-inline: auto;
  padding:
    clamp(58px, 5vw, 100px)
    clamp(36px, 4vw, 80px)
    clamp(54px, 4.7vw, 94px);
  border-radius: clamp(32px, 3.4vw, 68px);
  background: #6D72AA;
}
.section-bg,
.card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 110%;
  object-fit: cover;
  pointer-events: none;
  z-index: 0;
}
.section-dark,
.section-light,
.solution,
.reason,
.contact,
.one-stop-card {
  position: relative;
  /* overflow: hidden; */
}
.section-title {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 2.4vw, 40px);
  line-height: 1.28;
  letter-spacing: 0.05em;
  text-align: center;
}
.section-title--white { color: #ffffff; }
.section-label {
  display: flex;
  justify-content: center;
  align-items: center;
  width: min(100%, 1443px);
  min-height: clamp(46px, 5vw, 78px);
  margin: 0 auto 0;
  border-radius: 8px;
  background: var(--color-navy);
  color: #ffffff;
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-weight: 800;
  font-size: clamp(20px, 2.2vw, 40px);
  letter-spacing: 0.05em;
  text-align: center;
}
.sp-only { display: none; }

/*==========================================================================
  Header
==========================================================================*/
.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  padding: clamp(20px, 1.7vw, 34px) clamp(28px, 3.5vw, 72px) 0;
}

.site-header.is-scroll {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    box-sizing: border-box;
}

.site-header.is-scroll .head-right {
    color: #3A3F7C;
}

.site-header.is-scroll .head-right li + li::before {
    color: #3A3F7C;
}


.header-pc {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.head-left {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 7px 28px 7px 12px;
  border-radius: 999px;
  background: #ffffff;
  color: var(--color-navy);
}
.head-logo {
  width: 81px;
  flex: 0 0 81px;
  margin-right: 15px;
}
.head-left p {
  font-family: "senobi-gothic", sans-serif;
  font-size: clamp(14px, 1.3vw, 26px);
  font-weight: 700;
  letter-spacing: -0.12em;
  color: var(--color-navy);
  white-space: nowrap;
}
.head-right {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.4vw, 48px);
  color: #ffffff;
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: clamp(14px, 1.1vw, 22px);
  letter-spacing: 0.03em;
}
.head-right li + li::before {
  content: "｜";
  margin-right: clamp(20px, 2.4vw, 48px);
  opacity: 0.9;
}
.header-sp { display: none; }

/*==========================================================================
  Hero
==========================================================================*/
.hero {
  min-height: clamp(780px, 63vw, 1260px);
  padding: clamp(120px, 9vw, 180px) 0 clamp(64px, 8vw, 160px);
  background: var(--color-navy);
}
.hero-inner {
  display: grid;
  grid-template-columns: minmax(450px, 0.86fr) minmax(500px, 1.14fr);
  align-items: center;
  gap: clamp(24px, 4vw, 80px);
  margin-bottom: 10%;
}
.hero-copy {
  padding-top: clamp(40px, 5vw, 110px);
}
.hero-copy h1 {
  font-family: "senobi-gothic", sans-serif;
  display: grid;
  gap: clamp(14px, 1.7vw, 34px);
  color: #ffffff;
  font-size: clamp(58px, 5.45vw, 109px);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: 0.04em;
}
.hero-copy h1 span { display: block; }
.hero-copy .gold { color: var(--color-gold); }
.hero-divider {
  display: block;
  width: min(100%, 540px);
  height: 3px;
  margin: clamp(20px, 2vw, 42px) 0 clamp(22px, 2.1vw, 44px);
  background: #ffffff;
}

.hero-visual img {
  width: min(100%, 981px);
  margin-inline: auto;
}

/*==========================================================================
  Hero title underline
==========================================================================*/

.hero-copy h1 {
  display: grid;
  row-gap: clamp(10px, 1.15vw, 23px);
  margin-bottom: clamp(24px, 2.4vw, 48px);
}

.hero-copy h1 span {
  position: relative;
  display: inline-block;
  width: max-content;
  max-width: 100%;
  padding-bottom: clamp(8px, 0.75vw, 15px);
  white-space: nowrap;
}

.hero-copy h1 span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: clamp(1.5px, 0.15vw, 3px);
  background: #ffffff;
}

/* 既存のh1下の1本線は、Figmaの下線と重複するため非表示 */
.hero-divider {
  display: none;
}

/*==========================================================================
  Problems
==========================================================================*/
.problems {
  padding: clamp(64px, 6vw, 120px) 0 clamp(80px, 7vw, 140px);
  margin-top: -1px;
  background: var(--color-blue);
}

.problems::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(82, 50, 113, 0.72), rgba(84, 101, 157, 0.9));
}

.problem-decor-vector4 {
  position: absolute;
  left: 50%;
  top: clamp(-40px, -1.75vw, -20px);
  width: clamp(78px, 5.35vw, 107px);
  transform: translateX(-50%);
  z-index: 2;
  pointer-events: none;
}

.problem-decor-vector4 img {
  display: block;
  width: 100%;
  height: auto;
  margin-top: -10px;
}

.problems .section-title {
  margin-bottom: clamp(42px, 5vw, 82px);
  font-size: clamp(28px, 2.4vw, 40px);
}

.problem-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 2vw, 38px);
  width: min(100%, 1180px);
  margin-inline: auto;
  padding: clamp(34px, 4vw, 64px);
  border-radius: clamp(18px, 2vw, 30px);
  background: #6D72AA;
}

.problem-card {
  display: grid;
  justify-items: center;
  gap: clamp(18px, 2vw, 28px);
  padding: clamp(28px, 2.8vw, 48px) clamp(18px, 2vw, 34px);
  border-radius: 16px;
  background: #ffffff;
  text-align: center;
  min-height: 310px;
}

.problem-card img {
  width: clamp(78px, 7vw, 120px);
}

.problem-card h3 {
  margin-bottom: 14px;
  color: var(--color-pink);
  font-family: 'Inter','Noto Sans JP', sans-serif;
  font-size: clamp(22px, 1.8vw, 32px);
  font-weight: 800;
}

.problem-card p {
  color: var(--color-navy);
  font-family: 'Inter','Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: clamp(15px, 1.15vw, 21px);
  line-height: 1.76;
}

/*==========================================================================
  Solution
==========================================================================*/
.solution {
  position: relative;
  z-index: 2;
  overflow: visible;
  min-height: clamp(300px, 21.6vw, 432px);
  padding: clamp(76px, 5.4vw, 108px) 0 clamp(112px, 6.4vw, 128px);
  background: #fff7fb;
}

.solution .inner {
  position: relative;
  z-index: 2;
}

.solution-bg {
  /* opacity: 0.42; */
  object-position: center top;
}

.solution-arrow {
  position: absolute;
  left: 50%;
  top: clamp(-88px, -4.4vw, -54px);
  z-index: 4;
  width: clamp(88px, 6.6vw, 132px);
  transform: translateX(-50%);
  pointer-events: none;
}

.solution-arrow img {
  display: block;
  width: 100%;
  height: auto;
}

.solution-title {
  position: relative;
  z-index: 2;
  text-align: center;
  font-family: 'Inter','Noto Sans JP', sans-serif;
  font-size: clamp(32px, 3vw, 60px);
  line-height: 1.55;
  letter-spacing: 0.05em;
  font-weight: 800;
  color: var(--color-navy);
}

.solution-title span {
  color: var(--color-pink);
}

/*==========================================================================
  Curriculum
==========================================================================*/
/*==========================================================================
  Curriculum
==========================================================================*/
.curriculum {
  position: relative;
  z-index: 4;
  margin-top: clamp(-84px, -4.2vw, -48px);
  padding: clamp(116px, 7.4vw, 148px) 0 clamp(90px, 8vw, 180px);
  background: #ffffff;
  border-radius: clamp(150px, 3.4vw, 68px) clamp(150px, 3.4vw, 68px) 0 0;
  /* overflow: hidden; */
}

.curriculum::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
}

.curriculum-main-title {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 678px);
  min-height: clamp(96px, 7.38vw, 148px);
  margin:
    clamp(-210px, -10.5vw, -160px)
    auto
    clamp(54px, 5.5vw, 110px);
  border-radius: 999px;
  background: var(--color-brown);
  color: #ffffff;
  font-size: clamp(36px, 3vw, 60px);
  line-height: 1.2;
  letter-spacing: 0.05em;
}

.curriculum-cta-area {
  position: relative;
  width: min(100%, 1440px);
  min-height: 416px;
  margin: 10px auto 0;
}

.curriculum-note-row {
  position: static;
}

.curriculum-note-row .note {
  position: absolute;
  top: 50px;
  left: 0;

  width: 539px;
  margin: 0;

  color: #3a3f7c;
  font-family: Inter, "Noto Sans JP", sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 0;
}

/* 該当箇所1：詳細カリキュラムボタン */
.curriculum-detail.curriculum-detail--hours {
  position: absolute;
  top: 204px;
  left: 50%;
  transform: translateX(-50%);

  aspect-ratio: 795 / 172;

  padding-inline: clamp(24px, 4.86vw, 70px);

  display: flex;
  align-items: center;
  justify-content: center;

  background-color: #6D72AA;
  border-radius: 9999px;
  box-shadow: 0 clamp(4px, 0.56vw, 8px) clamp(12px, 1.67vw, 24px) rgba(0, 0, 0, 0.25);

  color: #fff;
  font-family: Inter, "Noto Sans JP", sans-serif;
  font-size: clamp(17px, 2.78vw, 40px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: center;
  text-decoration: none;

  box-sizing: border-box;
  cursor: pointer;
  white-space: nowrap;
}

.curriculum-detail.curriculum-detail--hours:hover {
  opacity: 0.9;
}

.curriculum-detail.curriculum-detail--hours:focus-visible {
  outline: 3px solid #c79f45;
  outline-offset: 6px;
}

.section-label__link {
  display: inline-flex;
  align-items: center;
  gap: clamp(10px, 1.94vw, 28px);

  color: inherit;
  text-decoration: none;
}

.section-label__icon {
  width: clamp(22px, 3vw, 43px);
  height: auto;
  flex-shrink: 0;
  display: block;
}

.section-label__link:hover {
  opacity: 0.85;
}

/* PC curriculum title icon - Figma node 2:957 */
@media screen and (min-width: 768px) {
  .curriculum-main-title::before {
    content: "";
    position: absolute;
    top: 50%;
    left: clamp(-222px, -11.1vw, -96px);
    width: clamp(48px, 3.425vw, 68.47px);
    aspect-ratio: 68.47 / 121.4;
    transform: translateY(-50%);
    background: url("../img/icon15.png") no-repeat center / contain;
    pointer-events: none;
  }
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 1.6vw, 30px);
  /* margin-bottom: clamp(28px, 4vw, 64px); */
  margin-top: clamp(24px, 8vw, 141px);
}
.program-card {
  position: relative;
  min-height: clamp(310px, 19vw, 374px);
  padding: clamp(44px, 4vw, 78px) clamp(18px, 1.6vw, 30px) clamp(24px, 2.4vw, 44px);
  border: 2px solid;
  border-radius: 14px;
  text-align: center;
  color: var(--color-navy);
  box-shadow: var(--shadow-card);
}
.program-card--beige { background: var(--color-cream); border-color: #d6c299; }
.program-card--pink { background: var(--color-soft-pink); border-color: var(--color-pink); }
.program-number {
  position: absolute;
  top: 0;
  left: 50%;
  display: grid;
  place-items: center;
  width: clamp(56px, 6vw, 138px);
  height: clamp(56px, 6vw, 138px);
  border-radius: 50%;
  background: var(--color-brown);
  color: #ffffff;
  font-size: 32px;
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  transform: translate(-50%, -50%);
}
.program-card--pink .program-number { background: var(--color-pink); }
.program-card h3 {
  min-height: 2.4em;
  margin-top: clamp(10px, 1.2vw, 24px);
  margin-bottom: clamp(20px, 2vw, 36px);
  font-family: 'Inter','Noto Sans JP', sans-serif;
  font-weight: 800;
  font-size: clamp(20px, 1.5vw, 30px);
  line-height: 1.45;
  letter-spacing: 0.04em;
}
.program-card ul {
  display: grid;
  gap: 10px;
  text-align: left;
  font-size: clamp(13px, 0.92vw, 18px);
  line-height: 1.7;
}
.program-card li::before { content: "・"; }
.note {
  width: min(100%, 1080px);
  margin: 0 auto clamp(48px, 6vw, 110px);
  color: var(--color-navy);
  font-family: 'Inter','Noto Sans JP', sans-serif;
  font-size: clamp(13px, 1vw, 17px);
  line-height: 1.88;
}
.section-label--hours { 
  margin-top: clamp(30px, 5vw, 82px); 
  margin-bottom: clamp(30px, 5vw, 82px);
}
.training-content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(34px, 4vw, 74px);
  align-items: stretch;
  margin-top: clamp(38px, 5vw, 90px);
}
.training-panel {
  position: relative;
  padding: clamp(56px, 5vw, 90px) clamp(34px, 4vw, 72px) clamp(44px, 4vw, 80px);
  border: 3px solid #dce2f6;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--shadow-card);
  color: var(--color-navy);
}
.training-panel h3 {
  margin-bottom: 8px;
  font-size: clamp(28px, 2vw, 41px);
  font-weight: 800;
  letter-spacing: 0.05em;
  text-align: center;
}
.training-icon {
  width: clamp(60px, 5vw, 90px);
  margin: 0 auto 12px;
}
.time {
  margin-bottom: clamp(30px, 3vw, 58px);
  font-size: clamp(16px, 1.2vw, 20px);
  text-align: center;
}
.lesson-list {
  display: grid;
  gap: clamp(22px, 2vw, 42px);
}
.lesson-list li {
  position: relative;
  padding-left: 1.2em;
}
.lesson-list li::before {
  content: "●";
  position: absolute;
  left: 0;
  color: var(--color-pink);
}
.lesson-list strong {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(18px, 1.4vw, 28px);
}
.lesson-list span {
  display: block;
  font-size: clamp(14px, 1vw, 18px);
  line-height: 1.8;
}
.practice-caption {
  display: block;
  width: 100%;
  margin-bottom: clamp(24px, 3vw, 52px);
  padding: 14px 16px;
  border-radius: 6px;
  background: var(--color-navy);
  color: #ffffff;
  font-size: clamp(15px, 1.1vw, 24px);
  text-align: center;
}
.scene-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 34px);
}
.scene-grid div {
  min-height: 160px;
  padding: clamp(18px, 1.8vw, 28px);
  border-radius: 16px;
  background: #f9fbff;
  text-align: center;
}
.scene-grid img {
  width: clamp(28px, 3vw, 52px);
  height: clamp(28px, 3vw, 52px);
  object-fit: contain;
  margin: 0 auto 12px;
}
.scene-grid strong {
  display: block;
  margin-bottom: 10px;
  color: var(--color-navy);
  font-size: clamp(14px, 1.1vw, 22px);
}
.scene-grid span {
  font-size:clamp(0.75rem, calc(0.25rem + 1vw), 1rem); /* min: 10px, max: 16px */
  line-height: 1.7;
}
.decor {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}
.decor-left {
  position: absolute;
  left: 2px;
  top: 100%;
  width: 8%;
  /* opacity: 0.58; */
}
.decor-right {
  right: 5px;
  top: 13%;
  width: 8%;
  opacity: 0.45;
}

/*==========================================================================
  Reason
==========================================================================*/
.reason {
  /* min-height: clamp(420px, 28vw, 560px); */
  margin-top: 100px;
  padding: clamp(92px, 8vw, 160px) 0;
  background: var(--color-cream);
  border-radius: clamp(60px, 3.4vw, 68px) clamp(60px, 3.4vw, 68px) 0 0
}
.reason-title {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: clamp(310px, 28vw, 520px);
  min-height: clamp(96px, 11vw, 150px);
  padding: 0 clamp(34px, 5vw, 90px);
  border-radius: 999px;
  background: var(--color-brown);
  color: #ffffff;
  font-family: 'Inter','Noto Sans JP', sans-serif;
  font-size: clamp(36px, 3vw, 60px);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.05em;
  text-align: center;
}
.reason-inner {
  display: flex;
  margin-top: -180px;
  justify-content: center;
  align-items: center;
  z-index: 3;
}
.reason-person {
  position: absolute;
  bottom: clamp(-64px, -3vw, -28px);
  z-index: 0;
  pointer-events: none;
}
.reason-title {
  position: relative;
  z-index: 1;
}
.reason-person--left {
  left: clamp(16px, 1.2vw, 24px);
  width: min(14.1vw, 202px);
}
.reason-person--right {
  right: max(-4.2vw, -84px);
  width: min(20.7vw, 297px);
}
.reason-cards {
  /* padding: clamp(90px, 8vw, 170px) 0 clamp(80px, 7vw, 150px); */
  background: var(--color-cream);
}
.reason-card-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(30px, 4vw, 74px);
}
.reason-card {
  min-height: 450px;
  padding: clamp(42px, 4vw, 74px) clamp(26px, 3vw, 56px);
  border: 3px solid #fc83bd;
  border-radius: 24px;
  background: #ffffff;
  text-align: center;
  color: var(--color-navy);
  box-shadow: var(--shadow-card);
}
.reason-card img {
  width: clamp(92px, 8vw, 142px);
  height: clamp(92px, 8vw, 142px);
  object-fit: contain;
  margin: 0 auto clamp(26px, 3vw, 44px);
}
.reason-card h3 {
  margin-bottom: 22px;
  color: var(--color-pink);
  font-size: clamp(24px, 2vw, 40px);
  font-weight: 800;
}
.reason-card .lead {
  margin-bottom: clamp(26px, 3vw, 44px);
  color: var(--color-blue);
  font-size: clamp(17px, 1.3vw, 26px);
  font-weight: 900;
  line-height: 1.75;
}
.reason-card p:not(.lead) {
  font-size: clamp(15px, 1.05vw, 21px);
  line-height: 1.7;
}

/*==========================================================================
  One stop / Comparison / Contact / Footer
==========================================================================*/
.one-stop {
  padding: clamp(70px, 8vw, 127px) 0;
  background: var(--color-cream);
}
.one-stop-card {
  min-height: clamp(560px, 44vw, 800px);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.one-stop-content {
  position: relative;
  z-index: 2;
  height: 100%;
  padding:   
    clamp(30px, 6vw, 61px)
    clamp(36px, 6vw, 89px)
    0
    clamp(36px, 6vw, 89px);
  text-align: center;
  color: var(--color-navy);
}
.one-stop h2 {
  margin-bottom: clamp(28px, 4vw, 70px);
  font-size: clamp(30px, 2.5vw, 50px);
  line-height: 1.7;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.one-stop-content-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}
.one-stop h2 span,
.one-stop p strong { color: var(--color-pink); }
.one-stop p {
  margin-top: clamp(30px, 4vw, 71px);
  /* margin-bottom: clamp(30px, 4vw, 72px); */
  font-size: clamp(20px, 2vw, 43px);
  line-height: 1.7;
  font-weight: 800;
}
.support-visual img {
  width: min(100%, 833px);
  margin-inline: auto;
}
.comparison {
  /* padding: clamp(70px, 7vw, 150px) 0 clamp(90px, 9vw, 180px); */
  background: var(--color-cream);
}
.comparison-title {
  margin-bottom: clamp(22px, 3vw, 54px);
  color: var(--color-navy);
  font-size: clamp(24px, 1.9vw, 30px);
  font-weight: 800;
  text-align: center;
  letter-spacing: 0.05em;
}
.scroll-hint {
  display: none;
  margin-bottom: 12px;
  color: var(--color-navy);
  font-size: 12px;
}
.comparison-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 18px;
}
.comparison-table {
  width: min(100%, 1437px);
  margin-inline: auto;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: var(--shadow-card);
  color: var(--color-navy);
  font-family: 'Inter','Noto Sans JP', sans-serif;
  text-align: center;
}
.comparison-table th,
.comparison-table td {
  min-width: 240px;
  padding: clamp(20px, 2.2vw, 38px) clamp(16px, 2vw, 34px);
  border: 2px solid #d7d8ec;
  font-size: clamp(16px, 1.2vw, 22px);
  line-height: 1.6;
}
.comparison-table thead th {
  background: var(--color-navy);
  color: #ffffff;
  font-size: clamp(18px, 1.4vw, 25px);
  font-weight: 900;
}
.comparison-table thead th:first-child {
  background: #ffffff;
  color: var(--color-navy);
}
.comparison-table tbody th {
  font-weight: 800;
  background: #f6f7ff;
}
.comparison-table td:last-child {
  background: #fff0f7;
  font-weight: 800;
}
.comparison-table span {
  font-size: 0.8em;
  font-weight: 400;
}
.contact {
  padding: clamp(88px, 8vw, 170px) clamp(70px, 7vw, 140px) 0 clamp(70px, 7vw, 140px);
  background: var(--color-navy);
  text-align: center;
}
.contact h2 {
  margin-bottom: clamp(36px, 5vw, 80px);
  color: #ffffff;
  font-family: 'Inter','Noto Sans JP', sans-serif;
  font-size: clamp(32px, 3vw, 60px);
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.contact-button {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: min(100%, clamp(560px, 42vw, 840px));
  min-height: clamp(96px, 9.87vw, 197px);
  padding: 0 clamp(110px, 7vw, 150px);
  border: 1px solid var(--color-navy);
  border-radius: 999px;
  background: #ffffff;
  color: var(--color-pink);
  font-size: clamp(28px, 2.5vw, 50px);
  font-weight: 900;
  letter-spacing: 0.05em;
  box-shadow: none;
  box-sizing: border-box;
}

.contact-button__text {
  display: block;
  line-height: 1.2;
  white-space: nowrap;
}

.contact-button__icon {
  position: absolute;
  top: 50%;
  right: clamp(48px, 3.9vw, 78px);
  width: clamp(30px, 2.47vw, 49.4px);
  transform: translateY(-50%);
  pointer-events: none;
}

.contact-button__icon img {
  display: block;
  width: 100%;
  height: auto;
}
.contact-visual img {
  width: min(45vw, 430px);
  margin: clamp(34px, 5vw, 80px) auto 0;
}
.site-footer {
  position: relative;
  padding: clamp(48px, 6vw, 100px) 20px clamp(36px, 5vw, 72px);
  text-align: center;
  color: var(--color-navy);
  background: #ffffff;
}
.footer-logo img {
  width: min(268px, 48vw);
  margin-inline: auto;
}
.footer-program {
  margin-top: clamp(22px, 3vw, 44px);
  font-size: clamp(18px, 2vw, 38px);
  font-weight: 700;
  letter-spacing: -0.16em;
}
.footer-company {
  margin-top: clamp(36px, 4vw, 70px);
  font-size: clamp(14px, 1.2vw, 22px);
  font-weight: 700;
}
.site-footer small {
  display: block;
  margin-top: clamp(34px, 4vw, 72px);
  font-family: 'Inter', sans-serif;
  font-size: clamp(11px, 0.9vw, 16px);
  font-weight: 300;
  letter-spacing: 0.18em;
}

.page-top {
    position: fixed;
    right: clamp(20px, 3vw, 44px);
    bottom: clamp(24px, 3vw, 54px);
    width: clamp(44px, 4vw, 63px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1000;
}

.page-top.is-show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* .page-top img {
    display: block;
    width: clamp(60px, 6vw, 90px);
    height: auto;
} */

.footer-privacy-mark {
  display: block;
  width: clamp(90px, 7.66vw, 153px);
  margin: clamp(24px, 2.7vw, 54px) auto 0;
}

.footer-privacy-mark img {
  display: block;
  width: 100%;
  height: auto;
}
.site-footer small {
  display: block;
  margin-top: clamp(26px, 2.65vw, 53px);
  font-family: 'Inter', sans-serif;
  font-size: clamp(11px, 0.9vw, 16px);
  font-weight: 300;
  letter-spacing: 0.18em;
}
.page-top {
  right: clamp(20px, 3vw, 44px);
  bottom: clamp(24px, 3vw, 54px);
  width: clamp(44px, 4vw, 63px);
}

.hero-copy_under {
  display: none;
}

.display-767 {
  display: none;
}

/*========================================================================
  SP fixed header / menu modal - Figma node 2:1804, 71:124
========================================================================*/
.sp-menu-modal {
  display: none;
}

/*==========================================================================
  Responsive
==========================================================================*/
@media screen and (max-width: 1200px) {
  :root { --inner: min(88vw, 1040px); }
  .hero-inner { grid-template-columns: 0.9fr 1.1fr; }
  .program-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 58px; }
  .training-content,
  .reason-card-list { gap: 28px; }
}

@media screen and (max-width: 900px) {
  .header-pc { display: none; }
  .header-sp { display: block; }
  .header-sp {
    display: flex;
    /* align-items: flex-start; */
    width: 100%;
    /* gap: 14px; */
    justify-content: space-between;
  }
  .sp-logo,
  .sp-header-link {
    display: grid;
    width: 71px;
    height: 71px;
    border-radius: 50%;
    background: #ffffff;
    box-sizing: border-box;
    flex: 0 0 71px;
  }
  .sp-logo {
    place-items: center;
    margin-right: auto;
  }
  .sp-logo img {
    display: block;
    width: 48px;
    height: auto;
  }


  .sp-logo,
  .sp-header-link {
    display: grid;
    width: 71px;
    height: 71px;
    border-radius: 50%;
    box-sizing: border-box;
    flex: 0 0 71px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
  }
  .sp-logo {
    place-items: center;
    margin-right: auto;
    background: #ffffff;
  }
  .sp-logo img {
    display: block;
    width: 48px;
    height: auto;
  }

  .sp-header-link {
    position: relative;
    place-items: center;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    cursor: pointer;
    overflow: visible;
  }

  .sp-header-link .sp-header-button-image {
    position: absolute;
    left: -8px;
    top: -8px;
    display: block;
    width: 87px;
    height: 87px;
    max-width: none;
    object-fit: contain;
    pointer-events: none;
  }

  /*
    画像ボタンの表示制御
    .sp-header-link .sp-header-button-image の display:block より詳細度を高くし、
    通常時に menu-close.png が menu.png の上に重ならないようにする。
  */
  .sp-header-link .sp-header-button-image--open {
    display: block;
  }

  .sp-header-link .sp-header-button-image--close {
    display: none;
  }

  .sp-header-link.is-active .sp-header-button-image--open,
  .sp-header-link--menu[aria-expanded="true"] .sp-header-button-image--open {
    display: none;
  }

  .sp-header-link.is-active .sp-header-button-image--close,
  .sp-header-link--menu[aria-expanded="true"] .sp-header-button-image--close {
    display: block;
  }

  .sp-menu-modal {
    position: fixed;
    inset: 0;
    display: block;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    z-index: 2000;
    transition: opacity 0.22s ease, visibility 0.22s ease;
  }

  .sp-menu-modal.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  .sp-menu-modal__panel {
    position: relative;
    width: 100%;
    min-height: 100dvh;
    height: 100dvh;
    margin: 0 auto;
    overflow: hidden;
    background:
      radial-gradient(circle at 10% 18%, rgba(255, 221, 241, 0.94) 0%, rgba(255, 221, 241, 0.56) 34%, rgba(255, 255, 255, 0) 56%),
      radial-gradient(circle at 92% 76%, rgba(206, 243, 245, 0.98) 0%, rgba(206, 243, 245, 0.66) 42%, rgba(255, 255, 255, 0) 68%),
      linear-gradient(112deg, #f2c9e7 0%, #e6e1ef 48%, #dff5f7 100%);
  }

  .sp-menu-modal__header {
    position: absolute;
    left: 26px;
    top: 26px;
    right: 25px;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    gap: 14px;
  }

  .sp-menu-modal__nav {
    position: absolute;
    z-index: 2;
    left: 48px;
    right: 56px;
    top: 157px;
    display: grid;
    color: var(--color-navy);
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    font-size: 22px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.02em;
    text-align: center;
  }

  .sp-menu-modal__nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 97px;
    color: var(--color-navy);
    white-space: nowrap;
  }

  .sp-menu-modal__nav a + a {
    border-top: 1px solid rgba(109, 114, 170, 0.65);
  }

  .sp-menu-modal__visual {
    position: absolute;
    z-index: 1;
    left: 70px;
    bottom: -3px;
    width: 265px;
    pointer-events: none;
  }

  .sp-menu-modal__visual img {
    display: block;
    width: 100%;
    height: auto;
  }

  .sp-header-link {
    align-content: start;
    justify-items: center;
    padding-top: 18px;
    row-gap: 8px;
    color: var(--color-navy);
    font-family: 'Inter','Noto Sans JP', sans-serif;
    font-size: 10px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.02em;
  }
  .sp-header-link img {
    display: block;
    width: 23px;
    height: auto;
  }
  .sp-header-link--contact { padding-top: 20px; }
  .sp-header-link--contact img { width: 23px; }
  .site-header {
    position: fixed;
    top: 0;
    left: 50%;
    right: auto;
    width: 100%;
    padding: 26px 25px 0 26px;
    transform: translateX(-50%);
    background: transparent;
    z-index: 1000;
  }

  .header-block-right {
    display: flex;
    gap: 14px;
  }

  body.is-sp-menu-open {
    overflow: hidden;
  }

  .site-header.is-scroll {
    background: unset;
    backdrop-filter: unset;
  }

}


@media screen and (max-width: 767px) {
  :root {
    --inner: 100%;
    --side-gap: clamp(22px, 7vw, 34px);
    --radius-lg: 20px;
  }
  body { font-size: 14px; }
  .sp-only { display: inline; }

  .hero {
    min-height: 631px;
    padding: 72px 0 38px;
    margin: 0px 0 -37px 0;
  }
  .hero-inner {
    display: block;
    width: 100%;
  }
  .hero-copy {
    width: 100%;
    margin: 0 auto 24px;
    padding-top: 48px;
    text-align: center;
  }
  .hero-copy h1 {
    display: block;
    font-size: clamp(34px, 9vw, 50px);
    line-height: 1.82;
    letter-spacing: -0.06em;
    white-space: unset;
  }
  .hero-copy h1 {
    position: relative;
    display: block;
    width: max-content;
    max-width: 100%;
    margin: 0 auto 22px;
    font-size: clamp(34px, 9vw, 50px);
    line-height: 1.82;
    letter-spacing: -0.06em;
    text-align: left;
    white-space: unset;
  }
  .hero-copy h1 span {
    position: static;
    display: inline;
    width: auto;
    padding-bottom: 0;
  }
  .hero-copy h1 span::after {
    display: none;
  }
  .hero-copy h1 .gold:first-child {
    position: relative;
    display: block;
    width: max-content;
    padding-bottom: 2px;
    margin: 0 auto;
  }

  .hero-copy h1 .gold:first-child::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 2px;
    display: block;
    width: 100%;
    height: 1px;
    background: #ffffff;
  }

  .hero-copy h1 span:nth-child(2),
  .hero-copy h1 .gold:last-child {
    display: inline;
  }

  .hero-copy h1::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    margin-top: -0.18em;
    background: #ffffff;
  }
  .hero-divider {
    width: 75%;
    height: 1px;
    margin: 0.55em auto 20px;
  }

  .hero-visual img {
    display: block;
    width: 70%;
    /* max-width: 402px; */
    margin: 12px auto 0;
  }

  .hero > .inner-bg {
    width: calc(100% + 16px);
    min-height: 655px;
    margin-top: clamp(56px, 16.5vw, 70px);
    margin-left: -8px;
    margin-right: -8px;
    padding: 43px 28px 66px;
    border-radius: 0;
    background: #6D72AA;
  }

  .hero > .inner-bg .section-title {
    margin-bottom: 32px;
    font-size: clamp(25px, 6.85vw, 28px);
    line-height: 1.48;
  }

  .hero > .inner-bg .problem-list {
    width: 90%;
    margin-inline: auto;
  }

  .problems {
    padding: 42px 0 66px;
    background: var(--color-blue);
  }
  .problems .section-title {
    margin-bottom: 32px;
    font-size: clamp(25px, 6.85vw, 28px);
    line-height: 1.48;
  }
  .problem-list {
    display: grid;
    grid-template-columns: 1fr;
    width: min(100% - 56px, 345px);
    padding: 0;
    gap: 18px;
    background: transparent;
  }
  .problem-card {
    grid-template-columns: 80px 1fr;
    justify-items: start;
    align-items: center;
    gap: 16px;
    min-height: 133px;
    padding: 22px 20px;
    text-align: left;
    border-radius: 14px;
  }
  .problem-card img { width: 80px; }
  .problem-card h3 {
    margin-bottom: 5px;
    font-size: 20px;
    line-height: 1.45;
  }
  .problem-card p {
    font-size: 16px;
    line-height: 1.7;
  }

  .solution {
    min-height: 178px;
    padding: 48px 0 72px;
  }
  .solution-arrow {
    top: -34px;
    width: 54px;
  }
  .solution-title {
    font-size: 24px;
    line-height: 1.62;
  }
  .solution-title span {
    display: block;
  }

  .curriculum {
    margin-top: -34px;
    padding: 70px 0 80px;
    border-radius: 60px 60px 0 0;
  }

  .curriculum-main-title {
    width: min(100% - 80px, 270px);
    min-height: 58px;
    margin-bottom: 34px;
    font-size: 23px;
    line-height: 1.2;
    border-radius: 999px;
  }

  .curriculum > .inner > .section-label:not(.section-label--hours) {
    width: 100%;
    min-height: 47px;
    margin-bottom: 30px;
    font-size: 20px;
  }
  .section-label {
    width: 100%;
    min-height: 47px;
    margin-bottom: 30px;
    font-size: 20px;
  }
  .program-grid {
    grid-template-columns: 1fr;
    /* width: min(100% - 68px, 334px); */
    margin-inline: auto;
    row-gap: 34px;
  }
  .program-card {
    min-height: auto;
    padding: 54px 22px 24px;
    border-radius: 14px;
  }
  .program-card h3 {
    min-height: 0;
    margin-bottom: 12px;
    font-size: 18px;
  }
  .program-card ul {
    font-size: 12px;
    line-height: 2;
  }
  .program-number {
    width: 46px;
    height: 46px;
    font-size: 14px;
  }
  .note {
    width: min(100% - 68px, 334px);
    margin-bottom: 44px;
    font-size: 12px;
    line-height: 2.1;
  }
  .section-label--hours { margin-top: 34px; }
  .training-content {
    grid-template-columns: 1fr;
    gap: 34px;
    width: 100%;
    margin-inline: auto;
  }
  .training-panel {
    padding: 38px 28px 32px;
    border-radius: 20px;
  }
  .training-panel h3 {
    font-size: 20px;
  }
  .training-icon { width: 56px; }
  .time {
    margin-bottom: 22px;
    font-size: 10px;
  }
  .lesson-list { gap: 20px; }
  .lesson-list strong { font-size: 16px; }
  .lesson-list span { font-size: 14px; }
  .practice-caption {
    margin-bottom: 20px;
    padding: 10px;
    font-size: 12px;
  }
  .scene-grid { gap: 10px; }
  .scene-grid div {
    min-height: 118px;
    padding: 13px 8px;
  }
  .scene-grid img {
    width: 30px;
    height: 30px;
    margin-bottom: 8px;
  }
  .scene-grid span { font-size: 8px; }
  .decor { display: none; }

  .reason {
    min-height: 160px;
    padding: 130px 0 48px;
  }
  .reason-title {
    min-width: 243px;
    min-height: 92px;
    padding: 0 28px;
    font-size: 22px;
  }
  .reason-person {
    bottom: -29px;
    z-index: 4;
  }
  .reason-person--left {
    left: 30px;
    width: 56px;
  }
  .reason-person--right {
    right: 24px;
    width: 82px;
  }
  .reason-cards {
    padding: 0 0 72px;
    background: var(--color-cream);
  }
  .reason-card-list {
    grid-template-columns: 1fr;
    width: min(100% - 66px, 334px);
    margin-inline: auto;
    gap: 34px;
    transform: translateY(-74px);
    margin-bottom: -74px;
  }
  .reason-card {
    min-height: auto;
    padding: 30px 25px 26px;
    border-radius: 14px;
  }
  .reason-card img {
    width: 88px;
    height: 88px;
    margin-bottom: 24px;
  }
  .reason-card h3 { font-size: 23px; }
  .reason-card .lead {
    margin-bottom: 18px;
    font-size: 16px;
    line-height: 1.55;
  }
  .reason-card p:not(.lead) {
    font-size: 12px;
    line-height: 1.7;
  }

  .one-stop {
    padding: 0 0 78px;
    background: var(--color-cream);
  }
  .one-stop-card {
    width: min(100% - 44px, 357px);
    min-height: 682px;
    border: 1px solid var(--color-navy);
    border-radius: 20px;
  }
  .one-stop-content { padding: 27px 24px 38px; }
  .one-stop h2 {
    margin-bottom: 28px;
    font-size: 16px;
    line-height: 1.8;
  }
  .one-stop p {
    margin-bottom: 28px;
    font-size: 18px;
    line-height: 1.72;
  }
  .support-visual img { width: 305.5px; }

  .comparison .section-label { margin-bottom: 24px; }
  .comparison-title {
    margin-bottom: 20px;
    font-size: 15px;
  }
  .scroll-hint {
    display: block;
    width: min(100% - 68px, 334px);
    margin-inline: auto;
  }
  .comparison-scroll {
    /* width: min(100% - 44px, 357px); */
    margin-inline: auto;
    border: 1px solid var(--color-navy);
  }
  .comparison-table {
    width: 720px;
    min-width: 720px;
    border-radius: 0;
  }
  .comparison-table th,
  .comparison-table td {
    min-width: 170px;
    padding: 14px 12px;
    font-size: 11px;
    border-width: 1px;
  }
  .comparison-table thead th { font-size: 13px; }

  .contact {
    padding: 56px 0 46px;
  }
  .contact h2 {
    margin-bottom: 34px;
    font-size: 20px;
    line-height: 1.7;
  }
  .contact-button {
    width: min(100% - 80px, 321px);
    min-width: 0;
    min-height: 75px;
    padding: 0 64px 0 34px;
    border-width: 1px;
    font-size: 19px;
    letter-spacing: 0.05em;
  }

  .contact-button__icon {
    right: 29px;
    width: 19px;
  }
  .contact-visual img {
    width: 261px;
    margin-top: 28px;
  }

  .site-footer {
    padding: 54px 20px 40px;
  }
  .footer-logo img { width: 131px; }
  .footer-program {
    margin-top: 20px;
    font-size: 19px;
  }
  .footer-company {
    margin-top: 34px;
    font-size: 11px;
  }
  .site-footer small {
    margin-top: 28px;
    font-size: 8px;
  }
  .page-top {
    right: 18px;
    bottom: 20px;
    width: 35px;
  }

  .hero-copy_under {
    display: block;
    font-family: "senobi-gothic", sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    letter-spacing: -15%;
    color: #3A3F7C;
    background-color: #fff;
    border-radius: 30px;
    padding: 1.5% 3%;
    width: 60%;
    margin: 0 auto;
    margin-bottom: 10%;
  }
  .curriculum-cta-area {
    min-height: 316px;
  }
}

/* Rendered size guard for supplied 2x background4 asset */
.one-stop-card {
  width: min(1439px, calc(100% - var(--side-gap) * 2));
}


/*==========================================================================
  One stop title side vectors - HTML image implementation
==========================================================================*/
.one-stop-content-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(42px, 5vw, 88px);
  width: min(100% - var(--side-gap) * 2, 1133px);
  margin: 0 auto clamp(42px, 4vw, 72px);
  box-sizing: border-box;
}

.one-stop-content-inner h2 {
  position: relative;
  z-index: 1;
  margin: 0;
  text-align: center;
}

.one-stop-title-vector {
  display: block;
  flex: 0 0 auto;
  width: clamp(56px, 4.47vw, 89.4px);
  pointer-events: none;
  z-index: 3;
}

.one-stop-title-vector img {
  display: block;
  width: 100%;
  height: auto;
}

@media screen and (max-width: 767px) {
  .one-stop-content-inner {
    width: 100%;
    margin: 0 auto 32px;
    gap: 15px;
  }

  .one-stop-content-inner h2 {
    font-size: 16px;
    line-height: 1.85;
  }

  .one-stop-title-vector {
    width: 27px;
  }
}

/*==========================================================================
  Hero visual position adjustment
==========================================================================*/
@media screen and (min-width: 768px) {
  .hero-visual {
    transform: translateX(clamp(24px, 6.65vw, 133px));
  }
}

@media screen and (max-width: 767px) {
  .hero-visual {
    transform: none;
  }
}

/*==========================================================================
  Curriculum total visual - Figma node 102:1161
==========================================================================*/
.curriculum-total-visual {
  display: block;
  width: min(100%, 452.17px);
  margin: clamp(-10px, -0.5vw, -6px) auto clamp(28px, 3.2vw, 64px);
  pointer-events: none;
}

.curriculum-total-visual img {
  display: block;
  width: 100%;
  height: auto;
}

/* Figma exact color values for the connected program-card design */
.program-card {
  border-width: 1px;
  box-shadow: none;
}

.program-card--beige {
  background: #F7F1E7;
  border-color: #D6C299;
}

.program-card--pink {
  background: #FFE9F5;
  border-color: #ED1E79;
}

.program-card--beige .program-number {
  background: #BF9C50;
  color: #FFFFFF;
}

.program-card--pink .program-number {
  background: #ED1E79;
  color: #FFFFFF;
}

@media screen and (max-width: 767px) {
  .curriculum-total-visual {
    display: none;
  }

  .program-card {
    border-width: 1px;
    box-shadow: none;
  }
}

/*==========================================================================
  Program number STEP design
==========================================================================*/
.program-number {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: clamp(92px, 6.9vw, 138px);
  height: clamp(92px, 6.9vw, 138px);
  border-radius: 50%;
  background: #ED1E79;
  color: #FFFFFF;
  font-size: 0;
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.program-card--beige .program-number,
.program-card--pink .program-number {
  /* background: #ED1E79; */
  color: #FFFFFF;
}

.program-number::before {
  content: "STEP";
  display: block;
  margin-bottom: clamp(4px, 0.45vw, 9px);
  color: #FFFFFF;
  font-size: clamp(15px, 1.15vw, 23px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.04em;
}

.program-number::after {
  content: attr(data-step);
  display: block;
  color: #FFFFFF;
  font-size: clamp(44px, 3.45vw, 69px);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: 0;
}

@media screen and (max-width: 767px) {
  .program-number {
    width: 46px;
    height: 46px;
  }

  .program-number::before {
    margin-bottom: 2px;
    font-size: 7px;
    letter-spacing: 0.04em;
  }

  .program-number::after {
    font-size: 23px;
    line-height: 0.9;
  }
}

/*==========================================================================
  Curriculum note person - Figma node 2:1444
==========================================================================*/
.curriculum-note-row {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: min(100%, 1429px);
  margin: 0 auto clamp(48px, 6vw, 110px);
  margin-top: -8%;
}

.curriculum-note-row .note {
  width: min(100%, 545px);
  margin: 0;
}

.curriculum-person1 {
  position: absolute;
  flex: 0 0 auto;
  width: clamp(178px, 12.39vw, 247.83px);
  margin-right: clamp(0px, 1.8vw, 36px);
  margin-bottom: clamp(-8px, -0.4vw, 0px);
  pointer-events: none;
  
  top: 150px;
  right: -50px;
  display: block;
}

.curriculum-person1 img {
  display: block;
  width: 100%;
  height: auto;
}

@media screen and (max-width: 767px) {
  .curriculum-note-row {
    display: block;
    width: 100%;
    margin: 0 auto 44px;
  }

  .curriculum-note-row .note {
    padding-top: 18px;
    width: 100%;
    margin: 0;
  }

  .curriculum-person1 {
    width: 124px;
    margin: 18px 0 0 auto;
  }

  .curriculum-detail.curriculum-detail--hours {
    width: clamp(300px, 55.2vw, 795px);
  }
}

/*==========================================================================
  SP program card layout - Figma node 2:2101
==========================================================================*/
.sp-title-separator {
  display: none;
}

@media screen and (max-width: 767px) {
  .program-grid {
    /* width: min(100% - 68px, 334px); */
    row-gap: 35px;
  }

  .program-card {
    min-height: 188px;
    padding: 76px 20px 15px 21px;
    border-width: 1px;
    border-radius: 14.329px;
    box-shadow: none;
    text-align: left;
    overflow: hidden;
  }

  .program-card--beige {
    background: #F7F1E7;
    border-color: #D6C299;
  }

  .program-card--pink {
    background: #FFE9F5;
    border-color: #ED1E79;
  }

  .program-number {
    top: 18px;
    left: 20px;
    width: 43.179px;
    height: 43.179px;
    transform: none;
    background: #ED1E79;
  }

  .program-card--beige .program-number {
    background: #BF9C50;
  }

  .program-card--pink .program-number {
    background: #ED1E79;
  }

  .program-number::before {
    margin-bottom: 3.2px;
    font-size: 5.35px;
    line-height: 1;
    letter-spacing: 0.04em;
  }

  .program-number::after {
    font-size: 15.8px;
    line-height: 0.9;
  }

  .program-card h3 {
    position: absolute;
    top: 19px;
    left: 78px;
    width: 230px;
    min-height: 0;
    margin: 0;
    color: #3A3F7C;
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 44px;
    letter-spacing: 0.04em;
    text-align: left;
    white-space: nowrap;
  }

  .program-title-break {
    display: none;
  }

  .sp-title-separator {
    display: inline;
  }

  .program-card ul {
    display: grid;
    gap: 0;
    width: 233px;
    margin: 0;
    color: #3A3F7C;
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    font-size: 12px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0;
    text-align: left;
  }

  .program-card li::before {
    content: "・";
  }
}

/*==========================================================================
  SP program grid layout - Figma node 130:24
==========================================================================*/
.program-card-person1 {
  display: none;
}

@media screen and (max-width: 767px) {
  .program-grid {
    position: relative;
    grid-template-columns: 1fr;
    width: 100%;
    margin-inline: auto;
    row-gap: 35px;
  }

  .program-grid::after {
    content: "合計12時間の研修";
    position: absolute;
    top: 250px;
    right: 5%;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 47px;
    height: 355.725px;
    border-radius: 6.036px;
    background: #ED1E79;
    color: #FFFFFF;
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    font-size: 20px;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: 0.04em;
    writing-mode: vertical-rl;
    text-orientation: upright;
    pointer-events: none;
  }

  .program-card {
    position: relative;
    width: 100%;
    min-height: 188px;
    padding: 76px 20px 15px 21px;
    border-width: 1px;
    border-radius: 14.329px;
    box-shadow: none;
    overflow: visible;
    text-align: left;
    box-sizing: border-box;
  }

  .program-card:nth-child(4) {
    min-height: 167px;
    padding-bottom: 12px;
  }

  .program-card--beige {
    background: #F7F1E7;
    border-color: #D6C299;
  }

  .program-card--pink {
    background: #FFE9F5;
    border-color: #ED1E79;
  }

  .program-number {
    top: 18px;
    left: 20px;
    z-index: 2;
    width: 43.179px;
    height: 43.179px;
    transform: none;
    background: #ED1E79;
  }

  .program-card--beige .program-number {
    background: #BF9C50;
  }

  .program-card--pink .program-number {
    background: #ED1E79;
  }

  .program-number::before {
    margin-bottom: 3.2px;
    font-size: 5.35px;
    line-height: 1;
    letter-spacing: 0.04em;
  }

  .program-number::after {
    font-size: 15.8px;
    line-height: 0.9;
  }

  .program-card h3 {
    position: absolute;
    top: 17px;
    left: 78px;
    width: 232px;
    min-height: 0;
    margin: 0;
    color: #3A3F7C;
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 44px;
    letter-spacing: 0.04em;
    text-align: left;
    white-space: nowrap;
  }

  .program-card:first-child h3 {
    top: 19px;
    left: 78px;
  }

  .program-card:nth-child(4) h3 {
    top: 15px;
    left: 76px;
  }

  .program-title-break {
    display: none;
  }

  .sp-title-separator {
    display: inline;
  }

  .program-card ul {
    display: grid;
    gap: 0;
    width: 269px;
    margin: 0;
    color: #3A3F7C;
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0;
    text-align: left;
  }

  .program-card:first-child ul {
    width: 233px;
  }

  .program-card li {
    white-space: nowrap;
  }

  .program-card li::before {
    content: "・";
  }

  .program-card-person1 {
    position: absolute;
    right: -5px;
    bottom: -28px;
    z-index: 3;
    display: block;
    width: 84px;
    pointer-events: none;
  }

  .program-card-person1 img {
    display: block;
    width: 100%;
    height: auto;
  }

  .curriculum-note-row .curriculum-person1 {
    display: none;
  }
}

/*==========================================================================
  SP solution / curriculum top layout - Figma
==========================================================================*/
@media screen and (max-width: 767px) {
  .solution {
    min-height: 390px;
    padding: 68px 0 0;
  }

  .solution-title {
    /* width: min(100% - 46px, 327px); */
    width: 100%;
    margin: 0 auto;
    font-size: 24px;
    font-weight: 700;
    line-height: 39px;
    letter-spacing: 0.05em;
  }

  .solution-title span {
    display: block;
  }

  .curriculum {
    margin-top: -28%;
    padding: 0 0 80px;
    /* border-radius: 0; */
  }

  .curriculum > .inner {
    padding-top: 0;
  }

  .curriculum-main-title {
    padding-top: 10px;
    width: 253px;
    min-height: 55.1px;
    margin: -23px auto 35px;
    border-radius: 999px;
    background: #BF9C50;
    color: #FFFFFF;
    font-size: 22.4px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.05em;
  }

  .curriculum-main-title::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -47px;
    width: 26.51px;
    height: 47.01px;
    transform: translateY(-50%);
    background: url("../img/icon15-sp.png") no-repeat center / contain;
    pointer-events: none;
  }

  .curriculum > .inner > .section-label:not(.section-label--hours) {
    width: 100%;
    min-height: 47px;
    margin: 0 auto 30px;
    border-radius: 5px;
    background: #3A3F7C;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.05em;
  }
}

/*==========================================================================
  Training panel STEP / time icon layout - Figma node 147:64
==========================================================================*/
.training-content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(36px, 3.225vw, 64.5px);
  align-items: stretch;
  width: min(100%, 1442px);
  margin: clamp(38px, 5vw, 90px) auto 0;
}

.training-panel {
  position: relative;
  min-height: clamp(640px, 46.98vw, 939.66px);
  padding: clamp(204px, 10.8vw, 216px) clamp(34px, 2.8vw, 54px) clamp(32px, 3vw, 60px);
  border: 5px solid #DADDEF;
  border-radius: clamp(18px, 1.2vw, 24px);
  background: #FFFFFF;
  box-shadow: none;
  color: #3A3F7C;
  box-sizing: border-box;
}

.training-icon.training-step {
  position: absolute;
  top: clamp(30px, 1.95vw, 39px);
  left: clamp(32px, 2.15vw, 43px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: clamp(86px, 6.1vw, 122px);
  height: clamp(86px, 6.1vw, 122px);
  margin: 0;
  border-radius: 50%;
  background: #DADDEF;
  color: #3A3F7C;
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-weight: 900;
  line-height: 1;
  text-align: center;
}

.training-icon.training-step span {
  display: block;
  margin-bottom: clamp(4px, 0.45vw, 9px);
  font-size: clamp(15px, 1.15vw, 23px);
  font-weight: 900;
  letter-spacing: 0.04em;
}

.training-icon.training-step strong {
  display: block;
  font-size: clamp(44px, 3.45vw, 69px);
  font-weight: 900;
  line-height: 0.88;
}

.training-panel h3 {
  position: absolute;
  top: clamp(35px, 2.46vw, 49px);
  left: clamp(142px, 10.2vw, 204px);
  width: calc(100% - clamp(178px, 13.5vw, 270px));
  min-height: auto;
  margin: 0;
  padding-bottom: clamp(12px, 1vw, 20px);
  color: #3A3F7C;
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-size: clamp(30px, 2.05vw, 41px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.05em;
  text-align: left;
  white-space: nowrap;
}

.training-panel h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #3A3F7C;
}

.training-panel .time {
  position: absolute;
  top: clamp(96px, 6.7vw, 134px);
  left: clamp(154px, 10.85vw, 217px);
  display: inline-flex;
  align-items: center;
  gap: clamp(8px, 0.7vw, 14px);
  margin: 0;
  color: #3A3F7C;
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-size: clamp(15px, 1vw, 20px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.05em;
  text-align: left;
}

.time-icon,
.time-icon img {
  display: block;
}

.time-icon img {
  width: clamp(18px, 1.15vw, 23px);
  height: auto;
}

.lesson-list {
  display: grid;
  gap: clamp(16px, 1.1vw, 22px);
  width: 100%;
  margin: 0;
}

.lesson-list li {
  position: relative;
  min-height: clamp(82px, 5.3vw, 106px);
  padding: clamp(22px, 1.45vw, 29px) clamp(20px, 1.35vw, 27px) clamp(18px, 1.2vw, 24px) clamp(48px, 3vw, 60px);
  border: 1px solid #D6C299;
  border-radius: 6px;
  background: #F7F1E7;
  box-sizing: border-box;
}

.lesson-list li::before {
  content: "●";
  position: absolute;
  top: clamp(24px, 1.55vw, 31px);
  left: clamp(22px, 1.3vw, 26px);
  color: #ED1E79;
  font-size: clamp(18px, 1.25vw, 25px);
  line-height: 1;
}

.lesson-list strong {
  display: block;
  margin: 0 0 clamp(12px, 0.85vw, 17px);
  color: #3A3F7C;
  font-size: clamp(20px, 1.4vw, 28px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.lesson-list span {
  display: block;
  color: #3A3F7C;
  font-size: clamp(13px, 0.9vw, 18px);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0.02em;
}

.practice-caption {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(44px, 3.55vw, 71px);
  margin: 0 0 clamp(28px, 2.65vw, 53px);
  padding: 0 clamp(16px, 1.4vw, 28px);
  border-radius: 999px;
  background: #3A3F7C;
  color: #FFFFFF;
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-size: clamp(16px, 1.1vw, 24px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.05em;
  text-align: center;
  box-sizing: border-box;
}

.scene-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 1.55vw, 31px);
}

.scene-grid div {
  display: grid;
  justify-items: center;
  align-content: start;
  min-height: clamp(132px, 8.45vw, 169px);
  padding: clamp(18px, 1.35vw, 27px) clamp(12px, 1.2vw, 24px);
  border: 1px solid #D6C299;
  border-radius: 6px;
  background: #F7F1E7;
  text-align: center;
  box-sizing: border-box;
}

.scene-grid div:last-child {
  border-color: #ED1E79;
  background: #FFE9F5;
}

.scene-grid img {
  display: block;
  width: clamp(28px, 2.25vw, 45px);
  height: clamp(28px, 2.25vw, 45px);
  margin: 0 auto clamp(10px, 0.85vw, 17px);
  object-fit: contain;
}

.scene-grid strong {
  display: block;
  margin-bottom: clamp(8px, 0.65vw, 13px);
  color: #3A3F7C;
  font-size: clamp(12px, 1.1vw, 22px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.03em;
}

.scene-grid span {
  display: block;
  color: #3A3F7C;
  font-size: clamp(10px, 0.8vw, 16px);
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.02em;
}

@media screen and (max-width: 767px) {
  .training-content {
    grid-template-columns: 1fr;
    gap: 34px;
    width: 100%;
    margin: 34px auto 0;
  }

  .training-panel {
    min-height: auto;
    padding: 106px 22px 24px;
    border-width: 2.5px;
    border-radius: 14px;
  }

  .training-icon.training-step {
    top: 20px;
    left: 22px;
    width: 60px;
    height: 60px;
  }

  .training-icon.training-step span {
    margin-bottom: 3px;
    font-size: 10px;
  }

  .training-icon.training-step strong {
    font-size: 34px;
  }

  .training-panel h3 {
    top: 25px;
    left: 100px;
    width: calc(100% - 124px);
    padding-bottom: 10px;
    font-size: 20px;
    line-height: 1.2;
  }

  .training-panel .time {
    top: 68px;
    left: 101px;
    gap: 7px;
    font-size: 14px;
  }

  .time-icon img {
    width: 13px;
  }

  .lesson-list {
    gap: 12px;
  }

  .lesson-list li {
    min-height: 72px;
    padding: 15px 12px 13px 30px;
    border-radius: 5px;
  }

  .lesson-list li::before {
    top: 17px;
    left: 12px;
    font-size: 12px;
  }

  .lesson-list strong {
    margin-bottom: 8px;
    font-size: 16px;
  }

  .lesson-list span {
    font-size: 14px;
    line-height: 1.55;
  }

  .practice-caption {
    /* min-height: 28px; */
    margin-bottom: 18px;
    padding: 0 10px;
    font-size: 11.5px;
    border-radius: 999px;
  }

  .scene-grid {
    gap: 12px;
  }

  .scene-grid div {
    min-height: 104px;
    padding: 12px 8px 10px;
    border-radius: 5px;
  }

  .scene-grid img {
    width: 19px;
    height: 19px;
    margin-bottom: 8px;
  }

  .scene-grid strong {
    margin-bottom: 6px;
    /* font-size: 11px; */
  }

  .scene-grid span {
    /* font-size: 8px; */
    line-height: 1.45;
  }
}

/*==========================================================================
  Training lead / flow icon - Figma node 147:64
==========================================================================*/
.training-lead {
  width: min(100%, 671px);
  margin: clamp(46px, 4.35vw, 87px) auto clamp(34px, 2.6vw, 52px);
  color: #3A3F7C;
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-size: clamp(22px, 1.75vw, 35px);
  font-weight: 700;
  line-height: 1.5142857143;
  letter-spacing: 0.05em;
  text-align: center;
}

.training-content {
  position: relative;
}

.training-flow-icon {
  position: absolute;
  left: 50%;
  top: clamp(418px, 23.1vw, 462px);
  z-index: 5;
  display: block;
  width: clamp(54px, 4.17vw, 83.46px);
  transform: translateX(-50%);
  pointer-events: none;
}

.training-flow-icon img {
  display: block;
  width: 100%;
  height: auto;
}

@media screen and (max-width: 767px) {
  .training-lead {
    width: min(100% - 54px, 334px);
    margin: 26px auto 24px;
    font-size: 16px;
    line-height: 1.65;
    letter-spacing: 0.04em;
  }

  .training-flow-icon {
    position: static;
    width: 42px;
    margin: -10px auto -10px;
    transform: rotate(90deg);
  }
}

/*==========================================================================
  SP reason layout - Figma node 154:73
==========================================================================*/
@media screen and (max-width: 767px) {
  .reason {
    position: relative;
    z-index: 2;
    min-height: 176px;
    margin-top: 100px;
    padding: 0;
    background: var(--color-cream);
    border-radius: 60px 60px 0 0;
    overflow: visible;
  }

  .reason-inner {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    min-height: 176px;
    margin-top: 0;
    padding: 0;
    z-index: 3;
  }

  .reason-title {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    width: 243px;
    min-height: 92px;
    margin: 0 auto;
    padding: 0;
    border-radius: 60px;
    background: #BF9C50;
    color: #FFFFFF;
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    font-size: 22.401px;
    font-weight: 700;
    line-height: 32px;
    letter-spacing: 0.05em;
    text-align: center;
  }

  .reason-person {
    position: absolute;
    z-index: 4;
    bottom: -29px;
    pointer-events: none;
  }

  .reason-person--left {
    left: 30px;
    width: 56px;
  }

  .reason-person--right {
    right: 24px;
    width: 82px;
  }

  .reason-person img {
    display: block;
    width: 100%;
    height: auto;
  }

  .reason-cards {
    position: relative;
    z-index: 1;
    padding: 0 0 72px;
    background: var(--color-cream);
  }

  .reason-card-list {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    margin: 0 auto;
    gap: 69px;
    transform: none;
  }

  .reason-card {
    position: relative;
    display: block;
    width: 100%;
    margin: 0 auto;
    padding: 58px 25px 20px;
    border: 3px solid #FC83BD;
    border-radius: 14.329px;
    background: #FFFFFF;
    box-shadow: none;
    color: #3A3F7C;
    text-align: center;
    box-sizing: border-box;
  }

  .reason-card picture,
  .reason-card > img {
    position: absolute;
    top: -42px;
    left: 50%;
    display: block;
    width: 87px;
    height: 87px;
    margin: 0;
    transform: translateX(-50%);
  }

  .reason-card picture img,
  .reason-card > img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .reason-card h3 {
    margin: 0 0 22px;
    color: #ED1E79;
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    font-size: 23px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0;
    text-align: center;
  }

  .reason-card .lead {
    width: 100%;
    margin: 0 auto 16px;
    color: #6D72AA;
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    font-size: 16px;
    font-weight: 900;
    line-height: 25px;
    letter-spacing: 0;
    text-align: center;
  }

  .reason-card p:not(.lead) {
    width: 282px;
    margin: 0 auto;
    color: #3A3F7C;
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    font-size: 12px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0;
    text-align: center;
  }

  .reason-card:first-child p:not(.lead) {
    width: 224px;
    font-size: 12.013px;
    line-height: 20.022px;
  }

  .reason-card:nth-child(2) .lead {
    width: 100%;
    margin-bottom: 6px;
  }

  .reason-card:nth-child(3) .lead {
    width: 100%;
    margin-bottom: 14px;
    letter-spacing: 0.03em;
  }

  .display-767 {
    display: block;
  }

}

/*==========================================================================
  SP reason layout - Figma node 167:97
==========================================================================*/
@media screen and (max-width: 767px) {
  .reason {
    position: relative;
    z-index: 2;
    overflow: visible;
    min-height: 176px;
    margin-top: 100px;
    padding: 0;
    background: transparent;
    border-radius: 0;
  }

  .reason::before {
    content: "";
    position: absolute;
    top: 31px;
    left: 50%;
    z-index: 0;
    width: 100%;
    height: 277.043px;
    transform: translateX(-50%);
    background: var(--color-cream);
    border-radius: 60px 60px 0 0;
    pointer-events: none;
  }

  .reason-inner {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    min-height: 176px;
    margin-top: 0;
    padding: 0;
  }

  .reason-title {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 243px;
    min-width: 0;
    min-height: 92px;
    margin: 0 auto;
    padding: 0;
    border-radius: 60px;
    background: #BF9C50;
    color: #FFFFFF;
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    font-size: 22.401px;
    font-weight: 700;
    line-height: 32px;
    letter-spacing: 0.05em;
    text-align: center;
  }

  .reason-person {
    position: absolute;
    z-index: 4;
    bottom: auto;
    pointer-events: none;
  }

  .reason-person--left {
    top: 56px;
    left: 30px;
    width: 55.902px;
  }

  .reason-person--right {
    top: 50px;
    right: 24px;
    width: 82.276px;
  }

  .reason-person img {
    display: block;
    width: 100%;
    height: auto;
  }

  .reason-cards {
    position: relative;
    z-index: 3;
    padding: 0 0 52px;
    background: var(--color-cream);
  }

  .reason-card-list {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    margin: 0 auto;
    gap: 69px;
    transform: none;
  }

  .reason-card {
    position: relative;
    display: block;
    width: 100%;
    padding: 58px 25px 20px;
    border: 3px solid #FC83BD;
    border-radius: 14.329px;
    background: #FFFFFF;
    box-shadow: none;
    color: #3A3F7C;
    text-align: center;
    box-sizing: border-box;
  }

  .reason-card:nth-child(2) {
    min-height: 262px;
  }

  .reason-card:nth-child(3) {
    min-height: 287px;
  }

  .reason-card picture,
  .reason-card > img {
    position: absolute;
    top: -42px;
    left: 50%;
    display: block;
    width: 87.025px;
    height: 87.025px;
    margin: 0;
    transform: translateX(-50%);
  }

  .reason-card picture img,
  .reason-card > img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .reason-card h3 {
    margin: 0 0 22px;
    color: #ED1E79;
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    font-size: 23px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0;
    text-align: center;
    white-space: nowrap;
  }

  .reason-card .lead {
    width: 100%;
    margin: 0 auto 16px;
    color: #6D72AA;
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    font-size: 16px;
    font-weight: 900;
    line-height: 25px;
    letter-spacing: 0;
    text-align: center;
  }

  .reason-card p:not(.lead) {
    width: 282px;
    margin: 0 auto;
    color: #3A3F7C;
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    font-size: 12px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0;
    text-align: center;
  }

  .reason-card:first-child p:not(.lead) {
    font-size: 12.013px;
    line-height: 20.022px;
  }

  .reason-card:nth-child(2) .lead {
    margin-bottom: 6px;
  }

  .reason-card:nth-child(3) .lead {
    margin-bottom: 14px;
    letter-spacing: 0.03em;
  }
}

/*==========================================================================
  PC reason layout - Figma node 168:106
==========================================================================*/
@media screen and (min-width: 768px) {
  .reason {
    position: relative;
    z-index: 2;
    overflow: visible;
    min-height: clamp(330px, 22.1vw, 442px);
    margin-top: clamp(80px, 5vw, 100px);
    padding: 0;
    background: var(--color-cream);
    border-radius: clamp(60px, 3.4vw, 68px) clamp(60px, 3.4vw, 68px) 0 0;
  }

  .reason-inner {
    position: relative;
    display: block;
    width: min(76.03vw, 1520.583px);
    min-height: clamp(330px, 22.1vw, 442px);
    margin: 0 auto;
    z-index: 3;
  }

  .reason-title {
    position: absolute;
    top: -80px;
    left: 50%;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(33.882vw, 677.641px);
    min-width: 0;
    min-height: min(12.289vw, 245.784px);
    padding: 0;
    border-radius: 999px;
    background: #BF9C50;
    color: #FFFFFF;
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    font-size: clamp(36px, 3vw, 60px);
    font-weight: 700;
    line-height: 1.3167;
    letter-spacing: 0.05em;
    text-align: center;
    transform: translateX(-50%);
  }

  .reason-person {
    position: absolute;
    top: clamp(16px, 1.116vw, 22.327px);
    bottom: auto;
    z-index: 4;
    pointer-events: none;
  }

  .reason-person--left {
    left: min(1.06vw, 21.188px);
    width: min(10.088vw, 201.757px);
  }

  .reason-person--right {
    right: 0;
    width: min(14.847vw, 296.94px);
  }

  .reason-person img {
    display: block;
    width: 100%;
    height: auto;
  }

  .reason-cards {
    position: relative;
    /* z-index: 3; */
    /* padding: 0 0 clamp(80px, 7.5vw, 150px); */
    /* background: var(--color-cream); */
  }

  .reason-card-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 451.048px));
    justify-content: center;
    gap: min(2.117vw, 42.355px);
    width: min(100%, 1437.833px);
    margin: 0 auto;
    transform: none;
    z-index: 5;
  }

  .reason-card {
    position: relative;
    width: min(100%, 451.048px);
    min-height: min(26.553vw, 531.06px);
    padding: min(7.325vw, 146.5px) min(1.5vw, 30px) min(1.6vw, 32px);
    border: 3px solid #FC83BD;
    border-radius: 14.329px;
    background: #FFFFFF;
    box-shadow: none;
    color: #3A3F7C;
    text-align: center;
    box-sizing: border-box;
  }

  .reason-card picture,
  .reason-card > img {
    position: absolute;
    top: max(-4.205vw, -84.102px);
    left: 50%;
    display: block;
    width: min(9.637vw, 192.742px);
    height: min(9.35vw, 186.989px);
    margin: 0;
    transform: translateX(-50%);
  }

  .reason-card picture img,
  .reason-card > img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    margin: 0;
  }

  .reason-card h3 {
    margin: 0 0 min(1.75vw, 35px);
    color: #ED1E79;
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    font-size: clamp(28px, 2vw, 40px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0;
    text-align: center;
    white-space: nowrap;
  }

  .reason-card .lead {
    width: min(100%, 391px);
    margin: 0 auto min(3vw, 60px);
    color: #6D72AA;
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    font-size: clamp(18px, 1.3vw, 26px);
    font-weight: 900;
    line-height: 1.7308;
    letter-spacing: 0;
    text-align: center;
  }

  .reason-card p:not(.lead) {
    width: min(100%, 391px);
    margin: 0 auto;
    color: #3A3F7C;
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    font-size: clamp(15px, 1.05vw, 21px);
    font-weight: 500;
    line-height: 1.6667;
    letter-spacing: 0;
    text-align: center;
  }

  .reason-card:nth-child(2) .lead,
  .reason-card:nth-child(3) .lead {
    margin-bottom: min(1.5vw, 30px);
  }
}

/*==========================================================================
  Reason section only - Figma nodes 168:106 / 2:13
==========================================================================*/
@media screen and (min-width: 768px) {
  .reason {
    --reason-stage-width: min(calc(100% - 96px), 1520.583px);
    --reason-title-width: clamp(520px, 33.882vw, 677.641px);
    --reason-title-height: clamp(188px, 12.289vw, 245.784px);
    --reason-bg-top: clamp(82px, 5.28vw, 105.6px);
    --reason-section-height: clamp(354px, 22.1vw, 442px);
    --reason-person-top: clamp(16px, 1.116vw, 22.327px);
    --reason-left-person-width: clamp(152px, 10.088vw, 201.757px);
    --reason-right-person-width: clamp(224px, 14.847vw, 296.94px);

    position: relative;
    z-index: 2;
    min-height: var(--reason-section-height);
    margin-top: clamp(80px, 5vw, 100px);
    padding: 0;
    overflow: visible;
    background: transparent;
    border-radius: 0;
  }

  .reason::before {
    content: "";
    position: absolute;
    top: var(--reason-bg-top);
    left: 50%;
    z-index: 0;
    width: 100vw;
    max-width: 2016.747px;
    height: calc(100% - var(--reason-bg-top) + 2px);
    transform: translateX(-50%);
    background: var(--color-cream);
    border-radius: clamp(150px, 3.4vw, 68px) clamp(150px, 3.4vw, 68px) 0 0;
    pointer-events: none;
  }

  .reason-inner {
    position: relative;
    z-index: 2;
    display: block;
    width: var(--reason-stage-width);
    min-height: var(--reason-section-height);
    margin: 0 auto;
    padding: 0;
  }

  .reason-title {
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--reason-title-width);
    min-width: 0;
    min-height: var(--reason-title-height);
    margin: 0;
    padding: 0;
    transform: translateX(-50%);
    border-radius: 999px;
    background: #BF9C50;
    color: #FFFFFF;
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    font-size: clamp(44px, 3vw, 60px);
    font-weight: 700;
    line-height: 1.3167;
    letter-spacing: 0.05em;
    text-align: center;
  }

  .reason-person {
    position: absolute;
    top: var(--reason-person-top);
    bottom: auto;
    z-index: 4;
    margin: 0;
    pointer-events: none;
  }

  .reason-person--left {
    left: clamp(0px, 1.06vw, 21.188px);
    width: var(--reason-left-person-width);
  }

  .reason-person--right {
    right: 0;
    width: var(--reason-right-person-width);
  }

  .reason-person img {
    display: block;
    width: 100%;
    height: auto;
  }
}

@media screen and (min-width: 768px) and (max-width: 1200px) {
  .reason {
    --reason-stage-width: min(calc(100% - 60px), 1040px);
    --reason-title-width: clamp(430px, 46vw, 560px);
    --reason-title-height: clamp(150px, 18vw, 190px);
    --reason-bg-top: clamp(68px, 8.8vw, 95px);
    --reason-section-height: clamp(300px, 38vw, 390px);
    --reason-left-person-width: clamp(118px, 14vw, 165px);
    --reason-right-person-width: clamp(170px, 20vw, 235px);
  }

  .reason-title {
    font-size: clamp(34px, 4vw, 48px);
  }
}

@media screen and (max-width: 767px) {
  .reason {
    position: relative;
    z-index: 2;
    overflow: visible;
    min-height: 176px;
    margin-top: 100px;
    padding: 0;
    background: transparent;
    border-radius: 0;
  }

  .reason::before {
    content: "";
    position: absolute;
    top: 31px;
    left: 50%;
    z-index: 0;
    width: 100%;
    height: calc(100% - 31px + 2px);
    transform: translateX(-50%);
    background: var(--color-cream);
    border-radius: 60px 60px 0 0;
    pointer-events: none;
  }

  .reason-inner {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    min-height: 176px;
    margin: 0 auto;
    padding: 0;
  }

  .reason-title {
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 243px;
    min-width: 0;
    min-height: 92px;
    margin: 0;
    padding: 0;
    transform: translateX(-50%);
    border-radius: 60px;
    background: #BF9C50;
    color: #FFFFFF;
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    font-size: 22.401px;
    font-weight: 700;
    line-height: 32px;
    letter-spacing: 0.05em;
    text-align: center;
  }

  .reason-person {
    position: absolute;
    bottom: auto;
    z-index: 4;
    margin: 0;
    pointer-events: none;
  }

  .reason-person--left {
    top: 56px;
    left: 30px;
    width: 55.902px;
  }

  .reason-person--right {
    top: 50px;
    right: 24px;
    width: 82.276px;
  }

  .reason-person img {
    display: block;
    width: 100%;
    height: auto;
  }
}

/*==========================================================================
  One stop color correction - Figma nodes 2:40 / 2:10
  - background4: opacity 1
  - comparison label: navy bar
  - comparison table: exact Figma fills
==========================================================================*/
.one-stop-card > .card-bg {
  opacity: 1;
}

.one-stop-content > .section-label {
  width: min(100%, 1319.805px);
  min-height: clamp(78px, 5.421vw, 108.418px);
  margin: 0 auto clamp(60px, 3.1vw, 62px);
  background: #3A3F7C;
  color: #FFFFFF;
  border-radius: 8px;
  font-size: clamp(30px, 2vw, 40px);
  font-weight: 700;
}

.one-stop .comparison-table th,
.one-stop .comparison-table td {
  border: 2px solid #3A3F7C;
  color: #3A3F7C;
}

.one-stop .comparison-table thead th:first-child,
.one-stop .comparison-table tbody th {
  background: #FFFFFF;
  color: #3A3F7C;
}

.one-stop .comparison-table thead th:nth-child(2) {
  background: #808080;
  color: #FFFFFF;
}

.one-stop .comparison-table thead th:nth-child(3) {
  background: #ED1E79;
  color: #FFFFFF;
}

.one-stop .comparison-table tbody td:nth-child(2) {
  background: #E6E6E6;
  color: #3A3F7C;
  font-weight: 600;
}

.one-stop .comparison-table tbody td:nth-child(3) {
  background: #FFE1F1;
  color: #3A3F7C;
  font-weight: 600;
}

.one-stop .comparison-table strong,
.one-stop .comparison-table span {
  color: inherit;
}

@media screen and (max-width: 767px) {
  .one-stop-card > .card-bg {
    opacity: 1;
  }

  .one-stop-content > .section-label {
    width: 100%;
    min-height: 48px;
    margin: 0 auto 35px;
    background: #3A3F7C;
    color: #FFFFFF;
    font-size: 20px;
  }

  .one-stop .comparison-table th,
  .one-stop .comparison-table td {
    border: 0.788px solid #3A3F7C;
  }

  .one-stop .comparison-table thead th:first-child,
  .one-stop .comparison-table tbody th {
    background: #FFFFFF;
    color: #3A3F7C;
  }

  .one-stop .comparison-table thead th:nth-child(2) {
    background: #808080;
    color: #FFFFFF;
  }

  .one-stop .comparison-table thead th:nth-child(3) {
    background: #ED1E79;
    color: #FFFFFF;
  }

  .one-stop .comparison-table tbody td:nth-child(2) {
    background: #E6E6E6;
    color: #3A3F7C;
  }

  .one-stop .comparison-table tbody td:nth-child(3) {
    background: #FFE1F1;
    color: #3A3F7C;
  }
}

/*==========================================================================
  Footer final layout - Figma node 186:1387
==========================================================================*/
.site-footer {
  position: relative;
  z-index: 3;
  min-height: clamp(560px, 33.096vw, 661.921px);
  padding: clamp(96px, 6.01vw, 120.079px) 20px clamp(58px, 6.55vw, 131px);
  background: #FFFFFF;
  color: #3A3F7C;
  text-align: center;
  box-sizing: border-box;
}

.footer-logo {
  display: block;
  width: clamp(190px, 13.37vw, 267.404px);
  margin: 0 auto;
}

.footer-logo picture,
.footer-logo img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.footer-program {
  position: relative;
  width: max-content;
  max-width: calc(100% - 80px);
  margin: clamp(46px, 2.302vw, 46.033px) auto 0;
  padding-bottom: clamp(24px, 1.541vw, 30.819px);
  color: #3A3F7C;
  font-family: "senobi-gothic", sans-serif;
  font-size: clamp(30px, 1.9vw, 38px);
  font-weight: 700;
  line-height: 1.543;
  letter-spacing: -0.16em;
  text-align: center;
}

.footer-program::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: clamp(320px, 20.596vw, 411.914px);
  height: 1px;
  transform: translateX(-50%);
  background: #3A3F7C;
}

.footer-company {
  width: max-content;
  max-width: calc(100% - 80px);
  margin: clamp(33px, 1.789vw, 35.783px) auto 0;
  color: #3A3F7C;
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-size: clamp(17px, 1.1vw, 22px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0;
  text-align: center;
}

.footer-privacy-mark {
  display: block;
  width: clamp(108px, 7.66vw, 153.202px);
  margin: clamp(50px, 2.7vw, 54px) auto 0;
}

.footer-privacy-mark picture,
.footer-privacy-mark img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.site-footer small {
  display: block;
  width: max-content;
  max-width: calc(100% - 80px);
  margin: clamp(49px, 2.7vw, 54px) auto 0;
  color: #3A3F7C;
  font-family: 'Inter', sans-serif;
  font-size: clamp(12px, 0.8vw, 16px);
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: 0.2em;
  text-align: center;
}

.page-top {
  right: clamp(24px, 2.2vw, 44px);
  bottom: clamp(24px, 2.7vw, 54px);
  display: block;
  width: clamp(44px, 3.15vw, 63px);
}

.page-top picture,
.page-top img {
  display: block;
  width: 100%;
  height: auto;
}

@media screen and (min-width: 768px) and (max-width: 1200px) {
  .site-footer {
    min-height: 560px;
    padding-top: 86px;
  }

  .footer-logo {
    width: 220px;
  }

  .footer-program {
    margin-top: 34px;
    font-size: 30px;
  }

  .footer-program::after {
    width: 330px;
  }

  .footer-company {
    margin-top: 30px;
    font-size: 18px;
  }

  .footer-privacy-mark {
    width: 122px;
    margin-top: 42px;
  }

  .site-footer small {
    margin-top: 42px;
    font-size: 12px;
  }
}

@media screen and (max-width: 767px) {
  .site-footer {
    min-height: 449px;
    padding: 46px 20px 29px;
    background: #FFFFFF;
  }

  .footer-logo {
    width: 130.89px;
    margin: 0 auto;
  }

  .footer-program {
    max-width: none;
    margin: 22.53px auto 0;
    padding-bottom: 15.09px;
    font-size: 18.600px;
    line-height: 1.543;
    letter-spacing: -0.16em;
  }

  .footer-program::after {
    width: 201.659px;
    height: 0.489px;
  }

  .footer-company {
    max-width: none;
    margin: 32.13px auto 0;
    font-size: 10.769px;
    line-height: 1.4;
  }

  .footer-privacy-mark {
    width: 74.99px;
    margin: 26.43px auto 0;
  }

  .site-footer small {
    max-width: none;
    margin: 26.13px auto 0;
    font-size: 7.832px;
    line-height: 1.4;
    letter-spacing: 0.2em;
  }

  .page-top {
    right: 19.238px;
    bottom: 20.238px;
    width: 34.762px;
  }
}

/*==========================================================================
  Training cost section - Figma node 183:1063
==========================================================================*/
.training-cost {
  position: relative;
  z-index: 3;
  margin-top: -1px;
  padding: 0 0 clamp(96px, 7vw, 140px);
  background: #FFFFFF;
  color: #FFFFFF;
  overflow: visible;
}

.training-cost__inner {
  position: relative;
  z-index: 2;
  width: 90%;
  min-height: clamp(430px, 26.95vw, 539px);
  margin: 0 auto;
  padding-top: 0;
  box-sizing: border-box;
}

.training-cost__title {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(520px, 33.882vw, 677.641px);
  min-height: clamp(112px, 7.379vw, 147.588px);
  margin: 0 auto -82.977px;
  border-radius: 999px;
  background: #BF9C50;
  color: #FFFFFF;
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-size: clamp(44px, 3vw, 60px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.05em;
  text-align: center;
}

.training-cost__card {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  justify-items: center;
  width: 100%;
  min-height: clamp(380px, 23.719vw, 474.389px);
  padding: clamp(132px, 7.8vw, 156px) clamp(40px, 4vw, 80px) clamp(70px, 4.4vw, 88px);
  border-radius: 40px;
  background:
    radial-gradient(circle at 12% 18%, rgba(255,255,255,0.10) 0 2px, transparent 3px),
    radial-gradient(circle at 88% 76%, rgba(255,255,255,0.10) 0 2px, transparent 3px);
  box-sizing: border-box;
  overflow: hidden;
}

.training-cost__card::before {
  content: "";
  position: absolute;
  inset: -40% -12%;
  z-index: 0;
  background:
    linear-gradient(135deg, transparent 0 38%, rgba(255,255,255,0.06) 38.1% 39.2%, transparent 39.3%),
    linear-gradient(35deg, transparent 0 46%, rgba(255,255,255,0.05) 46.1% 47.1%, transparent 47.2%);
  pointer-events: none;
}

.training-cost__price,
.training-cost__note {
  position: relative;
  z-index: 1;
}

.training-cost__price {
  display: inline-flex;
  align-items: flex-end;
  justify-content: center;
  gap: clamp(18px, 1.2vw, 24px);
  color: #FFFFFF;
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.training-cost__amount {
  display: block;
  font-size: clamp(84px, 5.75vw, 115px);
  line-height: 0.9;
  letter-spacing: 0;
}

.training-cost__tax {
  display: block;
  padding-bottom: clamp(8px, 0.75vw, 15px);
  font-size: clamp(44px, 3.1vw, 62px);
  line-height: 0.97;
  letter-spacing: 0;
}

.training-cost__note {
  margin: clamp(24px, 1.8vw, 36px) 0 0;
  color: #FFFFFF;
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-size: clamp(22px, 1.5vw, 30px);
  font-weight: 400;
  line-height: 1.6667;
  letter-spacing: 0;
  text-align: center;
}

@media screen and (min-width: 768px) and (max-width: 1200px) {
  .training-cost {
    padding-bottom: 96px;
  }

  .training-cost__inner {
    width: min(calc(100% - 60px), 1040px);
    min-height: 420px;
  }

  .training-cost__title {
    width: clamp(420px, 48vw, 560px);
    min-height: 118px;
    margin-bottom: -64px;
    font-size: clamp(34px, 4vw, 48px);
  }

  .training-cost__card {
    min-height: 360px;
    padding-top: 118px;
    border-radius: 32px;
  }

  .training-cost__amount {
    font-size: clamp(70px, 8vw, 92px);
  }

  .training-cost__tax {
    font-size: clamp(34px, 4vw, 48px);
  }

  .training-cost__note {
    font-size: clamp(18px, 2.2vw, 24px);
  }


  /* ---------------------修正対応牧野------------------------ */

  .training-icon.training-step {
    width: clamp(65px, 6.1vw, 122px);
    height: clamp(65px, 6.1vw, 122px);
  }

  .training-icon.training-step span {
    font-size: clamp(10px, 1.15vw, 23px);
    position: absolute;
    top: 15%;
  }

  .training-icon.training-step strong {
    font-size: clamp(30px, 3.45vw, 69px);
    position: absolute;
    top: 38%;
    left: 36%;
  }

  .training-panel h3 {
    left: clamp(115px, 10.2vw, 204px);
    width: calc(100% - clamp(125px, 13.5vw, 270px));
    font-size: clamp(25px, 2.05vw, 41px);
  }

  .training-panel .time {
    top: clamp(90px, 6.7vw, 134px);
    left: clamp(120px, 10.85vw, 217px);
  }

  .reason-card h3 {
    font-size: clamp(24px, 2vw, 40px);
  }

}

@media screen and (max-width: 767px) {
  .training-cost {
    padding: 0 0 0px;
    background: #FFFFFF;
  }

  .training-cost__inner {
    /* width: min(100% - 46px, 356px); */
    min-height: 238px;
  }

  .training-cost__title {
    width: 243px;
    min-height: 72px;
    margin: 0 auto -46px;
    border-radius: 60px;
    font-size: 22.401px;
    line-height: 32px;
    letter-spacing: 0.05em;
  }

  .training-cost__card {
    min-height: 228px;
    padding: 86px 18px 34px;
    border-radius: 20px;
  }

  .training-cost__price {
    gap: 8px;
  }

  .training-cost__amount {
    font-size: 48px;
    line-height: 0.92;
  }

  .training-cost__tax {
    padding-bottom: 4px;
    font-size: 25px;
    line-height: 1;
  }

  .training-cost__note {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.6;
  }
}

/*==========================================================================
  Training cost background image element - background5.png
==========================================================================*/
.training-cost__card::before {
  content: none;
}

.training-cost__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

.training-cost__price,
.training-cost__note {
  position: relative;
  z-index: 1;
}

/*==========================================================================
  PC fixed header - Figma node 195:1401
==========================================================================*/
@media screen and (min-width: 900px) {
  .header-pc {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    padding:
      0
      clamp(34px, 2.65vw, 53px)
      0
      clamp(34px, 2.9vw, 58px);
    gap: clamp(120px, 21.5vw, 430px);
    box-sizing: border-box;
  }
  .header-sp {
    display: none;
  }
  .site-header {
    position: fixed;
    top: 0;
    left: 50%;
    right: auto;
    z-index: 1000;
    width: min(100%, 2000px);
    height: clamp(120px, 9.25vw, 185px);
    padding: 0;
    transform: translateX(-50%);
    box-sizing: border-box;
  }
}

@media screen and (min-width: 768px) {

  .head-left {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    width: clamp(320px, 22.319vw, 446.39px);
    min-height: auto;
    height: clamp(74px, 5.196vw, 103.929px);
    padding:
      clamp(14px, 1.2vw, 24px)
      clamp(22px, 1.9vw, 38px)
      clamp(14px, 1.2vw, 24px)
      clamp(22px, 1.59vw, 31.8px);
    border: 1px solid #6D72AA;
    border-radius: 999px;
    background: #FFFFFF;
    color: #3A3F7C;
    box-sizing: border-box;
  }

  .head-logo {
    flex: 0 0 clamp(58px, 4.032vw, 80.634px);
    width: clamp(58px, 4.032vw, 80.634px);
    margin: 0 clamp(16px, 0.88vw, 17.57px) 0 0;
  }

  .head-logo picture,
  .head-logo img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
  }

  .head-left p {
    margin: 0;
    color: #3A3F7C;
    font-size: clamp(18px, 1.303vw, 26.06px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.15em;
    white-space: nowrap;
  }

  .header-pc nav {
    flex: 0 1 auto;
  }

  .head-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(24px, 2vw, 40px);
    color: #fff;
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    font-size: clamp(15px, 1.1vw, 22px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0;
    white-space: nowrap;
  }

  .head-right a {
    color: inherit;
  }

  .head-right li + li::before {
    content: "｜";
    margin-right: clamp(24px, 2vw, 40px);
    color: #fff;
    opacity: 1;
  }
}

@media screen and (min-width: 901px) and (max-width: 1280px) {
    .header-pc {
      gap: clamp(30px, 5vw, 80px);
      padding-inline:
        clamp(24px, 3vw, 38px);
    }
}

@media screen and (min-width: 768px) and (max-width: 1280px) {
  .site-header {
    height: clamp(96px, 10vw, 128px);
  }

  .head-left {
    width: clamp(280px, 31vw, 360px);
    height: clamp(66px, 7.6vw, 86px);
    padding-inline: clamp(18px, 2vw, 26px);
  }

  .head-logo {
    flex-basis: clamp(50px, 6vw, 64px);
    width: clamp(50px, 6vw, 64px);
    margin-right: 12px;
  }

  .head-left p {
    font-size: clamp(15px, 1.8vw, 20px);
  }

  .head-right {
    gap: clamp(16px, 1.6vw, 24px);
    font-size: clamp(12px, 1.45vw, 16px);
  }

  .head-right li + li::before {
    margin-right: clamp(16px, 1.6vw, 24px);
  }
}

/*==========================================================================
  Problem decor vector4 responsive image - Figma node 2:2179
==========================================================================*/
.problem-decor-vector4 picture {
  display: block;
  width: 100%;
  height: auto;
}

.problem-decor-vector4 picture img {
  display: block;
  width: 100%;
  height: auto;
}

@media screen and (max-width: 767px) {
  .problem-decor-vector4 {
    left: 50%;
    top: -24px;
    width: 50px;
    transform: translateX(-50%);
  }

  .problem-decor-vector4 img {
    margin-top: 0;
  }
}

/*==========================================================================
  SP scroll hint icon - Figma node 2:2680
==========================================================================*/
.scroll-hint__icon {
  display: none;
}

@media screen and (max-width: 767px) {
  .one-stop .scroll-hint {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    column-gap: 8px;
    width: min(100% - 94px, 311px);
    margin: -50px auto 8px;
    color: #3A3F7C;
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    font-size: 10px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.05em;
    text-align: left;
  }

  .one-stop .scroll-hint__icon {
    display: block;
    flex: 0 0 21px;
    width: 21px;
    height: auto;
    margin: 0;
  }

  .one-stop .scroll-hint span {
    display: block;
    white-space: nowrap;
  }
}

/*==========================================================================
  SP comparison title / scroll hint spacing - Figma node 2:2680
==========================================================================*/
@media screen and (max-width: 767px) {
  .one-stop .comparison-title {
    width: 240px;
    margin: 0 auto 28px;
    color: #3A3F7C;
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.05em;
    text-align: center;
  }

  .one-stop .scroll-hint {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    column-gap: 8px;
    width: min(100% - 40px, 311px);
    margin: 0 auto 23px;
    color: #3A3F7C;
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    font-size: 10px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.05em;
    text-align: left;
  }

  .one-stop .scroll-hint__icon {
    display: block;
    flex: 0 0 21px;
    width: 21px;
    height: auto;
    margin: 0;
  }

  .one-stop .scroll-hint span {
    display: block;
    white-space: nowrap;
  }

  .one-stop .comparison-scroll {
    margin-top: 0;
  }
}

/*==========================================================================
  SP curriculum heading boundary - Figma node 163:88
  研修カリキュラムを background2.png と白背景の境目に重ねる
==========================================================================*/
@media screen and (max-width: 767px) {
  .curriculum {
    position: relative;
    z-index: 3;
    /* margin-top: -22.515px; */
    padding: 0 0 80px;
    background: transparent;
    border-radius: 0;
    overflow: visible;
  }

  .curriculum::before {
    content: "";
    position: absolute;
    top: 22.515px;
    left: 50%;
    z-index: 0;
    width: 100%;
    height: calc(100% - 22.515px);
    transform: translateX(-50%);
    background: #FFFFFF;
    border-radius: 60px 60px 0 0;
    pointer-events: none;
  }

  .curriculum > .inner {
    position: relative;
    z-index: 2;
    padding-top: 0;
  }

  .curriculum-main-title {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 253px;
    min-height: 55.102px;
    margin: 0 auto 35.412px;
    padding: 0;
    border-radius: 999px;
    background: #BF9C50;
    color: #FFFFFF;
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    font-size: 22.401px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.05em;
    text-align: center;
    white-space: nowrap;
  }

  .curriculum-main-title::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -47px;
    width: 26.512px;
    height: 47.006px;
    transform: translateY(-50%);
    background: url("../img/icon15-sp.png") no-repeat center / contain;
    pointer-events: none;
  }

  .curriculum > .inner > .section-label:not(.section-label--hours) {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 47px;
    margin: 0 auto 30px;
    padding: 0;
    border-radius: 5px;
    background: #3A3F7C;
    color: #FFFFFF;
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.05em;
    text-align: center;
    white-space: nowrap;
  }
}

/*==========================================================================
  Contact bottom flush layout - Figma node 182:37
  提供画像 image3.png / vector3.png をセクション下端に揃える
==========================================================================*/
.contact {
  position: relative;
  z-index: 3;
  min-height: clamp(540px, 36.824vw, 736.475px);
  padding: clamp(135px, 7.305vw, 146.074px) 0 0;
  background: #3A3F7C;
  overflow: hidden;
  text-align: center;
}

.contact > .section-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

  .contact .section-bg {
    /* height: 349px; */
    object-fit: cover;
  }

.contact-inner {
  position: relative;
  z-index: 2;
  width: min(100%, 2000px);
  min-height: calc(clamp(540px, 36.824vw, 736.475px) - clamp(135px, 7.305vw, 146.074px));
  margin: 0 auto;
  padding-bottom: 0;
}

.contact h2 {
  position: relative;
  z-index: 4;
  width: max-content;
  max-width: calc(100% - 80px);
  margin: 0 auto clamp(86px, 4.775vw, 95.514px);
  color: #FFFFFF;
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-size: clamp(42px, 3vw, 60px);
  font-weight: 800;
  line-height: 1.2167;
  letter-spacing: 0.05em;
  text-align: center;
  white-space: nowrap;
}

.contact-vector3 {
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 1;
  display: block;
  width: clamp(560px, 42.157vw, 843.14px);
  margin: 0;
  transform: translateX(-50%);
  line-height: 0;
  pointer-events: none;
}

.contact-vector3 img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
}

.contact-button {
  position: relative;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(600px, 42vw, 839.961px);
  min-height: clamp(142px, 9.871vw, 197.424px);
  margin: 0 auto;
  padding: 0 clamp(112px, 7.3vw, 146px) 0 clamp(88px, 5.8vw, 116px);
  border: 2px solid #3A3F7C;
  border-radius: 999px;
  background: #FFFFFF;
  color: #ED1E79;
  box-shadow: none;
  box-sizing: border-box;
}

.contact-button__text {
  display: block;
  color: #ED1E79;
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-size: clamp(36px, 2.5vw, 50px);
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.contact-button__icon {
  position: absolute;
  top: 50%;
  right: clamp(66px, 4.76vw, 95.088px);
  z-index: 2;
  display: block;
  width: clamp(35px, 2.471vw, 49.413px);
  transform: translateY(-50%);
  pointer-events: none;
}

.contact-button__icon img {
  display: block;
  width: 100%;
  height: auto;
}

.contact-visual {
  position: absolute;
  right: clamp(40px, 3.481vw, 69.57px);
  bottom: 0;
  z-index: 3;
  display: block;
  width: clamp(300px, 21.668vw, 433.368px);
  margin: 0;
  line-height: 0;
  pointer-events: none;
}

.contact-visual img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
}

@media screen and (min-width: 768px) and (max-width: 1200px) {
  .contact {
    min-height: 349px;
    padding-top: 104px;
  }

  .contact-inner {
    min-height: 416px;
  }

  .contact h2 {
    margin-bottom: 64px;
    font-size: clamp(32px, 4.2vw, 44px);
  }

  .contact-vector3 {
    width: clamp(460px, 60vw, 680px);
  }

  .contact-button {
    width: clamp(520px, 70vw, 720px);
    min-height: 150px;
  }

  .contact-button__text {
    font-size: clamp(28px, 3.5vw, 40px);
  }

  .contact-visual {
    right: 28px;
    width: clamp(240px, 28vw, 320px);
  }
}

@media screen and (max-width: 767px) {
  .contact {
    min-height: 349px;
    padding: 63px 0 0;
    height: clamp(48px, 14vw, 56px);
    background: #3A3F7C;
    overflow: hidden;
  }

  .contact-inner {
    width: min(100%, 402px);
    min-height: 340px;
    margin: 0 auto;
    padding-bottom: 0;
  }

  .contact h2 {
    width: 313px;
    max-width: none;
    margin: 0 auto 29px;
    font-size: 19.91px;
    font-weight: 800;
    line-height: 34px;
    letter-spacing: 0.05em;
    white-space: normal;
  }

  .contact-vector3 {
    left: 38px;
    min-height: 95px;
    width: 218px;
    transform: none;
  }

  .contact-button {
    width: 320.764px;
    min-height: 75.392px;
    margin: 0 auto;
    padding: 0 58px 0 34px;
    border-width: 0.764px;
  }

  .contact-button__text {
    font-size: 19.094px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.05em;
  }

  .contact-button__icon {
    right: 29.737px;
    width: 18.869px;
  }

  .contact-visual {
    right: 30.914px;
    min-height: 140px;
    width: 130.086px;
  }
}

/*==========================================================================
  SP contact visual overlap adjustment
  Contact文字末尾とimage3の重なり回避のみ
==========================================================================*/
@media screen and (max-width: 767px) {
  .contact-visual {
    right: 0;
  }
}

/*==========================================================================
  Support visual bottom flush - Figma node 173:7
  対象:
  - .support-visual
  - .support-visual 直下/直前の下部余白
==========================================================================*/
.one-stop .one-stop-content {
  padding-bottom: 0;
}

.one-stop .support-visual {
  display: block;
  width: min(100%, 832.135px);
  margin: 0 auto;
  line-height: 0;
}

.one-stop .support-visual img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .one-stop .one-stop-content {
    padding-bottom: 0;
  }

  .one-stop .support-visual {
    width: 305.243px;
    max-width: 100%;
    margin: 0 auto;
    line-height: 0;
  }

  .one-stop .support-visual img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 auto;
  }
}

/*==========================================================================
  Program card flow arrows - Figma node 216:1528
  提供画像 icon22.png をカード間に配置
==========================================================================*/
@media screen and (min-width: 1201px) {
  .program-grid {
    position: relative;
  }

  .program-flow-arrow {
    position: absolute;
    top: 50%;
    z-index: 5;
    display: block;
    width: clamp(18px, 1.114vw, 22.286px);
    height: auto;
    margin: 0;
    transform: translate(-50%, -50%);
    pointer-events: none;
  }

  .program-flow-arrow--1 {
    left: 24.6%;
  }

  .program-flow-arrow--2 {
    left: 50%;
  }

  .program-flow-arrow--3 {
    left: 75.6%;
  }
}

@media screen and (max-width: 1200px) {
  .program-flow-arrow {
    display: none;
  }
}

/*==========================================================================
  SP program card flow arrows - Figma node 218:1949
  提供画像 icon23.png をスマホ時のカード間に配置
==========================================================================*/
.program-flow-arrow-sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .program-grid {
    row-gap: 0;
  }

  .program-flow-arrow-sp {
    display: block;
    width: 31px;
    height: auto;
    margin: 10px auto 9px;
    line-height: 0;
    pointer-events: none;
  }

  .program-flow-arrow-sp--1,
  .program-flow-arrow-sp--2,
  .program-flow-arrow-sp--3 {
    justify-self: center;
  }
}

/*==========================================================================
  Comparison table corner border fix - Figma nodes 173:7 / 2:2680
  対象: .comparison-scroll / .comparison-table の4隅の罫線のみ補正
==========================================================================*/
.one-stop .comparison-scroll {
  border: 0;
  border-radius: 0;
  /* overflow-x: auto; */
  /* overflow-y: hidden; */
  -webkit-overflow-scrolling: touch;
}

.one-stop .comparison-table {
  border-collapse: separate;
  border-spacing: 0;
  border: 2px solid #3A3F7C;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
}

.one-stop .comparison-table th,
.one-stop .comparison-table td {
  border: 0;
  border-right: 2px solid #3A3F7C;
  border-bottom: 2px solid #3A3F7C;
}

.one-stop .comparison-table th:last-child,
.one-stop .comparison-table td:last-child {
  border-right: 0;
}

.one-stop .comparison-table tbody tr:last-child th,
.one-stop .comparison-table tbody tr:last-child td {
  border-bottom: 0;
}

@media screen and (max-width: 767px) {
  .one-stop .comparison-scroll {
    /* width: min(100% - 44px, 357px); */
    /* margin-inline: auto; */
    border: 0;
    border-radius: 0;
  }

  .one-stop .comparison-table {
    /* width: 497px; */
    /* min-width: 497px; */
    max-width: none;
    border-width: 0.788px;
    table-layout: fixed;
  }

  .one-stop .comparison-table th,
  .one-stop .comparison-table td {
    border-right-width: 0.788px;
    border-bottom-width: 0.788px;
  }

  .one-stop .comparison-table th:nth-child(1),
  .one-stop .comparison-table td:nth-child(1) {
    width: 117px;
    min-width: 117px;
  }

  .one-stop .comparison-table th:nth-child(2),
  .one-stop .comparison-table td:nth-child(2) {
    width: 190px;
    min-width: 190px;
  }

  .one-stop .comparison-table th:nth-child(3),
  .one-stop .comparison-table td:nth-child(3) {
    width: 190px;
    min-width: 190px;
  }
}

@media screen and (max-width: 500px) {
    .solution {
        min-height: 320px;
    }
}

@media screen and (max-width: 425px) {
  .hero-visual img {
    width: 100%;
  }
  .hero-copy_under {
    width: 80%;
  }
  .solution {
    min-height: 290px;
    padding: 68px 0 0;
  }
  .program-number::before {
    font-size: 6.35px;
  }
  .program-number::after {
    font-size: 16.8px;
  }
  .program-card h3 {
    top: 11% !important;
    font-size: 18px;
  }
  .program-card ul {
    font-size: 14px;
  }
  .curriculum-note-row .note {
    font-size: 10px;
    margin-top: 10%;
  }
  .display-767 {
    display: none;
  }
  .training-cost__amount {
    font-size: 40px;
  }
  .training-lead {
    font-size: 14px;
  }
  .one-stop-content-inner h2 {
    font-size: 14px;
  }
  .curriculum-cta-area {
    margin: -90px auto 0;
  }
}

@media screen and (max-width: 390px) {
  .solution-title {
    font-size: 22px;
  }
}

@media screen and (max-width: 363px) {
  .hero-copy h1 span {
    white-space: unset;
  }

  .hero-copy h1 {
    font-size: clamp(29px, 9vw, 35px);
  }
}
