@charset "UTF-8";
/* ========================================
   Course Flow
======================================== */
.academy-flow .c-ttl {
  text-align: center;
}
.academy-flow {
  display: flex;
  justify-content: center;
  margin-bottom: 80px;
  padding: 80px 0;
  background: #fff;
  color: #222;
}
.academy-flow__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
  padding: 0 20px;
  width: 100%;
  max-width: 1240px;
}
.academy-flow__list {
  display: flex;
  align-items: stretch;
  gap: 40px;
  width: 100%;
}
.academy-flow__item {
  position: relative;
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  min-width: 0;
  min-height: 250px;
  padding: 56px 24px 24px 24px;
  background: #FAF9F3;
  text-align: center;
  border-radius: 20px;
}
.academy-flow__step {
  position: absolute;
  top: -27px;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  color: #fff;
  background: #222;
  border-radius: 50%;
  transform: translateX(-50%);
  line-height: 1;
}
.academy-flow__step span {
  margin-bottom: 2px;
  font-size: 8px;
}
.academy-flow__step strong {
  font-size: 17px;
  font-weight: 400;
}
.academy-flow__item-title {
  font-size: 20px;
  font-weight: 700;
}
.academy-flow__text {
  font-size: 16px;
  line-height: 1.5;
}
.academy-flow__btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 260px;
  min-height: 56px;
  margin-top: auto;
  padding: 0 24px;
  color: #222;
  border: 1px solid #222;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  text-decoration: none;
  box-sizing: border-box;
  transition: opacity .3s;
}
.academy-flow__btn--pink {
  color: #fff;
  border-color: #e0115f;
  background: #e0115f;
  border-radius: 999px;
}
.academy-flow__btn:hover {
  opacity: .7;
}
.academy-flow__arrow {
  position: absolute;
  top: 50%;
  right: 18px;
  width: 7px;
  height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}
.academy-flow__btn--pink .academy-flow__arrow {
  right: 8px;
  display: block;
  width: 30px;
  height: 30px;
  border: 0;
  background: #fff;
  border-radius: 50%;
  transform: translateY(-50%);
}
.academy-flow__btn--pink .academy-flow__arrow::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  border-top: 1px solid #e0115f;
  border-right: 1px solid #e0115f;
  transform: translate(-65%, -50%) rotate(45deg);
  content: "";
}
.academy-flow__links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  margin-top: auto;
}
.academy-flow__text-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #222;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
}
.academy-flow__search-icon {
  width: 14px;
  height: 14px;
  border: 1px solid #ccc;
  border-radius: 50%;
}
.academy-flow__calendar-icon {
  width: 14px;
  height: 13px;
  border: 1px solid #ccc;
  border-radius: 2px;
}
@media screen and (max-width: 767px) {
  .academy-flow__list {
    flex-direction: column;
  }
}
/* ========================================
   GUIDE
======================================== */
.guide-page {
  background: #faf9f3;
}
.guide {
  color: #222;
}
.guide * {
  box-sizing: border-box;
}
.guide__section {
  display: flex;
  justify-content: center;
  width: 100%;
}
.guide__section-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
  padding: 0 5vw;
  width: 100%;
  max-width: 1240px;
}
/* ========================================
   INTRO
======================================== */
.guide {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 96px;
  padding: 40px 0;
}
.guide__intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  width: 100%;
  background-color: #DEDBDB;
}
.guide__intro-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding-bottom: 8px;
}
.guide__title {
  font-family: "Futura PT", sans-serif;
  font-size: 46px;
  font-weight: 500;
  line-height: 1;
}
.guide__title-ja {
  font-size: 16px;
  font-weight: 700;
}
.guide__intro-text {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px;
  font-size: 14px;
}
/* ========================================
   COMMON HEADING
======================================== */
.guide-heading {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding-top: 24px;
}
.guide-heading::after {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 8px;
  background-color: #DEDBDB;
  border-radius: 999px;
  content: "";
}
.guide-heading__en {
  font-family: "Futura PT", sans-serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 1;
}
.guide-heading__ja {
  font-size: 16px;
  font-weight: 700;
}
/* ========================================
   FEATURES
======================================== */
.guide-features__list {
  display: flex;
  justify-content: center;
  gap: 40px;
  width: 100%;
}
.guide-features__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding-bottom: 16px;
  aspect-ratio: 1 / 1;
  background: #fff;
  border-radius: 50%;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .04);
}
.guide-features__number {
  font-family: "Futura PT", sans-serif;
  color: #666;
  font-size: 56px;
  line-height: 1;
}
.guide-features__icon {
  width: auto;
  height: 56px;
}
.guide-features__title {
  font-size: 18px;
  line-height: 1.5;
}
.guide-features__text {
  font-size: 14px;
  line-height: 1.5;
}
/* ========================================
   LOGIN
======================================== */
.guide-login__list {
  display: flex;
  gap: 40px;
  width: 100%;
}
.guide-login__item {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 40px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .04);
}
.guide-login__title {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
}
.guide-login__content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  width: 100%;
}
.guide-login__screen {
  width: 160px;
  max-width: 40%;
  height: auto;
}
.guide-login__action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  flex: 1;
}
.guide-login__qr {
  width: 160px;
  height: auto;
}
.guide-login__next {
  width: 0;
  height: 0;
  border-left: 88px solid transparent;
  border-right: 88px solid transparent;
  border-top: 32px solid #666;
}
/* ========================================
   BUTTON
======================================== */
.guide-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 240px;
  min-height: 48px;
  padding: 8px 48px 8px 24px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
  transition: opacity .3s;
}
.guide-button:hover {
  opacity: .7;
}
.guide-button--pink {
  color: #fff;
  background: #e0115f;
  border-radius: 999px;
}
.guide-button__arrow {
  position: absolute;
  top: 50%;
  right: 8px;
  width: 32px;
  height: 32px;
  background: #fff;
  border-radius: 50%;
  transform: translateY(-50%);
}
.guide-button__arrow::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  border-top: 1px solid #e0115f;
  border-right: 1px solid #e0115f;
  transform: translate(-65%, -50%) rotate(45deg);
  content: "";
}
/* ========================================
   FLOW
======================================== */
.guide-flow__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px 40px;
  width: 100%;
}
.guide-flow__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  min-height: 440px;
  padding: 56px 24px 24px 24px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .04);
  text-align: center;
}
.guide-step {
  position: absolute;
  top: -28px;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 4px;
  width: 56px;
  height: 56px;
  color: #fff;
  background: #222;
  border-radius: 50%;
  transform: translateX(-50%);
  line-height: 1;
}
.guide-step * {
  font-family: "Futura PT", sans-serif;
}
.guide-step span {
  font-size: 12px;
}
.guide-step strong {
  font-size: 24px;
  font-weight: 400;
}
.guide-flow__title {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
}
.guide-flow__image {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 296px;
  margin: auto 0;
  object-fit: contain;
}
/* ========================================
   CONTACT
======================================== */
.guide-contact__box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: calc((100% - 80px) /3);
  padding: 24px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .04);
}
.guide-contact__qr {
  width: 160px;
  height: auto;
}
.guide-login__note {
  font-size: 14px;
}
/* ========================================
   SP
======================================== */
@media screen and (max-width: 767px) {
  .guide-features__list,
  .guide-login__list {
    flex-direction: column;
  }
  .guide-contact__box {
    width: 100%;
  }
  .guide-flow__list {
    grid-template-columns: 1fr;
    gap: 56px;
  }
}
/* ========================================
   PRINT
======================================== */
@media print {
  @page {
    size: A4 portrait;
    margin: 10mm;
  }
  html,
  body {
    width: 100%;
    margin: 0;
    padding: 0;
    background: #fff;
  }
  body {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
  header,
  .header,
  .l-header {
    display: none !important;
  }
  .guide {
    gap: 40px;
    padding: 0;
  }
  .guide__section {
    width: 100%;
  }
  .guide__section-inner {
    gap: 32px;
    width: 100%;
    max-width: none;
    padding: 0;
  }
  .guide__intro {
    gap: 8px;
    padding: 16px 0;
  }
  .guide-heading {
    padding-top: 16px;
  }
  .guide-heading::after {
    height: 4px;
  }
  .guide-features__list {
    display: flex !important;
    flex-direction: row !important;
    gap: 16px;
  }
  .guide-features__item {
    gap: 8px;
    padding: 16px;
    break-inside: avoid;
    page-break-inside: avoid;
  }
  .guide-features__number {
    font-size: 40px;
  }
  .guide-features__icon {
    height: 40px;
  }
  .guide-features__title {
    font-size: 14px;
  }
  .guide-features__text {
    font-size: 10px;
  }
  .guide-login {
    break-before: page;
    page-break-before: always;
  }
  .guide-login__list {
    display: flex !important;
    flex-direction: row !important;
    gap: 16px;
  }
  .guide-login__item {
    gap: 24px;
    padding: 24px;
    break-inside: avoid;
    page-break-inside: avoid;
  }
  .guide-login__content {
    gap: 24px;
  }
  .guide-login__screen {
    width: 120px;
  }
  .guide-login__action {
    gap: 24px;
  }
  .guide-login__qr {
    width: 120px;
  }
  .guide-login__next {
    border-left-width: 64px;
    border-right-width: 64px;
    border-top-width: 24px;
  }
  .guide-flow .guide__section-inner {
    gap: 40px;
  }
  .guide-flow__list {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 16px;
    width: 100%;
  }
  .guide-flow__item {
    min-height: 0;
    gap: 16px;
    padding: 40px 16px 16px;
    break-inside: avoid;
    page-break-inside: avoid;
  }
  .guide-flow__title {
    min-height: 40px;
    font-size: 14px;
  }
  .guide-flow__image {
    max-height: 240px;
    margin: auto 0;
  }
  .guide-step {
    top: -20px;
    width: 40px;
    height: 40px;
  }
  .guide-step span {
    font-size: 8px;
  }
  .guide-step strong {
    font-size: 16px;
  }
  .guide-flow__list--second {
    break-before: page;
    page-break-before: always;
  }
  .guide-contact {
    break-inside: avoid;
    page-break-inside: avoid;
  }
  .guide-contact__box {
    gap: 24px;
    padding: 24px;
  }
  .guide-contact__qr {
    width: 120px;
  }
  .guide-button {
    min-height: 40px;
    font-size: 11px;
  }
  .guide-button__arrow {
    width: 24px;
    height: 24px;
  }
  a[href]::after {
    content: none !important;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}.academy-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1em;
  box-sizing: border-box;
}
.academy-popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}
.academy-popup__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1em;
  width: 100%;
  max-width: 520px;
  padding: 2.5em;
  background: #fff;
  text-align: center;
  box-sizing: border-box;
  border-radius: 2em;
}
.academy-popup__close {
  position: absolute;
  top: 12px;
  right: 16px;
  padding: 0;
  border: 0;
  background: none;
  font-size: 2em;
  line-height: 1;
  cursor: pointer;
}
.academy-popup__sub {
  font-size: 1.5em;
  font-family: "Tajawal", sans-serif;
}
.academy-popup__title {
  margin: 0;
  font-size: 1.2em;
  font-weight: 600;
  line-height: 1.5;
}
.academy-popup__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.academy-popup__new {
  font-family: "Tajawal", sans-serif;
}
.academy-popup__button {
  display: block;
  max-width: 360px;
  margin: 0 auto;
  padding: 1em 1.5em;
  background: #E0115F;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  transition: opacity 0.3s;
  box-sizing: border-box;
  border-radius: 999px;
}
.academy-popup__button:hover {
  opacity: 0.7;
}
.academy-popup__guide {
  position: relative;
  margin-top: 16px;
  padding-right: 16px;
  font-size: 14px;
}
.academy-popup__guide::after {
  position: absolute;
  right: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
  content: "";
}
@media screen and (max-width: 767px) {
  .academy-popup__content {
    padding: 45px 20px 35px;
    max-width: 90%;
  }
  .academy-popup__sub {
    font-size: 15px;
  }
  .academy-popup__title {
    font-size: 20px;
  }
  .academy-popup__new {
    font-size: 17px;
  }
}