@charset "UTF-8";
/* カラー設定 */
:root {
  --color-blue-01: #0054FF;
  --color-blue-02: #115CF2;
  --color-blue-03: #C1CDE7;
  --color-blue-04: #EAF1FF;
  --color-blue-05: #F0F5FF;
  --color-black: #292931;
  --color-gray-01: #6B7280;
  --color-gray-02: #ACACAC;
  --color-white: #FCFCFC;
  --color-orange: #F86120;
  /* グラデーション */
  --blue-gradation01: linear-gradient(to right, #0054FF 0%, #007AFF 100%);
}

/*----------------------------------------------------------*/
/* 全体共通 */
/*----------------------------------------------------------*/
html {
  width: 100%;
  box-sizing: border-box;
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-blue-04);
  color: var(--color-black);
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 0.02em;
  font-weight: 500;
  line-height: 1.7;
  position: relative;
}

.height-1 {
  line-height: 1;
}

.height-15 {
  line-height: 1.5;
}

.height-2 {
  line-height: 2;
}

.letter-spacing-0 {
  letter-spacing: 0;
}

.letter-spacing-05 {
  letter-spacing: 0.05em;
}

img {
  max-width: 100%;
}

.font-en {
  font-family: "Lato", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

h1 {
  font-size: 4rem;
}
@media screen and (max-width: 768px) {
  h1 {
    font-size: 2.8rem;
  }
}

h2 {
  font-size: 3.6rem;
}
@media screen and (max-width: 768px) {
  h2 {
    font-size: 2.8rem;
  }
}

h3 {
  font-size: 3.2rem;
}
@media screen and (max-width: 768px) {
  h3 {
    font-size: 2.4rem;
  }
}

h4 {
  font-size: 2.8rem;
}
@media screen and (max-width: 768px) {
  h4 {
    font-size: 2rem;
  }
}

h5 {
  font-size: 2.4rem;
}
@media screen and (max-width: 768px) {
  h5 {
    font-size: 1.8rem;
  }
}

p {
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  p {
    font-size: 1.4rem;
  }
}

.body-large {
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .body-large {
    font-size: 1.8rem;
  }
}

.body-medium {
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .body-medium {
    font-size: 1.6rem;
  }
}

.body-regular {
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .body-regular {
    font-size: 1.4rem;
  }
}

.body-small {
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  .body-small {
    font-size: 1.3rem;
  }
}

.regular {
  font-weight: 400;
}

.medium {
  font-weight: 500;
}

.bold {
  font-weight: 700;
}

.black {
  font-weight: 900;
}

.color-black {
  color: var(--color-black);
}

.color-white {
  color: var(--color-white);
}

.color-gray-01 {
  color: var(--color-gray-01);
}

.color-gray-02 {
  color: var(--color-gray-02);
}

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

.bg-blue {
  background-color: var(--color-blue-01);
}

.bg-blue-04 {
  background-color: var(--color-blue-04);
}

.bg-blue-05 {
  background-color: var(--color-blue-05);
}

.bg-prange {
  background-color: var(--color-orange);
}

.bg-blue-gradation01 {
  background: var(--blue-gradation01);
}

.color-white {
  color: var(--color-white);
}

.color-blue {
  color: var(--color-blue-01);
}

.text-center {
  text-align: center;
}

.center {
  margin: auto;
  display: block;
}

.radius-999 {
  border-radius: 999px;
}

.radius-999-change {
  border-radius: 999px;
}
@media screen and (max-width: 768px) {
  .radius-999-change {
    border-radius: 16px;
  }
}

.radius-28 {
  border-radius: 28px;
}
@media screen and (max-width: 768px) {
  .radius-28 {
    border-radius: 16px;
  }
}

.radius-20 {
  border-radius: 20px;
}
@media screen and (max-width: 768px) {
  .radius-20 {
    border-radius: 16px;
  }
}

.radius-16 {
  border-radius: 16px;
}

a {
  transition: all 0.15s ease-in-out;
}

a:hover {
  opacity: 0.8;
}

.mt-100 {
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  .mt-100 {
    margin-top: 52px;
  }
}

.mb-100 {
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .mb-100 {
    margin-bottom: 52px;
  }
}

.mt-80 {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .mt-80 {
    margin-top: 40px;
  }
}

.mb-80 {
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .mb-80 {
    margin-bottom: 40px;
  }
}

.pt-80 {
  padding-top: 80px;
}
@media screen and (max-width: 768px) {
  .pt-80 {
    padding-top: 40px;
  }
}

.pb-80 {
  padding-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .pb-80 {
    padding-bottom: 40px;
  }
}

.mt-60 {
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .mt-60 {
    margin-top: 32px;
  }
}

.mb-60 {
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .mb-60 {
    margin-bottom: 32px;
  }
}

.mt-40 {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .mt-40 {
    margin-top: 24px;
  }
}

.mb-40 {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .mb-40 {
    margin-bottom: 24px;
  }
}

.pt-40 {
  padding-top: 40px;
}
@media screen and (max-width: 768px) {
  .pt-40 {
    padding-top: 24px;
  }
}

.pb-40 {
  padding-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .pb-40 {
    padding-bottom: 24px;
  }
}

.mt-32 {
  margin-top: 32px;
}
@media screen and (max-width: 768px) {
  .mt-32 {
    margin-top: 20px;
  }
}

.mb-32 {
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .mb-32 {
    margin-bottom: 20px;
  }
}

.mt-24 {
  margin-top: 24px;
}
@media screen and (max-width: 768px) {
  .mt-24 {
    margin-top: 16px;
  }
}

.mb-24 {
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .mb-24 {
    margin-bottom: 16px;
  }
}

.pt-24 {
  padding-top: 24px;
}
@media screen and (max-width: 768px) {
  .pt-24 {
    padding-top: 16px;
  }
}

.pb-24 {
  padding-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .pb-24 {
    padding-bottom: 16px;
  }
}

.mt-20 {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .mt-20 {
    margin-top: 12px;
  }
}

.mb-20 {
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .mb-20 {
    margin-bottom: 12px;
  }
}

.mt-16 {
  margin-top: 16px;
}
@media screen and (max-width: 768px) {
  .mt-16 {
    margin-top: 8px;
  }
}

.mb-16 {
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .mb-16 {
    margin-bottom: 8px;
  }
}

.pt-16 {
  padding-top: 16px;
}
@media screen and (max-width: 768px) {
  .pt-16 {
    padding-top: 8px;
  }
}

.pb-16 {
  padding-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .pb-16 {
    padding-bottom: 8px;
  }
}

.mt-12 {
  margin-top: 12px;
}
@media screen and (max-width: 768px) {
  .mt-12 {
    margin-top: 6px;
  }
}

.mb-12 {
  margin-bottom: 12px;
}
@media screen and (max-width: 768px) {
  .mb-12 {
    margin-bottom: 6px;
  }
}

.mt-8 {
  margin-top: 8px;
}
@media screen and (max-width: 768px) {
  .mt-8 {
    margin-top: 4px;
  }
}

.mb-8 {
  margin-bottom: 8px;
}
@media screen and (max-width: 768px) {
  .mb-8 {
    margin-bottom: 4px;
  }
}

.mt-4 {
  margin-top: 4px;
}

.mb-4 {
  margin-bottom: 4px;
}

.link-btn {
  padding: 16px;
  display: flex;
  justify-content: center;
  gap: 12px;
  width: 100%;
  max-width: 320px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .link-btn {
    padding: 10px;
  }
}
.link-btn p {
  display: inline-block;
}

.more-btn {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}
@media screen and (max-width: 768px) {
  .more-btn {
    gap: 4px;
  }
}
.more-btn p {
  font-weight: 700;
  letter-spacing: 0.02em;
}
.more-btn img {
  width: 24px;
}
@media screen and (max-width: 768px) {
  .more-btn img {
    width: 20px;
  }
}

.section {
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  .section {
    padding: 40px 0;
  }
}

.inner {
  padding: 0 80px;
  max-width: 1440px;
  margin: auto;
  display: grid;
  gap: 60px;
}
@media screen and (max-width: 1440px) {
  .inner {
    padding: 0 5.5%;
  }
}
@media screen and (max-width: 768px) {
  .inner {
    padding: 0 20px;
    gap: 32px;
  }
}

.sec-title__description {
  max-width: 1000px;
}

.pc-none {
  display: none;
}
@media screen and (max-width: 768px) {
  .pc-none {
    display: block;
  }
}

.sp-none {
  display: block;
}
@media screen and (max-width: 768px) {
  .sp-none {
    display: none;
  }
}

.max-width-1000 {
  width: 100%;
  max-width: 1000px;
}

.max-width-860 {
  width: 100%;
  max-width: 860px;
}

/*----------------------------------------------------------*/
/* ヘッダー */
/*----------------------------------------------------------*/
.header {
  z-index: 9999;
  position: fixed;
  left: 0;
  right: 0;
  margin-inline: auto;
  width: 95.4%;
  margin-top: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.header__bar {
  position: absolute;
  inset: 0;
  background-color: rgba(252, 252, 252, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: inherit;
  z-index: -1;
  pointer-events: none;
}
.header nav {
  display: flex;
  align-items: center;
  padding: 16px 2.2% 16px 2.4%;
}
@media screen and (max-width: 768px) {
  .header nav {
    padding: 16px 20px;
  }
}
.header .drawer {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.header .navbar_logo {
  font-size: unset;
  height: 20px;
  position: relative;
  z-index: 10000;
}
.header .navbar_logo a {
  width: 100%;
  height: 100%;
}
.header .navbar_logo a img {
  width: 100%;
  height: 100%;
}
.header .navbar_toggle {
  display: none;
  position: relative;
  width: 28px;
  height: 20px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 10000;
}
@media screen and (max-width: 768px) {
  .header .navbar_toggle {
    display: block;
  }
}
.header .navbar_toggle__line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-white);
  border-radius: 999px;
  transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease, top 0.3s ease;
}
.header .navbar_toggle__line:nth-child(1) {
  top: 0;
}
.header .navbar_toggle__line:nth-child(2) {
  top: 9px;
}
.header .navbar_toggle__line:nth-child(3) {
  top: 18px;
}
.header .navbar_toggle.is-open .navbar_toggle__line {
  background-color: var(--color-black);
}
.header .navbar_toggle.is-open .navbar_toggle__line:nth-child(1) {
  top: 9px;
  transform: rotate(45deg);
}
.header .navbar_toggle.is-open .navbar_toggle__line:nth-child(2) {
  opacity: 0;
}
.header .navbar_toggle.is-open .navbar_toggle__line:nth-child(3) {
  top: 9px;
  transform: rotate(-45deg);
}
.header .menu {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2.3vw;
}
.header .menu a {
  opacity: 1;
}
.header .menu__list {
  display: flex;
  gap: 2.3vw;
}
@media screen and (max-width: 768px) {
  .header .menu__list {
    position: fixed;
    inset: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
    height: 100%;
    padding: 120px 20px 0;
    background-color: var(--color-white);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  .header .menu__list.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .header .menu__list p {
    color: var(--color-black);
    font-size: 1.8rem;
  }
}
.header .menu__list p {
  letter-spacing: 0.12em;
  transition: color 0.3s ease;
}
.header .menu__list a:hover p {
  color: var(--color-blue-01);
}
@media screen and (max-width: 768px) {
  .header .menu__item {
    width: 100%;
  }
  .header .menu__item:last-child {
    border-bottom: none;
  }
  .header .menu__item > a {
    display: block;
    width: 100%;
    padding: 16px 4px;
  }
  .header .menu__item.pc-none {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    border-bottom: none;
  }
  .header .menu__item.pc-none > a {
    display: inline-flex;
    justify-content: center;
    width: 100%;
    max-width: 320px;
    padding: 8px 24px;
    background-color: var(--color-blue-01);
    border-radius: 999px;
  }
  .header .menu__item.pc-none > a p {
    color: var(--color-white);
  }
}
.header .menu__item--dropdown {
  position: relative;
}
.header .menu__dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .header .menu__dropdown-toggle {
    display: none;
  }
}
.header .menu__dropdown-arrow {
  width: 6px;
  height: 6px;
  border-right: solid 1px var(--color-white);
  border-bottom: solid 1px var(--color-white);
  transform: rotate(45deg);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
@media screen and (max-width: 768px) {
  .header .menu__dropdown-arrow {
    display: none;
  }
}
.header .menu__dropdown {
  position: absolute;
  top: calc(100% + 28px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 160px;
  padding: 12px;
  border-radius: 16px;
  background-color: var(--color-white);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}
.header .menu__dropdown a {
  display: block;
  padding: 8px 12px;
  border-radius: 8px;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.header .menu__dropdown a:hover {
  background-color: var(--color-blue-05);
}
.header .menu__dropdown a p {
  color: var(--color-black);
  white-space: nowrap;
}
.header .menu__dropdown-item--child a p::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 2px;
  margin-right: 8px;
  vertical-align: middle;
  background-color: var(--color-blue-03);
}
@media screen and (max-width: 768px) {
  .header .menu__dropdown {
    position: static;
    transform: none;
    min-width: 0;
    padding: 0;
    border-radius: 0;
    background-color: transparent;
    box-shadow: none;
    align-items: stretch;
    gap: 0;
  }
  .header .menu__dropdown a {
    display: block;
    width: 100%;
    padding: 16px 4px;
    border-radius: 0;
  }
  .header .menu__dropdown a:hover {
    background-color: transparent;
  }
  .header .menu__dropdown-item--child {
    margin-left: 0;
  }
  .header .menu__dropdown-item--child a {
    padding-top: 0px;
  }
}
.header .menu__cv-btn {
  padding: 8px 24px;
  color: var(--color-black);
  transition: background-color 0.3s ease, color 0.3s ease;
}
.header .menu__cv-btn p {
  transition: color 0.3s ease;
}
.header .menu__cv-btn:hover {
  background-color: var(--color-blue-01);
  color: var(--color-white);
}
@media screen and (max-width: 768px) {
  .header .menu__cv-btn {
    display: none;
  }
}
.header .menu__item--dropdown.is-open .menu__dropdown-arrow {
  transform: rotate(-135deg);
}
.header .menu__item--dropdown.is-open .menu__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
@media screen and (max-width: 768px) {
  .header .menu__list.is-open .menu__dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}
.header.is-scrolled .header__bar {
  background-color: var(--color-white);
  transition: background-color 0.3s ease;
}
.header.is-scrolled .navbar_logo img {
  filter: brightness(0);
}
.header.is-scrolled .navbar_toggle__line {
  background-color: var(--color-black);
}
.header.is-scrolled .menu__list p {
  color: var(--color-black);
}
.header.is-scrolled .menu__dropdown-arrow {
  border-color: var(--color-black);
}
.header.is-scrolled .menu__cv-btn {
  background-color: var(--color-blue-01);
}
.header.is-scrolled .menu__cv-btn p {
  color: var(--color-white);
}
.header.is-menu-open .navbar_logo img {
  filter: brightness(0);
}

body.no-scroll {
  overflow: hidden;
}

[id] {
  scroll-margin-top: 40px;
  /* アンカー遷移時に20px下げる */
}

/*----------------------------------------------------------*/
/* フッター */
/*----------------------------------------------------------*/
.footer .inner {
  gap: 40px;
}
.footer__contact {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 32px 60px;
}
@media screen and (max-width: 768px) {
  .footer__contact {
    grid-template-columns: 1fr;
  }
}
.footer__contact__list {
  background-color: #1563FF;
  padding: 12px 20px 20px 16px;
}
@media screen and (max-width: 768px) {
  .footer__contact__list {
    padding: 16px 16px 20px 16px;
  }
}
.footer__contact__item {
  border-bottom: solid 1px var(--color-blue-03);
}
@media screen and (max-width: 768px) {
  .footer__contact .link-btn.sp-none {
    display: none;
  }
}
.footer__contact .link-btn.pc-none {
  display: none;
}
@media screen and (max-width: 768px) {
  .footer__contact .link-btn.pc-none {
    display: flex;
    align-items: center;
  }
}
.footer__nav {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .footer__nav {
    flex-direction: column;
    gap: 32px;
  }
}
.footer__nav .logo {
  display: block;
  width: 132px;
}
@media screen and (max-width: 768px) {
  .footer__nav .logo {
    width: 100px;
  }
}
.footer__nav__list {
  display: flex;
  gap: 32px;
}
@media screen and (max-width: 768px) {
  .footer__nav__list {
    flex-direction: column;
    gap: 16px;
  }
}
.footer__nav__list .sub {
  display: flex;
  align-items: center;
  gap: 1em;
}
.footer__nav__list .sub::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 2px;
  background-color: var(--color-white);
}
@media screen and (max-width: 768px) {
  .footer__nav__list .sub {
    margin-top: 4px;
  }
}
.footer__nav__item p {
  letter-spacing: 0.12em;
}
.footer .copyright {
  letter-spacing: 0.1em;
}

/*----------------------------------------------------------*/
/* 下層ページ共通 */
/*----------------------------------------------------------*/
.page__mv {
  position: relative;
  overflow: hidden;
  height: 57vw;
  height: 660px;
  background: linear-gradient(to right, #0048ff 0%, #007AFF 100%);
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .page__mv {
    align-items: unset;
    height: 100svh;
    max-height: 660px;
    min-height: 560px;
  }
}
.page__mv__img {
  position: absolute;
  top: 56%;
  right: 0;
  transform: translateY(-50%);
  height: calc(100% - 140px);
}
@media screen and (max-width: 768px) {
  .page__mv__img {
    bottom: 32px;
    top: unset;
    transform: unset;
    height: unset;
    width: 72%;
  }
}
.page__mv__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.page__mv__content {
  z-index: 2;
  width: 100%;
  padding: 0 72px;
  margin-top: 2vw;
}
@media screen and (max-width: 768px) {
  .page__mv__content {
    padding: 0 20px;
    margin-top: 136px;
  }
}
.page__mv__content .page-name {
  width: fit-content;
  padding: 0 16px;
}
.page__mv__content h2 {
  font-size: 5.2rem;
}
@media screen and (max-width: 768px) {
  .page__mv__content h2 {
    font-size: 3.2rem;
    margin-top: 12px;
    margin-bottom: 16px;
  }
}
.page__mv__content__description {
  max-width: 860px;
}

/*----------------------------------------------------------*/
/* その他下層ページ共通（お問い合わせ・プライバシーポリシーページ等） */
/*----------------------------------------------------------*/
.other-page__mv {
  padding-top: 160px;
}
@media screen and (max-width: 768px) {
  .other-page__mv {
    padding-top: 110px;
  }
}
.other-page__mv .page-name {
  width: fit-content;
  padding: 0 16px;
}
.other-page__mv h2 {
  font-size: 4.4rem;
}
@media screen and (max-width: 768px) {
  .other-page__mv h2 {
    font-size: 2.8rem;
  }
}
.other-page__content {
  padding: 40px;
}
@media screen and (max-width: 768px) {
  .other-page__content {
    padding: 32px 16px;
  }
}

/*----------------------------------------------------------*/
/* プログラム一覧（テンプレート） */
/*----------------------------------------------------------*/
.program-list__item a {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 40px;
  padding: 40px 80px;
  align-items: center;
  border: 1px solid transparent;
  transition: border-color 0.2s ease;
}
@media screen and (max-width: 768px) {
  .program-list__item a {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px 16px;
  }
}
.program-list__item a:hover {
  opacity: 1;
  border-color: var(--color-blue-01);
}
.program-list__item__img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .program-list__item__img {
    max-width: 320px;
    margin: auto;
  }
}
@media screen and (max-width: 768px) {
  .program-list__item h3 {
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .program-list__item h5 {
    margin-top: 16px;
  }
}
@media screen and (max-width: 768px) {
  .program-list__item .description {
    margin-top: 16px;
  }
}

/*----------------------------------------------------------*/
/* ステップ（テンプレート） */
/*----------------------------------------------------------*/
.step__list {
  display: grid;
  grid-template-columns: 1fr 16px 1fr 16px 1fr 16px 1fr;
  align-items: stretch;
  gap: 16px;
  width: 100%;
}
@media screen and (max-width: 1000px) {
  .step__list {
    grid-template-columns: 1fr;
    width: 90%;
    gap: 0;
  }
}
.step__list .arrow {
  display: flex;
}
@media screen and (max-width: 1000px) {
  .step__list .arrow {
    margin: auto;
  }
}
@media screen and (max-width: 1000px) {
  .step__list .arrow img {
    transform: rotate(90deg);
  }
}
.step__item {
  padding: 12px 16px;
}
.step__item .number {
  width: fit-content;
  padding: 4px 12px;
  line-height: 1;
  letter-spacing: 0.05em;
}

/*----------------------------------------------------------*/
/* ロードマップ（テンプレート） */
/*----------------------------------------------------------*/
.road-map .title {
  padding: 6px 12px;
}
.road-map .progress {
  width: fit-content;
  padding: 4px 20px;
}
@media screen and (max-width: 768px) {
  .road-map .progress {
    padding: 3px 16px;
  }
}
.road-map__item a {
  padding: 24px 32px;
  display: block;
}
@media screen and (max-width: 768px) {
  .road-map__item a {
    padding: 24px 16px;
  }
}
.road-map__item--in-progress a {
  border: solid 3px var(--color-blue-01);
}
.road-map__item--coming-soon a {
  pointer-events: none;
}
.road-map__item__flex {
  display: grid;
  grid-template-columns: 1fr 2.2fr;
  gap: 24px 40px;
}
@media screen and (max-width: 768px) {
  .road-map__item__flex {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 768px) {
  .road-map .more-btn {
    margin-top: 12px;
  }
}

/*----------------------------------------------------------*/
/*  テーブル（テンプレート） */
/*----------------------------------------------------------*/
.table table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 16px;
  table-layout: fixed;
}
@media screen and (max-width: 768px) {
  .table table {
    border-spacing: 0 12px;
    table-layout: unset;
  }
}
.table table thead tr th {
  padding: 8px 16px;
  width: 50%;
}
@media screen and (max-width: 768px) {
  .table table thead tr th {
    padding: 8px 8px;
  }
}
.table table thead tr th:first-child {
  border-radius: 100px 0 0 100px;
}
@media screen and (max-width: 768px) {
  .table table thead tr th:first-child {
    border-radius: 16px 0 0 16px;
    width: 40%;
  }
}
.table table thead tr th:last-child {
  border-radius: 0 100px 100px 0;
}
@media screen and (max-width: 768px) {
  .table table thead tr th:last-child {
    border-radius: 0 16px 16px 0;
    width: 60%;
  }
}
.table table tbody tr {
  border-radius: 100px;
}
.table table tbody tr td {
  padding: 16px;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  .table table tbody tr td {
    padding: 16px 12px;
  }
}
.table table tbody tr td:not(:first-child) {
  position: relative;
}
.table table tbody tr td:not(:first-child)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 10px;
  width: 1px;
  background-color: #E0E0E0;
}
.table table tbody tr td:first-child {
  border-radius: 100px 0 0 100px;
}
@media screen and (max-width: 768px) {
  .table table tbody tr td:first-child {
    border-radius: 16px 0 0 16px;
  }
}
.table table tbody tr td:last-child {
  position: relative;
  border-radius: 0 100px 100px 0;
}
@media screen and (max-width: 768px) {
  .table table tbody tr td:last-child {
    border-radius: 0 16px 16px 0;
  }
}
.table table tbody tr td img {
  width: 50px;
  aspect-ratio: 1/1;
}
.table table tbody tr td p {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .table table tbody tr td p {
    font-size: 1.3rem;
    letter-spacing: 0;
  }
}
.table table tbody tr td .flex {
  display: flex;
  align-items: center;
}

/*----------------------------------------------------------*/
/* 数字ボックス（丸囲み数字・テキスト横並びテンプレート） */
/*----------------------------------------------------------*/
.number-box {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 16px;
}
@media screen and (max-width: 768px) {
  .number-box {
    gap: 12px;
    padding: 16px 12px;
  }
}
.number-box .number {
  width: 44px;
  aspect-ratio: 1/1;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .number-box .number {
    width: 36px;
    min-width: 36px;
  }
}

/*----------------------------------------------------------*/
/* 下層ページ_埋め込み用ページの調整*/
/*----------------------------------------------------------*/
.labs-genkai-program-children,
.about-children {
  padding-top: 120px;
}
@media screen and (max-width: 768px) {
  .labs-genkai-program-children,
  .about-children {
    padding-top: 120px;
  }
}

/*----------------------------------------------------------*/
/* フォーム共通 */
/*----------------------------------------------------------*/
.form {
  width: 100%;
}
.form form {
  display: grid;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .form form {
    gap: 24px;
  }
}
.form__title {
  font-weight: 500;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .form__title {
    gap: 6px;
  }
}
.form__required, .form__optional {
  font-size: 80%;
  font-weight: 500;
  border-radius: 4px;
  padding: 4px 8px 5px;
  line-height: 1;
  color: var(--color-white);
  min-width: fit-content;
}
.form__required {
  background-color: var(--color-orange);
}
.form__optional {
  background-color: var(--color-gray-02);
}
.form__item {
  width: 100%;
  display: grid;
  gap: 8px;
}
.form__item .wpcf7-form-control-wrap {
  width: 100%;
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .form__item .wpcf7-form-control-wrap {
    font-size: 1.4rem;
  }
}
.form__item input,
.form__item select,
.form__item textarea {
  width: 100%;
  border: solid 1px var(--color-blue-03);
  border-radius: 12px;
  padding: 12px 16px;
}
@media screen and (max-width: 768px) {
  .form__item input,
  .form__item select,
  .form__item textarea {
    border-radius: 8px;
    padding: 8px 14px;
  }
}
.form__item input::placeholder,
.form__item select::placeholder,
.form__item textarea::placeholder {
  color: var(--color-gray-02);
  font-weight: 400;
}
.form__item select {
  -webkit-appearance: none;
  appearance: none;
}
.form__item select:hover {
  cursor: pointer;
}
.form__item select:invalid {
  color: var(--color-gray-02);
}
.form__item select.placeholder-selected {
  color: var(--color-gray-02);
  font-weight: 400;
}
.form__item select::-ms-expand {
  display: none;
}
.form__item--selectbox {
  position: relative;
}
.form__item--selectbox::after {
  content: "";
  position: absolute;
  border-top: 2px solid var(--color-gray-02);
  border-right: 2px solid var(--color-gray-02);
  height: 8px;
  width: 8px;
  top: 56px;
  right: 20px;
  transform: rotate(135deg);
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .form__item--selectbox::after {
    height: 8px;
    width: 8px;
    right: 16px;
    top: 46px;
  }
}
.form__privacy {
  display: flex;
  align-items: center;
  justify-content: center;
}
.form__privacy__link {
  margin-left: 12px;
  margin-right: 2px;
  text-decoration: underline;
}
.form input[type=submit] {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.7;
  text-align: center;
  background-color: var(--color-blue-01);
  color: var(--color-white);
  width: 100%;
  max-width: 320px;
  padding: 12px;
  border-radius: 100px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .form input[type=submit] {
    font-size: 1.6rem;
    padding: 10px;
  }
}
.form .wpcf7-spinner {
  display: none;
}
.form .wpcf7-not-valid-tip {
  margin-top: 4px;
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  .form .wpcf7-not-valid-tip {
    font-size: 1.2rem;
  }
}
.form__privacy {
  position: relative;
}
.form__privacy .wpcf7-not-valid-tip {
  position: absolute;
  top: 0;
  left: 0;
  width: max-content;
  margin-top: 20px;
  margin-left: 0.6em;
}
@media screen and (max-width: 768px) {
  .form__privacy .wpcf7-not-valid-tip {
    margin-top: 18px;
  }
}
.form .wpcf7 form .wpcf7-response-output {
  display: none;
}

.grecaptcha-badge {
  visibility: hidden;
}

.cat-picked {
  display: none !important;
}