@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.4897579143vw;
  }
}
@media (min-width: 1074px) {
  html {
    font-size: 100%;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #004EA1;
  background-image: url(../images/header-bg.webp), linear-gradient(to right, #004EA1, #004EA1);
  background-blend-mode: multiply;
  background-size: cover;
  background-position: center;
  background-repeat: repeat-y;
  background-attachment: fixed;
}

@media (any-hover: hover) {
  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;
  padding: 0;
}

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

/* 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 {
  text-decoration: none;
  color: inherit;
}

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

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

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

/* 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;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.l-inner {
  width: 100%;
  padding-right: 2rem;
  padding-left: 2rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .l-inner {
    max-width: 1074px;
    padding-right: 1.5625rem;
    padding-left: 1.5625rem;
  }
}

.l-main {
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .l-main {
    border-radius: 1.25rem;
    box-shadow: 0 1.875rem 1.875rem rgba(0, 0, 0, 0.25);
  }
}

.l-pc {
  display: flex;
  min-height: 100vh;
}

.l-pc__header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 4rem;
}
@media screen and (min-width: 768px) {
  .l-pc__header {
    display: block;
    width: calc((100% - 26.25rem) / 1020 * 786);
    height: 100vh;
    position: sticky;
    left: auto;
    left: initial;
    right: auto;
    right: initial;
    align-self: flex-start;
  }
}

.l-pc__aside {
  display: none;
}
@media screen and (min-width: 768px) {
  .l-pc__aside {
    display: block;
    width: calc((100% - 26.25rem) / 1020 * 234);
    height: 100vh;
    position: sticky;
    top: 0;
    align-self: flex-start;
  }
}

.l-pc__main {
  width: 100%;
  max-width: 26.25rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .l-pc__main {
    position: relative;
    z-index: 1;
    width: 26.25rem;
    margin-block: 3.1875rem 3.125rem;
    background-color: #fff;
    border-radius: 1.25rem;
  }
}

.l-pc__header,
.l-pc__aside {
  font-size: 4.2666666667vw;
}
@media screen and (min-width: 768px) {
  .l-pc__header,
  .l-pc__aside {
    font-size: 1.1111111111vw;
  }
}

.c-breadcrumb {
  padding-top: 5.625rem;
  padding-inline: 2rem;
  font-size: 0.6875rem;
  letter-spacing: 0.11em;
}
@media screen and (min-width: 768px) {
  .c-breadcrumb {
    padding-top: 1.25rem;
    border-radius: 1.25rem 1.25rem 0 0;
  }
}

.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 17.625rem;
  padding: 0.75rem 0.625rem;
  background-color: #fff;
  color: #004EA1;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: -0.011em;
  text-align: center;
  border-radius: 0.3125rem;
  transition: background-color 0.3s ease, color 0.3s ease;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .c-btn {
    margin-inline: 0;
  }
}
.c-btn::after {
  content: "";
  width: 2.4375rem;
  height: 1.5rem;
  background-image: url(../images/icon-arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-left: 1.25rem;
  transition: transform 0.3s ease, background-image 0.3s ease;
}
@media (any-hover: hover) {
  .c-btn:hover {
    background-color: #004EA1;
    color: #fff;
  }
  .c-btn:hover::after {
    transform: translateX(0.625rem);
    background-image: url(../images/icon-arrow-white.svg);
  }
}

.c-btn--note {
  background-color: transparent;
  border: 0.0625rem solid #004EA1;
}

.c-btn-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 8.25rem;
  padding: 0.25rem;
  background-color: #fff;
  border: 0.0625rem solid #004EA1;
  border-radius: 0.3125rem;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.c-btn-more::after {
  content: "";
  width: 0.6875rem;
  height: 0.625rem;
  background-image: url(../images/arrow-mini.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-left: 0.25rem;
  transition: transform 0.3s ease, background-image 0.3s ease;
}
@media (any-hover: hover) {
  .c-btn-more:hover {
    background-color: #004EA1;
    color: #fff;
  }
  .c-btn-more:hover::after {
    transform: translateX(0.3125rem);
    background-image: url(../images/arrow-mini-white.svg);
  }
}

.c-btn--blue {
  background-color: #004EA1;
  border: 0.0625rem solid #004EA1;
  color: #fff;
  transition: all 0.3s ease;
}
@media (any-hover: hover) {
  .c-btn--blue:hover {
    background-color: #fff;
    color: #004EA1;
  }
}

.c-btn--blue-light {
  background-color: #4085CF;
  border: 0.0625rem solid #4085CF;
  color: #fff;
  transition: all 0.3s ease;
}
@media (any-hover: hover) {
  .c-btn--blue-light:hover {
    background-color: #fff;
    color: #004EA1;
    border-color: #004EA1;
  }
}

.c-btn--blue-light,
.c-btn--blue {
  max-width: 20.75rem;
}
@media screen and (min-width: 768px) {
  .c-btn--blue-light,
  .c-btn--blue {
    max-width: 17.625rem;
  }
}
.c-btn--blue-light::after,
.c-btn--blue::after {
  background-image: url(../images/icon-arrow-white.svg);
}
@media (any-hover: hover) {
  .c-btn--blue-light:hover::after,
  .c-btn--blue:hover::after {
    background-image: url(../images/icon-arrow.svg);
  }
}

.c-btn--orange {
  background-color: #E5992E;
  border: 0.0625rem solid #E5992E;
  color: #fff;
  max-width: 100%;
  transition: all 0.3s ease;
}
.c-btn--orange::after {
  background-image: url(../images/icon-arrow-white.svg);
}
@media (any-hover: hover) {
  .c-btn--orange:hover {
    background-color: #fff;
    color: #004EA1;
    border-color: #004EA1;
  }
  .c-btn--orange:hover::after {
    background-image: url(../images/icon-arrow.svg);
  }
}

.c-btn-group {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 0.6875rem;
  gap: 0.6875rem;
  padding-block: 0.625rem;
  padding-inline: 2rem;
  background-color: #fff;
  z-index: 90;
}
@media screen and (min-width: 768px) {
  .c-btn-group {
    display: none;
  }
}

.c-btn--blue-with {
  border-radius: 2.1875rem;
  line-height: 1.2;
  padding: 0.5rem 0.5625rem 0.5rem 0.625rem;
}
.c-btn--blue-with::after {
  margin-left: 0.5rem;
}

/* 初期設定 */
.c-dialog {
  padding: 0;
  border: none;
  margin-inline: auto;
  background-color: transparent;
}
.c-dialog::backdrop {
  background-color: rgba(0, 78, 161, 0.9);
  opacity: 0;
}

.c-dialog[open]::backdrop {
  opacity: 1;
}

.c-dialog__content {
  padding-top: 1.375rem;
  opacity: 0;
  transform: scale(0.95);
  width: 100%;
}
.c-dialog__content img {
  aspect-ratio: 442/691;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .c-dialog__content {
    padding-top: 0.625rem;
    width: 27.625rem;
  }
}

.c-dialog__close {
  position: absolute;
  top: 0;
  right: 1.25rem;
  width: 1.875rem;
  height: 1.875rem;
  border: none;
  outline: none;
  cursor: pointer;
}
.c-dialog__close img {
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .c-dialog__close {
    right: 0;
  }
}

.c-dialog__title {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.64;
  letter-spacing: -0.011em;
  font-family: "Shippori Mincho", serif;
  margin-bottom: 0.5625rem;
  color: #fff;
}

.c-title-group__en {
  font-size: 2.25rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  font-family: "Kite One", sans-serif;
  text-transform: uppercase;
}
.c-title-group__en.--cap {
  text-transform: capitalize;
}

.c-title-group__ja {
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0;
  text-align: center;
}

.c-sub-title {
  text-align: center;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0;
}

.p-about {
  padding-block: 3.75rem 4.875rem;
  background-image: linear-gradient(to bottom, #d0e5ed 0%, #d0e5ed 82.6%, #fff 82.6%, #fff 100%);
  overflow: hidden;
}

.p-about__inner {
  padding-inline: 0.8125rem;
}

.p-about__text {
  margin-top: 2.5rem;
  padding-inline: 1.125rem;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.7857142857;
  letter-spacing: 0.11em;
}

.p-about__title {
  margin-top: 3.5rem;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.8666666667;
  letter-spacing: 0.11em;
  text-align: center;
}

.p-about__btn {
  text-align: center;
  margin-block-start: 2rem;
}

.p-about__card {
  position: relative;
  margin-top: 0.5rem;
}

.p-about__swiper {
  padding-block: 1.75rem;
  position: relative;
  left: 50%;
  right: 0;
  width: 100vw;
  transform: translateX(-50%);
  max-width: 26.25rem;
}

.p-about__card-img {
  aspect-ratio: 310/416;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: auto;
  border-radius: 0.625rem;
  box-shadow: 3px 5px 4px 0 rgba(0, 0, 0, 0.2);
}

.swiper {
  position: relative;
}

.swiper-wrapper {
  position: relative;
}

.swiper-pagination-bullet {
  opacity: 1;
  background: #d0e5ed;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

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

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 0;
  top: auto;
  left: 50%;
  transform: translateX(-50%);
}

.p-about__swiper-button-prev {
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.p-about__swiper-button-prev::after {
  content: "";
  display: block;
  background-image: url(../images/swiper-arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter: drop-shadow(-4px -3px 4px rgba(0, 0, 0, 0.2));
  width: 28px;
  height: 28px;
  rotate: 180deg;
}

.p-about__swiper-button-next {
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}
.p-about__swiper-button-next::after {
  content: "";
  display: block;
  background-image: url(../images/swiper-arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter: drop-shadow(-4px 3px 4px rgba(0, 0, 0, 0.2));
  width: 28px;
  height: 28px;
}

.p-aside {
  padding-block: 6rem 5.9375rem;
  padding-right: 4.6875rem;
}

.p-aside__inner {
  background-color: #fff;
  height: 100%;
  border-radius: 0 1.25rem 1.25rem 0;
}

.p-company__inner {
  padding-inline: 2rem;
}

.p-company__title-img {
  margin-top: 1.875rem;
  text-align: center;
}
.p-company__title-img img {
  display: inline;
  width: 18.125rem;
  height: auto;
}

.p-company__content {
  margin-top: 1.1875rem;
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 1.25rem;
  gap: 1.25rem;
}

.p-company__content-title,
.p-company__content-text {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.4285714286;
  letter-spacing: 0.11em;
}

.p-company__content-text .p-company__content-text-link {
  text-decoration: none;
}

.p-company__content-text a {
  text-decoration: underline;
  transition: color 0.3s ease;
}
@media (any-hover: hover) {
  .p-company__content-text a:hover {
    color: #9FD7EB;
  }
}

.p-company__sns {
  margin-top: 2.6875rem;
  text-align: center;
}
.p-company__sns a {
  display: inline-block;
}
.p-company__sns a img {
  display: block;
  width: 2.5rem;
  height: auto;
}
@media (any-hover: hover) {
  .p-company__sns a:hover {
    opacity: 0.7;
  }
}

.p-footer {
  background-color: #9FD7EB;
  color: #004EA1;
  padding-block: 2.5rem 5.5rem;
}
@media screen and (min-width: 768px) {
  .p-footer {
    padding-block: 2.5625rem 2.6875rem;
    border-radius: 0 0 1.25rem 1.25rem;
  }
}

.p-footer__inner {
  padding-inline: 2.8125rem;
}

.p-footer__logo {
  margin-top: 1.75rem;
}

.p-footer__logo a img {
  width: 100%;
  max-width: 17.8125rem;
  height: auto;
  display: block;
  margin-inline: auto;
}

.p-footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 1.5625rem;
}

.p-footer__nav-item a {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  line-height: 1;
  font-family: "Kite One", sans-serif;
  text-transform: uppercase;
  transition: color 0.3s ease;
}
@media (any-hover: hover) {
  .p-footer__nav-item a:hover {
    color: #fff;
  }
}

.p-footer__nav-item__sub {
  display: inline-block;
  font-size: 0.75rem;
  line-height: 1;
  text-transform: capitalize;
  padding-left: 0.75rem;
  font-family: "Noto Sans JP", sans-serif;
}

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

.p-footer__links {
  margin-top: 2.625rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.p-footer__links-company,
.p-footer__links-privacy {
  font-size: 0.6875rem;
  line-height: 2;
  letter-spacing: 0.1em;
  text-align: center;
  transition: color 0.3s ease;
}
@media (any-hover: hover) {
  .p-footer__links-company:hover,
  .p-footer__links-privacy:hover {
    color: #fff;
  }
}

.p-footer__thanks {
  margin-block-start: 2.125rem;
  padding-block: 1.375rem;
  padding-inline: 2rem;
  border-top: 0.0625rem solid #004EA1;
  border-bottom: 0.0625rem solid #004EA1;
}

.p-footer__thanks-title,
.p-footer__thanks-text {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.5714285714;
  letter-spacing: 0.11em;
  text-align: center;
}

.p-footer__thanks-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.p-footer__thanks-name {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.8333333333;
  letter-spacing: 0.11em;
  text-align: center;
}
.p-footer__thanks-name:nth-of-type(odd)::after {
  content: "、";
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.8333333333;
  letter-spacing: 0.11em;
  text-align: center;
}

.p-footer__copyright small {
  display: block;
  text-align: center;
  font-size: 0.5rem;
  letter-spacing: 0.1em;
  margin-top: 2rem;
}

@media screen and (min-width: 768px) {
  .p-fv {
    overflow-x: hidden;
    border-radius: 1.25rem 1.25rem 0 0;
  }
}

.p-fv__card {
  position: relative;
}

.p-fv__title {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 14.125rem;
  height: auto;
  z-index: 2;
}
.p-fv__title img {
  aspect-ratio: 226/254;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: auto;
}

.p-fv__img {
  aspect-ratio: 375/600;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: auto;
}

.p-fv__scroll {
  position: absolute;
  z-index: 3;
  bottom: 8rem;
  left: 1.25rem;
  writing-mode: vertical-rl;
}
.p-fv__scroll span {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.011em;
  text-transform: capitalize;
}
.p-fv__scroll::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10.9375rem;
  margin: auto;
  width: 0.125rem;
  height: 10.625rem;
  background-color: #004EA1;
  animation: scroll 1.5s infinite;
}

@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
.p-fv__inner {
  padding-block: 5.625rem 1.5rem;
  padding-inline: 1.9375rem;
}

.p-fv__sub-title {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.06em;
  font-family: "Shippori Mincho", serif;
}

.p-fv__lead {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0;
  font-family: "Shippori Mincho", serif;
  margin-top: 1.1875rem;
}

.p-fv__text {
  font-size: 0.875rem;
  line-height: 1.5714285714;
  letter-spacing: 0.11em;
}
.p-fv__text:not(:first-child) {
  margin-top: 1rem;
}

.p-fv__btns {
  margin-top: 3.0625rem;
  display: flex;
  flex-direction: column;
  gap: 0.3125rem;
  align-items: flex-end;
}

.p-fv__btn {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.64;
  font-family: "Shippori Mincho", serif;
  display: inline-block;
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  color: #004EA1;
}
.p-fv__btn span {
  margin-left: 0.5rem;
}
.p-fv__btn::after {
  content: "";
  width: 1.875rem;
  height: 0.6875rem;
  background-image: url(../images/arrow-letter.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-left: 0.3125rem;
  transition: transform 0.3s ease;
}
@media (any-hover: hover) {
  .p-fv__btn:hover {
    cursor: pointer;
  }
  .p-fv__btn:hover::after {
    transform: translateX(0.3125rem);
  }
}

.p-header {
  opacity: 1;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-header {
    padding-block: 6.8125rem 6.75rem;
    padding-left: 3.9375rem;
  }
}
@media screen and (min-width: 1025px) {
  .p-header {
    padding-block: 6rem 5.9375rem;
    padding-left: 4.75rem;
  }
}

.p-header__content-pc {
  display: contents;
}
@media screen and (min-width: 768px) {
  .p-header__content-pc {
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    position: absolute;
    top: 50%;
    left: 46%;
    translate: -50% -50%;
  }
}

.p-header__inner {
  display: flex;
  align-items: center;
  height: 100%;
  padding-block: 0.625rem;
  padding-inline: 1.25rem;
  max-width: 26.25rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-header__inner {
    display: block;
    border-radius: 1.25rem 0 0 1.25rem;
    background-color: #fff;
    padding-block: 6.25rem 8.0625rem;
    padding-left: 2.9375rem;
    max-width: none;
    max-width: initial;
  }
}
@media screen and (min-width: 1025px) {
  .p-header__inner {
    padding-block: 11.125rem 7.375rem;
    padding-left: 6.7361111111vw;
  }
}

.p-header__logo {
  width: 13.5625rem;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-header__logo {
    margin-inline: auto;
  }
}
@media screen and (min-width: 1025px) {
  .p-header__logo {
    width: 29.375vw;
  }
}
@media (any-hover: hover) {
  .p-header__logo:hover {
    opacity: 0.7;
  }
}

.p-header__logo a img {
  display: block;
  width: 100%;
  height: auto;
}

.p-header__hamburger {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 1.25rem;
  width: 1.6875rem;
  height: 1.375rem;
  margin: auto;
  outline: none;
  transition: all 0.5s ease-in-out;
  z-index: 102;
  cursor: pointer;
}

.p-header__hamburger__line {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 1.6875rem;
  height: 0.25rem;
  background-color: #004EA1;
  transition: inherit;
}

.p-header__hamburger__line::before,
.p-header__hamburger__line::after {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background-color: inherit;
  content: "";
  transition: inherit;
}

.p-header__hamburger__line::before {
  top: -0.5rem;
}

.p-header__hamburger__line::after {
  top: 0.5rem;
}

.p-header__hamburger[aria-expanded=true] .p-header__hamburger__line {
  background-color: transparent;
}

.p-header__hamburger[aria-expanded=true] .p-header__hamburger__line::before,
.p-header__hamburger[aria-expanded=true] .p-header__hamburger__line::after {
  top: 0;
  background-color: #fff;
  height: 0.125rem;
}

.p-header__hamburger[aria-expanded=true] .p-header__hamburger__line::before {
  transform: rotate(45deg);
}

.p-header__hamburger[aria-expanded=true] .p-header__hamburger__line::after {
  transform: rotate(-45deg);
}

.p-header__nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-height: 100svh;
  min-height: 100vh;
  background: #004EA1;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease;
  z-index: 99;
  overflow-y: auto;
  overscroll-behavior: contain;
}
@media screen and (min-width: 768px) {
  .p-header__nav {
    display: block;
    position: static;
    width: auto;
    width: initial;
    max-height: none;
    max-height: initial;
    height: auto;
    height: initial;
    min-height: 0;
    min-height: initial;
    background: transparent;
    padding-block: 0;
    overflow-y: visible;
    opacity: 1;
    visibility: visible;
    transition: none;
  }
}

.is-drawerActive.p-header__nav {
  opacity: 1;
  visibility: visible;
}

.is-closing.p-header__nav {
  opacity: 0;
}

.p-header__nav::-webkit-scrollbar {
  width: 5px;
}

.p-header__nav::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 5px;
}

.p-header__nav::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
}

.p-header__nav-body {
  width: 100%;
  max-width: 26.25rem;
  margin-inline: auto;
  height: -moz-fit-content;
  height: fit-content;
  padding-block: 5.9375rem 2.8125rem;
  padding-inline: 2.9375rem;
}
@media screen and (min-width: 768px) {
  .p-header__nav-body {
    margin-inline: 0;
    max-width: none;
    max-width: initial;
    height: 100%;
    padding-block: 0;
    padding-inline: 1.5rem;
    margin-top: 1.5rem;
  }
}
@media screen and (min-width: 1025px) {
  .p-header__nav-body {
    margin-top: 2rem;
    padding-left: 1.0416666667vw;
  }
}

@media screen and (min-width: 768px) {
  .p-header__nav-list {
    display: flex;
    flex-direction: column;
    gap: 0.0625rem;
  }
}

.p-header__nav-item a {
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.011em;
  font-family: "Kite One", sans-serif;
  padding-block: 0.75rem;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .p-header__nav-item a {
    font-size: 1.5rem;
    color: #004EA1;
  }
}
@media (any-hover: hover) {
  .p-header__nav-item a:hover {
    color: #9FD7EB;
  }
}

.p-header__nav-item-sub {
  font-size: 0.75rem;
  letter-spacing: 0;
  text-transform: capitalize;
  padding-left: 0.75rem;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (min-width: 768px) {
  .p-header__nav-item-sub {
    font-size: 0.8333333333vw;
  }
}

.p-header__btns--sp {
  display: flex;
  flex-direction: column;
  gap: 1.0625rem;
  margin-top: 1.8125rem;
}
@media screen and (min-width: 768px) {
  .p-header__btns--sp {
    display: none;
  }
}

.p-header__btns--pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-header__btns--pc {
    display: flex;
    flex-direction: column;
    position: static;
    min-width: 17.625rem;
    gap: 0.9375rem;
    padding-block: 0;
    background: transparent;
    margin-top: 1.5rem;
    padding-left: 1.0416666667vw;
  }
}

.p-header__btn--banner {
  display: inline-block;
}
.p-header__btn--banner img {
  border: 0.0625rem solid #fff;
  aspect-ratio: 282/113;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
}

.u-noScroll {
  overflow: hidden;
}

.p-header__copyright {
  position: absolute;
  left: 1.6875rem;
  top: 50%;
  translate: 0 -50%;
}

.p-header__copyright small {
  display: block;
  text-align: center;
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  writing-mode: vertical-rl;
  color: #fff;
}

.p-infomation__description {
  margin-top: 1.875rem;
  position: relative;
}
.p-infomation__description::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 4.875rem;
  height: 0.0625rem;
  background-color: #004EA1;
  translate: -50% 0;
}

.p-infomation__title-group {
  padding-block: 1.875rem;
}

.p-infomation__title {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5555555556;
  letter-spacing: 0;
  text-align: center;
}

.p-infomation__title-sub {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.7857142857;
  letter-spacing: 0;
  text-align: center;
}

.p-infomation__text {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5714285714;
  letter-spacing: 0.11em;
}
.p-infomation__text strong {
  font-weight: 400;
  display: block;
  color: #FF0000;
  margin-top: 1.5rem;
}

.p-infomation__toc {
  margin-top: 1.125rem;
  background-color: #EEEEEE;
  padding-block: 1.375rem;
  padding-inline: 1.125rem;
}

.p-infomation__toc-title,
.p-infomation__toc-link {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5714285714;
  letter-spacing: 0.11em;
}

.p-infomation__toc-list {
  list-style-type: disc;
  margin-left: 1.5em;
}

.p-infomation__content-group {
  padding-top: 4.375rem;
}

.p-infomation__content-title {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.2222222222;
  letter-spacing: 0.11em;
  padding-left: 0.75rem;
  border-left: 0.4375rem solid #004EA1;
}

.p-infomation__content-list {
  display: flex;
  flex-direction: column;
  gap: 1.5625rem;
}

.p-infomation__content-item {
  display: flex;
  flex-direction: column;
  gap: 1.5625rem;
}

.p-infomation__content-item-label,
.p-infomation__content-item-title {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5625;
  letter-spacing: 0.11em;
}

.p-infomation__content-item-text {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.7857142857;
  letter-spacing: 0.11em;
}

.p-infomation__content-item-img img {
  aspect-ratio: 310/184;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
}

.p-infomation__content-schedule {
  margin-top: 1.875rem;
}

.p-infomation__content-schedule-item {
  display: flex;
}

.p-infomation__content-schedule-item-name,
.p-infomation__content-schedule-item-text {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0;
}

.p-infomation__content-schedule-item-name {
  flex-shrink: 0;
}

.p-infomation__content-schedule-item-text {
  flex-grow: 1;
}
.p-infomation__content-schedule-item-text span {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0;
}

.p-infomation__schedule-item {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-gap: 1rem;
  gap: 1rem;
}
.p-infomation__schedule-item:not(:last-child) {
  padding-bottom: 1.4375rem;
}

.p-infomation__schedule-item-label {
  position: relative;
  height: 100%;
}
.p-infomation__schedule-item-label span {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5714285714;
  letter-spacing: 0.11em;
  padding: 0.6875rem 0.53125rem;
  border-radius: 1.9375rem;
  background-color: #004EA1;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
  z-index: 2;
}

.p-infomation__schedule-item:not(:last-child) .p-infomation__schedule-item-label::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 50%;
  translate: -50% 0;
  width: 0.0625rem;
  height: calc(100% + 1.4375rem);
  background-color: #004EA1;
}

.p-infomation__schedule-item-img {
  margin-top: 1rem;
}
.p-infomation__schedule-item-img img {
  aspect-ratio: 237/141;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
}

.p-infomation__text-link {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.p-infomation__application-text {
  padding: 1.375rem 1.125rem;
  text-align: center;
  background-color: #004EA1;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5714285714;
  letter-spacing: 0.11em;
  margin-top: 1.875rem;
}
.p-infomation__application-text em {
  font-style: normal;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.2em;
  color: #E5992E;
}

.p-infomation__application-list {
  margin-top: 1.875rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}
.p-infomation__application-list::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% 0;
  width: 0.0625rem;
  height: 100%;
  background-color: #004EA1;
  z-index: 1;
}

.p-infomation__application-item {
  position: relative;
  z-index: 2;
  padding: 0.75rem 0.875rem;
  background-color: #fff;
  border-radius: 0.3125rem;
  border: 0.0625rem solid #004EA1;
}

.p-infomation__application-item-label {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0;
}

.p-infomation__application-item-text {
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0;
}
.p-infomation__application-item-text em {
  font-style: normal;
  text-decoration: underline;
  text-underline-offset: 0.1em;
}

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

.p-infomation__faq-list {
  counter-reset: faq-counter;
  margin-top: 1.875rem;
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}

.p-infomation__faq-item {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.p-infomation__faq-item-question {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
  font-weight: 700;
  counter-increment: faq-counter;
  line-height: 1.5714285714;
  letter-spacing: 0.11em;
}
.p-infomation__faq-item-question::before {
  content: "Q" counter(faq-counter) ".";
  color: #004EA1;
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0.11em;
}

.p-infomation__faq-item-answer {
  display: flex;
  align-items: start;
  gap: 0.625rem;
  padding-top: 0.625rem;
}
.p-infomation__faq-item-answer::before {
  content: "A" counter(faq-counter) ".";
  color: #004EA1;
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0.11em;
}

.p-infomation__faq-item-answer-list {
  list-style-type: disc;
  margin-left: 5em;
}

.p-message {
  padding-block: 5.625rem;
}

.p-message__inner {
  padding-inline: 2rem;
}

.p-message__content {
  margin-top: 1.6875rem;
}

.p-message__content-img {
  margin-inline: auto;
  width: 7.3125rem;
}
.p-message__content-img img {
  aspect-ratio: 117/117;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
  border-radius: 50%;
}

.p-message__content-name {
  margin-top: 0.9375rem;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.5714285714;
  letter-spacing: 0.11em;
}

.p-message__content-text {
  margin-top: 0.9375rem;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.7857142857;
  letter-spacing: 0.11em;
}

.p-message__btn {
  margin-top: 3.6875rem;
  text-align: center;
}

.p-movie__title-group {
  position: relative;
  display: inline-block;
}
.p-movie__title-group::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.3);
  mix-blend-mode: multiply;
  pointer-events: none;
}

.p-movie__title {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: 2;
  color: #fff;
}

.p-movie__title-video {
  display: block;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
}

.p-movie__inner {
  padding-block: 2.5rem 5.625rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.p-movie__card {
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .p-movie__card:hover {
    opacity: 0.7;
    cursor: pointer;
  }
}

.p-movie__card-img {
  position: relative;
}
.p-movie__card-img::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 3.625rem;
  height: 3.625rem;
  background-image: url(../images/play-icon.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 3;
}
.p-movie__card-img img {
  display: block;
  aspect-ratio: 310/175;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
  border-radius: 0.3125rem;
}

figcaption {
  display: flex;
  flex-direction: column;
  gap: 0.5625rem;
}

.p-movie__card-title {
  margin-top: 0.5625rem;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5714285714;
  letter-spacing: 0.11em;
}

.p-movie__card-text {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.8333333333;
  letter-spacing: 0.11em;
}

.modal-video {
  background: rgba(0, 0, 0, 0.7);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
}

.p-privacy {
  padding: 3.75rem 0;
  font-size: 0.75rem;
  letter-spacing: 0.11em;
}

.p-privacy__inner {
  padding-inline: 1.875rem;
}

.p-privacy__title {
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 2.5rem;
  text-align: center;
}

.p-privacy__intro {
  margin-bottom: 2.5rem;
  font-weight: 400;
}

.p-privacy__article {
  margin-bottom: 2.5rem;
}

.p-privacy__heading {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 1rem;
  position: relative;
}

.p-privacy__text {
  margin-bottom: 1rem;
}

.p-privacy__list {
  padding-left: 1.25rem;
  margin-bottom: 1.5rem;
  list-style: decimal;
}

.p-privacy__list ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}

.p-privacy__contact {
  font-style: normal;
  line-height: 1.8;
}

.p-privacy__contact a {
  color: inherit;
  text-decoration: underline;
}

.p-sub-page {
  padding-block: 2.125rem 3.75rem;
}

.p-sub-page__inner {
  padding-inline: 2rem;
}

.p-program-sub__card-wrapper {
  display: flex;
  flex-direction: column;
  gap: 3.125rem;
  margin-top: 2.5rem;
}

.p-program-sub__card-list {
  text-align: left;
  margin-top: 0.8125rem;
}

.p-program-sub__card-btn {
  max-width: 8.75rem;
}
@media (any-hover: hover) {
  .p-program-sub__card-btn:hover::after {
    transform: translateX(0.125rem);
  }
}

.p-program-sub__btn {
  margin-top: 3.75rem;
  text-align: center;
}

.p-program-sub__btn-link {
  border: 1px solid #004EA1;
}

.p-program {
  padding-block: 3.125rem;
  background-color: #D0E5ED;
}

.p-program__card-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-top: 3.1875rem;
}

.p-program__card-link {
  display: block;
  position: relative;
  text-align: right;
}
@media (any-hover: hover) {
  .p-program__card-link:hover {
    opacity: 0.7;
  }
  .p-program__card-link:hover .c-btn-more {
    background-color: #004EA1;
    color: #fff;
  }
  .p-program__card-link:hover .c-btn-more::after {
    transform: translateX(0.3125rem);
    background-image: url(../images/arrow-mini-white.svg);
  }
}

.p-program__card-label {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 4.25rem;
  height: 4.25rem;
  top: -0.875rem;
  right: -0.6875rem;
  background-color: #E5992E;
  border-radius: 50%;
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.3333333333;
  letter-spacing: 0;
  z-index: 2;
}

.p-program__card-img img {
  display: block;
  aspect-ratio: 310/184;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
}

.p-program__card-info {
  margin-top: 0.8125rem;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.5714285714;
  letter-spacing: 0.11em;
  text-align: left;
}

.p-program__card-list {
  text-align: left;
}

.p-program__card-item {
  display: grid;
  grid-template-columns: auto 1fr;
}

.p-program__card-item__label {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5714285714;
  letter-spacing: 0.11em;
  width: -moz-fit-content;
  width: fit-content;
}

.p-program__card-item__text,
.p-program__card-item__text time {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5714285714;
  letter-spacing: 0.11em;
}

.p-program__card-partners {
  text-align: left;
  margin-block-start: 1.125rem;
}

.p-program__card-partner__label {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.8333333333;
  letter-spacing: 0.11em;
  display: inline-block;
}

.p-program__card-partner__name {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.8333333333;
  letter-spacing: 0.11em;
  display: inline-block;
}

.p-program__card-btn {
  margin-top: 0.8125rem;
}

.p-program__btn {
  margin-top: 1.75rem;
  text-align: center;
}

.p-program__btn-link {
  transition: background-color 0.3s ease, color 0.3s ease;
  max-width: 19.375rem;
}
.p-program__btn-link::after {
  transition: transform 0.3s ease, background-image 0.3s ease;
}
@media (any-hover: hover) {
  .p-program__btn-link:hover {
    background-color: #004EA1;
    color: #fff;
  }
  .p-program__btn-link:hover::after {
    transform: translateX(0.3125rem);
    background-image: url(../images/icon-arrow-white.svg);
  }
}

.p-voice {
  padding-block: 5.625rem 0;
}

.p-voice__content {
  margin-top: 2.8125rem;
  position: relative;
}

.p-voice__swiper {
  padding-bottom: 0.5rem;
}

.p-voice__card {
  padding: 1.3125rem 1.5625rem 1.25rem;
  border-radius: 0.625rem;
  background-color: #9FD7EB;
  box-shadow: 3px 5px 4px 0 rgba(0, 0, 0, 0.2);
}

.p-voice__card-header {
  display: grid;
  grid-template-columns: 90px 1fr;
  grid-gap: 0.8125rem;
  gap: 0.8125rem;
}

.p-voice__card-img img {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  width: 100%;
  height: auto;
}

.p-voice__name {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.4666666667;
  letter-spacing: 0.11em;
}

.p-voice__summary {
  margin-top: 0.375rem;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.5384615385;
  letter-spacing: 0.11em;
}

.p-voice__text {
  margin-top: 1.0625rem;
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.6923076923;
  letter-spacing: 0.11em;
}

.p-voice__parents {
  margin-top: 1rem;
  padding: 0.78125rem 0.75rem;
  border-radius: 0.3125rem;
  background-color: rgba(255, 255, 255, 0.7);
}

.p-voice__parents-label {
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.6923076923;
  letter-spacing: 0.11em;
}

.p-voice__parents-text {
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.6923076923;
  letter-spacing: 0.11em;
}

.swiper {
  position: relative;
}

.swiper-wrapper {
  position: relative;
}

.p-voice__swiper-button-prev {
  top: 50%;
  left: 0.8125rem;
  transform: translateY(-50%);
}
.p-voice__swiper-button-prev::after {
  content: "";
  display: block;
  background-image: url(../images/swiper-arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter: drop-shadow(-4px -3px 4px rgba(0, 0, 0, 0.2));
  width: 28px;
  height: 28px;
  rotate: 180deg;
}

.p-voice__swiper-button-next {
  top: 50%;
  right: 0.8125rem;
  transform: translateY(-50%);
}
.p-voice__swiper-button-next::after {
  content: "";
  display: block;
  background-image: url(../images/swiper-arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter: drop-shadow(-4px 3px 4px rgba(0, 0, 0, 0.2));
  width: 28px;
  height: 28px;
}

.u-animation__fadeIn {
  opacity: 0;
  translate: 0 2.5rem;
  transition: opacity 0.8s ease, translate 0.8s ease;
}
.u-animation__fadeIn.js-show {
  opacity: 1;
  translate: 0 0;
}
.u-animation__fadeIn.--delay0 {
  transition-delay: 0s;
}
.u-animation__fadeIn.--delay1 {
  transition-delay: 0.2s;
}
.u-animation__fadeIn.--delay2 {
  transition-delay: 0.4s;
}
.u-animation__fadeIn.--delay3 {
  transition-delay: 0.6s;
}
.u-animation__fadeIn.--delay4 {
  transition-delay: 0.8s;
}

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

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

.u-visuallyHidden {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip-path: inset(50%);
}

@media screen and (min-width: 768px) {
  .u-outline-logo {
    filter: drop-shadow(0 0 0 white) drop-shadow(0 0 0 white) drop-shadow(1px 0 0 white) drop-shadow(-1px 0 0 white) drop-shadow(0 1px 0 white) drop-shadow(0 -1px 0 white);
  }
}
/*# sourceMappingURL=styles.css.map */
