@charset "UTF-8";

/* ==============================================================================
  このCSSはSCSSを使用して作成しています。
  CSSのみ編集すると、先祖返りを起こす可能性があります。
  SCSSをコンパイルしない場合（SCSSを触らずCSSのみ変更する場合）は
  custum.cssに上書き・追記すると安心です。
============================================================================== */

/* font Jost */
@font-face {
  font-family: Jost;
  src: url("../fonts/Jost.woff2") format("woff2");
  font-display: swap;
}

/* font NotoSans */
@font-face {
  font-family: NotoSansJP;
  src: url("../fonts/NotoSansJP.woff2") format("woff2");
  font-display: swap;
}

html {
  scroll-padding-top: 60px;
}

@media screen and (width >= 1024px) {
  html {
    scroll-padding-top: 80px;
  }
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100svh;
  font-family: NotoSansJp, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #2E2E2E;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.8;
}

main {
  flex-grow: 1;
  margin-top: 60px;
  overflow: hidden;
}

@media screen and (width >= 1024px) {
  main {
    margin-top: 80px;
  }
}

header, main, footer {
  width: 100%;
}

.no-scroll {
  overflow: hidden;
}

label {
  display: block;
}

.ly-header {
  position: fixed;
  top: 0;
  z-index: 3;
  width: 100vw;
  padding-inline: 20px;
  background-color: #fff;
}

@media screen and (width >= 1366px) {
  .ly-header {
    padding-inline: 0;
  }
}

.ly-header-inn {
  display: grid;
  justify-self: center;
  max-width: 1200px;
  height: 60px;
  margin-inline: auto;
}

@media screen and (width >= 1024px) {
  .ly-header-inn {
    height: 80px;
  }
}

.ly-header-items {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
}

@media screen and (width >= 1024px) {
  .ly-header-items {
    grid-template-columns: 1fr auto auto;
    gap: 24px;
  }
}

.ly-header-item:nth-of-type(2) {
  display: none;
}

@media screen and (width >= 1024px) {
  .ly-header-item:nth-of-type(2) {
    display: flex;
    gap: 16px;
  }
}

.ly-footer {
  max-width: 1200px;
  padding-inline: 20px;
  padding-top: 50px;
  padding-bottom: 32px;
  margin-inline: auto;
}

@media screen and (width >= 1024px) {
  .ly-footer {
    padding-top: 64px;
    padding-bottom: 56px;
  }
}

@media screen and (width >= 1366px) {
  .ly-footer {
    padding-inline: 0;
  }
}

.ly-footer-item--host {
  padding-top: 48px;
}

@media screen and (width >= 768px) {
  .ly-footer-item--host {
    text-align: center;
  }
}

.ly-footer-item--copy {
  padding-top: 24px;
}

@media screen and (width >= 1024px) {
  .ly-footer-item--copy {
    padding-top: 0;
  }
}

.ly-menu {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  background: linear-gradient(74.22deg, #FFE3E5 18.88%, #FF878B 74.94%);
  transform: translateX(100vw);
  transition: transform 0.4s ease-in-out;
}

.ly-menu.is-open {
  transform: translateX(0);
  transition: transform 0.4s ease-in-out;
}

.ly-menu-inn {
  position: fixed;
  right: 0;
  width: 84.1025641026vw;
  height: 100%;
  background-color: #fff;
}

@media screen and (width >= 1024px) {
  .ly-menu-inn {
    width: calc(100% - 442px);
  }
}

.ly-menu-wrap {
  position: relative;
}

.ly-menu-nav {
  position: relative;
  top: 88px;
}

@media screen and (width >= 1024px) {
  .ly-menu-nav {
    top: 80px;
  }
}

@media screen and (width >= 1366px) {
  .ly-menu-nav {
    left: 113px;
  }
}

.ly-menu-btn {
  position: relative;
  top: 128px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: fit-content;
  padding-inline: 20px;
}

@media screen and (width >= 1024px) {
  .ly-menu-btn {
    flex-direction: row-reverse;
  }
}

@media screen and (width >= 1366px) {
  .ly-menu-btn {
    left: 113px;
    max-width: 656px;
    padding-inline: 0;
  }
}

.ly-cta {
  display: grid;
  color: #fff;
}

@media screen and (width >= 768px) {
  .ly-cta {
    grid-template-columns: 1fr 1fr;
  }
}

.ly-cta-item {
  display: grid;
  justify-items: center;
}

.ly-cta--left {
  justify-items: center;
  padding: 32px 32px 48px;
  padding-inline: 20px;
  background-color: #F56E62;
}

@media screen and (width >= 1024px) {
  .ly-cta--left {
    padding: 56px 40px 72px;
  }
}

.ly-cta--right {
  justify-items: center;
  padding: 32px 32px 48px;
  padding-inline: 20px;
  background-color: #2E2E2E;
}

@media screen and (width >= 1024px) {
  .ly-cta--right {
    padding: 56px 40px 72px;
  }
}

.ly-cta-btn {
  padding-top: 16px;
}

@media screen and (width >= 1024px) {
  .ly-cta-btn {
    padding-top: 24px;
  }
}

.ly-faq {
  max-width: 1200px;
  padding-inline: 20px;
  padding-top: 56px;
  padding-bottom: 56px;
  margin-inline: auto;
}

@media screen and (width >= 1024px) {
  .ly-faq {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

@media screen and (width >= 1366px) {
  .ly-faq {
    padding-inline: 0;
  }
}

.ly-faq-cards {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 992px;
  margin-inline: auto;
  margin-top: 32px;
}

@media screen and (width >= 1024px) {
  .ly-faq-cards {
    gap: 24px;
    margin-top: 56px;
  }
}

.ly-faq-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px 8px;
  padding: 16px 16px 24px;
  background-color: #FFE3E5;
  border: 1px solid #CF2B1C;
  border-radius: 10px;
}

@media screen and (width >= 1024px) {
  .ly-faq-card {
    gap: 24px 64px;
    padding: 32px 48px 32px 32px;
  }
}

.ly-unit-card-item a {
  color: #0071C1;
  text-decoration: underline;
}

.ly-unit-card-item a:hover {
  text-decoration: none;
}

.ly-unit-card-item:nth-of-type(1) {
  align-self: center;
}

.ly-unit-card-item:nth-of-type(2) {
  align-self: center;
}

.ly-member {
  background-color: #FFE3E5;
}

.ly-member-inn {
  max-width: 1200px;
  padding-inline: 20px;
  padding-top: 56px;
  padding-bottom: 56px;
  margin-inline: auto;
}

@media screen and (width >= 1024px) {
  .ly-member-inn {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

@media screen and (width >= 1366px) {
  .ly-member-inn {
    padding-inline: 0;
  }
}

.ly-member-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  justify-content: center;
  margin-top: 32px;
}

@media screen and (width >= 768px) {
  .ly-member-cards {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media screen and (width >= 1024px) {
  .ly-member-cards {
    gap: 48px;
    margin-top: 56px;
  }
}

.ly-flow {
  max-width: 1200px;
  padding-inline: 20px;
  padding-top: 56px;
  padding-bottom: 56px;
  margin-inline: auto;
}

@media screen and (width >= 1024px) {
  .ly-flow {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

@media screen and (width >= 1366px) {
  .ly-flow {
    padding-inline: 0;
  }
}

.ly-flow-cards {
  position: relative;
  display: grid;
  gap: 40px 32px;
  margin-top: 32px;
}

@media screen and (width >= 1024px) {
  .ly-flow-cards {
    grid-template-columns: repeat(5, 1fr);
    margin-top: 56px;
  }
}

.ly-flow-cards::after {
  position: absolute;
  top: 0;
  left: 24px;
  z-index: -1;
  display: block;
  width: 1px;
  height: 85%;
  content: "";
  border-right: 2px dotted #CF2B1C;
}

@media screen and (width >= 1024px) {
  .ly-flow-cards::after {
    top: 143px;
    left: 0;
    width: 100%;
    height: 1px;
    border-top: 2px dotted #CF2B1C;
    border-right: inherit;
  }
}

.ly-flow-card-item--figure {
  display: grid;
  grid-template-columns: 1fr 62px;
  padding: 24px;
  background-color: #fff;
  border-radius: 17.3px;
  box-shadow: 0 0 8px rgb(207 43 28 / 40%);
}

@media screen and (width >= 1024px) {
  .ly-flow-card-item--figure {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 20px 12px;
  }
}

@media screen and (width >= 1024px) {
  .ly-flow-card-item--figure > div:nth-of-type(1) {
    justify-self: center;
  }
}

@media screen and (width >= 1024px) {
  .ly-flow-card-item--figure > div:nth-of-type(2) {
    justify-self: center;
  }
}

.ly-flow-card-item--figure > div:nth-of-type(3) {
  grid-row: 1/3;
  grid-column: 2/3;
}

@media screen and (width >= 1024px) {
  .ly-flow-card-item--figure > div:nth-of-type(3) {
    grid-row: inherit;
    grid-column: inherit;
    justify-self: center;
  }
}

.ly-flow-card-item--sub {
  padding-left: 38px;
  margin-top: 16px;
}

@media screen and (width >= 1024px) {
  .ly-flow-card-item--sub {
    padding-left: 0;
  }
}

.ly-app {
  padding-inline: 20px;
  padding-top: 56px;
  padding-bottom: 56px;
  background-color: #FFE3E5;
}

@media screen and (width >= 1024px) {
  .ly-app {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

@media screen and (width >= 1366px) {
  .ly-app {
    padding-inline: 0;
  }
}

.ly-app-head {
  position: relative;
  max-width: 1200px;
  margin-inline: auto;
}

.ly-app-head h2 {
  position: relative;
  z-index: 2;
}

.ly-app-head::before {
  position: absolute;
  top: -10px;
  z-index: 1;
  width: 100vw;
  margin: 0 -50vw;
}

@media screen and (width >= 1024px) {
  .ly-app-head::before {
    top: -40px;
  }
}

.ly-app-body {
  max-width: 1072px;
  padding: 40px 16px;
  margin-inline: auto;
  margin-top: 32px;
  background-color: #fff;
  border-radius: 10px;
}

@media screen and (width >= 1024px) {
  .ly-app-body {
    padding: 40px;
    margin-top: 56px;
  }
}

.ly-program {
  max-width: 1200px;
  padding-inline: 20px;
  padding-top: 56px;
  padding-bottom: 56px;
  margin-inline: auto;
}

@media screen and (width >= 1024px) {
  .ly-program {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

@media screen and (width >= 1366px) {
  .ly-program {
    padding-inline: 0;
  }
}

.ly-program-head {
  display: grid;
  gap: 24px 30px;
}

@media screen and (width >= 768px) {
  .ly-program-head {
    grid-template-columns: 1fr 1fr;
  }
}

.ly-program-ft {
  margin-top: 32px;
}

@media screen and (width >= 1024px) {
  .ly-program-ft {
    margin-top: 104px;
  }
}

.ly-program-ft-cards {
  display: grid;
  gap: 16px 48px;
  margin-top: 16px;
}

@media screen and (width >= 1024px) {
  .ly-program-ft-cards {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 32px;
  }
}

.ly-program-ft-card {
  display: grid;
  grid-template-columns: 1fr 50px;
  gap: 24px 10px;
  padding: 24px 20px;
  background-color: #FFE3E5;
  border-radius: 10px;
}

@media screen and (width >= 1024px) {
  .ly-program-ft-card {
    grid-template-columns: 1fr;
    justify-content: center;
    padding: 24px 30px;
  }
}

.ly-program-ft-card > div:nth-of-type(1) {
  align-self: center;
}

.ly-program-ft-card > div:nth-of-type(2) {
  justify-self: center;
}

.ly-hero {
  height: 191.7948717949vw;
  padding-inline: 20px;
  background: url("../images/kv-sp@2x.webp") no-repeat top 14.1025641026vw left 50%, linear-gradient(37.04deg, #FFE3E5 41.82%, #FF878B 82.08%);
  background-size: contain;
}

@media screen and (width >= 1024px) {
  .ly-hero {
    width: 100%;
    height: 750px;
    background: url("../images/kv-pc@2x.webp") no-repeat top 0 left 50%, linear-gradient(253.9deg, #FFE3E5 10.22%, #FFA9AC 100%);
    background-size: auto 750px;
  }
}

@media screen and (width >= 1366px) {
  .ly-hero {
    padding-inline: 0;
  }
}

.ly-hero-inn {
  max-width: 1200px;
  margin-inline: auto;
}

.ly-hero-lead1 {
  position: relative;
  top: 10.2564102564vw;
}

@media screen and (width >= 1024px) {
  .ly-hero-lead1 {
    top: 65px;
  }
}

.ly-hero-lead2 {
  position: relative;
  top: 68.4615384615vw;
  margin-right: 0;
  margin-left: auto;
}

@media screen and (width >= 1024px) {
  .ly-hero-lead2 {
    top: 179px;
    width: fit-content;
  }
}

.ly-hero-cta {
  position: relative;
  top: 76.6666666667vw;
  display: flex;
  flex-direction: column;
  gap: 6.1538461538vw 32px;
  align-items: center;
  justify-content: center;
}

@media screen and (width >= 1024px) {
  .ly-hero-cta {
    top: 243px;
    flex-direction: row-reverse;
  }
}

.ly-form-wrap {
  background: linear-gradient(74.22deg, #FFE3E5 18.88%, #FF878B 74.94%);
}

@media screen and (width >= 1024px) {
  .ly-form-wrap {
    background: url("../images/form/bg@2x.webp") no-repeat top 122px left 50%, linear-gradient(74.22deg, #FFE3E5 18.88%, #FF878B 74.94%);
    background-size: cover;
  }
}

.ly-form-inn {
  max-width: 1080px;
  padding-inline: 20px;
  padding-top: 40px;
  padding-bottom: 40px;
  margin-inline: auto;
  margin-top: 40px;
  margin-bottom: 40px;
  background-color: #fff;
}

@media screen and (width >= 1024px) {
  .ly-form-inn {
    padding-top: 72px;
    padding-bottom: 72px;
    margin-top: 72px;
    margin-bottom: 72px;
    border-radius: 10px;
  }
}

.ly-form {
  max-width: 890px;
  margin-inline: auto;
  margin-top: 16px;
}

@media screen and (width >= 1024px) {
  .ly-form {
    margin-top: 40px;
  }
}

.ly-form-cards {
  display: flex;
  flex-direction: column;
  margin-top: 12px;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}

@media screen and (width >= 1024px) {
  .ly-form-cards {
    margin-top: 32px;
    font-size: 0.875rem;
  }
}

.ly-form-card {
  display: grid;
  gap: 8px;
  align-items: baseline;
  padding-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #CACACA;
}

@media screen and (width >= 1024px) {
  .ly-form-card {
    grid-template-columns: 1fr 630px;
    padding-top: 24px;
    padding-bottom: 24px;
  }
}

.ly-form-button {
  margin-top: 24px;
}

@media screen and (width >= 1024px) {
  .ly-form-button {
    margin-top: 64px;
  }
}

/* ===============================================
# button
=============================================== */
.btn-download {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  width: fit-content;
  min-width: 312px;
  padding: 20px 32px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  color: #2E2E2E;
  letter-spacing: 0.02em;
  background-color: #fff;
  border: 1.5px solid #fff;
  border-radius: 100px;
  box-shadow: 0 0 8px rgb(207 43 28 / 40%);
  transition: transform 0.3s;
}

.btn-download::before {
  display: block;
  flex-shrink: 0;
  width: 27px;
  height: 27px;
  content: "";
  background: url("../images/icon/pdf@2x.webp") no-repeat;
  background-size: contain;
}

.btn-download::after {
  display: block;
  width: 27px;
  height: 27px;
  content: "";
  background: url("../images/icon/download.svg") no-repeat;
  background-size: contain;
}

@media screen and (width >= 1024px) {
  .btn-download {
    gap: 8px;
    font-size: 1.125rem;
    font-weight: 800;
    letter-spacing: 0.04em;
  }
}

.btn-download:hover {
  opacity: 1;
  transform: scale(1.05);
}

.btn-download--hero {
  gap: 2.5641025641vw;
  min-width: 73.5897435897vw;
  padding: 5.1282051282vw 8.2051282051vw;
  font-size: 4.1025641026vw;
  font-weight: 800;
  text-align: center;
}

@media screen and (width >= 1024px) {
  .btn-download--hero {
    gap: 8px;
    min-width: 312px;
    padding: 20px 32px;
    font-size: 1.125rem;
  }
}

.btn-download--hero::before, .btn-download--hero::after {
  width: 6.1538461538vw;
  height: 6.1538461538vw;
}

@media screen and (width >= 1024px) {
  .btn-download--hero::before, .btn-download--hero::after {
    width: 27px;
    height: 27px;
  }
}

.btn-download--head {
  display: inline-block;
  min-width: 150px;
  padding: 9.5px 18px;
  font-size: 0.875rem;
  font-weight: 700;
  border: 1px solid #CF2B1C;
  box-shadow: 0 0 6px rgb(207 43 28 / 40%);
}

.btn-download--head::before, .btn-download--head::after {
  display: none;
}

.btn-app {
  display: grid;
  grid-template-columns: 1fr auto;
  justify-items: center;
  width: fit-content;
  min-width: 312px;
  padding: 20px 32px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
  letter-spacing: 0.04em;
  background-color: #CF2B1C;
  border: 1.5px solid #fff;
  border-radius: 100px;
  box-shadow: 0 0 8px rgb(207 43 28 / 40%);
  transition: transform 0.3s;
}

.btn-app::after {
  display: block;
  width: 27px;
  height: 27px;
  content: "";
  background: url("../images/icon/entry.svg") no-repeat;
  background-size: contain;
}

.btn-app:hover {
  opacity: 1;
  transform: scale(1.05);
}

.btn-app--hero {
  min-width: 73.5897435897vw;
  padding: 5.1282051282vw 8.2051282051vw;
  font-size: 4.1025641026vw;
}

@media screen and (width >= 1024px) {
  .btn-app--hero {
    min-width: 312px;
    padding: 20px 32px;
    font-size: 1.125rem;
  }
}

.btn-app--hero::after {
  width: 6.1538461538vw;
  height: 6.1538461538vw;
}

@media screen and (width >= 1024px) {
  .btn-app--hero::after {
    width: 27px;
    height: 27px;
  }
}

.btn-app--head {
  display: inline-block;
  min-width: 150px;
  padding: 9.5px 18px;
  font-size: 0.875rem;
  font-weight: 700;
  text-align: center;
  border: 1.5px solid #fff;
  box-shadow: 0 0 6px rgb(207 43 28 / 40%);
}

.btn-app--head::after {
  display: none;
}

.btn-app--menu {
  width: 100%;
  min-width: 287px;
  min-width: -webkit-fill-available;
  padding: 20px 32px;
  font-size: 1rem;
}

@media screen and (width >= 768px) {
  .btn-app--menu {
    min-width: 287px;
  }
}

@media screen and (width >= 1024px) {
  .btn-app--menu {
    flex-grow: 0;
    min-width: 312px;
    font-size: 1.125rem;
  }
}

.btn-app--menu::after {
  width: 24px;
  height: 24px;
}

@media screen and (width >= 1024px) {
  .btn-app--menu::after {
    width: 27px;
    height: 27px;
  }
}

.btn-download--menu {
  gap: 10px;
  width: 100%;
  min-width: -webkit-fill-available;
  padding: 20px 32px;
  font-size: 1rem;
  font-weight: 700;
}

@media screen and (width >= 768px) {
  .btn-download--menu {
    flex-grow: 0;
    min-width: 287px;
    text-align: center;
  }
}

@media screen and (width >= 1024px) {
  .btn-download--menu {
    gap: 8px;
    font-size: 1.125rem;
    font-feature-settings: "palt";
    letter-spacing: 0;
  }
}

.btn-download--menu::before, .btn-download--menu::after {
  width: 24px;
  height: 24px;
}

@media screen and (width >= 1024px) {
  .btn-download--menu::before, .btn-download--menu::after {
    width: 27px;
    height: 27px;
  }
}

/* ===============================================
# section parts
=============================================== */
.section-ttl {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

@media screen and (width >= 1024px) {
  .section-ttl {
    font-size: 2rem;
    letter-spacing: 0.04em;
  }
}

.section-ttlSub {
  display: flex;
  gap: 7px;
  align-items: center;
  margin-top: 8px;
  font-family: Jost, sans-serif;
  font-size: 0.875rem;
  color: #CF2B1C;
}

.section-ttlSub::before {
  display: inline-block;
  width: 6px;
  height: 6px;
  content: "";
  background-color: #CF2B1C;
  border-radius: 50%;
}

/* ===============================================
# header
=============================================== */
.header-siteTtl img {
  width: 30.5128205128vw;
}

@media screen and (width >= 1024px) {
  .header-siteTtl img {
    width: 239px;
  }
}

.header-menu-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 36px;
}

.header-menu-icon .icon {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  background: url("../images/icon/menu.svg") center center;
  background-size: 100% 100%;
}

.header-menu-icon .label {
  font-size: 0.5625rem;
  font-weight: 500;
  line-height: 1.5;
}

/* ===============================================
# footer
=============================================== */
.footer-logo {
  width: 175px;
}

@media screen and (width >= 1024px) {
  .footer-logo {
    width: 262px;
  }
}

.footer-copy {
  font-size: 0.625rem;
  line-height: 1;
  color: #BFBFBF;
}

@media screen and (width >= 1024px) {
  .footer-copy {
    color: #2E2E2E;
  }
}

.footer-host {
  font-size: 0.75rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.footer-host span {
  display: block;
  margin-top: 4px;
  font-size: 0.625rem;
}

@media screen and (width >= 1024px) {
  .footer-host span {
    margin-top: 8px;
  }
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0;
  margin: 0;
  list-style-type: none;
}

@media screen and (width >= 1024px) {
  .footer-nav {
    flex-direction: row;
    gap: 48px;
  }
}

.footer-nav li {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.5;
}

/* ===============================================
# menu
=============================================== */
.menu-bg {
  position: absolute;
  top: -50%;
  left: 3.0769230769vw;
  display: block;
  font-family: Jost, sans-serif;
  font-size: 12.1538461538vw;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.07em;
  white-space: nowrap;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

@media screen and (width >= 1024px) {
  .menu-bg {
    left: 366px;
    font-size: 4.5rem;
  }
}

.menu-icon {
  position: absolute;
  top: 8px;
  right: 24.59px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 36px;
}

@media screen and (width >= 1024px) {
  .menu-icon {
    right: 129px;
  }
}

.menu-icon .icon {
  display: block;
  width: 100%;
  height: 24px;
  aspect-ratio: 1/1;
  background: url("../images/icon/close.svg") center center;
  background-size: 100% 100%;
}

.menu-icon .label {
  margin-top: 6px;
  font-size: 0.5625rem;
  font-weight: 500;
  line-height: 1.5;
}

.menu-nav {
  display: grid;
  gap: 24px;
  padding-inline: 28px;
  margin: 0;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0.04em;
  text-decoration: underline;
  text-underline-offset: 5px;
  list-style-type: none;
}

@media screen and (width >= 1024px) {
  .menu-nav {
    gap: 32px;
    font-size: 1.25rem;
    line-height: 1.5;
    letter-spacing: 0.02em;
  }
}

/* ===============================================
# cta
=============================================== */
.cta-ttl {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.5;
}

@media screen and (width >= 1024px) {
  .cta-ttl {
    font-size: 2rem;
  }
}

.cta-txt {
  padding-top: 16px;
  font-size: 0.875rem;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.02em;
}

@media screen and (width >= 1024px) {
  .cta-txt {
    padding-top: 32px;
    font-size: 1rem;
  }
}

/* ===============================================
# faq
=============================================== */
.faq-unit-Q {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  font-family: Jost, sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1;
  color: #CF2B1C;
  background-color: #fff;
  border: 1px solid #CF2B1C;
  border-radius: 50%;
}

@media screen and (width >= 1024px) {
  .faq-unit-Q {
    width: 36px;
    height: 36px;
    font-size: 1.5rem;
  }
}

.faq-unit-A {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  font-family: Jost, sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1;
  color: #fff;
  background-color: #CF2B1C;
  border: 1px solid #CF2B1C;
  border-radius: 50%;
}

@media screen and (width >= 1024px) {
  .faq-unit-A {
    width: 36px;
    height: 36px;
    font-size: 1.5rem;
  }
}

.faq-txt-Q {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

@media screen and (width >= 1024px) {
  .faq-txt-Q {
    font-size: 1.125rem;
  }
}

.faq-txt-A {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  color: #000;
  letter-spacing: 0.02em;
}

@media screen and (width >= 1024px) {
  .faq-txt-A {
    font-size: 1rem;
    line-height: 2;
    letter-spacing: 0.04em;
  }
}

.faq-list-A {
  padding-left: 1.5em;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  color: #000;
  letter-spacing: 0.02em;
}

@media screen and (width >= 1024px) {
  .faq-list-A {
    font-size: 1rem;
    line-height: 2;
    letter-spacing: 0.04em;
  }
}

.faq-bg {
  display: none;
}

@media screen and (width >= 1024px) {
  .faq-bg {
    position: absolute;
    top: -203px;
    right: -103px;
    display: block;
  }
}

/* ===============================================
# member
=============================================== */
.member-card__face img {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}

.member-card__name {
  margin-top: 8px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

@media screen and (width >= 1024px) {
  .member-card__name {
    font-size: 1.25rem;
  }
}

.member-card__corp {
  margin-top: 4px;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

@media screen and (width >= 1024px) {
  .member-card__corp {
    font-size: 1rem;
  }
}

.member-card__txt {
  margin-top: 16px;
}

.member-card__txt p {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

@media screen and (width >= 1024px) {
  .member-card__txt p {
    font-size: 0.875rem;
  }
}

.member-card__txt__btn {
  margin-top: 4px;
  text-align: right;
}

.member-card__txt__btn span {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.02em;
  text-decoration: underline;
  cursor: pointer;
}

.member-card__txt__btn span::before {
  content: "続きを読む";
}

.member-card__txt__btn span:hover {
  text-decoration: none;
}

.member-card__txt__btn span.is-show::before {
  content: "閉じる";
}

/* ===============================================
# flow
=============================================== */
.flow-card__num {
  font-family: Jost, sans-serif;
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1;
  color: #FFE3E5;
}

@media screen and (width >= 1024px) {
  .flow-card__num {
    font-size: 2.125rem;
  }
}

.flow-card__ttl {
  font-size: 1.375rem;
  font-weight: 700;
  font-feature-settings: "palt";
  line-height: 1.5;
  color: #CF2B1C;
}

.flow-card__month {
  padding: 4px 8px;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.7;
  color: #fff;
  text-align: center;
  background-color: #CF2B1C;
}

@media screen and (width >= 1024px) {
  .flow-card__month {
    margin-top: 25px;
    font-size: 1.125rem;
  }
}

.flow-card__txt {
  margin-top: 12px;
}

@media screen and (width >= 1024px) {
  .flow-card__txt {
    margin-top: 20px;
  }
}

.flow-card__txt p {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.04em;
}

/* ===============================================
# app
=============================================== */
.app-head::before {
  font-family: Jost, sans-serif;
  font-size: 32px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.04em;
  white-space: nowrap;
  content: "Program Information Program Information Program Information Program Information Program Information";
}

@media screen and (width >= 1024px) {
  .app-head::before {
    font-size: 72px;
  }
}

.app-table {
  width: 100%;
  border-collapse: collapse;
}

.app-table tbody {
  display: grid;
}

.app-table tr {
  display: grid;
  gap: 8px;
  padding: 16px 0;
  border-bottom: 1px solid #FFE3E5;
}

@media screen and (width >= 768px) {
  .app-table tr {
    grid-template-columns: minmax(160px, auto) 1fr;
    gap: 40px;
  }
}

@media screen and (width >= 1024px) {
  .app-table tr {
    padding: 24px 0;
  }
}

.app-table tr:last-of-type {
  border-bottom: 0;
}

.app-table th {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: left;
  letter-spacing: 0.02em;
}

@media screen and (width >= 768px) {
  .app-table th {
    padding: 8px;
    font-size: 1rem;
    text-align: center;
  }
}

.app-table td {
  font-size: 0.875rem;
  font-weight: 500;
  font-feature-settings: "palt";
  line-height: 1.5;
  letter-spacing: 0.04em;
}

@media screen and (width >= 768px) {
  .app-table td {
    padding: 8px;
    font-size: 1rem;
    font-feature-settings: inherit;
  }
}

/* ===============================================
# program
=============================================== */
.program-head__txt {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: 0.02em;
}

@media screen and (width >= 1024px) {
  .program-head__txt {
    font-size: 1rem;
    line-height: 2;
    letter-spacing: 0.04em;
  }
}

.program-ft__ttl {
  display: flex;
  gap: 10px;
  align-items: center;
}

@media screen and (width >= 1024px) {
  .program-ft__ttl {
    gap: 32px;
  }
}

.program-ft__ttl span {
  flex-shrink: 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

@media screen and (width >= 1024px) {
  .program-ft__ttl span {
    font-size: 1.375rem;
    letter-spacing: 0;
  }
}

.program-ft__ttl::after {
  display: block;
  width: 100%;
  height: 1px;
  content: "";
  border-bottom: 2px dotted #CF2B1C;
}

.program-ft-card__ttl {
  font-size: 1rem;
  font-weight: 700;
  font-feature-settings: "palt";
  line-height: 1.5;
  letter-spacing: 0.02em;
}

@media screen and (width >= 1024px) {
  .program-ft-card__ttl {
    font-size: 1.125rem;
    font-feature-settings: inherit;
    text-align: center;
    letter-spacing: 0.04em;
  }
}

.program-ft-card__ttl span {
  display: inline-block;
}

.program-ft-card__ttl strong {
  color: #CF2B1C;
}

/* ===============================================
# hero
=============================================== */
.hero-mainCopy {
  font-size: 8.2051282051vw;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.04em;
}

@media screen and (width >= 1024px) {
  .hero-mainCopy {
    font-size: 4rem;
    letter-spacing: 0.02em;
  }
}

.hero-mainCopy-sub {
  margin-top: 2.0512820513vw;
  font-size: 3.5897435897vw;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

@media screen and (width >= 1024px) {
  .hero-mainCopy-sub {
    margin-top: 8px;
    font-size: 1.125rem;
    line-height: 1.9;
  }
}

.hero-mainCopy-sub span {
  display: block;
}

@media screen and (width >= 1024px) {
  .hero-mainCopy-sub span {
    display: inline;
  }
}

.hero-subCopy {
  font-size: 5.641025641vw;
  font-weight: 700;
  line-height: 1.9;
  letter-spacing: 0.04em;
  text-decoration: underline;
  text-underline-offset: 5px;
}

@media screen and (width >= 1024px) {
  .hero-subCopy {
    font-size: 2rem;
    line-height: 1.7;
    text-decoration-thickness: 2px;
    text-underline-offset: 10px;
  }
}

.hero-subCopy-sub {
  margin-top: 1.2820512821vw;
  font-size: 3.5897435897vw;
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0.04em;
}

@media screen and (width >= 1024px) {
  .hero-subCopy-sub {
    margin-top: 16px;
    font-size: 0.875rem;
  }
}

@media screen and (width >= 1024px) {
  .hero-subCopy-sub span {
    display: block;
  }
}

/* ===============================================
# form parts
=============================================== */
.form-header {
  position: relative;
  width: max-content;
  padding-bottom: 16px;
  margin-inline: auto;
  font-weight: 700;
  color: #CF2B1C;
  text-align: center;
}

.form-header-subTtl {
  font-size: 1rem;
  letter-spacing: 0.02em;
}

@media screen and (width >= 1024px) {
  .form-header-subTtl {
    font-size: 1.5rem;
  }
}

.form-header-ttl {
  margin-top: 6px;
  font-size: 1.75rem;
  letter-spacing: 0.04em;
}

@media screen and (width >= 1024px) {
  .form-header-ttl {
    font-size: 2.5rem;
  }
}

.form-head-img1 {
  position: absolute;
  bottom: 0;
  left: -25px;
  width: 45px;
}

@media screen and (width >= 1024px) {
  .form-head-img1 {
    left: -160px;
    width: auto;
  }
}

.form-head-img2 {
  position: absolute;
  right: -25px;
  bottom: 0;
  width: 52px;
}

@media screen and (width >= 1024px) {
  .form-head-img2 {
    right: -170px;
    width: auto;
  }
}

.form-lead {
  font-size: 0.875rem;
  line-height: 1.7;
  letter-spacing: 0.02em;
}

@media screen and (width >= 768px) {
  .form-lead {
    text-align: center;
  }
}

.form-item--label {
  display: flex;
  gap: 8px;
  align-items: baseline;
  font-weight: 500;
}

@media screen and (width >= 1024px) {
  .form-item--label {
    font-size: 1rem;
  }
}

.form-item--input {
  width: 100%;
  padding: 12px;
  border: 1px solid #CACACA;
  border-radius: 5px;
}

.form-item--checkbox {
  margin-top: 8px;
}

@media screen and (width >= 1024px) {
  .form-item--checkbox {
    margin-top: 12px;
  }
}

.form-item--checkbox input[type="checkbox"] {
  position: absolute;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  opacity: 0;
}

.form-item--checkbox span {
  display: flex;
  gap: 8px;
  align-items: baseline;
}

.form-item--checkbox input[type="checkbox"] + span::before {
  position: relative;
  top: 3px;
  display: inline-block;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  content: "";
  border: 1px solid #CACACA;
  border-radius: 2px;
}

.form-item--checkbox input[type="checkbox"]:checked + span::before {
  background: #CF2B1C url("../images/icon/check.svg") no-repeat center center;
  background-size: 70%;
  border-color: #CF2B1C;
}

.form-item--radio + .form-item--radio {
  margin-top: 16px;
}

.form-item--radio input[type="radio"] {
  position: absolute;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  opacity: 0;
}

.form-item--radio span {
  position: relative;
  display: flex;
  gap: 8px;
  align-items: baseline;
  font-weight: 500;
}

@media screen and (width >= 1024px) {
  .form-item--radio span {
    gap: 16px;
  }
}

.form-item--radio input[type="radio"] + span::before {
  position: relative;
  top: 4px;
  display: inline-block;
  flex-shrink: 0;
  width: 19px;
  height: 19px;
  content: "";
  border: 1.5px solid #CACACA;
  border-radius: 50%;
}

.form-item--radio input[type="radio"]:checked + span::before {
  border-color: #CF2B1C;
}

.form-item--radio input[type="radio"]:checked + span::after {
  position: absolute;
  top: 8px;
  left: 4px;
  display: inline-block;
  width: 11px;
  height: 11px;
  content: "";
  background-color: #CF2B1C;
  border-radius: 50%;
}

.form-item--textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ACACAC;
  border-radius: 5px;
}

.form-item--required {
  display: inline-block;
  flex-shrink: 0;
  padding: 2px 8px;
  font-size: 0.75rem;
  color: #fff;
  background-color: #F56E62;
  border-radius: 8px;
}

.form-card--textarea .form-item--label {
  align-self: flex-start;
}

.form-wordwrap span {
  display: inline-block;
}

.form-submit {
  display: block;
  width: 287px;
  padding-top: 20px;
  padding-bottom: 20px;
  margin-inline: auto;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  background-color: #CF2B1C;
  border: 0;
  border-radius: 50px;
  transition: background-color 0.3s;
}

@media screen and (width >= 1024px) {
  .form-submit {
    width: 312px;
    font-size: 1.125rem;
  }
}

.form-submit:hover {
  background-color: #a22216;
}

input.error,
input:user-invalid,
textarea:user-invalid {
  background-color: rgb(236 100 69 / 20%);
}

.form-item--errorMessage {
  margin-top: 4px;
  color: #EC6445;
}