@charset "UTF-8";
/* リキッドレイアウト対応 */

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #4a4a4a;
}

@media only screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
@media only screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
@media (max-width: 767px) {
  html {
    font-size: 3.2vw;
  }
}
@media (min-width: 768px) and (max-width: 1150px) {
  html {
    font-size: 1.3888888889vw;
  }
}
@media (min-width: 1151px) and (max-width: 1440px) {
  html {
    font-size: 1.1111111111vw;
  }
}
@media (min-width: 1440px) {
  html {
    font-size: 16px;
  }
}

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

img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

html {
  word-wrap: break-word;
}

.button {
  position: relative;
  z-index: 1;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur in="SourceAlpha" stdDeviation="0" /><feOffset dx="1" dy="1" result="offsetblur" /><feFlood flood-color="rgba(0,0,0,0.16)" /><feComposite in2="offsetblur" operator="in" /><feMerge><feMergeNode /><feMergeNode in="SourceGraphic" /></feMerge></filter></svg>#filter');
  -webkit-filter: drop-shadow(4px 4px 4px rgba(0, 0, 0, .16));
          filter: drop-shadow(4px 4px 4px rgba(0, 0, 0, .16));
  -webkit-filter: drop-shadow(0.25rem 0.25rem 0.25rem rgba(0, 0, 0, .16));
          filter: drop-shadow(0.25rem 0.25rem 0.25rem rgba(0, 0, 0, .16));
  -webkit-transition: 0.3s ease-in-out opacity;
  transition: 0.3s ease-in-out opacity;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}
.button img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

@media (any-hover: hover) {
  .button:hover {
    opacity: 0.7;
  }
}
.buttons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  gap: 1rem;
}

.container {
  padding: 48px 0;
  padding: 3rem 0;
}

.inner {
  padding: 0 30px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .inner {
    padding: 0 25px;
  }
}

.logo {
  aspect-ratio: 280/80;
  display: block;
  -webkit-transition: 0.3s ease-in-out all;
  transition: 0.3s ease-in-out all;
}

.logo img {
  -o-object-fit: contain;
     object-fit: contain;
}

@media (any-hover: hover) {
  .logo:hover {
    opacity: 0.7;
  }
}
.section-title {
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
  gap: 0.5625rem;
  text-align: center;
  --color-en: #1f9db2;
  --color-jp: #4a4a4a;
}

.section-title__en {
  line-height: 1;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 900;
  color: var(--color-en);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-title__jp {
  list-style: 1;
  color: var(--color-jp);
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.fixed-mv {
  background: #ddeaeb;
}

.fixed-mv__inner {
  padding: 0 80px;
  padding: 0 5rem;
}
@media screen and (max-width: 1150px) {
  .fixed-mv__inner {
    padding: 0 3.125rem;
  }
}
@media screen and (max-width: 767px) {
  .fixed-mv__inner {
    padding: unset;
  }
}

.fixed-mv__container {
  padding: 64px 0;
  padding: 4rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 50px;
  gap: 3.125rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .fixed-mv__container {
    padding: unset;
    display: block;
  }
}

.fixed-mv__left {
  margin-right: 34px;
  margin-right: 2.125rem;
  width: 280px;
  width: 17.5rem;
  position: sticky;
  top: 64px;
  top: 4rem;
  -ms-flex-item-align: start;
      align-self: flex-start;
}
@media screen and (max-width: 1150px) {
  .fixed-mv__left {
    width: 15rem;
  }
}
@media screen and (max-width: 767px) {
  .fixed-mv__left {
    display: none;
  }
}

.fixed-mv__logo {
  width: 100%;
  margin-bottom: 80px;
  margin-bottom: 5rem;
}
@media screen and (max-width: 1150px) {
  .fixed-mv__logo {
    margin-bottom: 1.875rem;
  }
}

.fixed-mv__hidden {
  visibility: hidden;
  display: none;
}

.fixed-mv__menus {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  gap: 0.625rem;
}

.fixed-mv__menu {
  display: block;
  padding: 8px 0;
  padding: 0.5rem 0;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  -webkit-transition: 0.3s ease-in-out all;
  transition: 0.3s ease-in-out all;
}
@media screen and (max-width: 1150px) {
  .fixed-mv__menu {
    font-size: 1.125rem;
  }
}

@media (any-hover: hover) {
  .fixed-mv__menu:hover {
    color: #1f9db2;
  }
}
.fixed-mv__center {
  width: 500px;
  width: 31.25rem;
  min-height: 100svh;
}
@media screen and (max-width: 1150px) {
  .fixed-mv__center {
    min-width: 32.5rem;
  }
}
@media screen and (max-width: 767px) {
  .fixed-mv__center {
    width: 100%;
    min-width: unset;
  }
}

.main {
  border-radius: 2rem;
  -webkit-box-shadow: 0 0 0.625rem rgba(0, 0, 0, .08);
          box-shadow: 0 0 0.625rem rgba(0, 0, 0, .08);
  background: #fff;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .main {
    border-radius: unset;
  }
}

.fixed-mv__right {
  width: 320px;
  width: 20rem;
  -ms-flex-item-align: end;
      align-self: flex-end;
  position: sticky;
  bottom: 64px;
  bottom: 4rem;
}
@media screen and (max-width: 1150px) {
  .fixed-mv__right {
    position: fixed;
    bottom: 1.875rem;
    left: 3.125rem;
  }
}
@media screen and (max-width: 767px) {
  .fixed-mv__right {
    display: none;
  }
}

.top-head {
  padding: 16px 30px;
  padding: 1rem 1.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.top-head__logo {
  aspect-ratio: 16000/2377;
  width: 160px;
  width: 10rem;
}

@media (any-hover: hover) {
  .top-head__logo:hover {
    opacity: 0.7;
  }
}
.top-head__logo img {
  -o-object-fit: contain;
     object-fit: contain;
}

.top-head__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  gap: 0.25rem;
}

.top-head__button {
  -webkit-transition: 0.3s ease-in-out all;
  transition: 0.3s ease-in-out all;
  border-radius: 6.25rem;
  padding: 8px 12px;
  padding: 0.5rem 0.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  gap: 0.25rem;
}
.top-head__button .icon {
  aspect-ratio: 14/13;
  width: 14px;
  width: 0.875rem;
}
.top-head__button .icon img {
  -o-object-fit: contain;
     object-fit: contain;
}
.top-head__button .text {
  color: #fff;
  line-height: 1;
}

.top-head__button:nth-of-type(1) {
  background: #1f9db2;
}
.top-head__button:nth-of-type(1) .text {
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
  width: 50%;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  font-weight: 500;
  font-size: 16px;
  font-size: 1rem;
  font-family: "Akshar", sans-serif;
}
@media screen and (max-width: 767px) {
  .top-head__button:nth-of-type(1) .text {
    -webkit-transform: translateY(1px);
            transform: translateY(1px);
  }
}

.top-head__button:nth-of-type(2) {
  background: -webkit-gradient(linear, left top, right top, from(#dbac0c), to(#d75e1e));
  background: linear-gradient(to right, #dbac0c, #d75e1e);
}
.top-head__button:nth-of-type(2) .text {
  font-weight: 700;
  font-size: 14px;
  font-size: 0.875rem;
}

@media (any-hover: hover) {
  .top-head__button:hover {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}
.mv {
  position: relative;
}

.mv__inner {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
}

.mv__container {
  position: relative;
  padding-top: 24px;
  padding-top: 1.5rem;
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
}

.mv__slider {
  height: 700px;
  height: 43.75rem;
}

.swiper-progress {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  color: #f0844a;
  font-family: "Akshar", sans-serif;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  z-index: 3;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transform-origin: left bottom;
          transform-origin: left bottom;
  top: 10px;
  top: 0.625rem;
  left: 30px;
  left: 1.875rem;
}

.swiper-progress__separator {
  display: block;
  height: 12px;
  height: 0.75rem;
  width: 1px;
  background: #f0844a;
  margin: 0 8px;
  margin: 0 0.5rem;
}

.swiper-progress__bar {
  margin-left: 16px;
  margin-left: 1rem;
  background: #fff;
  width: 120px;
  width: 7.5rem;
  height: 2px;
  position: relative;
}

.swiper-progress__fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  -webkit-transition: 0.2s ease-in-out all;
  transition: 0.2s ease-in-out all;
  background: #f0844a;
}

.mv__copy {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-left: auto;
  margin-bottom: 28px;
  margin-bottom: 1.75rem;
}
.mv__copy .line {
  margin-left: 4px;
  margin-left: 0.25rem;
  display: block;
  background: #fff;
  padding: 8px 10px;
  padding: 0.5rem 0.625rem;
  line-height: 1;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.mv__copy .orange {
  color: #f0844a;
}
.mv__copy .small {
  display: inline-block;
  font-size: 14px;
  font-size: 0.875rem;
}

.mv__label {
  margin-bottom: 26px;
  margin-bottom: 1.625rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding: 8px 32px;
  padding: 0.5rem 2rem;
  background: #f0844a;
  border-radius: 6.25rem;
  color: #fff;
  letter-spacing: 0.08em;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.mv__title {
  text-align: center;
  font-size: 48px;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
}
.mv__title .dotted {
  position: relative;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur in="SourceAlpha" stdDeviation="16" /><feOffset dx="1" dy="1" result="offsetblur" /><feFlood flood-color="rgba(255,255,255,1)" /><feComposite in2="offsetblur" operator="in" /><feMerge><feMergeNode /><feMergeNode in="SourceGraphic" /></feMerge></filter></svg>#filter');
  -webkit-filter: drop-shadow(0 0 10px #fff);
          filter: drop-shadow(0 0 10px #fff);
  -webkit-filter: drop-shadow(0 0 0.625rem #fff);
          filter: drop-shadow(0 0 0.625rem #fff);
  color: #f0844a;
  display: inline-block;
}
.mv__title .dotted::after {
  content: "";
  display: block;
  position: absolute;
  aspect-ratio: 1;
  width: 10px;
  width: 0.625rem;
  height: 10px;
  height: 0.625rem;
  background: #f0844a;
  border-radius: 50%;
  bottom: calc(100% + 0.375rem);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.mv__title .large {
  display: block;
  line-height: 1.4;
  font-size: 64px;
  font-size: 4rem;
  font-weight: 700;
}

.read__logo {
  width: 320px;
  width: 20rem;
  margin-inline: auto;
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
}

.read__container {
  padding: 32px 0 40px;
  padding: 2rem 0 2.5rem;
}

.read__items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  gap: 1rem;
}

.read__item {
  background: #fcf8e7;
  border-radius: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  gap: 0.75rem;
  padding: 10px;
  padding: 0.625rem;
}

.read__item-icon {
  aspect-ratio: 4812/4800;
  width: 48px;
  width: 3rem;
}

.read__item-text {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #f0844a;
}

.future {
  background: #868585;
}

.future__fv {
  aspect-ratio: 500/479;
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
}

.future__container {
  padding-bottom: 48px;
  padding-bottom: 3rem;
}

.future__item {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur in="SourceAlpha" stdDeviation="0" /><feOffset dx="1" dy="1" result="offsetblur" /><feFlood flood-color="rgba(0,0,0,0.16)" /><feComposite in2="offsetblur" operator="in" /><feMerge><feMergeNode /><feMergeNode in="SourceGraphic" /></feMerge></filter></svg>#filter');
  -webkit-filter: drop-shadow(4px 4px 4px rgba(0, 0, 0, .16));
          filter: drop-shadow(4px 4px 4px rgba(0, 0, 0, .16));
  -webkit-filter: drop-shadow(0.25rem 0.25rem 0.25rem rgba(0, 0, 0, .16));
          filter: drop-shadow(0.25rem 0.25rem 0.25rem rgba(0, 0, 0, .16));
  background: #fff;
  padding-bottom: 24px;
  padding-bottom: 1.5rem;
  position: relative;
  z-index: 2;
  border-radius: 1rem;
}

.future__item--1 {
  --background: #4a4a4a;
}
.future__item--1 .future__item-img {
  aspect-ratio: 320/223;
  width: 320px;
  width: 20rem;
  margin-inline: auto;
}

.future__item--2 {
  --background: linear-gradient(to right, #fdd23e, #f0844a);
}
.future__item--2 .future__item-img {
  aspect-ratio: 380/227;
  width: 380px;
  width: 23.75rem;
  margin-inline: auto;
}
.future__item--2 .future__item-des span {
  color: #f0844a;
}

.future__item-title {
  text-align: center;
  background: var(--background);
  border-radius: 1rem 1rem 0 0;
  padding: 10px;
  padding: 0.625rem;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
  color: #fff;
}

.future__item-img {
  margin-bottom: 16px;
  margin-bottom: 1rem;
}

.future__item-des {
  font-size: 18px;
  font-size: 1.125rem;
  text-align: center;
  line-height: 1.6;
  font-weight: 500;
}
.future__item-des span {
  font-weight: 700;
}

.future__arrow {
  position: relative;
  z-index: 1;
  aspect-ratio: 380/126;
  width: 380px;
  width: 23.75rem;
  margin-inline: auto;
  margin-top: -20px;
  margin-top: -1.25rem;
}

.future__middle {
  position: relative;
  z-index: 3;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.32;
  letter-spacing: 0.08em;
  color: #fff;
  text-align: center;
  margin-top: -80px;
  margin-top: -5rem;
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
}

.person {
  background-image: url("../images/common/person-bg.jpg");
  background-repeat: repeat;
  background-size: 31.25rem 18.625rem;
}

.person__inner {
  padding: 0 30px;
}

.person__container {
  position: relative;
  padding-top: 40px;
  padding-top: 2.5rem;
}

.person__img {
  position: absolute;
  aspect-ratio: 215/258;
  width: 215px;
  width: 13.4375rem;
  z-index: 1;
  right: 0px;
  right: 0rem;
  top: 40px;
  top: 2.5rem;
  bottom: 0;
}

.person__img--left {
  left: 0px;
  left: 0rem;
}
@media screen and (max-width: 767px) {
  .person__img--left {
    left: -1.0625rem;
  }
}

.person__text {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}
.person__text .blue {
  color: #1f9db2;
}

.person__text small {
  -webkit-transform-origin: top;
          transform-origin: top;
  -webkit-transform: scale(0.7);
          transform: scale(0.7);
  display: inline-block;
}

.person__text--right {
  margin-left: auto;
}

.lesson {
  background: #fcf8e7;
}

.lesson__read {
  aspect-ratio: 380/157;
  width: 380px;
  width: 23.75rem;
  margin-inline: auto;
  margin-bottom: 27px;
  margin-bottom: 1.6875rem;
}

.lesson__items {
  aspect-ratio: 440/210;
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
}

.lesson__items img {
  -o-object-fit: contain;
     object-fit: contain;
}

.lesson__texts {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.6;
}

.worries__fv {
  aspect-ratio: 500/396;
  position: relative;
  z-index: 3;
}

.worries__read {
  aspect-ratio: 500/568;
  margin-bottom: 28px;
  margin-bottom: 1.75rem;
  position: relative;
  z-index: 2;
  margin-top: -55px;
  margin-top: -3.4375rem;
}

.worries__copy {
  width: 349px;
  width: 21.8125rem;
  aspect-ratio: 349/40;
  margin-inline: auto;
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 3;
}

.worries__text {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.6;
  text-align: center;
  position: relative;
  z-index: 2;
}
.worries__text .line {
  display: block;
  padding-bottom: 4px;
  padding-bottom: 0.25rem;
  border-bottom: 1px dashed #dddddd;
  margin-bottom: 4px;
  margin-bottom: 0.25rem;
}
.worries__text .blue {
  color: #1f9db2;
  font-weight: 700;
}

.worries__img {
  margin-top: -300px;
  margin-top: -18.75rem;
  aspect-ratio: 500/539;
  position: relative;
  z-index: 1;
}

.problem__fv {
  aspect-ratio: 500/356;
  position: relative;
  z-index: 1;
}

.problem__fv img {
  -o-object-fit: contain;
     object-fit: contain;
}

.future__fv-title {
  margin-top: -270px;
  margin-top: -16.875rem;
  padding: 0 38px;
  padding: 0 2.375rem;
  text-align: center;
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  line-height: 1.55;
  position: relative;
  z-index: 2;
  font-size: 32px;
  font-size: 2rem;
}
.future__fv-title .bg-white {
  background: #fff;
  display: inline-block;
  padding: 2px 8px 5px;
  padding: 0.125rem 0.5rem 0.3125rem;
  font-size: 36px;
  font-size: 2.25rem;
  color: #4a4a4a;
  margin-right: 8px;
  margin-right: 0.5rem;
  line-height: 1;
}
.future__fv-title .blue {
  color: #427bbf;
}

.future__fv-text {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.6;
  text-align: center;
  color: #fff;
  margin-bottom: 48px;
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}
.future__fv-text .line {
  display: block;
  padding-bottom: 4px;
  padding-bottom: 0.25rem;
  border-bottom: 1px dashed #fff;
  margin-bottom: 4px;
  margin-bottom: 0.25rem;
}
.future__fv-text .bold {
  font-weight: 700;
}

.problem__arrow {
  aspect-ratio: 56/63;
  width: 56px;
  width: 3.5rem;
  margin-inline: auto;
  margin-bottom: 17px;
  margin-bottom: 1.0625rem;
  position: relative;
  z-index: 3;
  margin-top: -32px;
  margin-top: -2rem;
}

.problem__arrow img {
  -o-object-fit: contain;
     object-fit: contain;
}

.problem__bottom {
  padding: 0 30px 48px;
  padding: 0 30px 3rem;
}

.problem__text1 {
  aspect-ratio: 406/76;
  margin-bottom: 12px;
  margin-bottom: 0.75rem;
  width: 406px;
  width: 25.375rem;
  margin-inline: auto;
}

.problem__text1 img {
  -o-object-fit: contain;
     object-fit: contain;
}

.problem__items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  gap: 1.25rem;
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
}

.problem__item {
  position: relative;
  z-index: 1;
  padding: 0 16px 16px;
  padding: 0 1rem 1rem;
}
.problem__item::after {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  content: "";
  display: block;
  position: absolute;
  top: 12px;
  top: 0.75rem;
  width: 100%;
  height: calc(100% - 0.75rem);
  border-radius: 0.5rem;
  border: 1px solid #c9b58e;
}

.problem__item-title {
  position: relative;
  z-index: 2;
  margin-inline: auto;
  margin-bottom: 4px;
  margin-bottom: 0.25rem;
  border-radius: 6.25rem;
  text-align: center;
  padding: 2px 24px;
  padding: 0.125rem 1.5rem;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  background: #f0844a;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.problem__item-img {
  aspect-ratio: 178/111;
}

.problem__item-img img {
  -o-object-fit: contain;
     object-fit: contain;
}

.problem__text {
  text-align: center;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.6;
}
.problem__text .orange {
  margin-left: -20px;
  margin-left: -1.25rem;
  display: inline-block;
  padding: 4px 8px 5px;
  padding: 0.25rem 0.5rem 0.3125rem;
  background: #f0844a;
  color: #fff;
  font-size: 32px;
  font-size: 2rem;
  line-height: 1;
  margin-right: 4px;
  margin-right: 0.25rem;
}

.method {
  background-image: url("../images/common/yellow-bg.jpg");
  background-repeat: repeat;
  background-size: 31.25rem 19rem;
}

.method__img {
  aspect-ratio: 440/293;
  margin-bottom: 32px;
  margin-bottom: 2rem;
}

.method__img img {
  -o-object-fit: contain;
     object-fit: contain;
}

.method__text1 {
  aspect-ratio: 424/191;
  margin-bottom: 32px;
  margin-bottom: 2rem;
}

.method__text1 img {
  -o-object-fit: contain;
     object-fit: contain;
}

.method__items {
  padding: 16px 24px 24px;
  padding: 1rem 1.5rem 1.5rem;
  background: #fff;
  border-radius: 1rem;
  -webkit-box-shadow: 0.25rem 0.25rem 0.5rem rgba(0, 0, 0, .08);
          box-shadow: 0.25rem 0.25rem 0.5rem rgba(0, 0, 0, .08);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
  gap: 0.75rem 1.25rem;
  margin-bottom: 32px;
  margin-bottom: 2rem;
}

.method__item {
  position: relative;
  z-index: 1;
  padding: 0 14px 16px;
  padding: 0 0.875rem 1rem;
}
.method__item::after {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  content: "";
  display: block;
  position: absolute;
  top: 12px;
  top: 0.75rem;
  width: 100%;
  height: calc(100% - 0.75rem);
  border-radius: 0.5rem;
  border: 1px solid #c9b58e;
}

.method__item:nth-of-type(1) {
  --item-bg-color: #f0844a;
}

.method__item:nth-of-type(2) {
  --item-bg-color: #1f9db2;
}

.method__item:nth-of-type(3) {
  --item-bg-color: #fcd13e;
}

.method__item:nth-of-type(4) {
  --item-bg-color: #427bbf;
}

.method__item-title {
  position: relative;
  z-index: 2;
  margin-inline: auto;
  margin-bottom: 8px;
  margin-bottom: 0.5rem;
  border-radius: 6.25rem;
  text-align: center;
  padding: 3px 24px;
  padding: 0.1875rem 1.5rem;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  background: var(--item-bg-color);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.method__item-img {
  aspect-ratio: 158/98;
  margin-bottom: 8px;
  margin-bottom: 0.5rem;
}

.method__item-img img {
  -o-object-fit: contain;
     object-fit: contain;
}

.method__item-des {
  text-align: center;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4;
}

.method__text2 {
  aspect-ratio: 348/208;
  width: 348px;
  width: 21.75rem;
  margin-inline: auto;
}

.method__text2 img {
  -o-object-fit: contain;
     object-fit: contain;
}

.method2__img {
  aspect-ratio: 500/482;
}

.point {
  background-color: #f0844a;
  background-image: radial-gradient(circle, rgba(255, 255, 255, .3215686275) 2.5px, transparent 2.5px), radial-gradient(circle, rgba(255, 255, 255, .3215686275) 2.5px, transparent 2.5px);
  background-position: 0 0, 20px 20px;
  background-size: 40px 40px;
}

.point__title {
  margin-bottom: 32px;
  margin-bottom: 2rem;
}

.point__title-label {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding: 10px 24px;
  padding: 0.625rem 1.5rem;
  position: relative;
  border-radius: 6.25rem;
  color: #fff;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  background: #fcd13e;
  line-height: 1;
}
.point__title-label::after {
  content: "";
  display: block;
  position: absolute;
  top: 99%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  aspect-ratio: 12/8;
  width: 12px;
  width: 0.75rem;
  height: 8px;
  height: 0.5rem;
  background: #fcd13e;
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
          clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
}

.point__main-title {
  margin-top: -20px;
  margin-top: -1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  color: #fff;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 700;
  font-size: 48px;
  font-size: 3rem;
  line-height: 1;
}
.point__main-title .large {
  font-size: 80px;
  font-size: 5rem;
}

.point__items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  gap: 2rem;
  counter-reset: number 0;
}

.point__item {
  position: relative;
  padding: 0 24px 24px;
  padding: 0 1.5rem 1.5rem;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur in="SourceAlpha" stdDeviation="16" /><feOffset dx="1" dy="1" result="offsetblur" /><feFlood flood-color="rgba(0,0,0,0.08)" /><feComposite in2="offsetblur" operator="in" /><feMerge><feMergeNode /><feMergeNode in="SourceGraphic" /></feMerge></filter></svg>#filter');
  -webkit-filter: drop-shadow(4px 4px 8px rgba(0, 0, 0, .08));
          filter: drop-shadow(4px 4px 8px rgba(0, 0, 0, .08));
  -webkit-filter: drop-shadow(0.25rem 0.25rem 0.5rem rgba(0, 0, 0, .08));
          filter: drop-shadow(0.25rem 0.25rem 0.5rem rgba(0, 0, 0, .08));
}
.point__item::after {
  content: "";
  display: block;
  position: absolute;
  top: 32px;
  top: 2rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  height: calc(100% - 2rem);
  border-radius: 1rem;
  background: #fcf8e7;
}

.point__number {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding-top: 6px;
  padding-top: 0.375rem;
  position: relative;
  z-index: 1;
}
.point__number::before {
  counter-increment: number 1;
  content: "0" counter(number);
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 500;
  color: #f0844a;
  font-family: "Akshar", sans-serif;
  text-align: center;
  z-index: 2;
  position: relative;
}
.point__number::after {
  content: "";
  display: block;
  position: absolute;
  aspect-ratio: 1;
  width: 180px;
  width: 11.25rem;
  background: #fcf8e7;
  border-radius: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 0;
  z-index: 1;
}

.point__item-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  gap: 1.5rem;
}

.point__item-title {
  position: relative;
  z-index: 2;
  padding: 15px;
  padding: 0.9375rem;
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  color: #f0844a;
}
@media screen and (max-width: 1150px) {
  .point__item-title {
    font-size: 2.125rem;
  }
}
.point__item-title::after, .point__item-title::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 3px;
  border-radius: 0.125rem;
  background: #f0844a;
  z-index: 1;
  left: 0;
}
.point__item-title::after {
  top: 0;
}
.point__item-title::before {
  bottom: 0;
}

.point__item-title small {
  display: inline-block;
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
  -webkit-transform: scale(0.7);
          transform: scale(0.7);
}

.point__item-img {
  aspect-ratio: 392/249;
  position: relative;
  z-index: 2;
}

.point__item-img--long {
  aspect-ratio: 342/285;
  width: 342px;
  width: 21.375rem;
  margin-inline: auto;
}

.point__item-img--middle {
  aspect-ratio: 392/261;
  margin-inline: auto;
}

.point__item-img img {
  border-radius: 1rem;
  -o-object-fit: contain;
     object-fit: contain;
}

.point__item-description {
  text-align: center;
  line-height: 1.6;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  position: relative;
  z-index: 2;
}
.point__item-description .line {
  padding: 4px 0;
  padding: 0.25rem 0;
  display: block;
  border-bottom: 1px dashed #dddddd;
}
.point__item-description .orange {
  font-weight: 700;
  color: #f0844a;
}

.cta {
  margin-top: -14px;
  margin-top: -0.875rem;
  margin-bottom: -1px;
  position: relative;
  z-index: 1;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, transparent), color-stop(0.8125rem, #1f9db2));
  background: linear-gradient(transparent 0 0.8125rem, #1f9db2 0.8125rem 100%);
}

.cta__container {
  padding-bottom: 48px;
  padding-bottom: 3rem;
}

.cta__title {
  margin-inline: auto;
  width: calc(100% - 1rem);
  margin-bottom: 22px;
  margin-bottom: 1.375rem;
}

.cta__title img {
  -o-object-fit: contain;
     object-fit: contain;
}

.cta__content {
  padding: 24px 24px 32px;
  padding: 1.5rem 1.5rem 2rem;
  text-align: center;
  background: #fff;
  border-radius: 1rem;
}

.cta__description {
  margin-bottom: 15px;
  margin-bottom: 0.9375rem;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.6;
  font-weight: 500;
}

.cta__read {
  text-align: center;
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
}
.cta__read .red {
  color: #d75e1e;
}
.cta__read .large {
  font-size: 32px;
  font-size: 2rem;
}

.price {
  background: #f5fafc;
}

.price__title {
  margin-bottom: 38px;
  margin-bottom: 2.375rem;
}

.price__content {
  background: #ddeaeb;
  padding: 16px 24px 32px;
  padding: 1rem 1.5rem 2rem;
  border-radius: 1rem;
}

.price__read {
  white-space: nowrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1;
  padding-bottom: 12px;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #1f9db2;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
}
.price__read .label {
  padding: 4px;
  padding: 0.25rem;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f9db2;
  background: #fff;
  margin-right: 16px;
  margin-right: 1rem;
}
@media screen and (max-width: 1150px) {
  .price__read .label {
    font-size: 1.375rem;
  }
}
.price__read .price {
  background: unset;
  font-size: 80px;
  font-size: 5rem;
  font-weight: 500;
  font-family: "Akshar", sans-serif;
  color: #1f9db2;
  -webkit-transform: translateY(0.875rem);
          transform: translateY(0.875rem);
  margin-right: 6px;
  margin-right: 0.375rem;
}
.price__read .price-small {
  font-size: 48px;
  font-size: 3rem;
  font-weight: 700;
  color: #1f9db2;
  margin-right: 16px;
  margin-right: 1rem;
}
.price__read .tax {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #4a4a4a;
}
@media screen and (max-width: 1150px) {
  .price__read .tax {
    font-size: 1.375rem;
  }
}

.price__items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  gap: 1rem;
}

.price__item:first-of-type {
  grid-column: 1/-1;
}

.price__item {
  background: #fff;
  border-radius: 0.5rem;
  padding: 16px 13px;
  padding: 1rem 0.8125rem;
}

.price__item-label {
  margin-bottom: 8px;
  margin-bottom: 0.5rem;
  padding: 4px 8px;
  padding: 0.25rem 0.5rem;
  color: #fff;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1;
  background: #427bbf;
  border-radius: 6.25rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (max-width: 1150px) {
  .price__item-label {
    font-size: 1.0625rem;
  }
}

.price__item-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 4px;
  gap: 0.25rem;
  line-height: 1;
  font-weight: 700;
}
.price__item-price .price {
  font-size: 40px;
  font-size: 2.5rem;
}
.price__item-price .yen {
  font-size: 24px;
  font-size: 1.5rem;
}

.access {
  background: #fff;
}

.access__title {
  margin-bottom: 38px;
  margin-bottom: 2.375rem;
}

.access__map {
  overflow: hidden;
  border-radius: 1rem;
  aspect-ratio: 440/293;
  margin-bottom: 48px;
  margin-bottom: 3rem;
}

.access__map iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.access__lists {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  gap: 1rem;
  margin-bottom: 48px;
  margin-bottom: 3rem;
}

.access__list {
  padding-bottom: 16px;
  padding-bottom: 1rem;
  border-bottom: 1px dashed #dddddd;
}

.access__label {
  margin-bottom: 8px;
  margin-bottom: 0.5rem;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f9db2;
  line-height: 1.6;
}

.access__value {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.6;
}

.access .access__swiper {
  overflow: visible;
}

.access__swiper .swiper-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}
.access__swiper .swiper-slide {
  aspect-ratio: 1;
  width: 320px;
  width: 20rem;
}
.access__swiper .swiper-slide img {
  border-radius: 0.5rem;
  -webkit-box-shadow: 0 0 0.4375rem rgba(15, 0, 0, .1);
          box-shadow: 0 0 0.4375rem rgba(15, 0, 0, .1);
}

.faq {
  background-color: #1f9db2;
  background-image: radial-gradient(circle, rgba(255, 255, 255, .1607843137) 2.5px, transparent 2.5px), radial-gradient(circle, rgba(255, 255, 255, .1607843137) 2.5px, transparent 2.5px);
  background-position: 0 0, 20px 20px;
  background-size: 40px 40px;
}

.faq__title {
  --color-en: #fff;
  --color-jp: #fff;
  margin-bottom: 38px;
  margin-bottom: 2.375rem;
}

.faq__items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  gap: 1rem;
}

.faq__item {
  border-radius: 1rem;
  overflow: hidden;
}

.faq__item:first-of-type .faq__item-description {
  display: block;
}

.faq__item-title {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  gap: 1.5rem;
  background: #fff;
  padding: 20px 24px;
  padding: 1.25rem 1.5rem;
}
.faq__item-title .text {
  width: 50%;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-transition: 0.3s ease-in-out all;
  transition: 0.3s ease-in-out all;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.6;
  font-weight: 500;
}
.faq__item-title .toggle {
  aspect-ratio: 16/12;
  width: 16px;
  width: 1rem;
  -webkit-mask-image: url("../images/common/arrow-top.svg");
          mask-image: url("../images/common/arrow-top.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  background: #1f9db2;
  -webkit-transform: scaleY(-1);
          transform: scaleY(-1);
  -webkit-transition: 0.3s ease-in-out all;
  transition: 0.3s ease-in-out all;
}
.faq__item-title .toggle.is-active {
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
}

@media (any-hover: hover) {
  .faq__item-title:hover .text {
    color: #1f9db2;
  }
}
.faq__item-description {
  padding: 20px 24px;
  padding: 1.25rem 1.5rem;
  margin-top: 3px;
  margin-top: 0.1875rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  display: none;
  background: #ddeaeb;
}

.footer__inner {
  padding: 0 30px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .footer__inner {
    padding: 0 25px;
  }
}

.footer__container {
  padding: 48px 0;
  padding: 3rem 0;
}

.footer__logo {
  width: 280px;
  width: 17.5rem;
  margin-bottom: 32px;
  margin-bottom: 2rem;
  margin-inline: auto;
}

.footer__menus1 {
  padding-bottom: 16px;
  padding-bottom: 1rem;
  border-bottom: 1px solid #ddeaeb;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
  gap: 1rem;
  margin-bottom: 16px;
  margin-bottom: 1rem;
}

.footer__menu {
  padding: 8px;
  padding: 0.5rem;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f9db2;
  -webkit-transition: 0.3s ease-in-out all;
  transition: 0.3s ease-in-out all;
  line-height: 1;
}

@media (any-hover: hover) {
  .footer__menu:hover {
    filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="0.8" /><feFuncG type="linear" slope="0.8" /><feFuncB type="linear" slope="0.8" /></feComponentTransfer></filter></svg>#filter');
    -webkit-filter: brightness(0.8);
            filter: brightness(0.8);
  }
}
.footer__menus2 {
  max-width: 360px;
  max-width: 22.5rem;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px 26px;
  gap: 0.5rem 1.625rem;
  margin-bottom: 32px;
  margin-bottom: 2rem;
}

.footer__menu-small {
  padding: 8px;
  padding: 0.5rem;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1;
  font-weight: 500;
  color: #4a4a4a;
  -webkit-transition: 0.3s ease-in-out all;
  transition: 0.3s ease-in-out all;
}

@media (any-hover: hover) {
  .footer__menu-small:hover {
    opacity: 0.7;
  }
}
.footer__copy {
  text-align: center;
  font-size: 12px;
  font-size: 0.75rem;
  color: #1f9db2;
  font-weight: 500;
}
/*# sourceMappingURL=styles.css.map */
