@charset "UTF-8";

html {
  font-size: 100%;
}

@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

@media screen and (min-width: 768px) {
  html {
    font-size: 1.5238095238vw;
  }
}

@media (min-width: 1050px) {
  html {
    font-size: 100%;
  }
}

body {
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
}

@media screen and (min-width: 768px) {

  a,
  button {
    transition: 0.3s;
  }

  a:hover,
  button:hover {
    cursor: pointer;
  }
}

/*****************************
* A Modern CSS Reset (https://github.com/hankchizljaw/modern-css-reset)
* 上記に、ul要素,ol要素,a要素への記述追加
*****************************/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

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

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

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

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

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

button {
  background-color: initial;
  border: none;
  outline: none;
  padding: 0;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

.l-inner {
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.875rem;
  padding-right: 1.875rem;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .l-inner {
    max-width: 1050px;
    padding-left: 1.5625rem;
    padding-right: 1.5625rem;
  }
}

.c-button__black {
  background: linear-gradient(180deg, #000 0%, #363636 30%, #000 100%);
  border: 0.125rem solid #fff;
  border-radius: 0.3125rem;
  display: flex;
  height: 3.125rem;
  padding: 0;
  width: 15rem;
}

.c-button__black-link {
  align-items: center;
  color: #fff;
  display: flex;
  font-size: 0.875rem;
  font-weight: 700;
  height: 100%;
  justify-content: center;
  letter-spacing: 0.075em;
  padding: 0.625rem 1.25rem 0.625rem 0.625rem;
  position: relative;
  width: 100%;
}

.c-button__black-link::before {
  background-color: #fff;
  border-radius: 50%;
  content: "";
  height: 0.9375rem;
  position: absolute;
  right: 0.625rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0.9375rem;
}

.c-button__black-link::after {
  border-color: transparent transparent transparent #000;
  border-style: solid;
  border-width: 0.3125rem 0 0.3125rem 0.5rem;
  content: "";
  position: absolute;
  right: 0.8125rem;
  top: 50%;
  transform: translateY(-50%);
}

@media screen and (min-width: 768px) {
  .c-button__black-link {
    font-size: 1.375rem;
  }

  .c-button__black-link::before {
    height: 0.5rem;
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
    width: 0.5rem;
  }
}

@media screen and (min-width: 768px) and (min-width: 768px) {
  .c-button__black-link::before {
    height: 1.5625rem;
    width: 1.5625rem;
  }
}

@media screen and (min-width: 768px) {
  .c-button__black-link::after {
    right: 10%;
    top: 50%;
  }
}

.p-fv__feature-list {
  display: flex;
}

.p-fv__feature-bg {
  align-items: center;
  background-color: #1e588f;
  border-radius: 50%;
  display: flex;
  height: 26.6666666667vw;
  justify-content: center;
  position: relative;
  width: 26.6666666667vw;
}

.p-fv__feature-bg::after {
  border: 1px solid #fff;
  border-radius: 50%;
  bottom: 5px;
  content: "";
  left: 5px;
  pointer-events: none;
  position: absolute;
  right: 5px;
  top: 5px;
}

@media screen and (min-width: 768px) {
  .p-fv__feature-bg {
    height: 13vw;
    width: 13vw;
  }
}

.p-fv__feature-text {
  color: #fff;
  font-size: 3.3333333333vw;
  font-weight: 700;
  letter-spacing: 0.075em;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .p-fv__feature-text {
    font-size: 1.5vw;
  }
}

.c-flow__list {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin-inline: auto;
  max-width: 37.5rem;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .c-flow__list {
    flex-direction: row;
    margin: 2.5rem auto 0;
    max-width: 62.5rem;
    width: 100%;
  }
}

.c-flow__item {
  align-items: center;
  display: flex;
  gap: 1.375rem;
}

@media screen and (min-width: 768px) {
  .c-flow__item {
    flex-direction: column;
    gap: 1.25rem;
  }
}

.c-flow__icon-base {
  background-color: #e6eef6;
  border-radius: 50%;
  height: 29.3333333333vw;
  margin-left: 0.625rem;
  position: relative;
  width: 29.3333333333vw;
}

@media screen and (min-width: 768px) {
  .c-flow__icon-base {
    height: 10.625rem;
    width: 10.625rem;
  }
}

.c-flow__icon-img {
  height: 16vw;
  left: 25%;
  position: absolute;
  top: 25%;
  width: 16vw;
}

@media screen and (min-width: 768px) {
  .c-flow__icon-img {
    height: 5.625rem;
    width: 5.625rem;
  }
}

.c-flow__icon img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.c-flow__item-container {
  display: flex;
  flex-direction: column;
  gap: 0.3125rem;
}

.c-flow__item-label {
  color: #1e588f;
  display: inline-block;
  font-size: 1.1875rem;
  font-weight: 700;
  letter-spacing: 0.075em;
  padding-bottom: 0.75rem;
  position: relative;
}

@media screen and (min-width: 768px) {
  .c-flow__item-label {
    display: block;
    font-size: 1.375rem;
    text-align: center;
  }
}

.c-flow__item-label::after {
  background-color: #1e588f;
  bottom: 0.3125rem;
  content: "";
  height: 0.0625rem;
  left: 0;
  position: absolute;
  width: 1.875rem;
}

@media screen and (min-width: 768px) {
  .c-flow__item-label::after {
    display: block;
    left: 50%;
    text-align: center;
    transform: translateX(-50%);
  }
}

.c-flow__item-text {
  font-size: 0.875rem;
  letter-spacing: 0.075em;
  line-height: 1.4285714286;
  margin-top: 0.3125rem;
}

@media screen and (min-width: 768px) {
  .c-flow__item-text {
    font-size: 1rem;
  }
}

.c-learn__item {
  align-items: center;
  background-color: rgba(72, 157, 225, 0.2);
  border-radius: 0.5rem;
  display: flex;
  gap: 0.625rem;
  margin: 0 auto;
  max-width: 25rem;
  padding: 1.375rem 1.25rem;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .c-learn__item {
    flex-direction: column;
    gap: 0.5rem;
    padding-inline: 0;
  }
}

.c-learn__img-wrapper {
  height: 4.375rem;
  width: 6.25rem;
}

.c-learn__img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
  display: block;
  object-fit: contain;
}

.c-learn__text {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.3888888889;
  margin: 0 auto;
  text-align: center;
  text-align: center;
  white-space: nowrap;
}

.c-schedule__list {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
  margin-inline: auto;
  width: 95%;
}

@media screen and (min-width: 768px) {
  .c-schedule__list {
    gap: 0.625rem;
    max-width: 62.5rem;
    width: 80%;
  }
}

.c-schedule__item {
  align-items: flex-start;
  background-color: #e6eef6;
  display: flex;
  flex-wrap: wrap;
  margin-inline: auto;
  max-width: 100%;
}

@media screen and (min-width: 768px) {
  .c-schedule__item {
    align-items: stretch;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0.125rem;
    height: auto;
    justify-content: space-between;
    max-width: none;
    width: 100%;
  }
}

.c-schedule__date {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  gap: 0.125rem;
  width: 25%;
}

@media screen and (min-width: 768px) {
  .c-schedule__date {
    flex-direction: row;
    height: 100%;
    width: 35%;
  }
}

.c-schedule__day {
  background-color: #2a6eae;
  color: #fff;
  display: block;
  flex: 1;
  font-size: 1rem;
  font-weight: 700;
  height: auto;
  padding-block: 0.9375rem;
  padding-inline: 0.625rem;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .c-schedule__day {
    height: 100%;
    padding-top: 1.25rem;
    width: 50%;
  }
}

.c-schedule__time {
  background-color: #6096c8;
  color: #fff;
  display: block;
  display: flex;
  flex: 1;
  font-size: 1rem;
  font-weight: 700;
  height: auto;
  justify-content: center;
  padding: 1.875rem 0.625rem;
  padding-top: 25%;
  text-align: left;
}

@media screen and (min-width: 768px) {
  .c-schedule__time {
    height: 100%;
    padding-top: 1.25rem;
    width: 50%;
  }
}

.c-schedule__content {
  width: 75%;
}

@media screen and (min-width: 768px) {
  .c-schedule__content {
    margin-block: 0.625rem 1.25rem;
    width: 33.125rem;
  }
}

.c-schedule__title {
  font-size: 0.875rem;
  letter-spacing: 0.075em;
  line-height: 1.25;
  margin: 0.625rem 0.625rem 0.625rem 0.625rem;
}

@media screen and (min-width: 768px) {
  .c-schedule__title {
    font-size: 1.25rem;
  }
}

.c-schedule__text {
  font-size: 0.875rem;
  padding-inline: 0.9375rem;
}

.c-schedule__btns {
  display: flex;
  gap: 0.3125rem;
  margin: 0.9375rem auto 1.5625rem;
}

@media screen and (min-width: 768px) {
  .c-schedule__btns {
    flex-direction: column;
    gap: 0.625rem;
    margin: auto 1.875rem auto 1.25rem;
    width: 9.375vw;
  }
}

.c-schedule__btn-blue {
  align-items: center;
  background-color: #2a6eae;
  border-radius: 2.5rem;
  color: #fff;
  display: flex;
  font-size: 1rem;
  justify-content: center;
  letter-spacing: 0.075em;
  padding: 0.625rem 2.1875rem;
}

@media screen and (min-width: 768px) {
  .c-schedule__btn-blue {
    height: 2.7777777778vw;
    padding: 0 !important;
    width: 9.375vw;
  }
}

.c-schedule__btn-black {
  align-items: center;
  background-color: #000;
  border-radius: 2.5rem;
  color: #fff;
  display: flex;
  font-size: 1rem;
  justify-content: center;
  letter-spacing: 0.075em;
  padding: 0.625rem 3.4375rem;
}

@media screen and (min-width: 768px) {
  .c-schedule__btn-black {
    height: 2.7777777778vw;
    padding: 0;
    width: 9.375vw;
  }
}

.c-title {
  align-items: center;
  display: flex;
  flex-direction: column;
  margin-bottom: 1.6875rem;
  text-align: center;
  width: 100%;
}

.c-title__en {
  color: #1e588f;
  font-family: "Lato", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.075em;
}

@media screen and (min-width: 768px) {
  .c-title__en {
    font-size: 1.25rem;
  }
}

.c-title__ja {
  font-size: 1.5rem;
  font-weight: 700;
}

@media screen and (min-width: 768px) {
  .c-title__ja {
    font-size: 2.625rem;
  }
}

.js-fade__item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out;
}

.js-fade__item.is-intersecting {
  animation: scroll-blur 0.4s 0.2s forwards;
  opacity: 1;
  transform: translateY(0);
}

@keyframes scroll-blur {
  100% {
    translate: 0 0;
  }
}

.c-voice__card {
  height: 17.625rem;
  position: relative;
  width: 13.25rem;
}

@media screen and (min-width: 768px) {
  .c-voice__card {
    height: 20rem;
    width: 14.375rem;
  }
}

.c-voice__img {
  position: relative;
  width: 100%;
}

.c-voice__img img {
  height: auto;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.c-voice__id {
  background-color: #1e588f;
  color: #fff;
  font-size: 1.1875rem;
  font-weight: 700;
  letter-spacing: 0, 75em;
  padding: 0.625rem 1.25rem;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 10;
}

@media screen and (min-width: 768px) {
  .c-voice__id {
    font-size: 1.375rem;
    padding: 0.125rem 1.375rem;
  }
}

.c-voice__content {
  background-color: rgba(85, 141, 196, 0.2);
  width: 100%;
}

.c-voice__job {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.075em;
  padding-top: 0.3125rem;
}

@media screen and (min-width: 768px) {
  .c-voice__job {
    font-size: 1.125rem;
    padding: 0.75rem 0 0 1.25rem;
  }
}

.c-voice__text {
  font-size: 0.875rem;
  letter-spacing: 0.075em;
  margin-top: 0.3125rem;
  padding: 0.3125rem 1.25rem 1.5625rem 1.25rem;
}

@media screen and (min-width: 768px) {
  .c-voice__text {
    font-size: 1rem;
  }
}

.p-contact__wrapper {
  background-color: #2a6eae;
  padding-block: 3.75rem;
  padding-inline: 0.9375rem;
}

@media screen and (min-width: 768px) {
  .p-contact__wrapper {
    padding-block: 5.625rem;
  }
}

.p-contact__title {
  color: #fff;
}

.p-contact__inner {
  background-color: #fff;
  border-radius: 0.9375rem;
  box-sizing: border-box;
  margin-inline: auto;
  margin-top: 2.5rem;
  max-width: 37.5rem;
  padding: 1.875rem 0.9375rem;
}

@media screen and (min-width: 768px) {
  .p-contact__inner {
    margin-top: 1.875rem;
    max-width: none;
    padding: 4.375rem 2.8125rem 3.4375rem 3.125rem;
    width: 69.4444444444vw;
  }
}

.p-contact__form {
  margin: 0;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .p-contact__form {
    display: grid;
    grid-template-columns: auto 1fr;
    -moz-column-gap: 1.5625rem;
    column-gap: 1.5625rem;
    row-gap: 0.625rem;
  }
}

.p-contact__form-item {
  display: flex;
  flex-direction: column;
  letter-spacing: 0.075em;
  margin-bottom: 1.25rem;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .p-contact__form-item {
    display: contents;
    flex-direction: row;
  }
}

@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-contact__form-item.-medium input {
    max-width: 58%;
  }
}

@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-contact__form-item.-short input {
    max-width: 35%;
  }
}

@media screen and (min-width: 768px) {
  .p-contact__form-item label {
    align-self: start;
    font-size: 1.125rem;
    padding-top: 0.625rem;
  }
}

.p-contact__form-item label {
  font-weight: 700;
}

@media screen and (min-width: 768px) {
  .p-contact__form-item label {
    grid-column: 1/2;
    margin-bottom: 0;
    white-space: nowrap;
  }
}

.p-contact__form-item span {
  color: #da0000;
  font-size: 0.6875rem;
  margin-left: 0.25rem;
  vertical-align: top;
}

.p-contact__form-item input {
  background-color: #e6eef6;
  border: none;
  border-radius: 0.25rem;
  box-sizing: border-box;
  margin-top: 0.125rem;
  padding: 0.75rem;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .p-contact__form-item input {
    grid-column: 2/3;
    width: 100%;
  }
}

::-moz-placeholder {
  color: transparent;
}

::placeholder {
  color: transparent;
}

@media screen and (min-width: 768px) {
  ::-moz-placeholder {
    color: #a8a8a8;
    font-size: 1rem;
  }

  ::placeholder {
    color: #a8a8a8;
    font-size: 1rem;
  }
}

@media screen and (min-width: 768px) {
  .p-contact__form-select-wrapper {
    align-items: center;
    display: flex;
    gap: 1.5625rem;
    grid-column: 2/3;
    margin-bottom: 0.3125rem;
  }
}

@media screen and (min-width: 768px) {
  .p-contact__form-select-wrapper span {
    margin-left: -0.625rem;
  }
}

#year {
  width: 6.25rem;
}

@media screen and (min-width: 768px) {
  #year {
    width: 7.5rem;
  }
}

#month {
  width: 3.75rem;
}

.p-contact__form-select-wrapper select {
  background-color: #e6eef6;
  border: none;
  color: transparent;
  margin-bottom: 1.25rem;
  padding: 0.625rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="black"><path d="M7 10l5 5 5-5z"/></svg>');
  background-position: right 0.5rem center;
  background-repeat: no-repeat;
  background-size: 1.5625rem;
}

@media screen and (min-width: 768px) {
  .p-contact__form-select-wrapper select {
    color: #000;
    margin-bottom: 0;
    width: auto;
  }

  .p-contact__form-select-wrapper select:invalid,
  .p-contact__form-select-wrapper select:has(option[value=""]:checked) {
    color: #a8a8a8;
  }
}

option {
  color: #000;
}

.p-contact__form-item textarea {
  background-color: #e6eef6;
  border: none;
  height: 6.875rem;
  margin-top: 0.3125rem;
}

@media screen and (min-width: 768px) {
  .p-contact__form-item textarea {
    grid-column: 2/3;
    height: 9.375rem;
    padding: 0.9375rem 0 0 1.25rem;
    width: 100%;
  }
}

@media screen and (min-width: 768px) {
  .p-contact__form-item label[for=message] {
    align-self: start;
    grid-column: 1/2;
    padding-top: 0.625rem;
  }
}

.p-contact__text {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.075em;
  line-height: 2.1428571429;
  margin-top: 1.5625rem;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .p-contact__text {
    align-items: center;
    display: block;
    font-size: 1rem;
    justify-content: center;
    margin-left: 18%;
    margin-top: 2.5rem;
    text-align: left;
  }
}

.p-contact__privacy {
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
}

.p-contact__text a {
  color: #da0000;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.p-contact__link {
  align-items: center;
  background-color: #2a6eae;
  color: #fff;
  display: flex;
  height: 3.125rem;
  justify-content: center;
  margin-inline: auto;
  margin-top: 1.25rem;
  width: 14.0625rem;
}

@media screen and (min-width: 768px) {
  .p-contact__link {
    height: 4.375rem;
    width: 23.75rem;
  }
}

.p-contact__checkbox {
  display: none;
}

@media screen and (min-width: 768px) {
  .p-contact__checkbox {
    display: inline-block;
    height: 1rem;
    margin-inline: 1.25rem 0.625rem;
    vertical-align: middle;
    width: 1rem;
  }
}

.p-flow {
  margin-block: 4.6875rem 0.4375rem;
}

@media screen and (min-width: 768px) {
  .p-flow {
    margin-block: 3.75rem 6.875rem;
  }
}

.p-flow__inner {
  margin-inline: auto;
}

@media screen and (min-width: 768px) {
  .p-flow__inner {
    width: 100%;
  }
}

.c-flow__icon {
  position: relative;
}

.c-flow__icon::after {
  background-color: #e6eef6;
  content: "";
  height: 5rem;
  left: 50%;
  position: absolute;
  top: 100%;
  width: 0.125rem;
}

@media screen and (min-width: 768px) {
  .c-flow__icon::after {
    background-color: #e6eef6;
    content: "";
    height: 0.125rem;
    left: 0;
    left: 90%;
    position: absolute;
    top: 50%;
    width: 6.25rem;
  }
}

.c-flow__item:nth-child(5) .c-flow__icon::after {
  display: none;
}

.p-footer {
  margin-top: 1.875rem;
}

@media screen and (min-width: 768px) {
  .p-footer {
    margin-top: 6.25rem;
  }
}

@media screen and (min-width: 768px) {
  .l-inner {
    display: flex;
  }
}

.p-footer__link {
  color: #2a6eae;
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.075em;
}

@media screen and (min-width: 768px) {
  .p-footer__link {
    font-size: 2.125rem;
    white-space: nowrap;
  }
}

.p-footer__site-title {
  line-height: 1;
}

.p-footer__nav {
  margin-top: 2.5rem;
  padding: 0 0.9375rem;
}

@media screen and (min-width: 768px) {
  .p-footer__nav {
    display: block;
    display: flex;
    flex-direction: row;
    height: auto;
    margin-left: 7.5rem;
    margin-top: 0;
    padding: 0;
    position: static;
    text-align: center;
    transform: none;
    width: auto;
  }
}

@media screen and (min-width: 768px) {
  .p-footer__nav-list {
    align-items: flex-start;
    display: flex;
    flex-direction: row;
    gap: 0.625rem;
    height: auto;
    margin: 0;
  }
}

@media screen and (min-width: 768px) {
  .p-footer__nav-item {
    align-items: center;
    display: block;
    height: 100%;
    position: relative;
  }

  .p-footer__nav-item::after {
    background-color: #fff;
    content: "";
    display: block;
    height: 1.25rem;
    position: absolute;
    right: -0.3125rem;
    top: 10;
    width: 0.0625rem;
  }

  .p-footer__nav-item:last-child::after {
    display: none;
  }
}

.p-footer__nav-title {
  border-bottom: 1px solid #2a6eae;
  color: #2a6eae;
  display: block;
  font-size: 1.1875rem;
  font-weight: 700;
  letter-spacing: 0.075em;
  padding: 0.3125rem 0 0.3125rem 0;
  position: relative;
}

@media screen and (min-width: 768px) {
  .p-footer__nav-title {
    color: #2a6eae;
    padding: 0;
  }
}

.p-footer__nav-link {
  cursor: pointer;
  margin-top: 1.75rem;
  padding-bottom: 0.4375rem;
}

@media screen and (min-width: 768px) {
  .p-footer__nav-link {
    display: flex;
    gap: 1.875rem;
  }
}

.p-footer__nav-title {
  cursor: pointer;
  margin-top: 1.25rem;
}

.p-footer__nav-title,
.p-footer__nav-link {
  border-bottom: 1px solid #2a6eae;
  color: #2a6eae;
  cursor: pointer;
  display: block;
  font-size: 1.1875rem;
  font-weight: 700;
  letter-spacing: 0.075em;
  position: relative;
  white-space: nowrap;
}

.p-footer__nav-title::before,
.p-footer__nav-link::before {
  background-color: #2a6eae;
  border-radius: 50%;
  content: "";
  height: 1.25rem;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.25rem;
}

.p-footer__nav-title::after,
.p-footer__nav-link::after {
  border-color: transparent transparent transparent #fff;
  border-style: solid;
  border-width: 0.3125rem 0 0.3125rem 0.5rem;
  content: "";
  position: absolute;
  right: 0.3125rem;
  top: 50%;
  transform: translateY(-50%);
}

@media screen and (min-width: 768px) {

  .p-footer__nav-title::after,
  .p-footer__nav-link::after {
    right: 0.3125rem;
  }
}

@media screen and (min-width: 768px) {

  .p-footer__nav-title,
  .p-footer__nav-link {
    border-bottom: none;
    border-bottom: 1px solid #1e588f;
    color: #2a6eae;
    display: block;
    font-size: 1.125rem;
    font-size: 1.125rem;
    height: 1.5625rem;
    margin-right: 1.25rem;
    margin-top: 0;
    padding: 0;
    padding-right: 1.875rem;
    width: -moz-fit-content;
    width: fit-content;
  }
}

.p-footer__nav-sublist {
  margin: 0.3125rem 0.625rem 0.625rem 1.25rem;
}

@media screen and (min-width: 768px) {
  .p-footer__nav-sublist {
    display: block;
    margin: 0;
    text-align: left;
  }
}

.footer-sublist__item {
  padding-top: 1.25rem;
  position: relative;
}

.footer-sublist__item::after {
  border-right: 1px solid #333;
  border-top: 1px solid #333;
  content: "";
  height: 0.5rem;
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 0.5rem;
}

@media screen and (min-width: 768px) {
  .footer-sublist__item::after {
    right: 15%;
  }
}

.footer-sublist__link {
  display: block;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.075em;
}

.p-footer__container {
  margin-top: 2.1875rem;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .p-footer__container {
    margin-top: 5rem;
  }
}

.p-footer__container a {
  font-size: 0.875rem;
}

@media screen and (min-width: 768px) {
  .p-footer__container a {
    font-size: 1rem;
  }
}

.p-footer__company-link {
  margin-right: 1.25rem;
  padding-right: 1.25rem;
  position: relative;
}

.p-footer__company-link::after {
  background-color: #000;
  content: "";
  height: 0.9375rem;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0.125rem;
}

.p-footer small {
  display: block;
  font-size: 0.6875rem;
  margin-block: 2.1875rem 1.5625rem;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .p-footer small {
    font-size: 0.75rem;
    margin-top: 4.375rem;
  }
}

.p-fv {
  position: relative;
  width: 100%;
}

.p-fv__picture {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
  width: 100%;
}

.p-fv__inner {
  display: flex;
  height: 100%;
  left: 50%;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  width: 100%;
  z-index: 10;
}

@media screen and (min-width: 768px) {
  .p-fv__inner {
    max-width: 1440px;
  }
}

.p-fv__image {
  aspect-ratio: 375/515;
  display: block;
  height: 136.6666666667vw;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media screen and (min-width: 768px) {
  .p-fv__image {
    aspect-ratio: 1440/680;
    height: 42.5rem;
  }
}

.p-fv__image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center bottom;
  object-position: center bottom;
}

.p-fv__content {
  height: 100%;
  left: 50%;
  position: absolute;
  text-align: center;
  top: 0;
  transform: translateX(-50%);
  width: 100%;
  z-index: 10;
}

.p-fv__reserve-circle {
  background-color: #ef7000;
  border: 0.125rem solid #fff;
  border-radius: 5.3333333333vw;
  color: #fff;
  font-size: 3.7333333333vw;
  font-weight: 700;
  height: 10.6666666667vw;
  letter-spacing: 0.075em;
  opacity: 0;
  pointer-events: none;
  position: fixed !important;
  right: 8%;
  top: 4.375rem;
  transition: opacity 0.3s, visibility 0.3s;
  visibility: hidden;
  width: 37.3333333333vw;
  z-index: 90;
}

.p-fv__reserve-circle.is-show {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

@media screen and (min-width: 768px) {
  .p-fv__reserve-circle {
    border-radius: 1.5625rem;
    font-size: 1.25rem;
    height: 3.4375rem;
    position: fixed;
    right: 3.75rem;
    top: 5.625rem;
    width: 14.375rem;
  }
}

.p-fv__circle-link {
  height: 100%;
  padding-inline: 0 1.25rem;
  position: relative;
  width: 100%;
}

.p-fv__circle-link::before {
  background-color: #fff;
  border-radius: 50%;
  content: "";
  height: 4vw;
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-50%);
  width: 4vw;
}

@media screen and (min-width: 768px) {
  .p-fv__circle-link::before {
    height: 1.5625rem;
    right: -7%;
    width: 1.5625rem;
  }
}

.p-fv__circle-link::after {
  border-color: transparent transparent transparent #ef7000;
  border-style: solid;
  border-width: 0.375rem 0 0.375rem 0.5rem;
  content: "";
  position: absolute;
  right: 2%;
  top: 50%;
  transform: translateY(-50%);
}

@media screen and (min-width: 768px) {
  .p-fv__circle-link::after {
    border-width: 0.375rem 0 0.375rem 0.5rem;
    right: -2%;
  }
}

.p-fv__text {
  color: rgba(30, 88, 143, 0.6);
  font-family: Holland, sans-serif;
  font-size: 10.6666666667vw;
  letter-spacing: 0.075em;
  position: absolute;
  right: 4vw;
  top: 33.3333333333vw;
  transform: rotate(-15deg);
}

@media screen and (min-width: 768px) {
  .p-fv__text {
    font-size: 7vw;
    right: 2.1875rem;
    top: 12.5rem;
  }
}

.p-fv__body {
  align-items: center;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 20;
}

.p-fv__span {
  background-color: #1e588f;
  display: block;
  height: 8vw;
  left: 50%;
  margin-bottom: 2.6666666667vw;
  top: 40vw;
  width: 0.1333333333vw;
}

@media screen and (min-width: 768px) {
  .p-fv__span {
    height: 3.75rem;
    margin-bottom: 0;
    position: absolute;
    top: 15%;
    width: 0.125rem;
  }
}

.p-fv__title {
  align-items: center;
  display: flex;
  flex-direction: column;
  left: auto;
  position: relative;
  text-align: center;
  top: auto;
  transform: none;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .p-fv__title {
    margin-top: 6vh;
  }
}

.p-fv__sub-title {
  color: #1e588f;
  font-size: clamp(1.125rem, 5.0666666667vw, 2.375rem);
  font-weight: 700;
  letter-spacing: 0.075em;
}

.p-fv__main-title {
  font-size: clamp(2.125rem, 9.0666666667vw, 4.25rem);
  font-weight: 700;
  letter-spacing: 0.075em;
  width: auto;
}

.p-fv__feature-list {
  display: flex;
  gap: 0.625rem;
  justify-content: center;
  left: auto;
  position: relative;
  top: 0.75rem;
}

@media screen and (min-width: 768px) {
  .p-fv__feature-list {
    gap: 1.25rem;
    margin-bottom: 1.25rem;
  }
}

.p-fv__reserve-square {
  align-items: center;
  background-color: #ef7000;
  border: 0.125rem solid #fff;
  border-radius: 0.625rem;
  bottom: 9.8666666667vw;
  display: flex;
  flex-direction: column;
  height: 20.8vw;
  justify-content: center;
  position: absolute;
  right: 0.8vw;
  transition: opacity 0.3s, visibility 0.3s;
  width: 26vw;
}

.p-fv__reserve-square.is-hidden {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

@media screen and (min-width: 768px) {
  .p-fv__reserve-square {
    box-shadow: 4px 4px 15px 0px rgba(0, 0, 0, 0.3);
    height: 10.625rem;
    right: 1%;
    top: 28.125rem;
    width: 13.125rem;
  }
}

.p-fv__button-icon {
  height: auto;
  width: 12vw;
}

@media screen and (min-width: 768px) {
  .p-fv__button-icon {
    height: auto;
    margin-top: 1.875rem;
    width: 5.625rem;
  }
}

.p-fv__square-link {
  color: #fff;
  font-size: 2.9333333333vw;
  font-weight: 700;
  padding-right: 1.25rem;
  position: relative;
}

@media screen and (min-width: 768px) {
  .p-fv__square-link {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
  }
}

.p-fv__square-link::before {
  background-color: #fff;
  border-radius: 50%;
  content: "";
  height: 3.3333333333vw;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3.3333333333vw;
}

@media screen and (min-width: 768px) {
  .p-fv__square-link::before {
    height: 1.5625rem;
    right: -7%;
    width: 1.5625rem;
  }
}

.p-fv__square-link::after {
  border-color: transparent transparent transparent #ef7000;
  border-style: solid;
  border-width: 0.25rem 0 0.25rem 0.375rem;
  content: "";
  position: absolute;
  right: 0.1875rem;
  top: 50%;
  transform: translateY(-50%);
}

@media screen and (min-width: 768px) {
  .p-fv__square-link::after {
    border-width: 0.5rem 0 0.5rem 0.625rem;
    right: -0.3125rem;
  }
}

.p-fv__button-black {
  bottom: 0;
  height: 13.3333333333vw;
  left: 50%;
  position: absolute;
  transform: translate(-50%, 50%);
  width: 64vw;
}

@media screen and (min-width: 768px) {
  .p-fv__button-black {
    height: 4.6875rem;
    width: 26.25rem;
  }
}

.p-fv__black-link {
  font-size: 3.7333333333vw;
}

@media screen and (min-width: 768px) {
  .p-fv__black-link {
    font-size: 1.375rem;
  }
}

.p-fv__black-link::before {
  background-color: #fff;
  border-radius: 50%;
  content: "";
  height: 3.3333333333vw;
  position: absolute;
  right: 2.6666666667vw;
  top: 50%;
  transform: translateY(-50%);
  width: 3.3333333333vw;
}

@media screen and (min-width: 768px) {
  .p-fv__black-link::before {
    height: 1.5625rem;
    right: 7%;
    width: 1.5625rem;
  }
}

.p-fv__black-link::after {
  border-color: transparent transparent transparent #000;
  border-style: solid;
  border-width: 0.375rem 0 0.375rem 0.5rem;
  content: "";
  position: absolute;
  right: 3.3333333333vw;
  top: 50%;
  transform: translateY(-50%);
}

@media screen and (min-width: 768px) {
  .p-fv__black-link::after {
    border-width: 0.375rem 0 0.375rem 0.5rem;
    right: 9%;
  }
}

.p-header {
  background-image: url("../images/header.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 3.75rem;
  left: 0;
  max-width: 100vw;
  position: fixed !important;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 100;
}

@media screen and (min-width: 768px) {
  .p-header {
    background-image: url("../images/header-pc.jpg");
    height: 4.375rem;
    transition: background-color 0.3s, color 0.3s;
  }

  .p-header.is-color-change {
    background-color: #fff;
    background-image: none;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  }

  .p-header.is-color-change .p-header__link,
  .p-header.is-color-change .p-header__nav-title,
  .p-header.is-color-change .p-header__nav-link {
    color: #2a6eae;
  }

  .p-header.is-color-change .p-header__nav-item::after,
  .p-header.is-color-change .p-header__nav-link::after {
    background-color: #2a6eae;
  }
}

.p-header__wrapper {
  align-items: center;
  display: flex;
  height: 100%;
  margin-inline: 1rem;
}

@media screen and (min-width: 768px) {
  .p-header__wrapper {
    box-sizing: border-box;
    justify-content: space-between;
    margin-inline: 0;
    padding-inline: 1.25rem 0;
    width: 100%;
  }
}

.p-header__site-title {
  line-height: 1;
}

@media screen and (min-width: 768px) {
  .p-header__site-title {
    margin-left: 6.25rem;
  }
}

.p-header__link {
  color: #fff;
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.075em;
}

@media screen and (min-width: 768px) {
  .p-header__link {
    font-size: 1.75rem;
  }
}

.p-header__hamburger {
  color: #1e588f;
  cursor: pointer;
  height: 3.4375rem;
  position: fixed;
  right: 5%;
  top: 0;
  width: 3.4375rem;
  z-index: 1000;
}

@media screen and (min-width: 768px) {
  .p-header__hamburger {
    display: none;
    height: 0;
    position: static;
    width: 0;
  }
}

.p-header__hamburger span {
  background-color: #fff;
  background-color: #2a6eae;
  border-radius: 9999px;
  height: 0.0625rem;
  left: 50%;
  position: absolute;
  top: 60%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
  width: 1.5625rem;
}

.p-header__hamburger span:nth-child(1) {
  top: calc(50% - 0.3125rem);
}

.p-header__hamburger span:nth-child(2) {
  top: calc(50% + 0.3125rem);
}

.p-header__drawer {
  background-color: #fff;
  display: block;
  height: calc(100vh - 3.4375rem);
  left: 0;
  overflow-y: auto;
  overscroll-behavior: none;
  position: fixed;
  top: 3.4375rem;
  transform: translateX(100%);
  transition: transform 0.5s ease;
  width: 100%;
  z-index: 100;
  z-index: 1000;
}

.p-header__drawer.is-open {
  transform: translateX(0);
}

@media screen and (min-width: 768px) {
  .p-header__drawer {
    align-items: center;
    background-color: transparent;
    display: flex;
    gap: 2.5rem;
    height: auto;
    margin-left: 0;
    opacity: 1;
    overflow: visible;
    padding: 0;
    pointer-events: auto;
    position: static;
    top: 0;
    transform: none;
    transform: none;
    width: auto;
    z-index: 1;
  }
}

.p-header__nav {
  margin-top: 2.5rem;
  padding: 0 0.9375rem;
}

@media screen and (min-width: 768px) {
  .p-header__nav {
    align-items: center;
    display: flex;
    flex-grow: 1;
    justify-content: flex-end;
    margin-left: 0;
    margin-top: 0;
    padding: 0;
  }
}

@media screen and (min-width: 768px) {
  .p-header__nav-list {
    align-items: center;
    display: flex;
    flex-wrap: nowrap;
    gap: clamp(0.3125rem, 2vw, 0.9375rem);
    margin: 0;
    white-space: nowrap;
  }
}

@media screen and (min-width: 768px) {
  .p-header__nav-item {
    align-items: center;
    display: flex;
    height: 100%;
    position: relative;
  }

  .p-header__nav-item::after {
    background-color: #fff;
    content: "";
    display: block;
    height: 1.25rem;
    margin-left: clamp(0.625rem, 1.5vw, 1.25rem);
    width: 0.0625rem;
  }

  .p-header__nav-item:last-child::after {
    display: none;
  }
}

.p-header__nav-title {
  border-bottom: 1px solid #2a6eae;
  color: #2a6eae;
  cursor: pointer;
  display: block;
  font-size: 1.1875rem;
  font-weight: 700;
  letter-spacing: 0.075em;
  padding: 0.3125rem 0 0.3125rem 0;
  position: relative;
  top: 100%;
}

.p-header__nav-link {
  cursor: pointer;
  margin-top: 1.75rem;
  padding-bottom: 0.4375rem;
}

@media screen and (min-width: 768px) {
  .p-header__nav-link {
    display: flex;
    gap: 1.875rem;
  }
}

.p-header__nav-title,
.p-header__nav-link {
  border-bottom: 1px solid #2a6eae;
  color: #2a6eae;
  cursor: pointer;
  display: block;
  font-size: 1.1875rem;
  font-weight: 700;
  letter-spacing: 0.075em;
  padding: 1.875rem 0.625rem;
  position: relative;
}

.p-header__nav-title::before,
.p-header__nav-link::before {
  background-color: #2a6eae;
  border-radius: 50%;
  content: "";
  height: 1.25rem;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.25rem;
}

.p-header__nav-title::after,
.p-header__nav-link::after {
  border-color: transparent transparent transparent #fff;
  border-style: solid;
  border-width: 0.3125rem 0 0.3125rem 0.5rem;
  content: "";
  position: absolute;
  right: 0.3125rem;
  top: 50%;
  transform: translateY(-50%);
}

@media screen and (min-width: 768px) {

  .p-header__nav-title,
  .p-header__nav-link {
    border-bottom: none;
    color: #fff;
    display: block;
    font-size: 1.125rem;
    font-size: 1.125rem;
    margin-top: 0;
    padding-block: 1.25rem 0.625rem;
    padding-inline: clamp(0.3125rem, 1vw, 0.9375rem);
  }

  .p-header__nav-title:hover,
  .p-header__nav-link:hover {
    border-bottom: 1px solid #1e588f;
    color: #1e588f;
    transition: 0.3s;
  }

  .p-header__nav-title::before,
  .p-header__nav-title::after,
  .p-header__nav-link::before,
  .p-header__nav-link::after {
    display: none;
  }
}

.p-header__nav-sublist {
  margin: 0.3125rem 0.625rem 0.625rem 1.25rem;
}

@media screen and (min-width: 768px) {
  .p-header__nav-sublist {
    background-color: #fff;
    box-shadow: 0.0625rem 0.0625rem 0 0;
    display: none;
    left: 0;
    padding: 1.25rem 1.875rem;
    position: absolute;
    top: 100%;
    z-index: 200;
  }

  .p-header__nav-sublist::before {
    background: transparent;
    content: "";
    display: block;
    height: 0.9375rem;
    left: 0;
    position: absolute;
    top: -0.9375rem;
    width: 100%;
  }
}

@media screen and (min-width: 768px) {
  .p-header__nav-item:hover .p-header__nav-sublist {
    display: block;
  }
}

.sub-list__item {
  padding: 0.9375rem 0;
  position: relative;
}

@media screen and (min-width: 768px) {
  .sub-list__item:hover {
    border-bottom: 1px solid #1e588f;
  }

  .sub-list__item::after {
    border-right: 1px solid #333;
    border-top: 1px solid #333;
    content: "";
    height: 0.5rem;
    position: absolute;
    right: 3%;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 0.5rem;
  }
}

@media screen and (min-width: 768px) and (min-width: 768px) {
  .sub-list__item::after {
    right: -15%;
  }
}

.sub-list__link {
  display: block;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.075em;
}

.p-header__contact {
  display: none;
}

@media screen and (min-width: 768px) {
  .p-header__contact {
    align-items: center;
    background: linear-gradient(180deg, #2a6fae 0%, #164978 100%);
    display: flex;
    flex-shrink: 0;
    gap: 1.25rem;
    height: 4.375rem;
    justify-content: center;
    margin-left: 0;
    padding-inline: 0 0.625rem;
    width: 12.5rem;
  }
}

.p-header__icon-mail {
  display: block;
  fill: #fff;
}

.p-header__contact-link {
  color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.075em;
  padding-right: 0.625rem;
}

.p-learn {
  margin-top: 5rem;
}

@media screen and (min-width: 768px) {
  .p-learn {
    margin-top: 5.625rem;
  }
}

.p-learn__inner {
  display: flex;
  flex-direction: column;
  padding-inline: 0.9375rem;
}

@media screen and (min-width: 768px) {
  .p-learn__inner {
    margin: 0 auto;
    max-width: 65.625rem;
  }
}

.c-learn__list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

@media screen and (min-width: 768px) {
  .c-learn__list {
    flex-direction: row;
    gap: 1.875rem;
    justify-content: space-between;
  }
}

@media screen and (min-width: 768px) {
  .c-learn__item {
    display: flex;
    gap: 1.25rem;
    margin: 0 auto;
    padding-inline: 0.3125rem;
    width: 25%;
  }
}

.c-learn__img-wrapper {
  width: 25%;
}

@media screen and (min-width: 768px) {
  .c-learn__img-wrapper {
    height: 8.75rem;
    width: 9.375rem;
  }
}

@media screen and (min-width: 768px) {
  .c-learn__text {
    line-height: 1.8;
  }
}

.p-learn__text-wrapper {
  margin: 0 auto;
  max-width: 31.25rem;
  position: relative;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .p-learn__text-wrapper {
    max-width: 40rem;
    padding-left: rem;
  }
}

.p-learn__text-wrapper::before {
  background-image: url("../images/learning5.jpg");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 5.5rem;
  left: 0;
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  width: 2.0625rem;
}

@media screen and (min-width: 768px) {
  .p-learn__text-wrapper::before {
    height: 10rem;
    left: -5%;
    top: 55%;
    width: 5rem;
  }
}

.p-learn__text-wrapper::after {
  background-image: url("../images/learning6.jpg");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 5.5rem;
  position: absolute;
  right: 0;
  top: 45%;
  transform: translateY(-50%);
  width: 2.0625rem;
}

@media screen and (min-width: 768px) {
  .p-learn__text-wrapper::after {
    height: 10rem;
    right: -8%;
    top: 55%;
    width: 5rem;
  }
}

.p-learn__text-top {
  color: #1e588f;
  font-size: 1.1875rem;
  font-weight: 700;
  letter-spacing: 0.075em;
  line-height: 1.1;
  margin-top: 1.875rem;
  margin-top: 0.625rem;
  padding-top: 0.9375rem;
  position: relative;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .p-learn__text-top {
    font-size: 2.4375rem;
    margin-top: 1.875rem;
  }
}

.p-learn__span-before {
  color: #1e588f;
  display: inline-block;
  font-family: "Noto Serif JP", serif;
  font-size: 3.125rem;
  font-weight: 700;
  letter-spacing: 0.003em;
  padding-inline: 0.3125rem 0;
  transform: skewX(-12deg);
}

@media screen and (min-width: 768px) {
  .p-learn__span-before {
    font-size: 6.25rem;
  }
}

.p-learn__span-after {
  color: #1e588f;
  display: inline-block;
  font-family: "Noto Serif JP", serif;
  font-size: 2.1875rem;
  font-weight: 700;
  letter-spacing: 0.075em;
  padding-inline: 0 0.3125rem;
  transform: skewX(-12deg);
}

@media screen and (min-width: 768px) {
  .p-learn__span-after {
    font-size: 3.75rem;
  }
}

.p-learn__text-bottom {
  color: #1e588f;
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: 0.075em;
  line-height: 1.1;
  margin-bottom: 4.375rem;
  position: relative;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .p-learn__text-bottom {
    font-size: 2.125rem;
    margin-top: 0.5rem;
  }
}

.p-learn__banner {
  aspect-ratio: 375/200;
  display: flex;
  position: relative;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .p-learn__banner {
    aspect-ratio: 1440/405;
    margin-top: 1.25rem;
  }
}

.p-learn__bg-area {
  aspect-ratio: 375/200;
  position: relative;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .p-learn__bg-area {
    aspect-ratio: 1440/500;
  }
}

.p-learn__banner-item {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.p-learn__banner-item:first-of-type {
  z-index: 2;
}

.p-learn__banner-item:last-of-type {
  z-index: 1;
}

@media screen and (min-width: 768px) {
  .p-learn__banner-item:last-of-type {
    height: 85%;
    top: 8%;
  }
}

.p-learn__banner-img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-learn__banner-wrapper {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.p-learn__content {
  left: 50%;
  position: absolute;
  text-align: center;
  top: 23%;
  transform: translateX(-50%);
  width: -moz-fit-content;
  width: fit-content;
  z-index: 3;
}

@media screen and (min-width: 768px) {
  .p-learn__content {
    display: flex;
    flex-direction: row;
    top: 32%;
  }
}

.p-learn__content::before {
  background-color: #000;
  content: "";
  height: 3.125rem;
  left: 0;
  position: absolute;
  top: 30%;
  transform: translateY(-40%) rotate(-20deg);
  width: 0.125rem;
}

@media screen and (min-width: 768px) {
  .p-learn__content::before {
    height: 1.875rem;
    top: 40%;
  }
}

.p-learn__content::after {
  background-color: #000;
  content: "";
  height: 3.125rem;
  position: absolute;
  right: 3%;
  top: 30%;
  transform: translateY(-40%) rotate(20deg);
  width: 0.125rem;
}

@media screen and (min-width: 768px) {
  .p-learn__content::after {
    height: 1.875rem;
    right: -3%;
    top: 40%;
  }
}

.p-learn__banner-text {
  font-size: 1rem;
  font-weight: 700;
  padding-inline: 0.625rem;
  position: relative;
  white-space: nowrap;
}

@media screen and (min-width: 768px) {
  .p-learn__banner-text {
    font-size: 1.375rem;
    padding: 0 0 0 1.25rem;
  }
}

.p-learn__banner-yellow {
  color: #f7fe2f;
  font-size: 1.1875rem;
  font-weight: 700;
}

@media screen and (min-width: 768px) {
  .p-learn__banner-yellow {
    font-size: 1.625rem;
    white-space: nowrap;
  }
}

.p-learn__black {
  display: block;
  left: 50%;
  position: relative;
  top: 52%;
  transform: translateX(-50%);
  z-index: 10;
}

@media screen and (min-width: 768px) {
  .p-learn__black {
    height: 4.6875rem;
    left: 50%;
    margin: 0;
    top: 50%;
    transform: translateX(-50%);
    width: 26.875rem;
  }
}

.p-participant {
  margin-top: 3.75rem;
}

@media screen and (min-width: 768px) {
  .p-participant__title {
    margin-block: 4.0625rem 0;
  }
}

.p-participant__title-ja {
  padding-inline: 0;
  white-space: nowrap;
}

.p-participant__wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
  margin-top: 0.9375rem;
}

@media screen and (min-width: 768px) {
  .p-participant__wrapper {
    flex-direction: row;
    gap: 4.0625rem;
    justify-content: center;
    margin-top: 1.875rem;
    max-width: 48.75rem;
  }
}

.p-participant__chart-container {
  position: relative;
}

@media screen and (min-width: 768px) {
  .p-participant__chart-container {
    gap: 1.25rem;
  }
}

.p-participant__pie-chart {
  background: conic-gradient(rgb(187, 208, 228) 0% 8%, rgb(235, 175, 123) 8% 62%, rgb(187, 208, 228) 62% 92%, rgb(230, 236, 246) 92% 100%);
  border-radius: 50%;
  height: 15rem;
  margin: 0 auto;
  position: relative;
  width: 15rem;
}

@media screen and (min-width: 768px) {
  .p-participant__pie-chart {
    height: 20rem;
    width: 20rem;
  }
}

.p-participant__center {
  align-items: center;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  height: 7.5rem;
  justify-content: center;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 7.5rem;
}

@media screen and (min-width: 768px) {
  .p-participant__center {
    height: 10.625rem;
    width: 10.625rem;
  }
}

.chart__center-text {
  color: #1e588f;
  font-size: 1.1875rem;
  font-weight: 700;
  letter-spacing: 0.075em;
}

@media screen and (min-width: 768px) {
  .chart__center-text {
    font-size: 1.625rem;
  }
}

.chart__label-age {
  position: absolute;
  right: 0;
  text-align: center;
  top: 50%;
}

@media screen and (min-width: 768px) {
  .chart__label-age {
    top: 55%;
  }
}

.chart__label-30 {
  -webkit-text-stroke: 5px #ef7000;
  color: #fff;
  font-size: 1.0625rem;
  font-weight: 700;
  paint-order: stroke fill;
}

@media screen and (min-width: 768px) {
  .chart__label-30 {
    -webkit-text-stroke: 8px #ef7000;
    font-size: 1.625rem;
    paint-order: stroke fill;
  }
}

.chart__label-bottom {
  -webkit-text-stroke: 5px #ef7000;
  color: #fff;
  font-size: 1.8125rem;
  font-weight: 700;
  paint-order: stroke fill;
}

@media screen and (min-width: 768px) {
  .chart__label-bottom {
    -webkit-text-stroke: 8px #ef7000;
    font-size: 2.5rem;
    margin-top: -1.25rem;
    paint-order: stroke fill;
  }
}

.chart__label-age2 {
  left: -5%;
  position: absolute;
  text-align: center;
  top: 35%;
}

@media screen and (min-width: 768px) {
  .chart__label-age2 {
    left: -2%;
  }
}

.chart__label-40 {
  -webkit-text-stroke: 5px #1e588f;
  color: #fff;
  font-size: 1.0625rem;
  font-weight: 700;
  paint-order: stroke fill;
}

@media screen and (min-width: 768px) {
  .chart__label-40 {
    -webkit-text-stroke: 8px #1e588f;
    font-size: 1.625rem;
    paint-order: stroke fill;
  }
}

.chart__label-bottom2 {
  -webkit-text-stroke: 5px #1e588f;
  color: #fff;
  font-size: 1.8125rem;
  font-weight: 700;
  paint-order: stroke fill;
}

@media screen and (min-width: 768px) {
  .chart__label-bottom2 {
    -webkit-text-stroke: 8px #1e588f;
    font-size: 2.5rem;
    margin-top: -1.25rem;
    paint-order: stroke fill;
  }
}

.p-participant__text {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.075em;
  margin-top: 0.625rem;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .p-participant__text {
    font-size: 1.625rem;
    margin-top: 0.3125rem;
    padding-left: 1.25rem;
  }
}

.p-participant__pie-chart2 {
  align-items: center;
  background: conic-gradient(rgb(187, 208, 228) 0% 33%, rgb(235, 175, 123) 33% 66%, rgb(187, 208, 228) 66% 85%, rgb(230, 238, 246) 85% 100%);
  border-radius: 50%;
  height: 15rem;
  margin: 0 auto;
  position: relative;
  width: 15rem;
}

@media screen and (min-width: 768px) {
  .p-participant__pie-chart2 {
    height: 20rem;
    width: 20rem;
  }
}

.p-participant__center2 {
  align-items: center;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  height: 7.5rem;
  justify-content: center;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 7.5rem;
}

@media screen and (min-width: 768px) {
  .p-participant__center2 {
    height: 10.625rem;
    width: 10.625rem;
  }
}

.chart__center-text2 {
  color: #1e588f;
  font-size: 1.1875rem;
  font-weight: 700;
  letter-spacing: 0.075em;
}

@media screen and (min-width: 768px) {
  .chart__center-text2 {
    font-size: 1.625rem;
  }
}

.chart__label-income {
  position: absolute;
  right: 20%;
  text-align: center;
  top: 70%;
}

@media screen and (min-width: 768px) {
  .chart__label-income {
    top: 75%;
  }
}

.chart__label-600 {
  -webkit-text-stroke: 5px #ef7000;
  color: #fff;
  font-size: 1.0625rem;
  font-weight: 700;
  paint-order: stroke fill;
}

@media screen and (min-width: 768px) {
  .chart__label-600 {
    -webkit-text-stroke: 8px #ef7000;
    font-size: 1.625rem;
    paint-order: stroke fill;
  }
}

.chart__label-bottom3 {
  -webkit-text-stroke: 5px #ef7000;
  color: #fff;
  font-size: 1.8125rem;
  font-weight: 700;
  paint-order: stroke fill;
}

@media screen and (min-width: 768px) {
  .chart__label-bottom3 {
    -webkit-text-stroke: 8px #ef7000;
    font-size: 2.5rem;
    margin-top: -1.25rem;
    paint-order: stroke fill;
  }
}

.chart__label-income2 {
  left: -5%;
  position: absolute;
  text-align: center;
  top: 35%;
}

@media screen and (min-width: 768px) {
  .chart__label-income2 {
    left: -10%;
    top: 42%;
  }
}

.chart__label-800 {
  -webkit-text-stroke: 5px #1e588f;
  color: #fff;
  font-size: 1.0625rem;
  font-weight: 700;
  paint-order: stroke fill;
}

@media screen and (min-width: 768px) {
  .chart__label-800 {
    -webkit-text-stroke: 8px #1e588f;
    font-size: 1.625rem;
    paint-order: stroke fill;
  }
}

.chart__label-bottom4 {
  -webkit-text-stroke: 5px #1e588f;
  color: #fff;
  font-size: 1.8125rem;
  font-weight: 700;
  paint-order: stroke fill;
}

@media screen and (min-width: 768px) {
  .chart__label-bottom4 {
    -webkit-text-stroke: 8px #1e588f;
    font-size: 2.5rem;
    margin-top: -1.25rem;
    paint-order: stroke fill;
  }
}

.p-participant__text2 {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.075em;
  margin-top: 0.625rem;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .p-participant__text2 {
    font-size: 1.625rem;
    margin-top: 0.3125rem;
    padding-left: 1.25rem;
  }
}

.p-reason {
  margin-top: 3.75rem;
  overflow: hidden;
}

@media screen and (min-width: 768px) {
  .p-reason {
    margin-top: 6.875rem;
  }
}

.p-reason__title {
  margin-bottom: 1.125rem;
}

.p-reason__wrapper {
  background-color: #d6e3f1;
  padding-block: 4.0625rem 4.6875rem;
  z-index: -2;
}

@media screen and (min-width: 768px) {
  .p-reason__wrapper {
    padding-block: 5.625rem 6.25rem;
  }
}

@media screen and (min-width: 768px) {
  .p-reason__inner {
    margin-inline: auto;
    width: 62.5rem;
  }
}

.p-reason__item1 {
  position: relative;
  width: 95%;
}

@media screen and (min-width: 768px) {
  .p-reason__item1 {
    display: flex;
    gap: 1.875rem;
    margin-top: 3.125rem;
    padding-bottom: 3.75rem;
    width: 100%;
  }
}

.p-reason__content-left {
  padding: 0.625rem 1.4375rem 0 0.9375rem;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 1;
}

@media screen and (min-width: 768px) {
  .p-reason__content-left {
    padding-left: 1.25rem;
    padding-top: 1.25rem;
  }
}

.p-reason__item-label {
  display: flex;
  gap: 0.9375rem;
}

@media screen and (min-width: 768px) {
  .p-reason__item-label {
    width: -moz-fit-content;
    width: fit-content;
  }
}

.p-reason__item-title {
  margin-top: 0.3125rem;
}

@media screen and (min-width: 768px) {
  .p-reason__item-title {
    margin: 0.625rem 0 0 0.625rem;
  }
}

.p-reason__item-text1 {
  margin-top: 0.625rem;
}

@media screen and (min-width: 768px) {
  .p-reason__item-text1 {
    margin-top: 0;
    max-width: 36.875rem;
    position: relative;
  }
}

.p-reason__item-id {
  color: #e6eef6;
  font-family: "Lato";
  font-size: 3.125rem;
  font-weight: 700;
}

@media screen and (min-width: 768px) {
  .p-reason__item-id {
    font-size: 4rem;
  }
}

.p-reason__item-title {
  font-size: 1.375rem;
  font-weight: 700;
  margin-top: 0.625rem;
}

@media screen and (min-width: 768px) {
  .p-reason__item-title {
    font-size: 1.5rem;
  }
}

.p-reason__item-img1 {
  height: auto;
  width: 90%;
  -o-object-fit: cover;
  margin: 1.25rem 0 0 10%;
  object-fit: cover;
  position: relative;
  z-index: 2;
}

@media screen and (min-width: 768px) {
  .p-reason__item-img1 {
    margin: 2.5rem 0 0 0;
    max-width: 28.125rem;
    width: 38%;
  }
}

.p-reason__item-img1 img {
  display: block;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media screen and (min-width: 768px) {
  .p-reason__item-img1 img {
    max-width: 25rem;
  }
}

.p-reason__item2 {
  display: flex;
  flex-direction: column-reverse;
  margin-left: auto;
  margin-top: 2.1875rem;
  width: 90%;
}

@media screen and (min-width: 768px) {
  .p-reason__item2 {
    display: flex;
    flex-direction: row;
    margin-top: 0;
    padding-bottom: 1.875rem;
    position: relative;
    width: 100%;
  }
}

.p-reason__content-right {
  padding-left: 0.9375rem;
  position: relative;
  z-index: 1;
}

@media screen and (min-width: 768px) {
  .p-reason__content-right {
    margin-left: 1.5625rem;
    padding-top: 1.25rem;
    width: -moz-fit-content;
    width: fit-content;
  }
}

.p-reason__item-label2 {
  display: flex;
  gap: 0.9375rem;
  margin-top: 0.9375rem;
}

@media screen and (min-width: 768px) {
  .p-reason__item-label2 {
    gap: 1.25rem;
    margin-top: 0;
  }
}

.u-mobile-br {
  display: inline;
}

@media screen and (min-width: 768px) {
  .u-mobile-br {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .p-reason__item-text2 {
    max-width: 36.875rem;
    padding: 0;
    z-index: 2;
  }
}

.p-reason__item-img2 {
  height: auto;
  margin: 2.1875rem 0 0 -1.875rem;
  position: relative;
  width: 100%;
  z-index: 2;
}

@media screen and (min-width: 768px) {
  .p-reason__item-img2 {
    margin: 2.5rem 0 0 0;
    max-width: 25rem;
    width: 35%;
  }
}

.p-reason__item3 {
  margin-top: 2.1875rem;
  position: relative;
  width: 90%;
}

@media screen and (min-width: 768px) {
  .p-reason__item3 {
    display: flex;
    gap: 1.875rem;
    margin-top: 2.1875rem;
    width: 100%;
  }
}

.p-reason__item3 .p-reason__content-left {
  padding: 0.625rem 0.1875rem 0 0.9375rem;
}

.p-reason__item-img3 {
  margin: 1.25rem 0 0 10%;
  position: relative;
  width: 95%;
  z-index: 1;
}

@media screen and (min-width: 768px) {
  .p-reason__item-img3 {
    margin: 3.125rem 0 0 0;
    max-width: 25rem;
    width: 37%;
  }
}

.p-reason__content-left::before {
  background-color: #fff;
  content: "";
  display: block;
  height: 140%;
  left: calc(50% - 50vw);
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}

@media screen and (min-width: 768px) {
  .p-reason__content-left::before {
    height: 83%;
    right: -30%;
  }
}

.p-reason__item3 .p-reason__content-left::before {
  width: 108%;
}

@media screen and (min-width: 768px) {
  .p-reason__item3 .p-reason__content-left::before {
    height: 82%;
    right: 0;
    width: 200%;
  }
}

.p-reason__content-right::before {
  background-color: #fff;
  content: "";
  display: block;
  height: 155%;
  left: 0;
  position: absolute;
  right: calc(50% - 50vw);
  top: 0;
  z-index: -1;
}

@media screen and (min-width: 768px) {
  .p-reason__content-right::before {
    height: 84%;
    left: -30%;
  }
}

.p-reason__banner {
  aspect-ratio: 375/200;
  display: flex;
  position: relative;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .p-reason__banner {
    aspect-ratio: 1440/410;
    margin-top: -2.5rem;
  }
}

.p-reason__bg-area {
  aspect-ratio: 375/200;
  position: relative;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .p-reason__bg-area {
    aspect-ratio: 1440/500;
  }
}

.p-reason__banner-item {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.p-reason__banner-item:first-of-type {
  z-index: 2;
}

.p-reason__banner-item:last-of-type {
  height: 98%;
  z-index: 1;
}

@media screen and (min-width: 768px) {
  .p-reason__banner-item:last-of-type {
    height: 80%;
    top: 10%;
  }
}

.p-reason__banner-img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-reason__banner-wrapper {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.p-reason__content {
  left: 50%;
  position: absolute;
  text-align: center;
  top: 22%;
  transform: translateX(-50%);
  width: -moz-fit-content;
  width: fit-content;
  z-index: 3;
}

@media screen and (min-width: 768px) {
  .p-reason__content {
    display: flex;
    flex-direction: row;
    top: 35%;
  }
}

.p-reason__content::before {
  background-color: #000;
  content: "";
  height: 3.125rem;
  left: 0;
  position: absolute;
  top: 0.625rem;
  transform: translateY(-40%) rotate(-20deg);
  width: 0.125rem;
}

@media screen and (min-width: 768px) {
  .p-reason__content::before {
    height: 1.875rem;
    left: -0.625rem;
    top: 1.25rem;
  }
}

.p-reason__content::after {
  background-color: #000;
  content: "";
  height: 3.125rem;
  position: absolute;
  right: 0;
  top: 0.625rem;
  transform: translateY(-40%) rotate(20deg);
  width: 0.125rem;
}

@media screen and (min-width: 768px) {
  .p-reason__content::after {
    height: 1.875rem;
    right: -0.625rem;
    top: 1.25rem;
  }
}

.p-reason__banner-text {
  font-size: 1rem;
  font-weight: 700;
  padding-inline: 0.625rem;
  position: relative;
  white-space: nowrap;
}

@media screen and (min-width: 768px) {
  .p-reason__banner-text {
    font-size: 1.375rem;
    padding: 0;
  }
}

.p-reason__banner-yellow {
  color: #f7fe2f;
  font-size: 1.1875rem;
  font-weight: 700;
  letter-spacing: 0.075em;
}

@media screen and (min-width: 768px) {
  .p-reason__banner-yellow {
    font-size: 1.625rem;
    margin-left: -0.3125rem;
    margin-top: -0.3125rem;
    white-space: nowrap;
  }
}

.p-reason__black {
  display: block;
  left: 50%;
  position: relative;
  top: 55%;
  transform: translateX(-50%);
  z-index: 10;
}

@media screen and (min-width: 768px) {
  .p-reason__black {
    height: 4.6875rem;
    left: 50%;
    margin: 0;
    top: 50%;
    transform: translateX(-50%);
    width: 26.875rem;
  }
}

.js-fade__left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 1.2s ease-out, transform 1.2s ease-out;
}

.js-fade__left.is-intersecting {
  opacity: 1;
  transform: translateX(0);
}

.js-fade__right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 1.2s ease-out, transform 1.2s ease-out;
}

.js-fade__right.is-intersecting {
  opacity: 1;
  transform: translateX(0);
}

.p-schedule {
  margin-top: 2.1875rem;
}

@media screen and (min-width: 768px) {
  .p-schedule {
    margin-top: 0.625rem;
  }
}

@media screen and (min-width: 768px) {
  .p-schedule__title {
    font-size: 2.5rem;
  }
}

.p-schedule__wrapper {
  background-color: #f6f6f6;
  padding-block: 3.4375rem 3.75rem;
}

@media screen and (min-width: 768px) {
  .p-schedule__wrapper {
    padding-inline: 6.875rem 6.25rem;
  }
}

.p-schedule__inner {
  width: 100%;
}

.p-schedule__list {
  max-width: 31.25rem;
}

@media screen and (min-width: 768px) {
  .p-schedule__list {
    margin-block: 1.25rem 2.5rem;
    max-width: none;
  }
}

.c-schedule__item:first-child {
  height: auto;
}

@media screen and (min-width: 768px) {
  .c-schedule__item:first-child {
    height: auto;
    max-width: none;
  }
}

.c-schedule__date:first-child {
  width: 25%;
}

@media screen and (min-width: 768px) {
  .c-schedule__date:first-child {
    height: auto;
  }
}

.c-schedule__item:first-child .c-schedule__day {
  padding-block: 1.875rem;
}

@media screen and (min-width: 768px) {
  .c-schedule__item:first-child .c-schedule__day {
    height: auto;
    padding-top: 1.25rem;
  }
}

.p-test {
  color: #000;
  color: var(--red);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.25rem;
  margin-block: 3.125rem;
}

@media screen and (min-width: 1024px) {
  .p-test {
    font-size: 3.125rem;
  }
}

.p-test__img {
  height: 100%;
  width: 100%;
}

.p-test__img img {
  height: auto;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-voice {
  margin-top: 2.8125rem;
}

@media screen and (min-width: 768px) {
  .p-voice {
    margin-top: 4.6875rem;
  }
}

.p-voice__swiper-wrapper {
  transition-timing-function: linear !important;
}

.u-pc {
  display: none;
}

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

@media screen and (min-width: 768px) {
  .u-sp {
    display: none;
  }
}
/*# sourceMappingURL=styles.css.map */
