@charset "UTF-8";
/*
  Josh's Custom CSS Reset
  https://www.joshwcomeau.com/css/custom-css-reset/
*/
*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    interpolate-size: allow-keywords;
  }
}
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

p {
  text-wrap: pretty;
}

h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
}

#root, #__next {
  isolation: isolate;
}

:root {
  --aqua-blue-5: #E6F7FC;
  --aqua-blue-10: #CDEFFA;
  --aqua-blue-15: #B4E7F7;
  --aqua-blue-20: #9BDFF5;
  --aqua-blue-30: #6ACEEF;
  --aqua-blue-40: #38BEEA;
  --aqua-blue-50: #06AEE5;
  --aqua-blue-60: #058BB7;
  --aqua-blue-70: #046889;
  --aqua-blue-80: #02465C;
  --aqua-blue-90: #023445;
  --aqua-blue-100: #01232E;
  --blue-5: #E8F3FF;
  --blue-10: #D0E8FF;
  --blue-15: #B9DCFF;
  --blue-20: #A1D0FF;
  --blue-30: #73B9FF;
  --blue-40: #44A1FF;
  --blue-50: #158AFF;
  --blue-60: #116ECC;
  --blue-70: #0D5399;
  --blue-80: #083766;
  --blue-90: #06294D;
  --blue-100: #041C33;
  --dark-blue-5: #EBEEF6;
  --dark-blue-10: #D7DEEE;
  --dark-blue-15: #C3CDE5;
  --dark-blue-20: #AFBDDD;
  --dark-blue-30: #879BCB;
  --dark-blue-40: #5F7ABA;
  --dark-blue-50: #3759A9;
  --dark-blue-60: #2E4889;
  --dark-blue-70: #213565;
  --dark-blue-80: #162444;
  --dark-blue-90: #0B1222;
  --gray-0: #FFFFFF;
  --gray-10: #F5F5F5;
  --gray-20: #EEEEEE;
  --gray-30: #E6E6E6;
  --gray-40: #DDDDDD;
  --gray-50: #CCCCCC;
  --gray-60: #AAAAAA;
  --gray-70: #888888;
  --gray-80: #666666;
  --gray-90: #444444;
  --gray-100: #222222;
  --border-blue: var(--blue-60);
  --border-darker-blue: var(--blue-70);
  --border-darkest-blue: var(--blue-90);
  --surface-blue: var(--blue-60);
  --surface-darker-blue: var(--blue-70);
  --surface-darkest-blue: var(--blue-90);
  --text-accent-blue: var(--aqua-blue-60);
  --text-base: var(--gray-100);
  --text-blue: var(--blue-70);
  --text-red: #D4464C;
  --text-white: var(--gray-0);
  --dark-blue-gradient: linear-gradient(119deg, #165CA3 8%, #11477D 97%);
  --accent-gradient: linear-gradient(90deg, var(--aqua-blue-50, #06AEE5) 0%, var(--aqua-blue-40, #38BEEA) 100%);
}

/*--------------------------------------------------------------------------
    Global Variables
---------------------------------------------------------------------------*/
:root {
  --font-family-jp: "Noto Sans JP", sans-serif;
  --font-family-en: "Space Grotesk", sans-serif;
  --fs-section-title: clamp(2.6rem, 7vw, 4rem);
  --fs-section-title-sub: clamp(2rem, 4.5vw, 2.8rem);
  --fs-card-title: clamp(1.8rem, 5.2vw, 2.4rem);
  --fs-card-number: 4rem;
  --fs-card-number-sub: 2.4rem;
  --fs-card-name: clamp(1.5rem, 2.5vw, 2rem);
  --fs-body-lg-emphasis: clamp(1.6rem, 2vw, 1.8rem);
  --fs-body-lg: 1.6rem;
  --fs-body: 1.4rem;
  --fs-body-sm: 1.3rem;
}

/*＊-------------------------------------------------------
サイト全体の基本設定
------------------------------------------------------- **/
html {
  font-size: 62.5%; /* 1rem = 10px */
  scroll-behavior: smooth;
}

body {
  width: 100%;
  min-height: 100dvh;
  font-family: var(--font-family-jp, "Noto Sans JP");
  color: var(--text-base, #222);
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
  position: relative;
  font-size: var(--fs-body, 1.4rem);
}
body.is-fixed {
  overflow: hidden;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: initial;
}

p {
  text-wrap: initial;
}

h1, h2, h3, h4, h5, h6 {
  text-wrap: initial;
}

ul,
ol {
  list-style: none;
  padding: 0;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

img {
  vertical-align: bottom;
  max-width: 100%;
  width: 100%;
}

a {
  text-decoration: none;
  color: currentColor;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  a:hover {
    opacity: 0.7;
  }
}

button {
  background-color: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: opacity 0.3s;
  color: var(--text-base, #222);
}
button:hover {
  opacity: 0.7;
}

input[type=text] {
  padding: 0;
  outline: none;
  border: none;
  border-radius: 0;
  background: none;
}

textarea {
  padding: 0;
  outline: none;
  border: 0;
  background: transparent;
  resize: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.l-header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  margin: 0 auto;
  z-index: 2;
  background: rgb(255, 255, 255);
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(2px);
}
@media (min-width: 768px) {
  .l-header {
    position: static;
  }
}
.l-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 67px;
  padding: 10px 16px;
}
@media (min-width: 768px) {
  .l-header__inner {
    height: 70px;
    padding: 10px 24px;
  }
}
.l-header__logo {
  font-size: 16px;
  width: 140px;
  transition: opacity 0.3s ease-out;
}
@media (min-width: 768px) {
  .l-header__logo {
    width: 148px;
  }
}
.l-header__logo:hover {
  opacity: 0.7;
}
.l-header__nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

.l-footer {
  position: sticky;
  top: 100%;
  background-color: var(--gray-0, #fff);
  padding-block: 24px 64px;
}
@media (min-width: 768px) {
  .l-footer {
    padding-block: 24px;
    padding-bottom: 80px;
  }
}
@media (min-width: 768px) {
  .l-footer {
    padding-bottom: 20px;
  }
}
.l-footer__inner {
  width: min(90svw, 500px);
  margin-inline: auto;
  padding-block: 20px 24px;
}
@media (min-width: 768px) {
  .l-footer__inner {
    display: flex;
    justify-content: space-between;
    padding-block: 24px;
  }
}
.l-footer__logo {
  width: 180px;
  margin-bottom: 8px;
}
@media (min-width: 768px) {
  .l-footer__logo {
    margin-bottom: 0;
  }
}
.l-footer__info {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.l-footer__info-name {
  color: var(--text-base, #222);
  font-family: var(--font-family-jp, "Noto Sans JP");
  font-size: var(--font-size-body, 14px);
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: 0.03em;
}
.l-footer__info-tel {
  display: block;
  color: var(--text-base, #222);
  font-family: var(--font-family-en, "Space Grotesk");
  font-size: 28px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: 0.03em;
}
.l-footer__info-hour {
  color: var(--gray-80, #666);
  font-family: var(--font-family-jp, "Noto Sans JP");
  font-size: var(--font-size-body-sm, 13px);
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 18.2px */
  letter-spacing: 0.39px;
}
.l-footer__info-text {
  color: var(--text-base, #222);
  font-family: var(--font-family-jp, "Noto Sans JP");
  font-size: var(--font-size-body, 14px);
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 19.6px */
  letter-spacing: 0.42px;
}
.l-footer__info-link {
  color: var(--text-base, #222);
  font-family: var(--font-family-jp, "Noto Sans JP");
  font-size: var(--font-size-body, 14px);
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 14px */
  letter-spacing: 0.42px;
}
.l-footer__icon {
  display: inline-block;
}
.l-footer__copyright {
  border-top: 1px solid var(--gray-50, #CCC);
  text-align: center;
  padding-top: 8px;
}
@media (min-width: 768px) {
  .l-footer__copyright {
    padding-top: 16px;
  }
}
.l-footer__copyright-text {
  color: var(--gray-80, #666);
  font-family: var(--font-family-en, "Space Grotesk");
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: 0.03em;
}

.l-main {
  margin-top: 67px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .l-main {
    margin-top: 0;
  }
}

/*--------------------------------------------------------------------------
.l-sec
---------------------------------------------------------------------------*/
.l-sec__inner {
  width: min(90vw, 1100px);
  margin-inline: auto;
}

.l-accordion-list {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  width: 100%;
}
@media (min-width: 768px) {
  .l-accordion-list {
    row-gap: 16px;
  }
}

/*--------------------------------------------------------------------------
TREATMENT MENU 診療内容メニュー
---------------------------------------------------------------------------*/
.l-treatment-menu {
  background-color: #fff;
  padding-block: 32px;
  border-radius: 0 0 16px 0;
}
@media (min-width: 768px) {
  .l-treatment-menu {
    padding-block: 48px 64px;
    border-radius: 0 0 26px 0;
  }
}
.l-treatment-menu__inner {
  width: min(80svw, 1100px);
  margin-inline: auto;
}
@media (min-width: 768px) {
  .l-treatment-menu__inner {
    width: min(90svw, 1100px);
  }
}
.l-treatment-menu__title {
  margin-bottom: 24px;
}
.l-treatment-menu__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  row-gap: 12px;
}
@media (min-width: 768px) {
  .l-treatment-menu__list {
    column-gap: min(1.7vw, 26px);
    row-gap: 16px;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  }
}

/* --------------------------------------------------------------------------
Component: PC Nav 
-------------------------------------------------------------------------- */
.c-nav {
  display: flex;
  gap: 16px;
}
.c-nav--pc {
  display: none;
}
@media (min-width: 768px) {
  .c-nav--pc {
    display: flex;
    gap: min(16px, 1vw);
  }
}
.c-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding-block: 8px 5px;
  line-height: 1.5;
  font-size: clamp(12px, 1vw, 14px);
  transition: opacity 0.3s ease-out;
}
.c-nav__link:hover {
  opacity: 0.7;
}
.c-nav__link-text {
  white-space: nowrap;
  color: var(--text-base, #222);
  font-family: var(--font-family-jp, "Noto Sans JP");
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.03em;
}
.c-nav--drawer {
  flex-direction: column;
  color: #fff;
  text-align: center;
  margin-top: 40px;
}
.c-nav--drawer .c-nav__link-text {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

/* --------------------------------------------------------------------------
 Component: Drawer (SP Nav) 
 -------------------------------------------------------------------------- */
.c-drawer {
  width: 100vw;
  height: 100dvh;
  opacity: 0;
  transition: all 0.3s;
  pointer-events: none;
  position: fixed;
  overflow-y: scroll;
  top: 0;
  left: 0;
  padding-block: 80px;
  background-color: rgba(3, 35, 67, 0.9);
}
@media (min-width: 768px) {
  .c-drawer {
    display: none;
  }
}
.c-drawer.is-open {
  opacity: 1;
  pointer-events: auto;
  z-index: 998;
}
.c-drawer__container {
  width: min(800px, 90%);
  margin-inline: auto;
}
@media (min-width: 768px) {
  .c-drawer__container {
    display: grid;
    grid-template-columns: 0.8fr 1fr;
    gap: 5vw;
  }
}
.c-drawer__logo {
  width: 78vw;
  padding-left: 5vw;
}
@media (min-width: 768px) {
  .c-drawer__logo {
    width: 90%;
    margin: 0;
    height: fit-content;
    position: sticky;
    top: 37%;
    padding-left: 0;
  }
}
.c-drawer__logo a {
  display: block;
  transition: opacity 0.3s ease-out;
  max-width: 272px;
}
.c-drawer__logo a:hover {
  opacity: 0.7;
}
.c-drawer__list {
  width: 78vw;
  margin: 0 auto;
  margin-block: 32px;
  gap: 8px;
  display: grid;
}
@media (min-width: 768px) {
  .c-drawer__list {
    width: unset;
    margin-top: 0;
  }
}
.c-drawer__link {
  transition: opacity 0.3s ease-out;
  padding-block: 6px;
  font-weight: 500;
  font-size: 14px;
  display: block;
}
@media (min-width: 768px) {
  .c-drawer__link {
    font-size: 16px;
  }
}
.c-drawer__link:hover {
  opacity: 0.7;
}
.c-drawer__item > .c-drawer__link {
  position: relative;
}
.c-drawer__item > .c-drawer__link::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-right: 7px;
}
.c-drawer__item > .c-drawer__link:has(.c-nav__icon-shoshinsha)::before {
  display: none;
}
.c-drawer__item:first-child a {
  padding-top: 0;
}
.c-drawer__sub-menu {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-left: 20px;
}
.c-drawer__cta-btn {
  margin-block: 24px 32px;
}
.c-drawer__address {
  text-align: center;
  margin-bottom: 32px;
}
.c-drawer__icon {
  margin-inline: auto;
}

/* --------------------------------------------------------------------------
Component: Hamburger Button 
-------------------------------------------------------------------------- */
.c-hamburger {
  width: 48px;
  height: 48px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  row-gap: 6px;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 999;
  transition: border-radius 0.2s, background-color 0.2s;
}
@media (min-width: 768px) {
  .c-hamburger {
    display: none;
  }
}
.c-hamburger span {
  display: block;
  height: 2px;
  width: 22px;
  transition: all 0.3s;
  background-color: var(--text-base, #222);
}
.c-hamburger.is-open {
  row-gap: 0px;
  border-radius: 50%;
}
.c-hamburger.is-open span {
  background-color: #fff;
}
.c-hamburger.is-open span:nth-child(1) {
  margin-bottom: -4px;
  rotate: 45deg;
}
.c-hamburger.is-open span:nth-child(2) {
  opacity: 0;
}
.c-hamburger.is-open span:nth-child(3) {
  rotate: -45deg;
}

/* --------------------------------------------------------------------------
Component: Anchor Navigation
-------------------------------------------------------------------------- */
.c-anchors {
  background: rgba(3, 35, 67, 0.9);
  border-radius: var(--border-radius-sm, 6px);
}
.c-anchors__list {
  padding-block: 16px;
  width: min(92svw, 1000px);
  margin-inline: auto;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  row-gap: 8px;
  column-gap: 6px;
}
@media (min-width: 768px) {
  .c-anchors__list {
    padding-block: 24px;
    gap: 6px;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  }
}
.c-anchors__link {
  width: 100%;
  border-radius: var(--border-radius-infinity, 999px);
  background: var(--gray-0, #FFF);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-base, #222);
  font-family: var(--font-family-jp, "Noto Sans JP");
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: -0.01em;
  transition: opacity 0.3s ease-out;
  position: relative;
  padding-block: 0.5em;
  padding-left: 0.5em;
  padding-right: 20px;
}
.c-anchors__link:hover {
  opacity: 0.7;
}
.c-anchors__link::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 7px;
  background-color: var(--blue-70, #0D5399);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
}
@media (min-width: 768px) {
  .c-anchors__link::after {
    width: 11px;
    height: 8px;
  }
}
.c-anchors--top {
  position: relative;
  z-index: 1;
  margin-top: -4px;
}
@media (min-width: 768px) {
  .c-anchors--top {
    margin-top: -32px;
    max-width: 1160px;
    margin-inline: auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 1;
    z-index: 99;
  }
}
@media (min-width: 768px) {
  .c-anchors--top.is-fixed {
    margin-top: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    z-index: 100;
    max-width: unset;
    animation: slideDown 0.5s ease forwards;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  }
}
@media (min-width: 768px) {
  .c-anchors--top.is-fixed .c-anchors__list {
    padding-block: 12px;
  }
}
@media (min-width: 768px) {
  .c-anchors--top.is-fixed .c-anchors__link {
    font-size: 13px;
    font-weight: 700;
    padding-block: 0.3em;
  }
}
.c-anchors--drawer {
  background: transparent;
}
.c-anchors--drawer .c-anchors__list {
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 300px;
  margin-inline: auto;
}
.c-anchors--drawer .c-anchors__link {
  font-size: 14px;
}
@keyframes slideDown {
  from {
    transform: translateY(-5px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* --------------------------------------------------------------------------
Component: Accordion 
-------------------------------------------------------------------------- */
.c-accordion {
  border-radius: var(--border-radius-sm, 6px);
  background: var(--surface-darker-blue, #0D5399);
  box-shadow: 1px 1px 4px 0 var(--secondary-20, #DFE9ED);
}
.c-accordion__btn {
  width: 100%;
  text-align: left;
  padding-block: 20px;
  padding-inline: 16px;
  padding-left: 50px;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  column-gap: 8px;
  align-items: center;
  position: relative;
  font-weight: 500;
  color: #fff;
  font-size: var(--fs-body-lg-emphasis, 16px);
  transition: color 0.3s var(--ease-standard, ease), font-weight 0.3s var(--ease-standard, ease);
}
@media (min-width: 768px) {
  .c-accordion__btn {
    padding: 24px;
    padding-left: 56px;
  }
}
.c-accordion__btn::before {
  content: "Q";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-blue, #0D5399);
  font-family: var(--font-family-en, "Space Grotesk");
  font-size: var(--fs-body-lg-emphasis, 16px);
  font-style: normal;
  font-weight: 500;
  line-height: 110%;
  border-radius: var(--border-radius-infinity, 999px);
  background: var(--gray-0, #FFF);
  width: 32px;
  height: 32px;
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
}
@media (min-width: 768px) {
  .c-accordion__btn::before {
    left: 16px;
  }
}
.c-accordion__btn:hover {
  opacity: 1;
  font-weight: bold;
}
.c-accordion__icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease-out;
  position: absolute;
  top: 0;
  bottom: 0;
  margin-block: auto;
  right: 16px;
  position: relative;
}
@media (min-width: 768px) {
  .c-accordion__icon {
    right: 24px;
    width: 24px;
    height: 24px;
  }
}
.c-accordion__icon::before, .c-accordion__icon::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #fff;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease-out;
}
.c-accordion__icon::after {
  transform: rotate(90deg);
}
.c-accordion .c-accordion__btn.is-open .c-accordion__icon::after {
  transform: rotate(180deg);
}
.c-accordion__content {
  padding: 16px;
  position: relative;
  background-color: var(--blue-5);
}
@media (min-width: 768px) {
  .c-accordion__content {
    padding: 24px;
  }
}
.c-accordion__content::before {
  content: "";
  display: block;
  width: calc(100% - 32px);
  height: 1px;
  position: absolute;
  top: 0;
  left: 16px;
}
@media (min-width: 768px) {
  .c-accordion__content::before {
    width: calc(100% - 48px);
    left: 24px;
  }
}

.c-swiper {
  padding-right: 56px;
  margin-inline: calc(50% - 50svw);
}
@media (min-width: 768px) {
  .c-swiper {
    margin-inline: 0;
  }
}
.c-swiper .swiper-slide:nth-child(1) {
  margin-left: 24px;
}
@media (min-width: 768px) {
  .c-swiper .swiper-slide:nth-child(1) {
    margin-left: 0;
  }
}

@media (min-width: 768px) {
  .c-swiper--pc-destroy {
    overflow: visible;
    padding-right: 0;
  }
  .c-swiper--pc-destroy .c-swiper-pagination {
    display: none;
  }
}

.swiper .swiper-slide {
  height: auto;
}

.c-swiper-pagination {
  position: relative;
  margin-top: 32px;
  text-align: center;
  width: 100svw !important;
  position: relative;
}
.c-swiper-pagination--feature {
  margin-top: 48px;
}

span.swiper-pagination-bullet {
  background: #fff;
  opacity: 1;
}

span.swiper-pagination-bullet-active {
  background: var(--blue-40, #44A1FF);
}

.c-swiper-arrow-list {
  margin-top: 16px;
  display: flex;
  gap: 16px;
}

.c-swiper-button-next,
.c-swiper-button-prev {
  display: none;
}
@media (min-width: 768px) {
  .c-swiper-button-next,
  .c-swiper-button-prev {
    display: block;
    width: 44px;
    height: 44px;
    background-image: url(../img/common/slider-arrow.svg);
    background-size: cover;
    border-radius: 50%;
    border: 1px solid #fff;
    background-color: rgba(255, 255, 255, 0.2);
    background-position: center;
  }
}

.c-swiper-button-prev {
  transform: rotate(180deg);
}

.c-loading {
  position: fixed;
  inset: 0;
  background: linear-gradient(290deg, var(--blue-5, #E8F3FF) 10%, #EFF7FF 90%), #FFF;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.c-loading.is-load {
  opacity: 0;
  visibility: hidden;
}
.c-loading {
  /* HTML: <div class="loader"></div> */
}
.c-loading .loader {
  width: 45px;
  aspect-ratio: 0.75;
  --c: no-repeat linear-gradient(#0D5399 0 0);
  background: var(--c) 0% 100%, var(--c) 50% 100%, var(--c) 100% 100%;
  background-size: 20% 65%;
  animation: l5 1s infinite linear;
}
@keyframes l5 {
  20% {
    background-position: 0% 50%, 50% 100%, 100% 100%;
  }
  40% {
    background-position: 0% 0%, 50% 50%, 100% 100%;
  }
  60% {
    background-position: 0% 100%, 50% 0%, 100% 50%;
  }
  80% {
    background-position: 0% 100%, 50% 100%, 100% 0%;
  }
}

.c-cta-btnblock {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 16px;
  padding-block: 24px;
  background: var(--dark-blue-gradient, linear-gradient(119deg, #165CA3 8%, #11477D 97%));
}
@media (min-width: 768px) {
  .c-cta-btnblock {
    flex-direction: row;
    column-gap: 32px;
    row-gap: 0;
    padding-block: 36px 40px;
  }
}
.c-cta-btnblock--no-bg {
  background: transparent;
  padding-block: 0;
}
.c-cta-btnblock__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
@media (min-width: 768px) {
  .c-cta-btnblock__item {
    gap: 12px;
  }
}
.c-cta-btnblock__text {
  color: #FFF;
  text-align: center;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
  font-family: var(--font-family-jp, "Noto Sans JP");
  font-size: var(--fs-body-lg, 16px);
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 22.4px */
  letter-spacing: 0.03em;
}

.c-cta-btn {
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 25.2px */
  letter-spacing: 0.03em;
  padding: 0.5em 0.5em;
  border-radius: var(--border-radius-infinity, 999px);
  min-width: 272px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 44px;
}
@media (min-width: 768px) {
  .c-cta-btn {
    font-size: 22px;
    padding: 0.9em 0.5em;
    min-width: 282px;
  }
}
.c-cta-btn--md {
  padding: 0.5em 0.5em;
  font-size: 18px;
}
@media (min-width: 768px) {
  .c-cta-btn--md {
    padding: 0.8em 0.5em;
    font-size: 20px;
  }
}
.c-cta-btn--mv {
  width: 240px;
  min-width: unset;
}
@media (min-width: 768px) {
  .c-cta-btn--mv {
    width: 282px;
  }
}
.c-cta-btn--white {
  border-radius: var(--border-radius-infinity, 999px);
  border: 2px solid var(--aqua-blue-40, #38BEEA);
  background: var(--gray-0, #FFF);
  color: var(--text-accent-blue, #058BB7);
}
.c-cta-btn--blue {
  color: #fff;
  border-radius: var(--border-radius-infinity, 999px);
  background: var(--accent-gradient, linear-gradient(90deg, var(--aqua-blue-50, #06AEE5) 0%, var(--aqua-blue-40, #38BEEA) 100%));
}

.c-section-title__icon {
  display: inline-block;
  width: 40px;
  margin-right: 4px;
  vertical-align: sub;
}
@media (min-width: 768px) {
  .c-section-title__icon {
    width: 48px;
    margin-right: 12px;
  }
}
.c-section-title__text {
  color: var(--text-base, #222);
  font-family: var(--font-family-jp, "Noto Sans JP");
  font-size: var(--fs-section-title, 30px);
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.03em;
}
.c-section-title--white .c-section-title__text {
  color: var(--gray-0, #FFF);
}
.c-section-title--center {
  text-align: center;
}
.c-section-title--sm .c-section-title__text {
  font-size: var(--fs-section-title-sub, 24px);
}

.c-link {
  color: var(--text-base, #222);
  font-family: var(--font-family-jp, "Noto Sans JP");
  font-size: var(--fs-body, 14px);
  font-style: normal;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: 0.03em;
  text-decoration-line: underline;
  text-decoration-skip-ink: none;
}
.c-link::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 12px;
  background-color: var(--text-base, #222);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  margin-right: 6px;
}

.c-fixed-button {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  width: 100%;
}
@media (min-width: 768px) {
  .c-fixed-button {
    top: 200px;
    right: 0;
    width: unset;
  }
}
.c-fixed-button.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.c-fixed-button__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media (min-width: 768px) {
  .c-fixed-button__list {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
.c-fixed-button__icon {
  width: 22px;
  height: 22px;
}
@media (min-width: 768px) {
  .c-fixed-button__icon {
    display: none;
  }
}
.c-fixed-button__link {
  display: flex;
  height: 100%;
  padding-block: 10px;
  padding-inline: 6px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  text-align: center;
  background-color: var(--blue-50, #158AFF);
}
@media (min-width: 768px) {
  .c-fixed-button__link {
    display: inline-flex;
    width: 48px;
    padding-inline: 12px;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius-sm, 6px) var(--border-radius-0, 0) var(--border-radius-0, 0) var(--border-radius-sm, 6px);
  }
}
.c-fixed-button__link--document {
  background: #383E44;
}
.c-fixed-button__link--purchase {
  background: var(--aqua-blue-50, #06AEE5);
}
.c-fixed-button__link-text {
  color: #FFF;
  font-family: var(--font-family-jp, "Noto Sans JP");
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 115%; /* 18.4px */
  letter-spacing: 0.03em;
}
@media (min-width: 768px) {
  .c-fixed-button__link-text {
    font-size: 16px;
  }
}

.c-back-to-top {
  position: fixed;
  bottom: 88px;
  right: 12px;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  width: 64px;
  height: 64px;
}
@media (min-width: 768px) {
  .c-back-to-top {
    bottom: 88px;
    right: 24px;
    width: 72px;
    height: 72px;
  }
}
.c-back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* --------------------------------------------------------------------------
MV
-------------------------------------------------------------------------- */
.p-top-mv {
  background-image: url(../img/top/mv-sp.jpg);
  background-size: cover;
  aspect-ratio: 375/603;
  background-size: cover;
  background-position: center;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}
@media (min-width: 768px) {
  .p-top-mv {
    background-image: url(../img/top/mv.jpg);
    aspect-ratio: 1440/682;
  }
}
.p-top-mv__main-text {
  color: #FFF;
  text-align: center;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  font-family: var(--font-family-jp, "Noto Sans JP");
  font-size: 13.8666666667svw;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  letter-spacing: 0.03em;
  margin-bottom: 24px;
  margin-right: -4svw;
}
@media (min-width: 768px) {
  .p-top-mv__main-text {
    font-size: 5vw;
    margin-bottom: 40px;
    line-height: 130%;
  }
}
.p-top-mv__main-text .md {
  font-size: 50%;
}
@media (min-width: 768px) {
  .p-top-mv__main-text .md {
    font-size: 78%;
  }
}
.p-top-mv__sub-text {
  color: #FFF;
  text-align: center;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  font-family: var(--font-family-jp, "Noto Sans JP");
  font-size: 4.8svw;
  font-style: normal;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: 0.03em;
  margin-bottom: 48px;
}
@media (min-width: 768px) {
  .p-top-mv__sub-text {
    font-size: 1.6666666667vw;
    margin-bottom: 64px;
  }
}
@media (min-width: 768px) {
  .p-top-mv__sub-text .sm {
    font-size: 80%;
  }
}

/* --------------------------------------------------------------------------
About
-------------------------------------------------------------------------- */
.p-top-about {
  padding-top: 40px;
  background: linear-gradient(180deg, #F1F8FF 0%, #E8F3FF 100%);
}
@media (min-width: 768px) {
  .p-top-about {
    padding-top: 150px;
    margin-top: -85px;
  }
}
.p-top-about__title .c-section-title__text {
  letter-spacing: 0;
  font-size: 24px;
}
@media (min-width: 768px) {
  .p-top-about__title .c-section-title__text {
    font-size: var(--fs-section-title);
  }
}
.p-top-about__text {
  color: var(--text-base, #222);
  font-family: var(--font-family-jp, "Noto Sans JP");
  font-size: var(--fs-body-lg-emphasis, 16px);
  font-style: normal;
  font-weight: 500;
  line-height: 170%; /* 27.2px */
  letter-spacing: 0.03em;
  margin-top: 16px;
}
@media (min-width: 768px) {
  .p-top-about__text {
    margin-top: 24px;
    line-height: 200%;
  }
}

/* --------------------------------------------------------------------------
Point
-------------------------------------------------------------------------- */
.p-top-point {
  padding-top: 56px;
  background-color: #E8F3FF;
}
@media (min-width: 768px) {
  .p-top-point {
    padding-top: 72px;
  }
}
.p-top-point__title {
  margin-bottom: 32px;
  text-align: center;
  margin-inline: auto;
  width: fit-content;
  position: relative;
  color: var(--text-base, #222);
  text-align: center;
  font-family: var(--font-family-jp, "Noto Sans JP");
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 39.2px */
  letter-spacing: 0.84px;
}
@media (min-width: 768px) {
  .p-top-point__title {
    margin-bottom: 40px;
    font-size: 32px;
  }
}
.p-top-point__title::before, .p-top-point__title::after {
  content: "";
  display: block;
  width: 41px;
  height: 54px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../img/top/point-title-deco.svg);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
@media (min-width: 768px) {
  .p-top-point__title::before, .p-top-point__title::after {
    width: 54px;
    height: 72px;
  }
}
.p-top-point__title::before {
  left: -40px;
}
@media (min-width: 768px) {
  .p-top-point__title::before {
    left: -72px;
  }
}
.p-top-point__title::after {
  right: -40px;
  transform: translateY(-50%) scaleX(-1);
}
@media (min-width: 768px) {
  .p-top-point__title::after {
    right: -72px;
  }
}
.p-top-point__title-lead {
  display: block;
  font-size: 56%;
  line-height: 140%;
}
@media (min-width: 768px) {
  .p-top-point__title-lead {
    font-size: 68%;
  }
}
.p-top-point__list {
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .p-top-point__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: min(2svw, 40px);
  }
}
.p-top-point__item {
  border-radius: var(--border-radius-md, 10px);
  background: #FFF;
  box-shadow: 3px 3px 0 0 var(--blue-70, #0D5399);
  padding: 24px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .p-top-point__item {
    padding: 32px;
  }
}
.p-top-point__item-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.p-top-point__item-number {
  color: #fff;
  font-family: var(--font-family-en, "Space Grotesk");
  font-size: var(--fs-card-number-sub, 24px);
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.03em;
  background: var(--dark-blue-gradient, linear-gradient(119deg, #165CA3 8%, #11477D 97%));
  width: 72px;
  height: 72px;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  position: absolute;
  top: 0;
  left: 0;
  padding: 2px 6px;
}
.p-top-point__item-icon {
  width: 140px;
  height: 140px;
  margin-inline: auto;
}
.p-top-point__item-title {
  color: var(--text-blue, #0D5399);
  font-family: var(--font-family-jp, "Noto Sans JP");
  font-size: var(--fs-card-title);
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 28px */
  letter-spacing: 0.03em;
  text-align: center;
}

/* --------------------------------------------------------------------------
Course 
-------------------------------------------------------------------------- */
.p-top-course {
  overflow: hidden;
  position: relative;
  margin-top: -12svw;
  padding-top: 18svw;
  padding-bottom: 56px;
  background: linear-gradient(119deg, #165CA3 8%, #11477D 97%);
}
@media (min-width: 768px) {
  .p-top-course {
    padding-top: 18svw;
    padding-bottom: 120px;
  }
}
.p-top-course::before {
  content: "";
  display: block;
  width: 180svw;
  height: 180svw;
  border-radius: 50%;
  top: -164svw;
  background-color: #E8F3FF;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.p-top-course__inner {
  max-width: 660px;
  margin-inline: auto;
  position: relative;
}
.p-top-course__inner::before, .p-top-course__inner::after {
  content: "";
  display: block;
  width: 60svw;
  height: 60svw;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
}
@media (min-width: 768px) {
  .p-top-course__inner::before, .p-top-course__inner::after {
    width: 50svw;
    height: 50svw;
  }
}
.p-top-course__inner::before {
  background-image: url(../img/top/course-arrow-1.svg);
  top: -3svw;
  left: calc(50% - 50svw);
}
@media (min-width: 768px) {
  .p-top-course__inner::before {
    top: -2svw;
    left: calc(40% - 50svw);
  }
}
.p-top-course__inner::after {
  background-image: url(../img/top/course-arrow-2.svg);
  bottom: -20svw;
  right: calc(50% - 50svw);
  background-position: center bottom;
}
@media (min-width: 768px) {
  .p-top-course__inner::after {
    bottom: -20svw;
  }
}
.p-top-course__main-text {
  color: #fff;
  text-align: center;
  margin-top: 16px;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.25);
  font-family: var(--font-family-jp, "Noto Sans JP");
  font-size: clamp(18px, 5.4svw, 22px);
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 30.8px */
  letter-spacing: 0.03em;
}
@media (min-width: 768px) {
  .p-top-course__main-text {
    margin-top: 24px;
  }
}
.p-top-course__main-text--highlight {
  font-size: 145%;
  position: relative;
}
.p-top-course__main-text--highlight::before, .p-top-course__main-text--highlight::after {
  content: "";
  width: 0.2em;
  height: 0.2em;
  display: block;
  background-color: #fff;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.25);
  border-radius: 50%;
  position: absolute;
  top: -0.2em;
}
.p-top-course__main-text--highlight::before {
  left: 0.4em;
}
.p-top-course__main-text--highlight::after {
  right: 0.4em;
}
.p-top-course__main-text-line {
  display: block;
  position: relative;
  width: fit-content;
  margin-inline: auto;
  margin-bottom: 8px;
}
.p-top-course__main-text-line::before {
  content: "";
  display: block;
  width: 110%;
  height: 50%;
  background-color: var(--blue-90, #06294D);
  clip-path: polygon(5% 0, 100% 0, 95% 100%, 0 100%);
  position: absolute;
  bottom: -7%;
  left: 50%;
  transform: translateX(-50%);
}
.p-top-course__main-text-inner {
  position: relative;
  z-index: 1;
}
.p-top-course__details {
  margin-top: 32px;
  border-radius: var(--border-radius-0, 0);
  border-left: 8px solid var(--blue-80, #083766);
  background: rgba(255, 255, 255, 0.97);
}
@media (min-width: 768px) {
  .p-top-course__details {
    margin-top: 40px;
  }
}
.p-top-course__details-inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 12px;
}
@media (min-width: 768px) {
  .p-top-course__details-inner {
    gap: 16px;
    padding: 24px 32px;
  }
}
.p-top-course__details-item {
  display: grid;
  grid-template-columns: 67px 1fr;
  gap: 8px;
}
@media (min-width: 768px) {
  .p-top-course__details-item {
    grid-template-columns: 90px 1fr;
    gap: 24px;
  }
}
.p-top-course__details-title {
  height: fit-content;
  color: var(--text-white, #FFF);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 18.2px */
  letter-spacing: 0.03em;
  border-radius: var(--border-radius-infinity, 999px);
  background: var(--surface-darkest-blue, #06294D);
  padding: 0.3em 0.5em;
}
@media (min-width: 768px) {
  .p-top-course__details-title {
    font-size: 16px;
    padding: 0.3em 0.6em;
  }
}
.p-top-course__details-desc {
  color: var(--text-base, #222);
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 22.4px */
  letter-spacing: 0.03em;
}
@media (min-width: 768px) {
  .p-top-course__details-desc {
    font-size: 22px;
  }
}
.p-top-course__details-desc--sm {
  font-size: 82%;
  font-weight: 500;
  letter-spacing: 0;
}
.p-top-course__cta {
  position: relative;
  z-index: 1;
}

/* --------------------------------------------------------------------------
Recommend 
-------------------------------------------------------------------------- */
.p-top-recommend {
  container-type: inline-size;
  position: relative;
  padding-bottom: 95px;
}
.p-top-recommend::before, .p-top-recommend::after {
  content: "";
  display: block;
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
}
.p-top-recommend::before {
  width: 55.7863501484cqw;
  height: 23.4421364985cqw;
  background-image: url(../img/top/recommend-img-01.svg);
  top: 10cqw;
  right: -5cqw;
}
@media (min-width: 768px) {
  .p-top-recommend::before {
    width: 46.6666666667cqw;
    height: 19.5454545455cqw;
    top: 6cqw;
  }
}
.p-top-recommend::after {
  width: 13.056379822cqw;
  height: 34.7181008902cqw;
  background-image: url(../img/top/recommend-img-02.svg);
  bottom: -16cqw;
  left: -2cqw;
}
@media (min-width: 768px) {
  .p-top-recommend::after {
    width: 11.8181818182cqw;
    height: 31.6666666667cqw;
    bottom: 11cqw;
    left: -8cqw;
  }
}
.p-top-recommend__label {
  margin-top: 24px;
  position: relative;
  transform: rotate(-5deg);
  width: 84px;
  height: 94px;
  background-image: url(../img/top/course-recommend-frame.svg);
  background-repeat: no-repeat;
  background-size: contain;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .p-top-recommend__label {
    width: 120px;
    height: 134px;
    margin-top: 40px;
  }
}
.p-top-recommend__label-text {
  display: block;
  color: #fff;
  text-align: center;
  font-family: var(--font-family-jp, "Noto Sans JP");
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.03em;
  transform: rotate(-5deg);
  width: fit-content;
  z-index: 1;
  position: relative;
  padding-bottom: 10px;
}
@media (min-width: 768px) {
  .p-top-recommend__label-text {
    font-size: 16px;
  }
}
.p-top-recommend__list {
  width: fit-content;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  padding-inline: 8px;
}
@media (min-width: 768px) {
  .p-top-recommend__list {
    gap: 16px;
  }
}
.p-top-recommend__list::before, .p-top-recommend__list::after {
  content: "";
  display: block;
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
}
.p-top-recommend__list::before {
  width: 13.056379822cqw;
  height: 33.234421365cqw;
  background-image: url(../img/top/recommend-img-03.svg);
  top: 43cqw;
  right: -2cqw;
}
@media (min-width: 768px) {
  .p-top-recommend__list::before {
    width: 11.5151515152cqw;
    height: 28.1818181818cqw;
    top: 7cqw;
    right: -22cqw;
  }
}
.p-top-recommend__list::after {
  width: 132px;
  height: 32px;
  background-image: url(../img/top/recommend-arrow.svg);
  bottom: -64px;
  left: 50%;
  transform: translateX(-50%);
}
.p-top-recommend__item {
  display: flex;
}
.p-top-recommend__item::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url(../img/top/recommend-checkbox.svg);
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 8px;
}
.p-top-recommend__item-text {
  width: 100%;
  display: inline-block;
  border-bottom: 1px dashed #FFF;
  color: var(--text-white, #FFF);
  font-family: var(--font-family-jp, "Noto Sans JP");
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.03em;
  padding-bottom: 0.3em;
}
@media (min-width: 768px) {
  .p-top-recommend__item-text {
    font-size: 22px;
  }
}
.p-top-recommend__item-text--sm {
  font-size: 72%;
}

/* --------------------------------------------------------------------------
Service 
-------------------------------------------------------------------------- */
.p-top-service {
  margin-top: -10px;
  position: relative;
}
@media (min-width: 768px) {
  .p-top-service {
    margin-top: -24px;
  }
}
.p-top-service__inner {
  padding-block: 48px 64px;
  padding-inline: 16px;
  border-radius: var(--border-radius-md, 10px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%), linear-gradient(0deg, var(--blue-15, #B9DCFF) 0%, var(--blue-15, #B9DCFF) 100%), #FFF;
  margin-inline: calc(50% - 50svw);
  width: 100svw;
  position: relative;
}
@media (min-width: 768px) {
  .p-top-service__inner {
    margin-inline: auto;
    width: min(90svw, 1200px);
    padding-inline: min(4vw, 56px);
  }
}
.p-top-service__inner::before {
  content: "KEISHIN ACADEMY";
  display: block;
  color: rgba(255, 255, 255, 0.35);
  font-family: var(--font-family-en, "Space Grotesk");
  font-size: 56px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.03em;
  position: absolute;
  rotate: 90deg;
  top: 46%;
  left: -232px;
}
@media (min-width: 768px) {
  .p-top-service__inner::before {
    font-size: 104px;
    left: -430px;
  }
}
.p-top-service__slider {
  padding-top: 16px;
  margin-top: 24px;
}
@media (min-width: 768px) {
  .p-top-service__slider {
    margin-top: 32px;
  }
}
@media (min-width: 768px) {
  .p-top-service__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 24px;
    column-gap: 24px;
  }
}
.p-top-service__item-inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.p-top-service__item {
  border-radius: var(--border-radius-md, 10px);
  border: 1px solid var(--text-base, #222);
  background: #FFF;
  box-shadow: 2px 2px 0 0 rgba(13, 83, 153, 0.7);
  padding: 40px 20px 32px 20px;
  position: relative;
}
@media (min-width: 768px) {
  .p-top-service__item {
    padding: 32px 20px 24px 20px;
    min-height: 220px;
  }
}
.p-top-service__item-number {
  border-radius: 2px 2px 2px 0;
  padding: 0.2em 0.3em;
  background: var(--blue-70, #0D5399);
  color: #FFF;
  font-family: var(--font-family-en, "Space Grotesk");
  font-size: var(--fs-card-number-sub, 24px);
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  position: absolute;
  display: flex;
  gap: 6px;
  top: -8px;
  left: -8px;
}
.p-top-service__item-number::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background-color: var(--blue-90, #06294D);
  position: absolute;
  bottom: -8px;
  left: 0;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}
.p-top-service__item-label {
  font-size: 60%;
}
.p-top-service__item-title {
  color: var(--text-blue, #0D5399);
  font-family: var(--font-family-jp, "Noto Sans JP");
  font-size: var(--fs-card-title);
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 28px */
  letter-spacing: 0.03em;
}
.p-top-service__item-emphasis {
  color: var(--text-base, #222);
  font-family: var(--font-family-jp, "Noto Sans JP");
  font-size: var(--fs-body-lg, 16px);
  font-style: normal;
  font-weight: 700;
  line-height: 160%; /* 25.6px */
  letter-spacing: 0.01em;
}

/* --------------------------------------------------------------------------
Plan 
-------------------------------------------------------------------------- */
.p-top-plan {
  border-radius: var(--border-radius-md, 10px) var(--border-radius-md, 10px) 0 0;
  background: var(--surface-darkest-blue, #06294D);
  padding: 48px 0;
  margin-top: -10px;
  position: relative;
}
@media (min-width: 768px) {
  .p-top-plan {
    padding: 64px 0;
    border-radius: 30px 30px 0 0;
    margin-top: 88px;
  }
}
.p-top-plan__list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 24px;
}
@media (min-width: 768px) {
  .p-top-plan__list {
    gap: 0;
    margin-top: 0;
  }
}
.p-top-plan__head-list {
  display: none;
}
@media (min-width: 768px) {
  .p-top-plan__head-list {
    display: grid;
    grid-template-columns: 224px 1fr 1fr 1fr;
    margin-top: 32px;
  }
}
.p-top-plan__head-item {
  color: var(--text-base, #222);
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  background: #D7E1EE;
  padding: 24px 8px;
  text-align: center;
  border-right: 1px solid var(--color-neutral-60, #AAA);
}
.p-top-plan__head-item:nth-child(2) {
  border-radius: var(--border-radius-md, 10px) 0 0 0;
}
.p-top-plan__head-item:last-of-type {
  border-radius: 0 var(--border-radius-md, 10px) 0 0;
}
@media (min-width: 768px) {
  .p-top-plan__item {
    display: grid;
    grid-template-columns: 224px 1fr 1fr 1fr;
  }
}
@media (min-width: 768px) {
  .p-top-plan__item--plan2 {
    border-top: 2px solid #06294D;
  }
}
.p-top-plan__item-title {
  border-radius: 10px 10px 0 0;
  background: var(--aqua-blue-50, #06AEE5);
  text-align: center;
  display: flex;
  padding: 16px;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  align-self: stretch;
}
@media (min-width: 768px) {
  .p-top-plan__item-title {
    text-align: left;
    border-radius: 0;
    border-top-left-radius: 10px;
    align-items: flex-start;
    padding: 32px 16px;
  }
}
.p-top-plan__item-title--plan2 {
  background: var(--surface-blue, #116ECC);
}
@media (min-width: 768px) {
  .p-top-plan__item-title--plan2 {
    border-radius: 0;
    border-bottom-left-radius: 10px;
  }
}
.p-top-plan__item-label {
  color: #FFF;
  text-align: center;
  font-family: var(--font-family-jp, "Noto Sans JP");
  font-size: var(--fs-card-title, 20px);
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  display: block;
}
.p-top-plan__item-price {
  color: #FFF;
  text-align: center;
  font-family: var(--font-family-en, "Space Grotesk");
  font-size: 38px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
}
@media (min-width: 768px) {
  .p-top-plan__item-price {
    font-size: 38px;
    letter-spacing: -0.02em;
  }
}
.p-top-plan__item-category {
  background-color: #fff;
  padding: 10px 12px;
}
@media (min-width: 768px) {
  .p-top-plan__item-category {
    padding: 24px 12px;
  }
}
.p-top-plan__item-category:nth-of-type(2) {
  border-top: 1px solid var(--color-neutral-60, #AAA);
  border-bottom: 1px solid var(--color-neutral-60, #AAA);
  background: #F9F9F9;
}
@media (min-width: 768px) {
  .p-top-plan__item-category:nth-of-type(2) {
    border: none;
    border-left: 1px solid var(--color-neutral-60, #AAA);
    border-right: 1px solid var(--color-neutral-60, #AAA);
  }
}
.p-top-plan__item-subtitle {
  display: block;
  width: 100%;
  margin-bottom: 8px;
  color: var(--blue-80, #083766);
  text-align: center;
  font-family: var(--font-family-jp, "Noto Sans JP");
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
}
@media (min-width: 768px) {
  .p-top-plan__item-subtitle {
    display: none;
  }
}
.p-top-plan__details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}
@media (min-width: 768px) {
  .p-top-plan__details {
    gap: 8px;
  }
}
.p-top-plan__details-item {
  color: var(--text-base, #222);
  font-family: var(--font-family-jp, "Noto Sans JP");
  font-size: var(--fs-body, 14px);
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}
.p-top-plan__details-item::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url(../img/top/plan-check.svg);
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 8px;
}
.p-top-plan__details-item--nocheck::before {
  display: none;
}

/* --------------------------------------------------------------------------
Curriculum
-------------------------------------------------------------------------- */
.p-top-curriculum__inner {
  display: flex;
  padding-top: 48px;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  align-self: stretch;
}
@media (min-width: 768px) {
  .p-top-curriculum__inner {
    padding-top: 80px;
  }
}
.p-top-curriculum__list {
  margin-left: -16px;
}
.p-top-curriculum__item {
  display: grid;
  grid-template-columns: 0.45fr 0.55fr;
  min-height: 120px;
}
@media (min-width: 768px) {
  .p-top-curriculum__item {
    grid-template-columns: 0.3fr 0.7fr;
    min-height: 170px;
    column-gap: 40px;
  }
}
.p-top-curriculum__item-title {
  color: var(--text-base, #222);
  text-align: center;
  font-family: var(--font-family-jp, "Noto Sans JP");
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.03em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media (min-width: 768px) {
  .p-top-curriculum__item-title {
    font-size: 24px;
  }
}
.p-top-curriculum__item-title--sm {
  font-size: 72%;
  display: block;
}
.p-top-curriculum__item-title::before {
  content: "";
  display: block;
  width: 230px;
  height: auto;
  aspect-ratio: 200/120;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 190, 230, 0.43);
}
@media (min-width: 768px) {
  .p-top-curriculum__item-title::before {
    width: 320px;
  }
}
.p-top-curriculum__item-title-inner {
  position: relative;
  z-index: 1;
}
.p-top-curriculum__item:nth-child(2) .p-top-curriculum__item-title::before {
  background-color: rgba(0, 160, 230, 0.43);
}
.p-top-curriculum__item:nth-child(3) .p-top-curriculum__item-title::before {
  background-color: rgba(0, 130, 230, 0.43);
}
.p-top-curriculum__item:nth-child(4) .p-top-curriculum__item-title::before {
  background-color: rgba(0, 100, 231, 0.43);
}
.p-top-curriculum__item:nth-child(5) .p-top-curriculum__item-title::before {
  background-color: rgba(0, 70, 230, 0.43);
}
.p-top-curriculum__item-desc {
  color: var(--text-base, #222);
  font-family: var(--font-family-jp, "Noto Sans JP");
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: 0.01em;
  padding: 20px 0 0 8px;
  position: relative;
}
@media (min-width: 768px) {
  .p-top-curriculum__item-desc {
    font-size: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #ccc;
    height: fit-content;
  }
}

/* --------------------------------------------------------------------------
Lecturer
-------------------------------------------------------------------------- */
.p-top-lecturer {
  margin-top: 88px;
  position: relative;
}
@media (min-width: 768px) {
  .p-top-lecturer {
    margin-top: 198px;
  }
}
.p-top-lecturer::before, .p-top-lecturer::after {
  content: "";
  display: block;
  position: absolute;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  width: 100svw;
  height: 100%;
  top: 0;
  left: 0;
}
@media (min-width: 768px) {
  .p-top-lecturer::before, .p-top-lecturer::after {
    left: unset;
    right: -8svw;
    border-radius: 0;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
  }
}
.p-top-lecturer::after {
  background: var(--dark-blue-gradient, linear-gradient(119deg, #165CA3 15.62%, #11477D 95.5%));
}
.p-top-lecturer::before {
  top: -16px;
  left: -16px;
  background: var(--blue-10, #D0E8FF);
}
@media (min-width: 768px) {
  .p-top-lecturer::before {
    top: -40px;
    left: unset;
    right: calc(-10svw + 80px);
  }
}
.p-top-lecturer__inner {
  position: relative;
  z-index: 1;
  padding-block: 56px;
}
@media (min-width: 768px) {
  .p-top-lecturer__inner {
    display: flex;
    margin-right: calc(50% - 50svw);
    width: min(90svw, 1320px);
  }
}
@media (min-width: 1600px) {
  .p-top-lecturer__inner {
    margin-inline: auto;
  }
}
.p-top-lecturer__title {
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .p-top-lecturer__title {
    display: flex;
    flex-direction: column;
    width: 56px;
    margin-inline: 72px;
    margin-bottom: 0;
  }
}
.p-top-lecturer__title .c-section-title__text {
  line-height: 116%;
}
.p-top-lecturer .swiper-wrapper {
  height: fit-content;
}
@media (min-width: 768px) {
  .p-top-lecturer .c-swiper-pagination {
    display: none;
  }
}
.p-top-lecturer__item {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  padding: 12px 14px 12px 21px;
  align-items: flex-start;
  gap: 3px;
  position: relative;
}
@media (min-width: 768px) {
  .p-top-lecturer__item {
    padding: 12px 19px 16px 30px;
    gap: 8px;
  }
}
.p-top-lecturer__item::before {
  content: "Lecturer";
  display: block;
  position: absolute;
  top: 32px;
  left: -13px;
  rotate: -90deg;
  color: var(--blue-80, #083766);
  text-align: right;
  font-family: var(--font-family-en, "Space Grotesk");
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
}
@media (min-width: 768px) {
  .p-top-lecturer__item::before {
    font-size: 16px;
    top: 40px;
    left: -20px;
  }
}
.p-top-lecturer__item-title {
  color: var(--text-blue, #0D5399);
  text-align: right;
  font-family: var(--font-family-jp, "Noto Sans JP");
  font-size: var(--fs-card-name, 16px);
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.03em;
}
.p-top-lecturer__subject-title {
  color: var(--gray-70, #888);
  font-family: var(--font-family-jp, "Noto Sans JP");
  font-size: var(--fs-body-sm, 13px);
  font-style: normal;
  font-weight: 500;
  line-height: 140%; /* 18.2px */
  letter-spacing: 0.03em;
}
.p-top-lecturer__subject-text {
  color: var(--text-base, #222);
  font-family: var(--font-family-jp, "Noto Sans JP");
  font-size: var(--fs-body-sm, 13px);
  font-style: normal;
  font-weight: 500;
  line-height: 140%; /* 18.2px */
  letter-spacing: 0.03em;
}

/* --------------------------------------------------------------------------
Feature
-------------------------------------------------------------------------- */
.p-top-feature {
  padding-top: 112px;
  padding-bottom: 40px;
}
@media (min-width: 768px) {
  .p-top-feature {
    padding-top: 160px;
    padding-bottom: 88px;
  }
}
.p-top-feature__inner {
  border-radius: var(--border-radius-md, 10px);
  background: var(--blue-20, #A1D0FF);
  padding: 48px 19px 40px 19px;
  margin-inline: calc(50% - 50svw);
  position: relative;
  width: 100svw;
}
@media (min-width: 768px) {
  .p-top-feature__inner {
    padding: 64px 38px;
    margin-inline: auto;
    max-width: 1100px;
  }
}
.p-top-feature__title-sub {
  color: var(--blue-5, #E8F3FF);
  text-align: center;
  font-family: var(--font-family-en, "Space Grotesk");
  font-size: 9.6svw;
  font-style: normal;
  font-weight: 500;
  line-height: 90%; /* 39px */
  text-transform: capitalize;
  position: absolute;
  bottom: 100%;
}
@media (min-width: 768px) {
  .p-top-feature__title-sub {
    font-size: 63px;
    white-space: nowrap;
  }
}
.p-top-feature__title {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
}
@media (min-width: 768px) {
  .p-top-feature__title {
    transform: translateX(-50%) translateY(50%);
  }
}
@media (min-width: 768px) {
  .p-top-feature__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
.p-top-feature__slider {
  overflow: visible;
}
.p-top-feature__item {
  border-radius: var(--border-radius-md, 10px);
  background: #FFF;
  position: relative;
  container-type: inline-size;
  /* card-shadow-2 */
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1), 3px 3px 0 0 #5687B8;
}
.p-top-feature__item::after {
  content: "";
  display: block;
  width: 197px;
  height: 151px;
  background-image: url(../img/top/feature-illustration-01.svg);
  background-repeat: no-repeat;
  position: absolute;
  bottom: -32px;
  right: 0cqw;
  background-size: contain;
  background-position: center;
}
@media (min-width: 768px) {
  .p-top-feature__item::after {
    width: 43cqw;
    height: 33cqw;
  }
}
.p-top-feature__item:nth-child(1) {
  z-index: 4;
}
.p-top-feature__item:nth-child(2) {
  z-index: 3;
}
.p-top-feature__item:nth-child(2)::after {
  background-image: url(../img/top/feature-illustration-02.svg);
  background-repeat: no-repeat;
}
.p-top-feature__item:nth-child(3) {
  z-index: 2;
}
.p-top-feature__item:nth-child(3)::after {
  background-image: url(../img/top/feature-illustration-03.svg);
  background-repeat: no-repeat;
}
.p-top-feature__item:nth-child(4) {
  z-index: 1;
}
.p-top-feature__item:nth-child(4)::after {
  background-image: url(../img/top/feature-illustration-04.svg);
  background-repeat: no-repeat;
}
.p-top-feature__item-inner {
  position: relative;
  overflow: hidden;
  padding: 24px 20px 136px 20px;
  width: 100%;
  height: 100%;
  border-radius: inherit;
}
@media (min-width: 768px) {
  .p-top-feature__item-inner {
    padding: 24px 28px 136px 28px;
  }
}
.p-top-feature__item-inner::before {
  content: "";
  display: block;
  width: 259px;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #E5ECF5;
  position: absolute;
  bottom: -100px;
  right: -30px;
}
@media (min-width: 768px) {
  .p-top-feature__item-inner::before {
    width: 55.6cqw;
    aspect-ratio: 1/1;
    bottom: -17cqw;
    right: -7cqw;
  }
}
.p-top-feature__item-number, .p-top-feature__item-title, .p-top-feature__item-desc {
  position: relative;
  z-index: 1;
}
.p-top-feature__item-number {
  color: var(--text-base, #222);
  text-align: center;
  font-family: var(--font-family-en, "Space Grotesk");
  font-size: var(--fs-card-number, 40px);
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 40px */
  letter-spacing: 0.03em;
  display: flex;
  align-items: center;
  box-ordinal-group: 6px;
  margin-bottom: 16px;
}
.p-top-feature__item-label {
  color: var(--text-base, #222);
  font-family: var(--font-family-en, "Space Grotesk");
  font-size: 14px;
  text-transform: uppercase;
}
.p-top-feature__item-title {
  color: var(--text-blue, #0D5399);
  font-family: var(--font-family-jp, "Noto Sans JP");
  font-size: var(--fs-card-name-pc, 20px);
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 28px */
  letter-spacing: 0.03em;
  margin-bottom: 12px;
}
.p-top-feature__item-desc {
  color: var(--text-base, #222);
  font-family: var(--font-family-jp, "Noto Sans JP");
  font-size: var(--fs-body, 14px);
  font-style: normal;
  font-weight: 400;
  line-height: 170%; /* 23.8px */
  letter-spacing: 0.01em;
}

/* --------------------------------------------------------------------------
Component: PC Nav 
-------------------------------------------------------------------------- */
.p-top-environment {
  padding-top: 40px;
}
@media (min-width: 768px) {
  .p-top-environment {
    padding-top: 104px;
  }
}
@media (min-width: 768px) {
  .p-top-environment__inner {
    display: flex;
    max-width: 1000px;
    align-items: center;
  }
}
.p-top-environment__img {
  margin-left: calc(50% - 50svw);
  border-radius: var(--border-radius-md, 10px);
}
@media (min-width: 768px) {
  .p-top-environment__img {
    margin-left: 0;
  }
}
.p-top-environment__textblock {
  position: relative;
  display: flex;
  width: 321px;
  padding: 24px 20px 32px 20px;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  border-radius: var(--border-radius-md, 10px);
  background: #FFF;
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.2), 0 3px 0 0 #5687B8;
  width: 95%;
  max-width: 557px;
  margin-top: -16px;
  margin-left: 24px;
  height: fit-content;
}
@media (min-width: 768px) {
  .p-top-environment__textblock {
    padding: 56px 48px 72px 48px;
    margin-top: 0;
    margin-left: -40px;
  }
}

/* --------------------------------------------------------------------------
FAQ 
-------------------------------------------------------------------------- */
.p-top-faq {
  padding-block: 56px;
}
@media (min-width: 768px) {
  .p-top-faq {
    padding-block: 104px;
  }
}
.p-top-faq__container {
  display: flex;
  max-width: 880px;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .p-top-faq__container {
    gap: 32px;
  }
}

/* --------------------------------------------------------------------------
Step
-------------------------------------------------------------------------- */
.p-top-step {
  position: relative;
  padding-bottom: 48px;
  padding-top: 30svw;
  overflow: hidden;
}
@media (min-width: 768px) {
  .p-top-step {
    padding-bottom: 88px;
    padding-top: 9svw;
  }
}
.p-top-step::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200svw;
  height: 200svw;
  background: var(--blue-10, #D0E8FF);
  border-radius: 50%;
  z-index: -1;
}
.p-top-step::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200svw;
  height: 50%;
  background: var(--blue-10, #D0E8FF);
  z-index: -1;
}
@media (min-width: 768px) {
  .p-top-step::after {
    display: none;
  }
}
.p-top-step__list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 24px;
}
@media (min-width: 768px) {
  .p-top-step__list {
    margin-top: 48px;
  }
}
.p-top-step__item {
  padding: 20px 32px;
  position: relative;
  background-color: #fff;
  /* card-shadow */
  box-shadow: 3px 3px 0 0 var(--blue-70, #0D5399);
  border-radius: var(--border-radius-md, 10px);
}
@media (min-width: 768px) {
  .p-top-step__item {
    padding: 40px 40px 32px;
  }
}
.p-top-step__item::after {
  content: "";
  display: block;
  width: 38px;
  height: 19px;
  background-color: var(--blue-70, #0D5399);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
}
.p-top-step__item:last-child::after {
  display: none;
}
@media (min-width: 768px) {
  .p-top-step__item-inner {
    display: flex;
    gap: 24px;
  }
}
.p-top-step__item-number {
  color: var(--text-blue, #0D5399);
  text-align: center;
  font-family: var(--font-family-en, "Space Grotesk");
  font-size: var(--fs-card-number, 40px);
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 40px */
  letter-spacing: 1.2px;
  position: absolute;
  top: 8px;
  left: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}
@media (min-width: 768px) {
  .p-top-step__item-number {
    position: relative;
    border-right: 1px solid var(--gray-80, #666);
    padding-right: min(56px, 4vw);
    padding-bottom: 12px;
  }
}
.p-top-step__item-label {
  font-size: 18px;
  display: block;
  line-height: 1;
}
.p-top-step__item-icon {
  width: 30%;
  height: auto;
  aspect-ratio: 1/1;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .p-top-step__item-icon {
    width: 100px;
    margin-inline: min(56px, 4vw);
  }
}
.p-top-step__item-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
@media (min-width: 768px) {
  .p-top-step__item-content {
    flex-direction: row;
  }
}
.p-top-step__item-title {
  color: var(--text-blue, #0D5399);
  text-align: center;
  font-family: var(--font-family-jp, "Noto Sans JP");
  font-size: var(--fs-card-name-pc, 20px);
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 28px */
  letter-spacing: 0.03em;
  margin-bottom: 8px;
}
@media (min-width: 768px) {
  .p-top-step__item-title {
    text-align: left;
    margin-bottom: 12px;
  }
}
.p-top-step__item-desc {
  color: var(--text-base, #222);
  font-family: var(--font-family-jp, "Noto Sans JP");
  font-size: var(--fs-body, 14px);
  font-style: normal;
  font-weight: 400;
  line-height: 170%; /* 23.8px */
  letter-spacing: 0.42px;
}

/*--------------------------------------------------------------------------
  Animation Utilities
---------------------------------------------------------------------------*/
.u-fade-up {
  opacity: 0;
}

.u-fade-up.is-show {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/*--------------------------------------------------------------------------
  Color Utilities
---------------------------------------------------------------------------*/
.text-white {
  color: #fff !important;
}

.text-black {
  color: #000000 !important;
}

/*--------------------------------------------------------------------------
  Display Utilities
--------------------------------------------------------------------------*/
.block {
  display: block !important;
}

.inline {
  display: inline !important;
}

.inline-block {
  display: inline-block !important;
}

.flex {
  display: flex !important;
}

.inline-flex {
  display: inline-flex !important;
}

.grid {
  display: grid !important;
}

.inline-grid {
  display: inline-grid !important;
}

.hidden {
  display: none !important;
}

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

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

.sp-flex {
  display: flex;
}
@media (min-width: 768px) {
  .sp-flex {
    display: none;
  }
}

.pc-flex {
  display: none;
}
@media (min-width: 768px) {
  .pc-flex {
    display: flex;
  }
}

.no-link {
  pointer-events: none;
  text-decoration: none !important;
  cursor: initial;
}

/*--------------------------------------------------------------------------
 Size Utilities
---------------------------------------------------------------------------*/
.mlr-auto {
  margin-inline: auto !important;
}

/* 8pxごと */
/* マージン関連クラス */
.m-0 {
  margin: 0px !important;
}

.mt-0 {
  margin-top: 0px !important;
}

.mb-0 {
  margin-bottom: 0px !important;
}

.mtb-0 {
  margin-block: 0px !important;
}

.ml-0 {
  margin-left: 0px !important;
}

.mr-0 {
  margin-right: 0px !important;
}

.mlr-0 {
  margin-inline: 0px !important;
}

@media (min-width: 768px) {
  .m-0-pc {
    margin: 0px !important;
  }
  .mt-0-pc {
    margin-top: 0px !important;
  }
  .mb-0-pc {
    margin-bottom: 0px !important;
  }
  .mtb-0-pc {
    margin-block: 0px !important;
  }
  .ml-0-pc {
    margin-left: 0px !important;
  }
  .mr-0-pc {
    margin-right: 0px !important;
  }
  .mlr-0-pc {
    margin-inline: 0px !important;
  }
}
/* パディング関連クラス */
.p-0 {
  padding: 0px !important;
}

.pt-0 {
  padding-top: 0px !important;
}

.pb-0 {
  padding-bottom: 0px !important;
}

.ptb-0 {
  padding-block: 0px !important;
}

.pl-0 {
  padding-left: 0px !important;
}

.pr-0 {
  padding-right: 0px !important;
}

.plr-0 {
  padding-inline: 0px !important;
}

@media (min-width: 768px) {
  .p-0-pc {
    padding: 0px !important;
  }
  .pt-0-pc {
    padding-top: 0px !important;
  }
  .pb-0-pc {
    padding-bottom: 0px !important;
  }
  .ptb-0-pc {
    padding-block: 0px !important;
  }
  .pl-0-pc {
    padding-left: 0px !important;
  }
  .pr-0-pc {
    padding-right: 0px !important;
  }
  .plr-0-pc {
    padding-inline: 0px !important;
  }
}
.fs-0 {
  font-size: 0px !important;
}

@media (min-width: 768px) {
  .fs-0-pc {
    font-size: 0px !important;
  }
}
/* マージン関連クラス */
.m-8 {
  margin: 8px !important;
}

.mt-8 {
  margin-top: 8px !important;
}

.mb-8 {
  margin-bottom: 8px !important;
}

.mtb-8 {
  margin-block: 8px !important;
}

.ml-8 {
  margin-left: 8px !important;
}

.mr-8 {
  margin-right: 8px !important;
}

.mlr-8 {
  margin-inline: 8px !important;
}

@media (min-width: 768px) {
  .m-8-pc {
    margin: 8px !important;
  }
  .mt-8-pc {
    margin-top: 8px !important;
  }
  .mb-8-pc {
    margin-bottom: 8px !important;
  }
  .mtb-8-pc {
    margin-block: 8px !important;
  }
  .ml-8-pc {
    margin-left: 8px !important;
  }
  .mr-8-pc {
    margin-right: 8px !important;
  }
  .mlr-8-pc {
    margin-inline: 8px !important;
  }
}
/* パディング関連クラス */
.p-8 {
  padding: 8px !important;
}

.pt-8 {
  padding-top: 8px !important;
}

.pb-8 {
  padding-bottom: 8px !important;
}

.ptb-8 {
  padding-block: 8px !important;
}

.pl-8 {
  padding-left: 8px !important;
}

.pr-8 {
  padding-right: 8px !important;
}

.plr-8 {
  padding-inline: 8px !important;
}

@media (min-width: 768px) {
  .p-8-pc {
    padding: 8px !important;
  }
  .pt-8-pc {
    padding-top: 8px !important;
  }
  .pb-8-pc {
    padding-bottom: 8px !important;
  }
  .ptb-8-pc {
    padding-block: 8px !important;
  }
  .pl-8-pc {
    padding-left: 8px !important;
  }
  .pr-8-pc {
    padding-right: 8px !important;
  }
  .plr-8-pc {
    padding-inline: 8px !important;
  }
}
.fs-8 {
  font-size: 8px !important;
}

@media (min-width: 768px) {
  .fs-8-pc {
    font-size: 8px !important;
  }
}
/* マージン関連クラス */
.m-16 {
  margin: 16px !important;
}

.mt-16 {
  margin-top: 16px !important;
}

.mb-16 {
  margin-bottom: 16px !important;
}

.mtb-16 {
  margin-block: 16px !important;
}

.ml-16 {
  margin-left: 16px !important;
}

.mr-16 {
  margin-right: 16px !important;
}

.mlr-16 {
  margin-inline: 16px !important;
}

@media (min-width: 768px) {
  .m-16-pc {
    margin: 16px !important;
  }
  .mt-16-pc {
    margin-top: 16px !important;
  }
  .mb-16-pc {
    margin-bottom: 16px !important;
  }
  .mtb-16-pc {
    margin-block: 16px !important;
  }
  .ml-16-pc {
    margin-left: 16px !important;
  }
  .mr-16-pc {
    margin-right: 16px !important;
  }
  .mlr-16-pc {
    margin-inline: 16px !important;
  }
}
/* パディング関連クラス */
.p-16 {
  padding: 16px !important;
}

.pt-16 {
  padding-top: 16px !important;
}

.pb-16 {
  padding-bottom: 16px !important;
}

.ptb-16 {
  padding-block: 16px !important;
}

.pl-16 {
  padding-left: 16px !important;
}

.pr-16 {
  padding-right: 16px !important;
}

.plr-16 {
  padding-inline: 16px !important;
}

@media (min-width: 768px) {
  .p-16-pc {
    padding: 16px !important;
  }
  .pt-16-pc {
    padding-top: 16px !important;
  }
  .pb-16-pc {
    padding-bottom: 16px !important;
  }
  .ptb-16-pc {
    padding-block: 16px !important;
  }
  .pl-16-pc {
    padding-left: 16px !important;
  }
  .pr-16-pc {
    padding-right: 16px !important;
  }
  .plr-16-pc {
    padding-inline: 16px !important;
  }
}
.fs-16 {
  font-size: 16px !important;
}

@media (min-width: 768px) {
  .fs-16-pc {
    font-size: 16px !important;
  }
}
/* マージン関連クラス */
.m-24 {
  margin: 24px !important;
}

.mt-24 {
  margin-top: 24px !important;
}

.mb-24 {
  margin-bottom: 24px !important;
}

.mtb-24 {
  margin-block: 24px !important;
}

.ml-24 {
  margin-left: 24px !important;
}

.mr-24 {
  margin-right: 24px !important;
}

.mlr-24 {
  margin-inline: 24px !important;
}

@media (min-width: 768px) {
  .m-24-pc {
    margin: 24px !important;
  }
  .mt-24-pc {
    margin-top: 24px !important;
  }
  .mb-24-pc {
    margin-bottom: 24px !important;
  }
  .mtb-24-pc {
    margin-block: 24px !important;
  }
  .ml-24-pc {
    margin-left: 24px !important;
  }
  .mr-24-pc {
    margin-right: 24px !important;
  }
  .mlr-24-pc {
    margin-inline: 24px !important;
  }
}
/* パディング関連クラス */
.p-24 {
  padding: 24px !important;
}

.pt-24 {
  padding-top: 24px !important;
}

.pb-24 {
  padding-bottom: 24px !important;
}

.ptb-24 {
  padding-block: 24px !important;
}

.pl-24 {
  padding-left: 24px !important;
}

.pr-24 {
  padding-right: 24px !important;
}

.plr-24 {
  padding-inline: 24px !important;
}

@media (min-width: 768px) {
  .p-24-pc {
    padding: 24px !important;
  }
  .pt-24-pc {
    padding-top: 24px !important;
  }
  .pb-24-pc {
    padding-bottom: 24px !important;
  }
  .ptb-24-pc {
    padding-block: 24px !important;
  }
  .pl-24-pc {
    padding-left: 24px !important;
  }
  .pr-24-pc {
    padding-right: 24px !important;
  }
  .plr-24-pc {
    padding-inline: 24px !important;
  }
}
.fs-24 {
  font-size: 24px !important;
}

@media (min-width: 768px) {
  .fs-24-pc {
    font-size: 24px !important;
  }
}
/* マージン関連クラス */
.m-32 {
  margin: 32px !important;
}

.mt-32 {
  margin-top: 32px !important;
}

.mb-32 {
  margin-bottom: 32px !important;
}

.mtb-32 {
  margin-block: 32px !important;
}

.ml-32 {
  margin-left: 32px !important;
}

.mr-32 {
  margin-right: 32px !important;
}

.mlr-32 {
  margin-inline: 32px !important;
}

@media (min-width: 768px) {
  .m-32-pc {
    margin: 32px !important;
  }
  .mt-32-pc {
    margin-top: 32px !important;
  }
  .mb-32-pc {
    margin-bottom: 32px !important;
  }
  .mtb-32-pc {
    margin-block: 32px !important;
  }
  .ml-32-pc {
    margin-left: 32px !important;
  }
  .mr-32-pc {
    margin-right: 32px !important;
  }
  .mlr-32-pc {
    margin-inline: 32px !important;
  }
}
/* パディング関連クラス */
.p-32 {
  padding: 32px !important;
}

.pt-32 {
  padding-top: 32px !important;
}

.pb-32 {
  padding-bottom: 32px !important;
}

.ptb-32 {
  padding-block: 32px !important;
}

.pl-32 {
  padding-left: 32px !important;
}

.pr-32 {
  padding-right: 32px !important;
}

.plr-32 {
  padding-inline: 32px !important;
}

@media (min-width: 768px) {
  .p-32-pc {
    padding: 32px !important;
  }
  .pt-32-pc {
    padding-top: 32px !important;
  }
  .pb-32-pc {
    padding-bottom: 32px !important;
  }
  .ptb-32-pc {
    padding-block: 32px !important;
  }
  .pl-32-pc {
    padding-left: 32px !important;
  }
  .pr-32-pc {
    padding-right: 32px !important;
  }
  .plr-32-pc {
    padding-inline: 32px !important;
  }
}
.fs-32 {
  font-size: 32px !important;
}

@media (min-width: 768px) {
  .fs-32-pc {
    font-size: 32px !important;
  }
}
/* マージン関連クラス */
.m-40 {
  margin: 40px !important;
}

.mt-40 {
  margin-top: 40px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.mtb-40 {
  margin-block: 40px !important;
}

.ml-40 {
  margin-left: 40px !important;
}

.mr-40 {
  margin-right: 40px !important;
}

.mlr-40 {
  margin-inline: 40px !important;
}

@media (min-width: 768px) {
  .m-40-pc {
    margin: 40px !important;
  }
  .mt-40-pc {
    margin-top: 40px !important;
  }
  .mb-40-pc {
    margin-bottom: 40px !important;
  }
  .mtb-40-pc {
    margin-block: 40px !important;
  }
  .ml-40-pc {
    margin-left: 40px !important;
  }
  .mr-40-pc {
    margin-right: 40px !important;
  }
  .mlr-40-pc {
    margin-inline: 40px !important;
  }
}
/* パディング関連クラス */
.p-40 {
  padding: 40px !important;
}

.pt-40 {
  padding-top: 40px !important;
}

.pb-40 {
  padding-bottom: 40px !important;
}

.ptb-40 {
  padding-block: 40px !important;
}

.pl-40 {
  padding-left: 40px !important;
}

.pr-40 {
  padding-right: 40px !important;
}

.plr-40 {
  padding-inline: 40px !important;
}

@media (min-width: 768px) {
  .p-40-pc {
    padding: 40px !important;
  }
  .pt-40-pc {
    padding-top: 40px !important;
  }
  .pb-40-pc {
    padding-bottom: 40px !important;
  }
  .ptb-40-pc {
    padding-block: 40px !important;
  }
  .pl-40-pc {
    padding-left: 40px !important;
  }
  .pr-40-pc {
    padding-right: 40px !important;
  }
  .plr-40-pc {
    padding-inline: 40px !important;
  }
}
.fs-40 {
  font-size: 40px !important;
}

@media (min-width: 768px) {
  .fs-40-pc {
    font-size: 40px !important;
  }
}
/* マージン関連クラス */
.m-48 {
  margin: 48px !important;
}

.mt-48 {
  margin-top: 48px !important;
}

.mb-48 {
  margin-bottom: 48px !important;
}

.mtb-48 {
  margin-block: 48px !important;
}

.ml-48 {
  margin-left: 48px !important;
}

.mr-48 {
  margin-right: 48px !important;
}

.mlr-48 {
  margin-inline: 48px !important;
}

@media (min-width: 768px) {
  .m-48-pc {
    margin: 48px !important;
  }
  .mt-48-pc {
    margin-top: 48px !important;
  }
  .mb-48-pc {
    margin-bottom: 48px !important;
  }
  .mtb-48-pc {
    margin-block: 48px !important;
  }
  .ml-48-pc {
    margin-left: 48px !important;
  }
  .mr-48-pc {
    margin-right: 48px !important;
  }
  .mlr-48-pc {
    margin-inline: 48px !important;
  }
}
/* パディング関連クラス */
.p-48 {
  padding: 48px !important;
}

.pt-48 {
  padding-top: 48px !important;
}

.pb-48 {
  padding-bottom: 48px !important;
}

.ptb-48 {
  padding-block: 48px !important;
}

.pl-48 {
  padding-left: 48px !important;
}

.pr-48 {
  padding-right: 48px !important;
}

.plr-48 {
  padding-inline: 48px !important;
}

@media (min-width: 768px) {
  .p-48-pc {
    padding: 48px !important;
  }
  .pt-48-pc {
    padding-top: 48px !important;
  }
  .pb-48-pc {
    padding-bottom: 48px !important;
  }
  .ptb-48-pc {
    padding-block: 48px !important;
  }
  .pl-48-pc {
    padding-left: 48px !important;
  }
  .pr-48-pc {
    padding-right: 48px !important;
  }
  .plr-48-pc {
    padding-inline: 48px !important;
  }
}
.fs-48 {
  font-size: 48px !important;
}

@media (min-width: 768px) {
  .fs-48-pc {
    font-size: 48px !important;
  }
}
/* マージン関連クラス */
.m-56 {
  margin: 56px !important;
}

.mt-56 {
  margin-top: 56px !important;
}

.mb-56 {
  margin-bottom: 56px !important;
}

.mtb-56 {
  margin-block: 56px !important;
}

.ml-56 {
  margin-left: 56px !important;
}

.mr-56 {
  margin-right: 56px !important;
}

.mlr-56 {
  margin-inline: 56px !important;
}

@media (min-width: 768px) {
  .m-56-pc {
    margin: 56px !important;
  }
  .mt-56-pc {
    margin-top: 56px !important;
  }
  .mb-56-pc {
    margin-bottom: 56px !important;
  }
  .mtb-56-pc {
    margin-block: 56px !important;
  }
  .ml-56-pc {
    margin-left: 56px !important;
  }
  .mr-56-pc {
    margin-right: 56px !important;
  }
  .mlr-56-pc {
    margin-inline: 56px !important;
  }
}
/* パディング関連クラス */
.p-56 {
  padding: 56px !important;
}

.pt-56 {
  padding-top: 56px !important;
}

.pb-56 {
  padding-bottom: 56px !important;
}

.ptb-56 {
  padding-block: 56px !important;
}

.pl-56 {
  padding-left: 56px !important;
}

.pr-56 {
  padding-right: 56px !important;
}

.plr-56 {
  padding-inline: 56px !important;
}

@media (min-width: 768px) {
  .p-56-pc {
    padding: 56px !important;
  }
  .pt-56-pc {
    padding-top: 56px !important;
  }
  .pb-56-pc {
    padding-bottom: 56px !important;
  }
  .ptb-56-pc {
    padding-block: 56px !important;
  }
  .pl-56-pc {
    padding-left: 56px !important;
  }
  .pr-56-pc {
    padding-right: 56px !important;
  }
  .plr-56-pc {
    padding-inline: 56px !important;
  }
}
.fs-56 {
  font-size: 56px !important;
}

@media (min-width: 768px) {
  .fs-56-pc {
    font-size: 56px !important;
  }
}
/* マージン関連クラス */
.m-64 {
  margin: 64px !important;
}

.mt-64 {
  margin-top: 64px !important;
}

.mb-64 {
  margin-bottom: 64px !important;
}

.mtb-64 {
  margin-block: 64px !important;
}

.ml-64 {
  margin-left: 64px !important;
}

.mr-64 {
  margin-right: 64px !important;
}

.mlr-64 {
  margin-inline: 64px !important;
}

@media (min-width: 768px) {
  .m-64-pc {
    margin: 64px !important;
  }
  .mt-64-pc {
    margin-top: 64px !important;
  }
  .mb-64-pc {
    margin-bottom: 64px !important;
  }
  .mtb-64-pc {
    margin-block: 64px !important;
  }
  .ml-64-pc {
    margin-left: 64px !important;
  }
  .mr-64-pc {
    margin-right: 64px !important;
  }
  .mlr-64-pc {
    margin-inline: 64px !important;
  }
}
/* パディング関連クラス */
.p-64 {
  padding: 64px !important;
}

.pt-64 {
  padding-top: 64px !important;
}

.pb-64 {
  padding-bottom: 64px !important;
}

.ptb-64 {
  padding-block: 64px !important;
}

.pl-64 {
  padding-left: 64px !important;
}

.pr-64 {
  padding-right: 64px !important;
}

.plr-64 {
  padding-inline: 64px !important;
}

@media (min-width: 768px) {
  .p-64-pc {
    padding: 64px !important;
  }
  .pt-64-pc {
    padding-top: 64px !important;
  }
  .pb-64-pc {
    padding-bottom: 64px !important;
  }
  .ptb-64-pc {
    padding-block: 64px !important;
  }
  .pl-64-pc {
    padding-left: 64px !important;
  }
  .pr-64-pc {
    padding-right: 64px !important;
  }
  .plr-64-pc {
    padding-inline: 64px !important;
  }
}
.fs-64 {
  font-size: 64px !important;
}

@media (min-width: 768px) {
  .fs-64-pc {
    font-size: 64px !important;
  }
}
/* マージン関連クラス */
.m-72 {
  margin: 72px !important;
}

.mt-72 {
  margin-top: 72px !important;
}

.mb-72 {
  margin-bottom: 72px !important;
}

.mtb-72 {
  margin-block: 72px !important;
}

.ml-72 {
  margin-left: 72px !important;
}

.mr-72 {
  margin-right: 72px !important;
}

.mlr-72 {
  margin-inline: 72px !important;
}

@media (min-width: 768px) {
  .m-72-pc {
    margin: 72px !important;
  }
  .mt-72-pc {
    margin-top: 72px !important;
  }
  .mb-72-pc {
    margin-bottom: 72px !important;
  }
  .mtb-72-pc {
    margin-block: 72px !important;
  }
  .ml-72-pc {
    margin-left: 72px !important;
  }
  .mr-72-pc {
    margin-right: 72px !important;
  }
  .mlr-72-pc {
    margin-inline: 72px !important;
  }
}
/* パディング関連クラス */
.p-72 {
  padding: 72px !important;
}

.pt-72 {
  padding-top: 72px !important;
}

.pb-72 {
  padding-bottom: 72px !important;
}

.ptb-72 {
  padding-block: 72px !important;
}

.pl-72 {
  padding-left: 72px !important;
}

.pr-72 {
  padding-right: 72px !important;
}

.plr-72 {
  padding-inline: 72px !important;
}

@media (min-width: 768px) {
  .p-72-pc {
    padding: 72px !important;
  }
  .pt-72-pc {
    padding-top: 72px !important;
  }
  .pb-72-pc {
    padding-bottom: 72px !important;
  }
  .ptb-72-pc {
    padding-block: 72px !important;
  }
  .pl-72-pc {
    padding-left: 72px !important;
  }
  .pr-72-pc {
    padding-right: 72px !important;
  }
  .plr-72-pc {
    padding-inline: 72px !important;
  }
}
.fs-72 {
  font-size: 72px !important;
}

@media (min-width: 768px) {
  .fs-72-pc {
    font-size: 72px !important;
  }
}
/* マージン関連クラス */
.m-80 {
  margin: 80px !important;
}

.mt-80 {
  margin-top: 80px !important;
}

.mb-80 {
  margin-bottom: 80px !important;
}

.mtb-80 {
  margin-block: 80px !important;
}

.ml-80 {
  margin-left: 80px !important;
}

.mr-80 {
  margin-right: 80px !important;
}

.mlr-80 {
  margin-inline: 80px !important;
}

@media (min-width: 768px) {
  .m-80-pc {
    margin: 80px !important;
  }
  .mt-80-pc {
    margin-top: 80px !important;
  }
  .mb-80-pc {
    margin-bottom: 80px !important;
  }
  .mtb-80-pc {
    margin-block: 80px !important;
  }
  .ml-80-pc {
    margin-left: 80px !important;
  }
  .mr-80-pc {
    margin-right: 80px !important;
  }
  .mlr-80-pc {
    margin-inline: 80px !important;
  }
}
/* パディング関連クラス */
.p-80 {
  padding: 80px !important;
}

.pt-80 {
  padding-top: 80px !important;
}

.pb-80 {
  padding-bottom: 80px !important;
}

.ptb-80 {
  padding-block: 80px !important;
}

.pl-80 {
  padding-left: 80px !important;
}

.pr-80 {
  padding-right: 80px !important;
}

.plr-80 {
  padding-inline: 80px !important;
}

@media (min-width: 768px) {
  .p-80-pc {
    padding: 80px !important;
  }
  .pt-80-pc {
    padding-top: 80px !important;
  }
  .pb-80-pc {
    padding-bottom: 80px !important;
  }
  .ptb-80-pc {
    padding-block: 80px !important;
  }
  .pl-80-pc {
    padding-left: 80px !important;
  }
  .pr-80-pc {
    padding-right: 80px !important;
  }
  .plr-80-pc {
    padding-inline: 80px !important;
  }
}
.fs-80 {
  font-size: 80px !important;
}

@media (min-width: 768px) {
  .fs-80-pc {
    font-size: 80px !important;
  }
}
/* マージン関連クラス */
.m-88 {
  margin: 88px !important;
}

.mt-88 {
  margin-top: 88px !important;
}

.mb-88 {
  margin-bottom: 88px !important;
}

.mtb-88 {
  margin-block: 88px !important;
}

.ml-88 {
  margin-left: 88px !important;
}

.mr-88 {
  margin-right: 88px !important;
}

.mlr-88 {
  margin-inline: 88px !important;
}

@media (min-width: 768px) {
  .m-88-pc {
    margin: 88px !important;
  }
  .mt-88-pc {
    margin-top: 88px !important;
  }
  .mb-88-pc {
    margin-bottom: 88px !important;
  }
  .mtb-88-pc {
    margin-block: 88px !important;
  }
  .ml-88-pc {
    margin-left: 88px !important;
  }
  .mr-88-pc {
    margin-right: 88px !important;
  }
  .mlr-88-pc {
    margin-inline: 88px !important;
  }
}
/* パディング関連クラス */
.p-88 {
  padding: 88px !important;
}

.pt-88 {
  padding-top: 88px !important;
}

.pb-88 {
  padding-bottom: 88px !important;
}

.ptb-88 {
  padding-block: 88px !important;
}

.pl-88 {
  padding-left: 88px !important;
}

.pr-88 {
  padding-right: 88px !important;
}

.plr-88 {
  padding-inline: 88px !important;
}

@media (min-width: 768px) {
  .p-88-pc {
    padding: 88px !important;
  }
  .pt-88-pc {
    padding-top: 88px !important;
  }
  .pb-88-pc {
    padding-bottom: 88px !important;
  }
  .ptb-88-pc {
    padding-block: 88px !important;
  }
  .pl-88-pc {
    padding-left: 88px !important;
  }
  .pr-88-pc {
    padding-right: 88px !important;
  }
  .plr-88-pc {
    padding-inline: 88px !important;
  }
}
.fs-88 {
  font-size: 88px !important;
}

@media (min-width: 768px) {
  .fs-88-pc {
    font-size: 88px !important;
  }
}
/* マージン関連クラス */
.m-96 {
  margin: 96px !important;
}

.mt-96 {
  margin-top: 96px !important;
}

.mb-96 {
  margin-bottom: 96px !important;
}

.mtb-96 {
  margin-block: 96px !important;
}

.ml-96 {
  margin-left: 96px !important;
}

.mr-96 {
  margin-right: 96px !important;
}

.mlr-96 {
  margin-inline: 96px !important;
}

@media (min-width: 768px) {
  .m-96-pc {
    margin: 96px !important;
  }
  .mt-96-pc {
    margin-top: 96px !important;
  }
  .mb-96-pc {
    margin-bottom: 96px !important;
  }
  .mtb-96-pc {
    margin-block: 96px !important;
  }
  .ml-96-pc {
    margin-left: 96px !important;
  }
  .mr-96-pc {
    margin-right: 96px !important;
  }
  .mlr-96-pc {
    margin-inline: 96px !important;
  }
}
/* パディング関連クラス */
.p-96 {
  padding: 96px !important;
}

.pt-96 {
  padding-top: 96px !important;
}

.pb-96 {
  padding-bottom: 96px !important;
}

.ptb-96 {
  padding-block: 96px !important;
}

.pl-96 {
  padding-left: 96px !important;
}

.pr-96 {
  padding-right: 96px !important;
}

.plr-96 {
  padding-inline: 96px !important;
}

@media (min-width: 768px) {
  .p-96-pc {
    padding: 96px !important;
  }
  .pt-96-pc {
    padding-top: 96px !important;
  }
  .pb-96-pc {
    padding-bottom: 96px !important;
  }
  .ptb-96-pc {
    padding-block: 96px !important;
  }
  .pl-96-pc {
    padding-left: 96px !important;
  }
  .pr-96-pc {
    padding-right: 96px !important;
  }
  .plr-96-pc {
    padding-inline: 96px !important;
  }
}
.fs-96 {
  font-size: 96px !important;
}

@media (min-width: 768px) {
  .fs-96-pc {
    font-size: 96px !important;
  }
}
/* width */
.w-fit {
  width: fit-content !important;
}

.w-100 {
  width: 100% !important;
}

/* Max Width */
.max-w-content {
  max-width: 1100px !important;
}

.max-w-100 {
  max-width: 100% !important;
}

/*--------------------------------------------------------------------------
  Text Utilities
---------------------------------------------------------------------------*/
/* Text Alignment */
.text-center {
  text-align: center !important;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

/* Font Weight */
.font-300 {
  font-weight: 300 !important;
}

.font-400 {
  font-weight: 400 !important;
}

.font-500 {
  font-weight: 500 !important;
}

.font-600 {
  font-weight: 600 !important;
}

.font-700 {
  font-weight: 700 !important;
}

.font-800 {
  font-weight: 800 !important;
}

.font-900 {
  font-weight: 900 !important;
}

/* Line Height */
.lh-10 {
  line-height: 1 !important;
}

.lh-11 {
  line-height: 1.1 !important;
}

.lh-12 {
  line-height: 1.2 !important;
}

.lh-13 {
  line-height: 1.3 !important;
}

.lh-14 {
  line-height: 1.4 !important;
}

.lh-15 {
  line-height: 1.5 !important;
}

.lh-16 {
  line-height: 1.6 !important;
}

.lh-18 {
  line-height: 1.8 !important;
}

.lh-20 {
  line-height: 2 !important;
}

/* Text Decoration */
.underline {
  text-decoration: underline;
}

/* Text Transform */
.uppercase {
  text-transform: uppercase !important;
}

.capitalize {
  text-transform: capitalize !important;
}

.normal-case {
  text-transform: none !important;
}

/*--------------------------------------------------------------------------
  List Utilities
--------------------------------------------------------------------------*/
.dotted-list {
  list-style: "・";
  list-style-position: outside;
  padding-left: 14px;
}
.dotted-list li {
  margin-bottom: 8px;
}/*# sourceMappingURL=style.css.map */