@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
p,
ul,
ol,
figure {
  margin: 0;
  padding: 0;
}

ul,
ol {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
}

html {
  scroll-behavior: auto;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  margin: 0;
  padding-top: 80px;
  line-height: 1.6;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  body {
    padding-top: 64px;
  }
}

.jost {
  font-family: "Jost", sans-serif;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media screen and (max-width: 768px) {
  .container.no-padding {
    padding: 0;
  }
}

.section-title {
  text-align: center;
  font-size: clamp(1.6rem, 1.091rem + 2.55vw, 3rem);
  margin-bottom: 40px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

p {
  line-height: 1.8;
  font-size: clamp(0.875rem, 0.83rem + 0.23vw, 1rem);
}

.blue-text {
  color: #00AFE5;
}

.bold {
  font-weight: 700;
}

.logo__text {
  display: inline-block;
  margin-right: 0.75rem;
}
@media screen and (max-width: 768px) {
  .logo__text {
    width: 296px;
  }
}

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

.text-larger {
  font-size: clamp(1.125rem, 0.989rem + 0.68vw, 1.5rem);
}

.marker-yellow {
  background: linear-gradient(transparent 0%, #fff000 0%);
  background-size: 100% 1rem;
  background-repeat: no-repeat;
  background-position: bottom;
  display: inline;
}

.dot-emphasis {
  position: relative;
  display: inline-block;
}

.dot-emphasis::before {
  content: "●";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: 6px;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .dot-emphasis::before {
    font-size: 8px;
    font-size: 7px;
    top: 0;
  }
}

.btn-primary {
  background: #FFEE00;
  padding: 1.5rem 2rem;
  max-width: 514px;
  border-radius: 12px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 0 auto;
  gap: 0.875rem;
  font-size: 1.8rem;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .btn-primary {
    font-size: 1.5rem;
    padding: 1rem;
    border-radius: 8px;
  }
}
.btn-primary::after {
  content: "";
  position: absolute;
  right: 1.75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 29px;
  height: 12px;
  background: url("../img/icon_arrow.svg") no-repeat center center;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .btn-primary::after {
    right: 1rem;
    width: 21px;
    height: 9px;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: #fff;
  z-index: 1000;
}
@media screen and (max-width: 1250px) {
  .header {
    height: 64px;
  }
}
.header__inner {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__logo {
  margin: 0;
  width: 20%;
}
@media screen and (max-width: 1250px) {
  .header__logo {
    width: 60%;
  }
}
.header__logo a {
  display: block;
  padding: 20px 1rem;
}
.header__menu {
  display: flex;
  align-items: center;
  height: 100%;
}
.header__list {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
}
.header__list a {
  text-decoration: none;
  color: #333;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0;
}
.header__list a:hover {
  color: #00AFE5;
}
.header__list li:last-child {
  margin-right: 2rem;
}
.header__list li:last-child a {
  margin: 0 auto;
  background: #00AFE5;
  padding: 10px 1.25rem;
  border-radius: 4px;
  color: #fff;
  font-size: 14px;
}
.header__right {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  height: 100%;
}
@media screen and (max-width: 1250px) {
  .header__right {
    width: 64px;
  }
}
.header__cta-pc {
  background: #FFEE00;
  padding: 10px 1.8rem;
  height: 100%;
}
.header__cta-pc a {
  font-size: clamp(0.875rem, 0.648rem + 1.14vw, 1.5rem);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 900;
  height: 100%;
}
.header__cta-sp {
  display: none;
}
.header__hamburger {
  display: none;
}

@media (max-width: 1250px) {
  .header__nav {
    position: fixed;
    top: -100vh;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    padding: 24px;
    transition: top 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    border-top: 1px solid #E5E8EB;
  }
  .header__nav.is-active {
    top: 63px;
  }
  .header__nav .sp-only {
    display: block !important;
  }
  .header__list {
    flex-direction: column;
    align-items: start;
    gap: 0;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
  }
  .header__list a {
    padding: 1rem;
    display: block;
    width: 100%;
  }
  .header__list li:last-child {
    margin-right: 0;
    margin-top: 2rem;
    padding: 0;
    width: 100%;
  }
  .header__list li:last-child a {
    font-size: 0.875rem;
    width: 100%;
    max-width: 514px;
    text-align: center;
  }
  .header__cta-pc {
    display: none;
  }
  .header__cta-sp {
    display: block;
    margin-top: 40px;
    text-align: center;
  }
  .header__hamburger {
    display: block;
    width: 30px;
    height: 54px;
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1100;
  }
  .header__hamburger span {
    position: absolute;
    width: 30px;
    height: 1px;
    background: #333;
    transition: 0.3s;
    left: 0;
  }
  .header__hamburger span:nth-child(1) {
    top: 8px;
  }
  .header__hamburger span:nth-child(2) {
    top: 16px;
  }
  .header__hamburger span:nth-child(3) {
    top: 24px;
  }
  .header__hamburger img {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
  }
  .header__hamburger.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .header__hamburger.is-open span:nth-child(2) {
    opacity: 0;
  }
  .header__hamburger.is-open span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
  }
}
.sp-only {
  display: block;
}

.pc-only {
  display: none;
}

@media screen and (min-width: 768px) {
  .sp-only {
    display: none;
  }
  .pc-only {
    display: block;
  }
}
.fv {
  background: url("../img/fv_bg.webp") center/cover no-repeat;
  position: relative;
  padding: 1.25rem;
}
@media screen and (max-width: 768px) {
  .fv {
    padding: 0.5rem 20px 2.2rem;
  }
}
.fv__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 1rem 0;
}
@media screen and (max-width: 768px) {
  .fv__inner {
    flex-direction: column;
  }
}
.fv__content {
  flex: 1;
  margin-right: -40px;
  z-index: 2;
}
.fv__content-pr {
  margin-right: 70px;
}
.fv__content .note {
  font-size: 0.75rem;
  margin-top: 10px;
  color: #fff;
  text-align: right;
  margin-right: 70px;
  margin-bottom: -30px;
}
@media screen and (max-width: 768px) {
  .fv__content {
    margin: 0 auto;
  }
  .fv__content .note {
    margin-right: 0;
    margin-bottom: 0;
    position: absolute;
    right: 10px;
    bottom: 5px;
    font-size: 0.625rem;
  }
}
.fv__img {
  width: 61%;
}
@media screen and (max-width: 768px) {
  .fv__img {
    width: 100%;
  }
}

.about {
  padding: 40px 0;
  background: url("../img/about_bg.webp") center bottom/100% auto no-repeat;
}
@media screen and (max-width: 768px) {
  .about {
    background-size: auto 40%;
  }
}
.about .container {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .about .container {
    flex-direction: column;
    gap: 2rem;
  }
}
.about .section-title {
  text-align: left;
}
.about__content {
  flex: 1;
}
.about__content p {
  margin-bottom: 40px;
}
.about__content > .bold {
  font-size: 1.25rem;
}
.about__content .about__box-wrapper {
  position: relative;
  padding-top: 22px;
}
@media screen and (max-width: 768px) {
  .about__content .about__box-wrapper {
    padding-top: 16px;
  }
}
.about__content .about__box-wrapper__title {
  background: #001E3C;
  color: #fff;
  padding: 0.5rem 1.5rem;
  border-radius: 4px;
  position: absolute;
  top: 0px;
  left: 1.5rem;
  font-size: clamp(0.875rem, 0.83rem + 0.23vw, 1rem);
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .about__content .about__box-wrapper__title {
    padding: 0.33rem 1.125rem;
    left: 1.125rem;
  }
}
.about__content .about__box-wrapper__text {
  background: #F2F4F5;
  padding: 36px 30px 23px;
  border-radius: 8px;
  font-size: 0.875rem;
}
@media screen and (max-width: 768px) {
  .about__content .about__box-wrapper__text {
    padding: 27px 16px 23px;
  }
}
.about__img {
  width: 50%;
}
@media screen and (min-width: 1400px) {
  .about__img {
    margin-right: -6vw;
    width: 62%;
  }
}
@media screen and (max-width: 768px) {
  .about__img {
    width: 100%;
  }
}

.reason {
  padding: 100px 0;
  background-color: #00AFE5;
  background-image: url("../img/reason_bg.webp");
  background-position: center top;
  background-size: 100%;
  background-repeat: no-repeat;
}
@media screen {
  .reason {
    padding: 40px 0;
  }
}
.reason .section-title {
  color: #fff;
  margin-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  .reason .section-title {
    margin-bottom: 2rem;
  }
}
.reason .section-title .small {
  font-size: 2rem;
}
.reason .section-title .marker-yellow {
  position: relative;
  display: inline-block;
  z-index: 1;
}
.reason .section-title .marker-yellow::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  -webkit-text-stroke: 8px #1AB7E8;
}
.reason .reason-list {
  display: flex;
  gap: 24px;
  margin-bottom: 5rem;
  padding-top: 30px;
}
@media screen and (max-width: 768px) {
  .reason .reason-list {
    padding-top: 23px;
    margin-bottom: 40px;
  }
}
@media (min-width: 769px) {
  .reason .reason-list .reason-list__inner {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    transform: none !important;
    width: 100% !important;
  }
  .reason .reason-list .reason-list__item {
    width: calc(33.333% - 14px) !important;
    flex: 1;
  }
  .reason .reason-list .swiper-pagination {
    display: none;
  }
}
.reason .reason-list {
  /* SP: Swiperの基本スタイル */
}
@media (max-width: 768px) {
  .reason .reason-list .reason-list {
    padding-bottom: 40px;
  }
}
.reason .reason-list .reason-list__item {
  width: calc((100% - 48px) / 3);
  position: relative;
  background: #fff;
  padding: 40px 24px 24px;
  border-radius: 80px 80px 16px 16px;
  height: auto;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .reason .reason-list .reason-list__item {
    width: 100%;
  }
}
.reason .reason-list .reason-list__item .reason-list__item__point {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #fff;
  font-family: "Jost", sans-serif;
  line-height: 1;
  background: #004196;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 5px;
}
@media screen and (max-width: 768px) {
  .reason .reason-list .reason-list__item .reason-list__item__point {
    width: 45px;
    height: 45px;
    top: -22.5px;
  }
}
.reason .reason-list .reason-list__item .reason-list__item__point small {
  font-size: clamp(0.563rem, 0.494rem + 0.34vw, 0.75rem);
  font-weight: 500;
}
.reason .reason-list .reason-list__item .reason-list__item__point span {
  font-size: clamp(1.125rem, 0.989rem + 0.68vw, 1.5rem);
  color: #fff;
  font-weight: 700;
}
.reason .reason-list .reason-list__item .reason-list__item__title {
  font-size: clamp(1.313rem, 1.153rem + 0.8vw, 1.75rem);
  color: #00AFE5;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 768px) {
  .reason .reason-list .reason-list__item .reason-list__item__title {
    margin-bottom: 1.125rem;
  }
}
.reason .reason-list .reason-list__item .reason-list__item__img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}
.reason .reason-list .reason-list__item .reason-list__item__text {
  font-size: 0.875rem;
  flex-grow: 1;
}
.reason .results {
  background: #fff;
  border-radius: 40px;
  padding: 3.5rem;
}
@media screen and (max-width: 768px) {
  .reason .results {
    padding: 2rem 1rem;
  }
}
.reason .results .results__inner {
  display: flex;
  gap: 3rem;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 768px) {
  .reason .results .results__inner {
    flex-direction: column;
    gap: 2rem;
  }
}
.reason .results .results__inner .results__content {
  flex: 1;
}
.reason .results .results__inner .results__content h3 {
  font-size: clamp(1.4rem, 1.182rem + 1.09vw, 2rem);
  line-height: 1.5;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.reason .results .results__inner .results__img {
  width: 22%;
}
@media screen and (max-width: 768px) {
  .reason .results .results__inner .results__img {
    width: 80%;
    margin: 0 auto;
  }
}
.reason .results .results__flex {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 768px) {
  .reason .results .results__flex {
    flex-direction: column;
  }
}
.reason .results .results__flex .results__flex__item {
  background: #F0F7FF;
  padding: 2rem;
  border-radius: 24px;
}
@media screen and (max-width: 768px) {
  .reason .results .results__flex .results__flex__item {
    padding: 2rem 1rem;
  }
}
.reason .results .results__flex .results__flex__item .results__flex__item__title {
  color: #00AFE5;
  font-weight: 700;
  text-align: center;
}
.reason .results .results__flex .results__flex__item .results__flex__item__title span {
  background: #fff;
  border-radius: 20px;
  padding: 3px 20px;
}
.reason .results .results__flex .results__flex__item .results__flex__item__number {
  font-size: clamp(1.5rem, 1.318rem + 0.91vw, 2rem);
  font-weight: 700;
  text-align: center;
}
.reason .results .results__flex .results__flex__item .results__flex__item__number .jost {
  font-size: clamp(3rem, 2.636rem + 1.82vw, 4rem);
  margin: 0 5px;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .reason .results .text-center.text-larger {
    text-align: left;
    font-size: 1rem;
  }
}

.problem {
  background: linear-gradient(#00AFE5 0%, #F0F7FF 100%);
}
.problem .problem__bg {
  background: #fff;
  border-radius: 200px;
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  .problem .problem__bg {
    border-radius: 0;
    padding: 60px 0;
  }
}
.problem .problem__subtitle {
  font-size: clamp(1rem, 0.636rem + 1.82vw, 2rem);
  font-weight: 700;
  text-align: center;
}
.problem .problem__subtitle .bg01 {
  background: url("../img/problem_title_bg01.svg") no-repeat center center/contain;
  display: inline-block;
  padding: 20px 20px;
}
.problem .problem__subtitle .bg02 {
  background: url("../img/problem_title_bg02.svg") no-repeat center center/contain;
  display: inline-block;
  padding: 20px 25px 20px 0;
}
@media screen and (max-width: 768px) {
  .problem .section-title {
    font-size: 1.5rem;
  }
}
.problem .problem-list {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  margin-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  .problem .problem-list {
    flex-direction: column;
    gap: 1.5rem;
  }
}
.problem .problem-list .problem-item {
  width: calc(50% - 2.5rem);
  background: #F2F4F5;
  padding: 1.5rem;
  border-radius: 16px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .problem .problem-list .problem-item {
    width: 100%;
    padding: 24px 16px;
  }
}
.problem .problem-list .problem-item .problem-item__title {
  font-size: clamp(1.125rem, 0.92rem + 1.02vw, 1.688rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.problem .problem-list .problem-item .problem-item__img {
  position: absolute;
  right: -1.75rem;
  bottom: -1.75rem;
  width: 35%;
  height: auto;
  max-width: 197px;
}
@media screen and (max-width: 1200px) {
  .problem .problem-list .problem-item .problem-item__img {
    width: 30%;
  }
}
@media screen and (max-width: 768px) {
  .problem .problem-list .problem-item .problem-item__img {
    width: 19%;
    min-width: 80px;
    height: auto;
    right: -0.8rem;
    top: -1rem;
    bottom: auto;
  }
}
.problem .problem-list .problem-item .problem-checklist .problem-checklist__item {
  font-weight: 700;
  padding: 0.625rem 0 0.625rem 2rem;
  border-bottom: 1px solid #808E9D;
  position: relative;
  font-size: clamp(0.875rem, 0.83rem + 0.23vw, 1rem);
}
@media screen and (min-width: 768px) {
  .problem .problem-list .problem-item .problem-checklist .problem-checklist__item:last-child {
    padding-right: 25%;
  }
}
@media screen and (max-width: 768px) {
  .problem .problem-list .problem-item .problem-checklist .problem-checklist__item {
    padding: 8px 0 8px 32px;
  }
}
.problem .problem-list .problem-item .problem-checklist .problem-checklist__item::before {
  content: "";
  background: url("../img/check_icon.svg") no-repeat center center/contain;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(1.5rem, 1.409rem + 0.45vw, 1.75rem);
  height: clamp(1.5rem, 1.409rem + 0.45vw, 1.75rem);
}
@media screen and (max-width: 768px) {
  .problem .problem-list + .text-center.text-larger {
    text-align: left;
  }
}

.menu {
  background: #F0F7FF;
  padding: 120px 0 100px;
}
@media screen and (max-width: 768px) {
  .menu {
    padding: 60px 0 40px;
  }
}
.menu .section-title {
  position: relative;
  z-index: 1;
}
.menu .section-title::before {
  content: "";
  background: url("../img/menu_title_bg.svg") no-repeat center center/contain;
  display: block;
  width: clamp(15.875rem, 13.92rem + 9.77vw, 21.25rem);
  height: 10rem;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .menu .section-title::before {
    width: 150px;
  }
}
.menu .section-strength {
  text-align: center;
  font-size: clamp(1.7rem, 1.409rem + 1.45vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  .menu .section-strength {
    margin-bottom: 2.2rem;
  }
}
.menu .menu__content {
  display: flex;
  gap: 1.375rem;
  padding-top: 5.85rem;
}
@media screen and (max-width: 768px) {
  .menu .menu__content {
    flex-direction: column;
    padding: 0;
  }
}
.menu .menu__content .menu-item {
  width: calc((100% - 2.75rem - 1.875rem) / 2);
  position: relative;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .menu .menu__content .menu-item {
    width: 100%;
    margin-top: 80px;
  }
}
.menu .menu__content .menu-item .menu-item__baloon {
  position: absolute;
  top: -5.85rem;
  left: 50%;
  transform: translateX(-50%);
  background: #00AFE5;
  color: #fff;
  padding: 0.25rem;
  border-radius: 40px;
  width: 100%;
  max-width: 288px;
  font-size: clamp(1.3rem, 1.118rem + 0.91vw, 1.8rem);
  font-weight: 700;
  text-align: center;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .menu .menu__content .menu-item .menu-item__baloon {
    top: -70px;
  }
}
.menu .menu__content .menu-item .menu-item__baloon::before {
  content: "";
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  border: 12px solid transparent;
  border-top: 12px solid #00AFE5;
  z-index: -1;
}
.menu .menu__content .menu-item .menu-item__img {
  position: relative;
}
.menu .menu__content .menu-item .menu-item__img img {
  border-radius: 24px 24px 0 0;
}
@media screen and (max-width: 768px) {
  .menu .menu__content .menu-item .menu-item__img img {
    aspect-ratio: 358/240;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.menu .menu__content .menu-item .menu-item__img .menu-item__img-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
}
.menu .menu__content .menu-item .menu-item__img .menu-item__img-inner .menu-item__img-inner__title {
  font-size: clamp(2.7rem, 2.227rem + 2.36vw, 4rem);
  font-weight: 700;
  margin-bottom: 10px;
}
.menu .menu__content .menu-item .menu-item__img .menu-item__img-inner .menu-item__img-inner__sub {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.6;
}
.menu .menu__content .menu-item .menu-item__content {
  flex: 1;
  padding: 2rem;
  background: #fff;
  border-radius: 10px;
  border-radius: 0 0 24px 24px;
}
.menu .menu__content .menu-item .menu-item__content .menu-item__name {
  text-align: center;
  max-width: 240px;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 1.25rem;
}
.menu .menu__content .menu-item .menu-item__content .menu-item__name + p:not(:last-child) {
  margin-bottom: 1.5rem;
}
.menu .menu__content .menu-item .menu-item__content .menu-item__name span {
  background: rgba(0, 175, 229, 0.1019607843);
  padding: 0.25rem 1rem;
  border-radius: 30px;
  color: #00AFE5;
  font-weight: 700;
}
.menu .menu__content .menu-item .menu-item__content .note {
  font-size: 0.75rem;
  margin-top: 1rem;
}
.menu .menu__content .cross-line {
  width: 5rem;
  background: url("../img/cross.svg") no-repeat center center/contain;
}
@media screen and (max-width: 768px) {
  .menu .menu__content .cross-line {
    width: auto;
    height: 40px;
  }
}
.menu .menu-price__wrapper {
  margin-top: 5rem;
  text-align: center;
  background: #fff;
  padding: 24px 2rem 2rem;
  border-radius: 24px;
}
@media screen and (max-width: 768px) {
  .menu .menu-price__wrapper {
    padding: 20px 10px 20px;
    margin-top: 40px;
  }
}
.menu .menu-price__wrapper .menu-price__title {
  font-weight: 700;
  margin: 0 auto 1.75rem;
  color: #00AFE5;
  padding: 0.25rem 2rem;
  max-width: 240px;
  border-radius: 20px;
  background: rgba(0, 175, 229, 0.1019607843);
}
@media screen and (max-width: 768px) {
  .menu .menu-price__wrapper .menu-price__title {
    margin-bottom: 1rem;
  }
}
.menu .menu-price__wrapper .menu-price__inner {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .menu .menu-price__wrapper .menu-price__inner img {
    height: 45px;
  }
}
.menu .menu-price__wrapper .menu-price__inner .menu-price__text .jost {
  font-size: clamp(1.875rem, 1.193rem + 3.41vw, 3.75rem);
}
.menu .menu-price__wrapper .menu-price__inner .menu-price__text .unit {
  font-size: clamp(0.5rem, -0.045rem + 2.73vw, 2rem);
}
@media screen and (max-width: 768px) {
  .menu .menu-price__wrapper .menu-price__inner .menu-price__text {
    letter-spacing: 0;
  }
  .menu .menu-price__wrapper .menu-price__inner .menu-price__text .jost {
    line-height: 1;
    position: relative;
    top: -13px;
  }
  .menu .menu-price__wrapper .menu-price__inner .menu-price__text .text-larger.bold {
    display: block;
    line-height: 1;
    font-size: 10px;
  }
  .menu .menu-price__wrapper .menu-price__inner .menu-price__text .text-larger.bold + .bold {
    font-size: 8px;
    position: relative;
    top: -10px;
  }
  .menu .menu-price__wrapper .menu-price__inner .menu-price__text .unit {
    position: relative;
    top: -13px;
  }
}
.menu .menu-price__wrapper .menu-price__inner .per {
  margin: 0 1rem;
}
.menu .menu-price__wrapper .menu-price__inner .menu-price__price-text {
  line-height: 1;
}
.menu .menu-price__wrapper .menu-price__inner .menu-price__price-text .jost {
  font-size: clamp(2.6rem, 1.364rem + 6.18vw, 6rem);
}
.menu .menu-price__wrapper .menu-price__inner .menu-price__price-text .unit {
  font-size: clamp(1rem, 0.273rem + 3.64vw, 3rem);
}

.flow {
  background: #F0F7FF;
}
.flow .flow-bg {
  background: #fff;
  width: 100%;
  border-radius: 12.5rem;
  padding: 6.25rem 0;
}
@media screen and (max-width: 768px) {
  .flow .flow-bg {
    border-radius: 0;
    padding: 3rem 0 0;
  }
}
.flow .container {
  max-width: 1000px;
}
.flow .flow__title-icon {
  margin: 0 auto 1rem;
  display: block;
}
@media screen and (max-width: 768px) {
  .flow .flow__title-icon {
    width: 40px;
  }
}
.flow .section-strength {
  text-align: center;
  font-size: clamp(1.375rem, 0.966rem + 2.05vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1.25rem;
}
.flow .section-subtitle {
  text-align: center;
  font-size: clamp(0.875rem, 0.648rem + 1.14vw, 1.5rem);
  margin-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  .flow .section-subtitle {
    margin-bottom: 40px;
  }
}
.flow .flow-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .flow .flow-list {
    gap: 0;
  }
}
.flow .flow-list .flow-item {
  display: flex;
  gap: 2rem;
  background-color: #F2F4F5;
  border-radius: 16px;
  padding: 2rem;
}
@media screen and (max-width: 768px) {
  .flow .flow-list .flow-item {
    gap: 1.5rem;
    flex-direction: column;
    padding: 2rem 1rem;
  }
  .flow .flow-list .flow-item .flow-title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 1rem;
  }
}
.flow .flow-list .flow-item .flow-content {
  flex: 1;
}
.flow .flow-list .flow-item .flow-item__number {
  color: #00AFE5;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.25rem 0.5rem;
  border-radius: 20px;
  background: #fff;
  display: inline-block;
}
.flow .flow-list .flow-item .flow-item__number .num {
  margin-left: 3px;
}
@media screen and (max-width: 768px) {
  .flow .flow-list .flow-item .flow-item__number {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 50%;
    font-size: 12px;
    line-height: 1;
    width: 50px;
    height: 50px;
    justify-content: center;
  }
  .flow .flow-list .flow-item .flow-item__number .num {
    margin-left: 0;
    font-size: 24px;
  }
}
.flow .flow-list .flow-item .flow-item__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 1rem 0;
}
@media screen and (max-width: 768px) {
  .flow .flow-list .flow-item .flow-item__title {
    line-height: 1.2;
    margin: 0;
  }
}
.flow .flow-list .flow-item .flow-item__img {
  position: relative;
  width: 33%;
}
@media screen and (max-width: 768px) {
  .flow .flow-list .flow-item .flow-item__img {
    width: 100%;
  }
}
.flow .flow-list .flow-item .flow-item__img .flow-item__img-text {
  position: absolute;
  bottom: -0.75rem;
  right: -0.75rem;
  font-size: 1.417rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #00AFE5;
  border-radius: 50%;
  width: 5rem;
  height: 5rem;
  border: 4px solid #fff;
  letter-spacing: 0;
}
.flow .flow-list .flow-item .flow-item__img .flow-item__img-text .jost {
  font-size: 2.5rem;
}
.flow .flow-list {
  /* --- SP用 (768px以下) --- */
}
@media (max-width: 768px) {
  .flow .flow-list .flow-list__inner.swiper-wrapper {
    display: flex;
    /* 横並びを強制 */
    align-items: stretch;
    /* 高さを一番高いスライドに合わせる */
  }
  .flow .flow-list .flow-item.swiper-slide {
    height: auto;
    /* stretchを効かせるため */
    display: flex;
    flex-direction: column;
    padding-bottom: 20px;
    /* デザインに合わせた調整 */
  }
  .flow .flow-list .flow-content {
    flex-grow: 1;
    /* テキスト量が違っても高さを埋める */
  }
}
.flow .flow-list {
  /* --- PC用 (769px以上) --- */
}
@media (min-width: 769px) {
  .flow .flow-list .flow-list__inner.swiper-wrapper {
    display: block;
    /* スライダーを解除 */
    transform: none !important;
  }
  .flow .flow-list .flow-item {
    width: 100% !important;
    margin-bottom: 30px;
    /* PCでは縦に並べる、あるいは横並びなら flex に変更 */
  }
  .flow .flow-list .swiper-pagination {
    display: none;
  }
}

.faq {
  padding: 6.25rem 0;
  background: #F0F7FF;
}
@media screen {
  .faq {
    padding: 3rem 0;
  }
}
.faq .section-title {
  position: relative;
  z-index: 1;
}
.faq .section-title::before {
  content: "";
  background: url("../img/faq_title_bg.svg") no-repeat center center/contain;
  display: block;
  width: 20.25rem;
  height: 10rem;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .faq .section-title::before {
    width: 150px;
  }
}
.faq__list {
  max-width: 800px;
  margin: 0 auto;
}
.faq__item {
  background: #fff;
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border: 1px solid #001E3C;
}
.faq__question {
  width: 100%;
  padding: 20px 25px 20px 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  font-size: clamp(1rem, 0.955rem + 0.23vw, 1.125rem);
  font-weight: 700;
  font-family: inherit;
  text-align: left;
  background: #F2F4F5;
  position: relative;
  color: #333;
}
@media screen and (max-width: 768px) {
  .faq__question {
    padding: 16px 15px 16px 53px;
  }
}
.faq__question::before {
  content: "";
  position: absolute;
  left: 0.75rem;
  top: 0.75rem;
  background: url("../img/question_icon.svg") no-repeat center center/contain;
  width: 2.5rem;
  height: 2.5rem;
}
@media screen and (max-width: 768px) {
  .faq__question::before {
    width: 2rem;
    height: 2rem;
  }
}
.faq__icon {
  position: relative;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.faq__icon::before, .faq__icon::after {
  content: "";
  position: absolute;
  background: #333;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s;
}
.faq__icon::before {
  width: 100%;
  height: 2px;
}
.faq__icon::after {
  width: 2px;
  height: 100%;
}
.faq__item.is-open .faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}
.faq__answer {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease-in-out;
  position: relative;
}
.faq__answer::before {
  content: "";
  position: absolute;
  left: 0.75rem;
  top: 0.75rem;
  background: url("../img/answer_icon.svg") no-repeat center center/contain;
  width: 2.5rem;
  height: 2.5rem;
}
@media screen and (max-width: 768px) {
  .faq__answer::before {
    width: 2rem;
    height: 2rem;
  }
}
.faq__answer-inner {
  padding: 0.5rem 1rem 1rem 4rem;
  border-top: 1px solid #f0f0f0;
  padding-top: 15px;
}
.faq__answer-inner p {
  font-size: 0.875rem;
  line-height: 1.4;
}

.access {
  background: #F0F7FF;
}
.access .access__bg {
  padding: 2.5rem 0 6.5rem;
  background: #fff;
  border-radius: 200px 200px 0 0;
}
@media screen and (max-width: 768px) {
  .access .access__bg {
    border-radius: 0;
    padding-bottom: 3.75rem;
  }
}
.access .access__title-icon {
  display: block;
  margin: 0 auto 1.5rem;
}
@media screen and (max-width: 768px) {
  .access .access__title-icon {
    margin-bottom: 1rem;
    width: 40px;
  }
}
.access .section-subtitle {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 768px) {
  .access .section-subtitle {
    font-size: 1rem;
  }
}
.access .section-title {
  margin-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  .access .section-title {
    margin-bottom: 3rem;
  }
}
.access .access__inner {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  .access .access__inner {
    flex-direction: column;
    margin-bottom: 40px;
  }
}
.access .access__inner .access__inner__content {
  flex: 1;
}
.access .access__inner .access__inner__content .access__logo {
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 768px) {
  .access .access__inner .access__inner__content .access__logo {
    width: 70%;
    margin: 0 auto 30px;
  }
}
.access .access__inner .access__inner__content table.access__info {
  border: none;
  margin-bottom: 2.5rem;
  border-spacing: 0.5em;
}
@media screen and (max-width: 910px) {
  .access .access__inner .access__inner__content table.access__info .sp-only {
    display: table-row;
  }
}
.access .access__inner .access__inner__content table.access__info th {
  background: #F2F4F5;
  vertical-align: middle;
  text-align: center;
  width: 15%;
  min-width: 88px;
  padding: 0.75rem;
  font-size: 0.875rem;
}
.access .access__inner .access__inner__content table.access__info td {
  padding: 0 1.5rem;
}
@media screen and (max-width: 768px) {
  .access .access__inner .access__inner__content table.access__info td {
    padding: 0 0 0 0.75rem;
  }
}
.access .access__inner .access__inner__content table.holiday {
  border-collapse: collapse;
  width: 100%;
}
.access .access__inner .access__inner__content table.holiday th {
  background: #E5E8EB;
  vertical-align: middle;
  text-align: center;
  padding: 1.2rem 0.5rem;
  font-size: 0.875rem;
  border: 1px solid #333;
}
@media screen and (max-width: 910px) {
  .access .access__inner .access__inner__content table.holiday th:first-child {
    display: none;
  }
}
.access .access__inner .access__inner__content table.holiday td {
  padding: 1.2rem 0.5rem;
  border: 1px solid #333;
  text-align: center;
}
.access .access__inner .access__inner__content table.holiday td:first-child {
  font-size: 1rem;
  width: 120px;
  padding: 0.5rem;
  letter-spacing: 0.01em;
  line-height: 1.5;
}
@media screen and (max-width: 910px) {
  .access .access__inner .access__inner__content table.holiday td:first-child {
    display: none;
  }
}
.access .access__inner .access__inner__content table.holiday td:first-child span {
  font-size: 0.75rem;
}
.access .access__inner .shop_img {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .access .access__inner .shop_img {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .access .floor_map {
    margin-bottom: 5rem;
  }
}
@media screen and (max-width: 768px) {
  .access .floor_map {
    position: relative;
    margin: 0 auto;
  }
  .access .floor_map .map {
    overflow: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    max-height: 100vw;
    border: 1px solid #B2BBC4;
    border-radius: 8px;
  }
  .access .floor_map .map-item {
    width: 900px;
    height: auto;
    display: block;
    max-width: unset;
  }
  .access .floor_map {
    /* ナビボタン */
  }
  .access .floor_map .map-nav, .access .floor_map .map-down, .access .floor_map .map-up, .access .floor_map .map-next, .access .floor_map .map-prev {
    position: absolute;
    border: none;
    cursor: pointer;
    background-color: unset;
    z-index: 10;
  }
  .access .floor_map {
    /* 左 */
  }
  .access .floor_map .map-prev {
    top: 50%;
    left: 0;
    transform: translate(20%, -50%);
  }
  .access .floor_map .map-prev svg {
    transform: rotate(-180deg);
  }
  .access .floor_map {
    /* 右 */
  }
  .access .floor_map .map-next {
    top: 50%;
    right: 0;
    transform: translate(-20%, -50%);
  }
  .access .floor_map {
    /* 上 */
  }
  .access .floor_map .map-up {
    top: 0;
    left: 50%;
    transform: translate(-50%, 20%);
  }
  .access .floor_map .map-up svg {
    transform: rotate(-90deg);
  }
  .access .floor_map {
    /* 下 */
  }
  .access .floor_map .map-down {
    bottom: 0;
    left: 50%;
    transform: translate(-50%, -20%);
  }
}

.reserve {
  background: url("../img/reserve_bg.webp") no-repeat center center;
  background-size: cover;
  padding: 3.75rem 0;
}
.reserve .reserve__baloon {
  text-align: center;
  position: relative;
  margin: 0 auto 2.5rem;
  background: #fff;
  color: #00AFE5;
  padding: 0.5rem 2.625rem;
  border-radius: 40px;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  max-width: 400px;
}
@media screen and (max-width: 768px) {
  .reserve .reserve__baloon {
    margin-bottom: 2rem;
    font-size: 1rem;
    width: 250px;
    padding: 0.5rem 1rem;
  }
}
.reserve .reserve__baloon::after {
  content: "";
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  border: 12px solid transparent;
  border-top: 12px solid #fff;
}

.footer {
  padding: 2.875rem 0;
  background: #F2F4F5;
}
@media screen and (max-width: 768px) {
  .footer {
    padding-bottom: 100px;
  }
}
.footer .footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 2rem;
  margin-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  .footer .footer__inner {
    flex-direction: column-reverse;
    margin-bottom: 40px;
  }
}
.footer .footer__inner .footer__info .footer__logo {
  width: 100%;
  max-width: 256px;
  margin-bottom: 2rem;
}
.footer .footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  .footer .footer__bottom {
    flex-direction: column;
    gap: 1rem;
    align-items: start;
  }
}
.footer .footer__bottom .footer__nav {
  display: flex;
  gap: 1.5rem;
}
@media screen and (max-width: 768px) {
  .footer .footer__bottom .footer__nav {
    gap: 1rem;
    flex-direction: column;
  }
}
.footer .footer__bottom .footer__nav a {
  font-size: 0.875rem;
}
.footer .footer__bottom .footer__nav a:hover {
  text-decoration: underline;
}
.footer .footer__bottom .copyright {
  font-size: 0.875rem;
}

.fixed-button {
  display: none;
}

@media screen and (max-width: 1250px) {
  .fixed-button {
    display: block;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 999;
    padding-bottom: env(safe-area-inset-bottom);
  }
  .fixed-button .btn-primary {
    padding: 1rem;
    width: 80%;
    max-width: 400px;
    margin: 0 auto;
  }
}
/* ナビゲーション全体のレイアウト */
.pagination-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 24px;
  margin-bottom: 80px;
}

.swiper-button-prev,
.swiper-button-next {
  position: static;
  margin: 0;
  width: 40px;
  height: 40px;
  background-image: url("../img/icon_slider_arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.swiper-button-prev.flow-button-prev, .swiper-button-prev.flow-button-next,
.swiper-button-next.flow-button-prev,
.swiper-button-next.flow-button-next {
  background-image: url("../img/icon_slider_arrow_b.svg");
}

.swiper-button-prev::after,
.swiper-button-next::after {
  display: none;
}

/* 右側の矢印だけ180度回転させる */
.swiper-button-next {
  transform: rotate(180deg);
}

.swiper-pagination {
  position: static;
  width: auto !important;
}

.swiper-pagination-bullet-active {
  background: #fff;
}

.flow .swiper-pagination-bullet-active {
  background: #00AFE5;
}

@media (min-width: 769px) {
  .pagination-wrapper {
    display: none;
  }
}
/* 初期表示時非表示対応 */
.footer .footer__banner {
  display: none !important;
}

.footer .footer__nav a {
  display: none !important;
}

.footer .copyright {
  text-align: right !important;
}/*# sourceMappingURL=style.css.map */