@charset "UTF-8";
/***
    The new CSS reset - version 1.7.3 (last updated 7.8.2022)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/
/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
 */
*:where(:not(html, iframe, canvas, img, svg, video, audio, input, textarea):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Reapply the pointer cursor for anchor tags */
a,
button {
  cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol,
ul,
menu {
  list-style: none;
}

/* For images to not be able to exceed their container */
img {
  max-width: 100%;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input,
textarea {
  -webkit-user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
       appearance: revert;
}

/* reset default text opacity of input placeholder */
::-moz-placeholder {
  color: unset;
}
::placeholder {
  color: unset;
}

/* fix the feature of 'hidden' attribute.
   display:revert; revert to element instead of attribute */
:where([hidden]) {
  display: none;
}

/* revert for bug in Chromium browsers
   - fix for the content editable attribute will work properly.
   - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element*/
:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable=true]) {
  -webkit-user-drag: element;
}

body * {
  font-family: "Zen Kaku Gothic New", sans-serif;
}

body.lang-en * {
  font-family: "Inter", sans-serif;
}

.res-sp {
  display: none;
}

.l-header {
  position: fixed;
  z-index: 9998;
  top: 0;
  left: 0;
  visibility: hidden;
  width: 100%;
  height: 45px;
  padding-right: 2.5%;
  padding-left: 5%;
  opacity: 0;
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1607843137);
}
@media screen and (max-width: 900px) {
  .l-header {
    height: 55px;
    padding-right: 5%;
  }
}
.l-header.active {
  visibility: visible;
  opacity: 1;
}
.l-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}
.l-header__column {
  display: flex;
  align-items: center;
  height: 100%;
}
.l-header__logo {
  display: block;
}
.l-header__logo > a {
  display: block;
  width: 90px;
  height: 15px;
}
@media screen and (max-width: 900px) {
  .l-header__logo > a {
    width: 115px;
    height: 20px;
  }
}
.l-header__logo > a > img {
  width: 100%;
  height: 100%;
  vertical-align: top;
}
.l-header__lang {
  display: flex;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
@media screen and (max-width: 900px) {
  .l-header__lang {
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
}
.l-header__lang-btn {
  font-size: 18px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: 18px;
  color: #000000;
  font-family: "Inter", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 22px;
  height: 22px;
  letter-spacing: 0.03em;
  transition: all 0.3s ease-out;
}
@media screen and (max-width: 900px) {
  .l-header__lang-btn {
    font-size: 12px;
    line-height: 12px;
    width: 15px;
    height: 15px;
  }
}
.l-header__lang-btn:hover {
  transition: all 0.3s ease-out;
  opacity: 0.7;
}
.l-header__btn {
  margin-left: 50px;
}
@media screen and (max-width: 900px) {
  .l-header__btn {
    margin-left: 25px;
  }
}
.l-header__nav-close {
  position: absolute;
  z-index: 9999;
  top: 20px;
  right: 30px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  background-image: url(../img/svg/menu-close.svg);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
}

.l-header-btn {
  position: relative;
  width: 40px;
  height: 15px;
  cursor: pointer;
}
@media screen and (max-width: 900px) {
  .l-header-btn {
    width: 30px;
  }
}
.l-header-btn__bar {
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  height: 0;
  border-bottom: 2px solid #000000;
  transition: all 0.3s ease-out;
}
.l-header-btn__bar:first-child {
  top: 0;
}
.l-header-btn__bar:last-child {
  bottom: 0;
}

.l-global-nav-wrap {
  position: fixed;
  z-index: 9999;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: none;
}
.l-global-nav-wrap.active {
  display: block;
}
.l-global-nav-wrap__inner {
  visibility: hidden;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease-out;
  transform: translateX(50%);
  opacity: 0;
  background-color: rgba(255, 255, 255, 0.4);
}
.l-global-nav-wrap__inner.active {
  visibility: visible;
  transition: all 0.3s ease-out;
  transform: translateX(0);
  opacity: 1;
}
.l-global-nav-wrap__nav-close {
  position: absolute;
  z-index: 9999;
  top: 20px;
  right: 30px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  background-image: url(../img/svg/menu-close.svg);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
}

.l-global-nav {
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  overflow: auto;
  -ms-overflow-style: none;
  grid-auto-rows: 40px;
  grid-template-columns: auto;
  gap: 40px;
  width: 35%;
  height: 100%;
  padding: 145px 10% 180px 0;
  background-color: #000000;
}
@media screen and (max-width: 1500px) {
  .l-global-nav {
    width: 50%;
  }
}
@media screen and (max-width: 960px) {
  .l-global-nav {
    width: 95%;
  }
}
@media screen and (max-width: 600px) {
  .l-global-nav {
    grid-auto-rows: 32px;
    gap: 30px;
    padding: 80px 0;
    padding-right: 15%;
  }
}
.l-global-nav::-webkit-scrollbar {
  display: none;
}
.l-global-nav__item {
  display: block;
  justify-self: end;
  width: -moz-fit-content;
  width: fit-content;
}
.l-global-nav__item > a {
  font-size: 40px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: 40px;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease-out;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 600px) {
  .l-global-nav__item > a {
    font-size: 32px;
    line-height: 32px;
  }
}
.l-global-nav__item > a:hover {
  transition: all 0.3s ease-out;
  opacity: 0.5;
}

.l-footer {
  width: 100%;
  padding-inline: 32px;
  background: #063A4F;
}
.l-footer__inner {
  width: 100%;
  max-width: 360px;
  margin-inline: auto;
  padding: 40px 0 30px;
}
.l-footer__logo {
  max-width: 240px;
  width: 100%;
  margin-inline: auto;
}
.l-footer__logo > img {
  width: 100%;
  height: 100%;
}
.l-footer__summary {
  margin-top: 30px;
}
.l-footer__summary > p {
  color: #ffffff;
  margin-bottom: 16px;
}
.l-footer__summary > p > span {
  display: block;
}
.l-footer__links {
  max-width: 510px;
  width: 100%;
  margin: 32px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px 20px;
}
.l-footer__links > a {
  width: 46%;
  max-width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  background-color: #ffffff;
}
.l-footer__links > a.l-footer__sns {
  max-width: 40px;
  padding: 0;
  background-color: transparent;
}
.l-footer__nav {
  margin-top: 90px;
}
@media screen and (max-width: 600px) {
  .l-footer__nav {
    margin-top: 60px;
  }
}
.l-footer__contact {
  margin-top: 90px;
}
@media screen and (max-width: 600px) {
  .l-footer__contact {
    margin-top: 60px;
  }
}
.l-footer__copy {
  font-size: 12px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: 18px;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  padding-block: 20px;
  margin-inline: auto;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 600px) {
  .l-footer__copy {
    font-size: 14px;
    line-height: 14px;
  }
}
.l-footer__recapture {
  font-size: 14px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: 17px;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  -moz-column-gap: 5px;
       column-gap: 5px;
  margin-top: 10px;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 600px) {
  .l-footer__recapture {
    font-size: 10px;
    line-height: 12.5px;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
  .l-footer__recapture .res-sp {
    display: block;
  }
}
.l-footer__recapture > span > a {
  margin: 0 5px;
  text-decoration: underline;
}

.l-footer-nav {
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(4, auto);
  row-gap: 30px;
  -moz-column-gap: 50px;
       column-gap: 50px;
  width: 100%;
  max-width: 700px;
  margin-inline: auto;
}
@media screen and (max-width: 960px) {
  .l-footer-nav {
    grid-template-columns: repeat(2, auto);
    grid-template-rows: repeat(4, auto);
    grid-auto-flow: column;
    -moz-column-gap: 55px;
         column-gap: 55px;
  }
}
.l-footer-nav__item {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 120px;
}
@media screen and (max-width: 960px) {
  .l-footer-nav__item {
    min-width: auto;
  }
}
.l-footer-nav__item > a {
  font-size: 20px;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  line-height: 20px;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  transition: all 0.3 ease-out;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 960px) {
  .l-footer-nav__item > a {
    font-size: 18px;
    line-height: 18px;
  }
}
.l-footer-nav__item > a:hover {
  transition: all 0.3 ease-out;
  opacity: 0.5;
}

.l-footer-contact {
  width: 100%;
}
.l-footer-contact__mail {
  font-size: 16px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: 16px;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  transition: all 0.3 ease-out;
  white-space: nowrap;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 600px) {
  .l-footer-contact__mail {
    font-size: 14px;
    line-height: 14px;
  }
}
.l-footer-contact__mail:hover {
  transition: all 0.3 ease-out;
  opacity: 0.5;
}
.l-footer-contact__sns {
  margin-top: 20px;
}
@media screen and (max-width: 600px) {
  .l-footer-contact__sns {
    margin-top: 30px;
  }
}

.l-footer-contact-sns {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 700px;
  margin-inline: auto;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.l-footer-contact-sns__item {
  display: block;
  width: 24px;
  height: 24px;
}
@media screen and (max-width: 600px) {
  .l-footer-contact-sns__item {
    width: 20px;
    height: 20px;
  }
}
.l-footer-contact-sns__item > img {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  width: 100%;
  height: 100%;
}

.l-controller {
  width: 100%;
  margin-top: 180px;
  padding-right: 2.5%;
  padding-left: 2.5%;
}
@media screen and (max-width: 600px) {
  .l-controller {
    margin-top: 120px;
    padding-right: 5%;
    padding-left: 5%;
  }
}
.l-controller__inner {
  position: relative;
  width: 100%;
}
.l-controller__to-top {
  position: absolute;
  top: 50%;
  right: 0;
  display: block;
  width: 50px;
  height: 50px;
  transition: all 0.3s ease-out;
  transform: translateY(-50%);
  background-image: url(../img/svg/i-feather-arrow-up-circle.svg);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
}
@media screen and (max-width: 600px) {
  .l-controller__to-top {
    width: 40px;
    height: 40px;
  }
}
.l-controller__to-top:hover {
  transition: all 0.3s ease-out;
  transform: translateY(-60%);
}

.l-main {
  padding: 60px 0 180px;
}
@media screen and (max-width: 600px) {
  .l-main {
    padding-bottom: 120px;
  }
}
.l-main--top {
  margin-top: 0;
  padding-top: 45px;
}
@media screen and (max-width: 900px) {
  .l-main--top {
    padding-top: 55px;
  }
}

.l-breadcrumb {
  margin-top: 45px;
}
@media screen and (max-width: 900px) {
  .l-breadcrumb {
    margin-top: 55px;
  }
}

.l-modal {
  width: 100%;
  height: 100%;
  display: none;
  position: relative;
}
.l-modal.active {
  display: block;
}
.l-modal__inner {
  position: fixed;
  background-color: rgba(0, 0, 0, 0.7019607843);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  padding: 7.5vh 2.5%;
}
@media screen and (max-width: 600px) {
  .l-modal__inner {
    padding: 12vh 5% 7vh;
  }
}
.l-modal__inner.active {
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease-in-out;
}
.l-modal__btn {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 9999;
  transform: translateY(-50%);
  width: 40px;
  height: 65px;
  cursor: pointer;
  -webkit-mask-image: url(../img/svg/i-feather-arrow-left.svg);
          mask-image: url(../img/svg/i-feather-arrow-left.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: 50% 50%;
          mask-position: 50% 50%;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: #ffffff;
}
@media screen and (max-width: 1200px) {
  .l-modal__btn {
    width: 30px;
    height: 50px;
  }
}
@media screen and (max-width: 600px) {
  .l-modal__btn {
    width: 20px;
    height: 35px;
  }
}
.l-modal__btn--next {
  transform: scale(-1, 1) translateY(-50%);
  left: auto;
  right: 0;
}
.l-modal__close {
  position: fixed;
  top: 7.5vh;
  right: 2.5%;
  width: 20px;
  height: 20px;
  -webkit-mask: url(../img/svg/menu-close.svg);
          mask: url(../img/svg/menu-close.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: 50% 50%;
          mask-position: 50% 50%;
  background-color: #ffffff;
  z-index: 9999;
}
@media screen and (max-width: 600px) {
  .l-modal__close {
    width: 40px;
    height: 40px;
    right: 5%;
    top: 3vh;
  }
}

.l-swiper-modals {
  width: 100%;
  height: 100%;
}
.l-swiper-modals__inner {
  width: 100%;
  height: 100%;
}

.l-swiper-modal {
  display: block;
  width: 100%;
  height: 100%;
}
.l-swiper-modal__inner {
  width: 100%;
  max-width: 1200px;
  height: 100%;
  margin-inline: auto;
  overflow: auto;
  -ms-overflow-style: none;
  display: flex;
  -moz-column-gap: 10%;
       column-gap: 10%;
  justify-content: space-between;
  position: relative;
}
.l-swiper-modal__inner::-webkit-scrollbar {
  display: none;
}
@media screen and (max-width: 600px) {
  .l-swiper-modal__inner {
    flex-direction: column;
    row-gap: 30px;
  }
}
.l-swiper-modal__img {
  width: 42%;
  height: 100%;
  max-width: 500px;
  max-height: 625px;
}
@media screen and (max-width: 600px) {
  .l-swiper-modal__img {
    width: 100%;
    max-width: none;
    max-height: none;
  }
}
.l-swiper-modal__img > img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  vertical-align: bottom;
}
.l-swiper-modal__info {
  width: 48%;
  padding-top: 15vh;
  display: grid;
  row-gap: 60px;
  padding-right: 20px;
  grid-template-columns: auto;
  grid-template-rows: auto 1fr;
}
@media screen and (max-width: 600px) {
  .l-swiper-modal__info {
    width: 100%;
    padding-top: 0;
  }
}

.l-swiper-modal-info__title {
  font-size: 32px;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  line-height: 39px;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 520px) {
  .l-swiper-modal-info__title {
    font-size: 24px;
    line-height: 29px;
  }
}
.l-swiper-modal-info__year, .l-swiper-modal-info__size, .l-swiper-modal-info__techniques {
  font-size: 16px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: 20px;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  letter-spacing: 0.04em;
  margin-top: 20px;
  word-break: break-all;
}
@media screen and (max-width: 520px) {
  .l-swiper-modal-info__year, .l-swiper-modal-info__size, .l-swiper-modal-info__techniques {
    font-size: 14px;
    line-height: 17px;
  }
}
.l-swiper-modal-info__year {
  margin-top: 45px;
}
@media screen and (max-width: 600px) {
  .l-swiper-modal-info__year {
    margin-top: 20px;
  }
}
.l-swiper-modal-info__artist {
  margin-top: 45px;
}
.l-swiper-modal-info__artist + .l-works-modal-info__year {
  margin-top: 20px;
}

.l-swiper-modal-artist__name {
  font-size: 14px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: 20px;
  color: #ffffff;
  letter-spacing: 0.04em;
}
.l-swiper-modal-artist__name--en {
  font-family: "Inter", sans-serif;
  font-size: 16px;
}

.l-swiper-modal-techniques__list {
  display: flex;
  flex-wrap: wrap;
}
.l-swiper-modal-techniques__item:not(:last-child)::after {
  content: ",";
  margin-right: 5px;
}

.l-swiper-modal-contact {
  font-size: 20px;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  line-height: 29px;
  color: #ffffff;
  letter-spacing: 0.04em;
  padding-bottom: 5px;
  display: flex;
  -moz-column-gap: 10px;
       column-gap: 10px;
  align-items: center;
  border-bottom: 1px solid #ffffff;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  align-self: end;
  justify-self: end;
}
@media screen and (max-width: 520px) {
  .l-swiper-modal-contact {
    font-size: 14px;
    line-height: 20px;
  }
}
.l-swiper-modal-contact::after {
  display: block;
  width: 25px;
  height: 25px;
  content: "";
  background-color: #ffffff;
  -webkit-mask: url(../img/svg/i-feather-arrow-right-circle.svg);
          mask: url(../img/svg/i-feather-arrow-right-circle.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: 50% 50%;
          mask-position: 50% 50%;
}
@media screen and (max-width: 520px) {
  .l-swiper-modal-contact::after {
    width: 20px;
    height: 20px;
  }
}

.grecaptcha-badge {
  visibility: hidden;
}

.c-content-btn {
  font-size: 20px;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  line-height: 20px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 240px;
  height: 60px;
  margin-inline: auto;
  letter-spacing: 0.03em;
  background-color: #000000;
}
@media screen and (max-width: 600px) {
  .c-content-btn {
    font-size: 14px;
    line-height: 14px;
    gap: 10px;
    width: 155px;
    height: 40px;
  }
}
.c-content-btn--en {
  font-family: "Inter", sans-serif;
}
.c-content-btn:hover {
  background-color: #363636;
}
.c-content-btn::after {
  display: block;
  width: 20px;
  height: 20px;
  content: "";
  background-color: #ffffff;
  -webkit-mask: url(../img/svg/i-feather-arrow-right-circle.svg);
          mask: url(../img/svg/i-feather-arrow-right-circle.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: 50% 50%;
          mask-position: 50% 50%;
}
@media screen and (max-width: 600px) {
  .c-content-btn::after {
    width: 17px;
    height: 17px;
  }
}

.c-breadcrumb {
  position: relative;
  width: 100%;
  margin-inline: auto;
  padding: 13px 0 3px;
  padding-right: 2.5%;
  padding-left: 2.5%;
  background-color: #ffffff;
}
@media screen and (max-width: 600px) {
  .c-breadcrumb {
    padding-right: 5%;
    padding-left: 5%;
  }
}
.c-breadcrumb__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 520px) {
  .c-breadcrumb__inner {
    max-width: 320px;
  }
}
.c-breadcrumb__item {
  font-size: 12px;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  line-height: 15px;
  color: #c9c9c9;
  display: flex;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.c-breadcrumb__item--en {
  font-family: "Inter", sans-serif;
}
.c-breadcrumb__item::after {
  display: block;
  width: 4.5px;
  height: 8.5px;
  content: "";
  background-image: url(../img/svg/i-feather-chevron-right.svg);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
}
.c-breadcrumb__item:last-of-type {
  color: #000000;
}
.c-breadcrumb__item:last-of-type::after {
  display: none;
}
.c-breadcrumb__item > a {
  font-size: inherit;
  font-weight: inherit;
  -webkit-font-smoothing: antialiased;
  line-height: inherit;
  color: inherit;
}

.c-filtering-form {
  display: flex;
  flex-wrap: wrap;
  row-gap: 20px;
  -moz-column-gap: 60px;
       column-gap: 60px;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 600px) {
  .c-filtering-form {
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
}
@media screen and (max-width: 520px) {
  .c-filtering-form {
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
}

.c-filtering-select {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
}
.c-filtering-select::after {
  position: absolute;
  top: 50%;
  right: 0;
  display: block;
  width: 12px;
  height: 6px;
  content: "";
  transform: translateY(-50%);
  pointer-events: none;
  background-image: url(../img/svg/i-ionic-md-arrow-dropdown.svg);
  background-repeat: no-repeat;
  background-size: cover;
}
.c-filtering-select__inner {
  font-size: 16px;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  line-height: 20px;
  color: #000000;
  font-family: "Inter", sans-serif;
  width: 100%;
  padding-right: 25px;
  padding-bottom: 5px;
  border-bottom: 1px solid #000000;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #ffffff;
}
@media screen and (max-width: 600px) {
  .c-filtering-select__inner {
    font-size: 14px;
    line-height: 18px;
  }
}
.c-filtering-select__item {
  width: 100%;
}

.c-pagination {
  margin-top: 150px;
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
}
@media screen and (max-width: 600px) {
  .c-pagination {
    margin-top: 60px;
  }
}
.c-pagination .c-page-cards {
  display: flex;
  justify-content: center;
  -moz-column-gap: 5%;
       column-gap: 5%;
}
.c-pagination .c-page-card {
  font-size: 20px;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  line-height: 20px;
  color: #000000;
  font-family: "Inter", sans-serif;
  letter-spacing: 0.04em;
  font-family: "Montserrat", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
}
.c-pagination .c-page-card:hover {
  background-color: #d1d1d1;
}
.c-pagination .c-page-card--active {
  color: #ffffff;
  background-color: #000000;
  pointer-events: none;
}

.p-content-block {
  padding-right: 2.5%;
  padding-left: 2.5%;
}
@media screen and (max-width: 600px) {
  .p-content-block {
    padding-right: 5%;
    padding-left: 5%;
  }
}
.p-content-block--home {
  margin-top: 180px;
}
@media screen and (max-width: 600px) {
  .p-content-block--home {
    margin-top: 120px;
  }
}
.p-content-block--full {
  padding: 0;
}
.p-content-block__inner {
  width: 100%;
  background-color: #E7F0ED;
}
.p-content-block__head {
  display: flex;
  align-items: end;
  gap: 60px;
}
@media screen and (max-width: 600px) {
  .p-content-block__head {
    justify-content: space-between;
  }
}
.p-content-block__title {
  font-size: 64px;
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
  line-height: 70px;
  color: #000000;
  letter-spacing: 0.03em;
  color: #5BB59A;
  text-align: left;
}
@media screen and (max-width: 600px) {
  .p-content-block__title {
    font-size: 28px;
    line-height: 43px;
  }
}
@media screen and (max-width: 374px) {
  .p-content-block__title {
    font-size: 22px;
    line-height: 28px;
  }
}
.p-content-block__title--center {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.p-content-block__title--news {
  display: block;
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  text-align: center;
}
.p-content-block__title--en {
  font-family: "Inter", sans-serif;
}
.p-content-block__link {
  font-size: 18px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: 21px;
  color: #000000;
  font-family: "Inter", sans-serif;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  padding-bottom: 3px;
  letter-spacing: 0.03em;
  border-bottom: 1px solid #000000;
}
@media screen and (max-width: 600px) {
  .p-content-block__link {
    font-size: 14px;
    line-height: 17px;
  }
}
.p-content-block__link:hover {
  transition: all 0.3s ease-out;
  opacity: 0.5;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  background: #df2527;
}

a {
  display: block;
  opacity: 1;
  transition: all 0.3s;
}
a:hover {
  opacity: 0.7;
}

img {
  vertical-align: bottom;
}

.p-header {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-start;
  justify-content: space-between;
  padding: 50px 1em;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
}
@media (max-width: 960px) {
  .p-header {
    width: 0;
    height: 0;
    z-index: 1001;
  }
}
@media (max-width: 768px) {
  .p-header {
    z-index: 1010;
  }
}
.p-header > p {
  width: 40px;
  position: relative;
}
.p-header > p > img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.p-header__logo {
  width: 20vw;
  display: flex;
  justify-content: center;
  transition: all 0.3s;
}
@media (max-width: 1100px) {
  .p-header__logo {
    width: 0;
  }
}
@media screen and (max-width: 600px) {
  .p-header__logo {
    width: 200px;
    position: fixed;
    top: 10px;
    left: 20px;
  }
}
.p-header__nav {
  width: 300px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  padding-left: 50px;
  padding-top: 50px;
}
@media (max-width: 960px) {
  .p-header__nav {
    align-items: center;
    padding-left: 0;
  }
}
.p-header__nav > img {
  max-width: 80%;
  margin-bottom: 60px;
}
.p-header__nav ul {
  max-width: 320px;
  width: 100%;
  margin: 0 auto;
}
.p-header__nav ul .pc-unset {
  display: none;
}
@media (max-width: 768px) {
  .p-header__nav ul .pc-unset {
    display: block;
    margin-bottom: 24px;
  }
}
.p-header__nav li.sub-content {
  text-indent: 1.5em;
  position: relative;
}
.p-header__nav li.sub-content::before {
  content: "◾︎";
  position: absolute;
  left: -5px;
  top: 1px;
  color: #00A0E9;
}
.p-header__nav li a {
  padding: 3px 10px;
  font-size: 20px;
  text-align: left;
  color: #00A0E9;
  font-family: "Akshar", sans-serif;
  font-weight: 500;
}
@media (max-width: 768px) {
  .p-header__nav li a {
    color: #ffffff;
  }
}
.p-header .fv-copy {
  width: 40vw;
  min-width: 360px;
  height: auto;
  margin-block: 40px 0px;
  padding-left: 80px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 1400px) {
  .p-header .fv-copy {
    width: 30vw;
  }
}
@media (max-width: 1180px) {
  .p-header .fv-copy img {
    display: none;
  }
}
.p-header .fv-copy .title-item {
  max-width: 400px;
}
.p-header .fv-copy .copy-item {
  max-width: 460px;
}
.p-header .fv-copy .logo-item {
  max-width: 300px;
}

.main-body {
  max-width: 420px;
  margin: 0 350px 0 auto;
  overflow: hidden;
  filter: drop-shadow(0 0 12px rgba(0, 0, 0, 0.2));
  transition: all 0.3s;
  position: relative;
  z-index: 1000;
}
@media (max-width: 768px) {
  .main-body {
    max-width: 100%;
    width: 100%;
    margin-top: 0;
    border-radius: 0;
  }
}

#checked,
.menu-btn {
  display: none;
}

@media (max-width: 960px) {
  #menu {
    position: fixed;
    top: 0;
    right: -100%;
    overflow: hidden;
    width: 100%;
    height: 100%;
    padding: 20px;
    transition: all 0.5s;
    background-color: rgba(86, 86, 86, 0.7);
  }
  #menu ul {
    padding-top: 60px;
  }
  .menu-btn {
    position: fixed;
    display: block;
    top: 40px;
    right: 40px;
    width: 40px;
    height: 40px;
    font-size: 10px;
    text-align: center;
    cursor: pointer;
    z-index: 3;
  }
  .bar {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 40px;
    height: 2px;
    background: #fff;
    transition: all 0.5s;
    transform-origin: left top;
  }
  .bar:nth-child(2) {
    top: 15px;
    opacity: 1;
  }
  .bar:nth-child(3) {
    top: 30px;
    transform-origin: left bottom;
  }
  .menu-btn__text {
    position: absolute;
    bottom: -15px;
    left: 0;
    right: 0;
    margin: auto;
    color: #333;
    transition: all 0.5s;
    display: block;
    visibility: visible;
    opacity: 1;
  }
  .menu-btn:hover .bar {
    background: #999;
  }
  .menu-btn:hover .menu-btn__text {
    color: #999;
  }
  /* checked */
  .check:checked ~ #menu {
    transition-delay: 0.3s;
    transform: none;
    right: 0;
    opacity: 1;
    z-index: 2;
  }
  .check:checked ~ .menu-btn .menu-btn__text {
    visibility: hidden;
    opacity: 0;
  }
  .check:checked ~ .menu-btn .bar:nth-child(1) {
    width: 56px;
    transform: rotate(45deg);
  }
  .check:checked ~ .menu-btn .bar:nth-child(2) {
    opacity: 0;
  }
  .check:checked ~ .menu-btn .bar:nth-child(3) {
    width: 56px;
    top: 40px;
    transform: rotate(-45deg);
  }
}
@media (max-width: 768px) {
  .menu-btn {
    top: auto;
    left: auto;
    bottom: 12px;
    right: 12px;
  }
}
#img {
  position: fixed;
  top: 50%;
  left: 50%;
}

#svg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
}

.p-nua-fv {
  background: #df2527;
}
.p-nua-fv__inner {
  max-height: 100svh;
  height: 100%;
}
.p-nua-fv__inner img {
  width: 100%;
  height: 100%;
}

.p-nua-schedule {
  padding: 16px 0;
  background: #ffffff;
}
.p-nua-schedule--button {
  width: -moz-fit-content;
  width: fit-content;
  margin: 10px auto;
}
.p-nua-schedule--label {
  width: -moz-fit-content;
  width: fit-content;
  margin: 24px auto;
}
.p-nua-schedule--label p {
  font-size: 18px;
  font-family: "Akshar", sans-serif;
  margin: 24px auto;
  letter-spacing: 0.08em;
  font-weight: 500;
}
.p-nua-schedule--title h2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: clamp(36px, 5vw, 50px);
  font-family: "Akshar", sans-serif;
  font-weight: 400;
}
.p-nua-schedule--title h2 span {
  margin-bottom: 10px;
  font-size: clamp(16px, 3vw, 20px);
  padding-inline: 16px;
}

.p-nua-tabs .tab-wrapper {
  display: flex;
  flex-wrap: wrap;
}
.p-nua-tabs .tab {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  width: 50%;
  background: #fff7e9;
}
.p-nua-tabs .tab.tab-b {
  background: #df2527;
}
.p-nua-tabs input[name=tab-radio] {
  display: none;
}
.p-nua-tabs .tab-label {
  display: block;
  cursor: pointer;
  font-size: 16px;
  padding: 10px 20px;
  transition: 0.3s;
  color: #000;
}
.p-nua-tabs .tab-label:hover {
  opacity: 0.7;
}
.p-nua-tabs .tab-label img {
  width: 100%;
  max-width: 150px;
  height: 80px;
}
.p-nua-tabs .tab-panel {
  background: #fff7e9;
  height: 100%;
  width: 100%;
  min-height: 600px;
  position: relative;
}
.p-nua-tabs .tab-panel__inner {
  overflow-x: scroll;
}
.p-nua-tabs .tab-panel-btn {
  position: absolute;
  bottom: -60px;
  left: 50%;
  width: 80%;
  max-width: 300px;
  margin: 0 auto;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
  transform: translateX(-50%);
}
.p-nua-tabs .tab-panel > p {
  position: relative;
  text-align: center;
  color: #df2527;
}
.p-nua-tabs .tab-panel > p span {
  display: block;
  color: #000;
}
.p-nua-tabs .tab-panel > p:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-top: 15px solid #fff7e9;
}
.p-nua-tabs .tab-panel .table-title {
  width: 320px;
  height: 2.5em;
  margin: 24px auto 0;
  text-align: center;
  color: #df2527;
  font-size: 24px;
  text-align: center;
  display: flex;
  font-weight: 600;
  font-family: "Akshar", sans-serif;
  justify-content: center;
  align-items: center;
}
.p-nua-tabs .tab-panel .schedule-slide {
  padding-top: 60px;
  background-color: #df2527;
  position: relative;
}
.p-nua-tabs .tab-panel .swiper-horizontal {
  padding: 0 24px;
}
.p-nua-tabs .tab-panel .swiper-button-prev,
.p-nua-tabs .tab-panel .swiper-button-next {
  width: 24px;
  height: auto;
  top: 300px;
}
.p-nua-tabs .tab-panel .swiper-button-prev > svg,
.p-nua-tabs .tab-panel .swiper-button-next > svg {
  display: none;
}
.p-nua-tabs .tab-panel .swiper-button-prev::after {
  content: "";
  width: 24px;
  height: 30px;
  background: url(../images/mrk_04.png) no-repeat;
  background-position-x: right;
}
.p-nua-tabs .tab-panel .swiper-button-next::after {
  content: "";
  width: 24px;
  height: 30px;
  background: url(../images/mrk_03.png) no-repeat;
}
.p-nua-tabs .tab-panel.panel-b {
  background: #df2527;
}
.p-nua-tabs .tab-panel.panel-b .schedule-slide {
  padding-top: 60px;
  background-color: #fff7e9;
  position: relative;
}
.p-nua-tabs .tab-panel.panel-b > p {
  position: relative;
  color: #ffffff;
}
.p-nua-tabs .tab-panel.panel-b > p span {
  color: #000;
}
.p-nua-tabs .tab-panel.panel-b > p:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-top: 15px solid #df2527;
}
.p-nua-tabs .tab-panel.panel-b tr {
  display: flex;
  flex-direction: column;
  background: #df2527;
}
.p-nua-tabs .tab-panel.panel-b tr.fix-item {
  position: fixed;
  left: 0px;
}
.p-nua-tabs .tab-panel.panel-b tr th {
  font-family: "Akshar", sans-serif;
  font-weight: 500;
  font-size: 22px;
}
.p-nua-tabs .tab-panel.panel-b .table-title {
  color: #ffffff;
}
.p-nua-tabs .tab-panel.panel-b .swiper-button-prev,
.p-nua-tabs .tab-panel.panel-b .swiper-button-next {
  width: 24px;
  height: auto;
  top: 300px;
}
.p-nua-tabs .tab-panel.panel-b .swiper-button-prev > svg,
.p-nua-tabs .tab-panel.panel-b .swiper-button-next > svg {
  display: none;
}
.p-nua-tabs .tab-panel.panel-b .swiper-button-prev::after {
  content: "";
  width: 24px;
  height: 30px;
  background: url(../images/mrk_02.png) no-repeat;
  background-position-x: right;
}
.p-nua-tabs .tab-panel.panel-b .swiper-button-next::after {
  content: "";
  width: 24px;
  height: 30px;
  background: url(../images/mrk_01.png) no-repeat;
}
.p-nua-tabs .tab-panel.panel-b .swiper-slide {
  height: auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  padding: 0 0 80px;
  position: relative;
  cursor: pointer;
}
.p-nua-tabs .tab-panel.panel-b .swiper-slide h2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #df2527;
  font-family: "Akshar", sans-serif;
  font-weight: 500;
  font-size: 60px;
  line-height: 1;
}
.p-nua-tabs .tab-panel.panel-b .swiper-slide h2 span {
  display: block;
  font-family: inherit;
  font-size: 20px;
}
.p-nua-tabs .tab-panel.panel-b .swiper-slide-content {
  border-radius: 90px 90px 0 0;
  overflow: clip;
  width: 96%;
  background: #df2527;
}
.p-nua-tabs .tab-panel.panel-b .swiper-slide-content--image {
  height: 260px;
  overflow: hidden;
}
.p-nua-tabs .tab-panel.panel-b .swiper-slide-content--image img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}
.p-nua-tabs .tab-panel.panel-b .swiper-slide-content--summary {
  padding: 16px 10px 30px;
  position: relative;
  background: #df2527;
}
.p-nua-tabs .tab-panel.panel-b .swiper-slide-content--summary h3 {
  color: #ffffff;
  text-align: center;
  font-size: 30px;
  font-weight: 600;
}
.p-nua-tabs .tab-panel.panel-b .swiper-slide-content--summary h3.soon {
  color: #ffffff;
  text-align: center;
  margin: 60px auto;
  font-family: "Akshar", sans-serif;
}
.p-nua-tabs .tab-panel.panel-b .swiper-slide-content--summary h4 {
  color: #ffffff;
  font-size: 24px;
  font-weight: 600;
  margin-block: 12px 6px;
  line-height: 1;
}
.p-nua-tabs .tab-panel.panel-b .swiper-slide-content--summary p {
  color: #ffffff;
  line-height: 1.8;
}
.p-nua-tabs .tab-panel.panel-b .swiper-slide-content--summary p span {
  font-size: 14px;
}
.p-nua-tabs .tab-panel.panel-b .swiper-slide .swiper-soon {
  font-weight: 600;
  font-size: 32px;
  color: #ffffff;
  text-align: center;
  margin-block: 80px;
  font-family: "Akshar", sans-serif;
}
.p-nua-tabs .tab-panel.panel-b .swiper-slide .swiper-programs {
  width: 96%;
  margin-top: 24px;
  padding: 24px 8px 36px;
  background: #ffffff;
  border-radius: 36px;
}
.p-nua-tabs .tab-panel.panel-b .swiper-slide .swiper-programs h2 {
  color: #df2527;
}
.p-nua-tabs .tab-panel.panel-b .swiper-slide .swiper-programs h3 {
  text-align: center;
  font-size: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Akshar", sans-serif;
  font-weight: 500;
  color: #df2527;
}
.p-nua-tabs .tab-panel.panel-b .swiper-slide .swiper-programs h3 span {
  font-family: "Akshar", sans-serif;
  font-weight: 500;
  font-size: 26px;
  margin-left: 8px;
}
.p-nua-tabs .tab-panel.panel-b .swiper-slide .swiper-programs h4 {
  font-size: 22px;
  color: #df2527;
  font-weight: 600;
  padding-inline: 8px;
}
.p-nua-tabs .tab-panel.panel-b .swiper-slide .swiper-programs h4 span {
  font-size: 16px;
  display: block;
}
.p-nua-tabs .tab-panel.panel-b .swiper-slide .swiper-programs > p {
  padding-inline: 8px;
  margin-bottom: 20px;
}
.p-nua-tabs .tab-panel.panel-b .swiper-slide .swiper-programs > span {
  max-width: 300px;
  width: 100%;
  margin: 16px auto 20px;
  padding-block: 6px 4px;
  display: block;
  border-radius: 8px;
  border: 2px solid #000000;
  font-weight: 600;
  text-align: center;
}
.p-nua-tabs .tab-panel.panel-b .swiper-slide .swiper-programs--list {
  position: relative;
  padding-left: 46px;
}
.p-nua-tabs .tab-panel.panel-b .swiper-slide .swiper-programs--list-01::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  aspect-ratio: 7/5;
  background: url("../images/icon_1.png") no-repeat;
  background-size: cover;
}
.p-nua-tabs .tab-panel.panel-b .swiper-slide .swiper-programs--list-02::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  aspect-ratio: 43/38;
  background: url("../images/icon_2.png") no-repeat;
  background-size: cover;
}
.p-nua-tabs .tab-panel.panel-b .swiper-slide .swiper-programs--list-03::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  aspect-ratio: 51/43;
  background: url("../images/icon_3.png") no-repeat;
  background-size: cover;
}
.p-nua-tabs .tab-panel.panel-b .swiper-slide .swiper-programs--list-04::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  aspect-ratio: 105/75;
  background: url("../images/icon_4.svg") no-repeat;
  background-size: cover;
}
.p-nua-tabs .tab-panel.panel-b .swiper-slide .swiper-programs--list h3 {
  font-weight: 500;
  font-size: 26px;
  display: block;
  text-align: left;
}
.p-nua-tabs .tab-panel.panel-b .swiper-slide .swiper-programs--list p {
  margin-bottom: 12px;
  padding-left: 0;
}
.p-nua-tabs .tab-panel.panel-b .p-nua-others--info__title > a {
  position: relative;
  left: auto;
  right: -45%;
}
.p-nua-tabs .tab-panel table {
  overflow: scroll;
  max-width: 420px;
}
.p-nua-tabs .tab-panel tbody {
  display: flex;
  width: 100%;
  padding-inline: 30px;
  padding-bottom: 30px;
}
.p-nua-tabs .tab-panel tr {
  display: flex;
  flex-direction: column;
  background: #fff7e9;
}
.p-nua-tabs .tab-panel tr.fix-item {
  position: fixed;
  left: 0px;
}
.p-nua-tabs .tab-panel tr.table-content {
  border-right: 8px solid transparent;
}
.p-nua-tabs .tab-panel tr.table-content > p {
  color: #fff;
  text-align: center;
  padding: 16px;
  font-weight: 600;
}
.p-nua-tabs .tab-panel tr th {
  display: flex;
  align-items: center;
  font-family: "Akshar", sans-serif;
  font-weight: 500;
  font-size: 22px;
  height: 88px;
  width: 100px;
  justify-content: end;
  padding-right: 12px;
}
.p-nua-tabs .tab-panel tr td {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-height: 90px;
  height: auto;
  background: #ffffff;
  padding: 12px;
  line-height: 1.2;
}
.p-nua-tabs .tab-panel tr td:nth-of-type(even) {
  background: #efefef;
}
.p-nua-tabs .tab-panel tr td:first-of-type {
  padding: 0;
  background: transparent;
}
.p-nua-tabs .tab-panel tr td > p:nth-of-type(1) {
  font-weight: 600;
}
.p-nua-tabs .tab-panel tr td > p:nth-of-type(2) {
  font-weight: 500;
  color: #df2527;
  margin-block: 4px 8px;
}
.p-nua-tabs .tab-panel tr td span {
  display: block;
  color: #df2527;
  font-family: "Akshar", sans-serif;
  font-weight: 500;
  margin: 0 auto;
}
.p-nua-tabs .tab-panel tr td span:nth-of-type(2) {
  margin-top: 4px;
}
.p-nua-tabs .tab-panel .swiper-slide {
  height: auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  padding: 0 0 80px;
  position: relative;
  cursor: pointer;
}
.p-nua-tabs .tab-panel .swiper-slide h2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #ffffff;
  font-family: "Akshar", sans-serif;
  font-weight: 500;
  font-size: 60px;
  line-height: 1;
}
.p-nua-tabs .tab-panel .swiper-slide h2 span {
  display: block;
  font-family: inherit;
  font-size: 20px;
}
.p-nua-tabs .tab-panel .swiper-slide-content {
  border-radius: 90px 90px 0 0;
  overflow: clip;
  width: 96%;
}
.p-nua-tabs .tab-panel .swiper-slide-content--image {
  height: 260px;
  overflow: hidden;
}
.p-nua-tabs .tab-panel .swiper-slide-content--image img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}
.p-nua-tabs .tab-panel .swiper-slide-content--summary {
  padding: 16px 10px 30px;
  position: relative;
  background: #ffffff;
}
.p-nua-tabs .tab-panel .swiper-slide-content--summary h3 {
  color: #df2527;
  text-align: center;
  font-size: 30px;
  font-weight: 600;
}
.p-nua-tabs .tab-panel .swiper-slide-content--summary h3.soon {
  text-align: center;
  margin: 60px auto;
  font-family: "Akshar", sans-serif;
}
.p-nua-tabs .tab-panel .swiper-slide-content--summary h4 {
  color: #df2527;
  font-size: 24px;
  font-weight: 600;
  margin-block: 12px 6px;
  line-height: 1;
}
.p-nua-tabs .tab-panel .swiper-slide-content--summary p {
  color: #000;
  line-height: 1.8;
}
.p-nua-tabs .tab-panel .swiper-slide-content--summary p span {
  font-size: 14px;
}
.p-nua-tabs .tab-panel .swiper-slide-content--summary > a {
  position: absolute;
  right: 4px;
  bottom: 4px;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  color: #df2527;
}
.p-nua-tabs .tab-panel .swiper-slide .swiper-programs {
  width: 96%;
  margin-top: 24px;
  padding: 24px 8px 36px;
  background: #ffffff;
  border-radius: 36px;
  position: relative;
}
.p-nua-tabs .tab-panel .swiper-slide .swiper-programs h2 {
  color: #df2527;
}
.p-nua-tabs .tab-panel .swiper-slide .swiper-programs h3 {
  text-align: center;
  font-size: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Akshar", sans-serif;
  font-weight: 500;
  color: #df2527;
}
.p-nua-tabs .tab-panel .swiper-slide .swiper-programs h3 span {
  font-family: "Akshar", sans-serif;
  font-weight: 500;
  font-size: 26px;
  margin-left: 8px;
}
.p-nua-tabs .tab-panel .swiper-slide .swiper-programs h4 {
  font-size: 21px;
  color: #df2527;
  font-weight: 600;
  padding-inline: 8px;
}
.p-nua-tabs .tab-panel .swiper-slide .swiper-programs h4 span {
  font-size: 16px;
  display: block;
}
.p-nua-tabs .tab-panel .swiper-slide .swiper-programs > p {
  padding-inline: 8px;
  margin-bottom: 20px;
}
.p-nua-tabs .tab-panel .swiper-slide .swiper-programs > span {
  max-width: 300px;
  width: 100%;
  margin: 16px auto 20px;
  padding-block: 6px 4px;
  display: block;
  border-radius: 8px;
  border: 2px solid #000000;
  font-weight: 600;
  text-align: center;
}
.p-nua-tabs .tab-panel .swiper-slide .swiper-programs--list {
  position: relative;
  padding-left: 46px;
}
.p-nua-tabs .tab-panel .swiper-slide .swiper-programs--list-01::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  aspect-ratio: 7/5;
  background: url("../images/icon_1.png") no-repeat;
  background-size: cover;
}
.p-nua-tabs .tab-panel .swiper-slide .swiper-programs--list-02::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  aspect-ratio: 43/38;
  background: url("../images/icon_2.png") no-repeat;
  background-size: cover;
}
.p-nua-tabs .tab-panel .swiper-slide .swiper-programs--list-03::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  aspect-ratio: 51/43;
  background: url("../images/icon_3.png") no-repeat;
  background-size: cover;
}
.p-nua-tabs .tab-panel .swiper-slide .swiper-programs--list-04::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  aspect-ratio: 103/75;
  background: url("../images/icon_4.svg") no-repeat;
  background-size: cover;
}
.p-nua-tabs .tab-panel .swiper-slide .swiper-programs--list h3 {
  font-weight: 500;
  font-size: 26px;
  display: block;
  text-align: left;
}
.p-nua-tabs .tab-panel .swiper-slide .swiper-programs--list p {
  margin-bottom: 12px;
  padding-left: 0;
}
.p-nua-tabs .panel-b {
  display: none;
}
.p-nua-tabs .p-nua-others {
  background: #ffffff;
}
.p-nua-tabs .p-nua-others--food {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.p-nua-tabs .p-nua-others--food__title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 12px 24px;
  text-align: center;
}
.p-nua-tabs .p-nua-others--food__title img {
  max-width: 280px;
  width: 100%;
  margin: 0 auto;
}
.p-nua-tabs .p-nua-others--food__images img {
  width: 100%;
}
.p-nua-tabs .p-nua-others--food__text {
  padding: 14px 24px;
  background: #df2527;
}
.p-nua-tabs .p-nua-others--food__text p {
  color: #ffffff;
}
.p-nua-tabs .p-nua-others--info {
  padding: 60px 40px 40px;
}
.p-nua-tabs .p-nua-others--info h2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 40px;
  text-align: center;
}
.p-nua-tabs .p-nua-others--info__title p {
  text-align: center;
  margin-bottom: 8px;
  font-weight: 500;
}
.p-nua-tabs .p-nua-others--info__title > a {
  position: relative;
  left: -30px;
}
.p-nua-tabs .p-nua-others--info__image {
  margin-bottom: 16px;
}
.p-nua-tabs .p-nua-others--info__image img {
  width: 100%;
}

.p-nua-bus {
  background: #ffffff;
}
.p-nua-bus__inner {
  padding: 30px 16px;
}
.p-nua-bus__inner > p {
  margin-bottom: 8px;
}
.p-nua-bus-title {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.p-nua-bus-title img {
  padding-inline: 20px;
}
.p-nua-bus-title a {
  display: block;
  padding: 14px 16px 10px;
  border-radius: 16px;
  background: #df2527;
  max-width: 360px;
  width: 100%;
  margin: 20px auto;
}
.p-nua-bus-title a p {
  font-size: 30px;
  color: #ffffff;
  text-align: center;
  font-weight: 600;
  line-height: 1.2;
}
.p-nua-bus-title a p span {
  display: block;
  font-size: 18px;
  line-height: 1;
  font-weight: 400;
}
.p-nua-bus ul {
  width: 100%;
  padding: 0;
  color: #000000;
}
.p-nua-bus ul > li.station-line {
  margin-bottom: 24px;
  border-radius: 8px;
  overflow: clip;
  border: 1px solid #df2527;
  transition: all 0.3s;
}
.p-nua-bus ul > li.station-line.active .accordionBtn {
  border-bottom: 1px solid #df2527;
}
.p-nua-bus ul .accordionBtn {
  background: #efefef;
}
.p-nua-bus .station-line__content {
  padding: 12px;
}
.p-nua-bus .station-line__content > p {
  font-size: 13px;
}
.p-nua-bus .station-line__content-map {
  width: 100%;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  height: auto;
}
.p-nua-bus .station-line__content-map iframe {
  width: 100%;
  height: 100%;
  margin-top: 10px;
}
.p-nua-bus li {
  list-style: none;
}
.p-nua-bus ul ul {
  height: 0;
  padding: 0;
  overflow: hidden;
  transition: 0.5s;
  margin: 0;
}
.p-nua-bus button {
  position: relative;
  border: none;
  width: 100%;
  background-color: inherit;
  color: #000000;
  cursor: pointer;
  text-align: left;
  padding: 8px 10px 6px;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
}
.p-nua-bus button:hover {
  opacity: 0.7;
}
.p-nua-bus button::before,
.p-nua-bus button::after {
  content: "";
  position: absolute;
  top: 15px;
  width: 1px;
  height: 15px;
  background-color: #df2527;
  transition: 0.5s;
}
.p-nua-bus button::before {
  transform: rotate(-90deg);
  right: 20px;
}
.p-nua-bus button::after {
  transform: rotate(0deg);
  right: 20px;
}
.p-nua-bus li.active button::before {
  transform: rotate(-90deg);
  transition: 0.5s;
}
.p-nua-bus li.active button::after {
  transform: rotate(-90deg);
  transition: 0.5s;
}
.p-nua-bus ul.active {
  overflow-y: auto;
}

.footer {
  background: #ffffff;
  padding-bottom: 60px;
}
.footer-add {
  padding-inline: 20px;
  margin-bottom: 24px;
}
.footer-add--map {
  max-width: 100%;
  width: 100%;
  height: 240px;
}
.footer-add--map iframe {
  width: 100%;
  height: 100%;
}
.footer-add h3 {
  font-size: 32px;
  font-weight: 600;
  margin-block: 10px;
}
.footer-info {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding: 0 20px 16px;
}
.footer-info img {
  width: 100%;
}
.footer-info__add {
  padding: 10px 24px;
}
.footer-info__add small {
  font-size: 12px;
}
.footer-logo {
  max-width: 240px;
  width: 100%;
  margin-bottom: 8px;
}
.footer-enter {
  max-width: 240px;
  width: 100%;
}

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

#sp-fixed-menu {
  position: fixed;
  width: 100%;
  bottom: 0;
  margin: 0;
  z-index: 1001;
  display: none;
}
#sp-fixed-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  background-color: #00A0E9;
  display: flex;
}
#sp-fixed-menu ul li.btn01 {
  width: 80%;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
#sp-fixed-menu ul li.btn01 a {
  color: #ffffff;
  font-size: 30px;
  line-height: 1;
  padding: 8px;
}
#sp-fixed-menu ul li.btn01 a span {
  display: block;
  font-size: 14px;
}
#sp-fixed-menu ul li.btn02 {
  width: 20%;
  padding: 0;
  margin: 0;
}

/*ボタンを調整*/
#sp-fixed-menu li a {
  text-align: center;
  display: block;
  width: 100%;
}

#sp-fixed-menu li a:hover {
  opacity: 0.7;
}

.p-contact-form__label > .label, .p-contact-confirm__label > .label {
  font-size: 16px;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  line-height: 31.5px;
  color: #000000;
  flex: 0 0 auto;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 600px) {
  .p-contact-form__label > .label, .p-contact-confirm__label > .label {
    font-size: 14px;
  }
}

.p-contact-form__label > .tag, .p-contact-confirm__label > .tag {
  font-size: 14px;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  line-height: 14px;
  color: #343434;
  display: block;
  flex: 0 0 auto;
  padding: 6px 15px;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 600px) {
  .p-contact-form__label > .tag, .p-contact-confirm__label > .tag {
    font-size: 11px;
    flex: 1 1 auto;
  }
}

.p-contact-form__label > .tag--optional, .p-contact-confirm__label > .tag--optional {
  background-color: #656565;
}

.p-contact {
  width: 100%;
  max-width: 1000px;
  margin-inline: auto;
  padding-top: 120px;
  color: #343434;
  overflow-x: hidden;
}
.p-contact__head {
  width: 100%;
  text-align: center;
}
.p-contact__head > p {
  font-size: 18px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: 31.5px;
  color: #000000;
  letter-spacing: 0.04em;
}
.p-contact__form, .p-contact__confirm {
  width: 100%;
  margin-top: 120px;
}
.p-contact__complete {
  width: 100%;
  margin-top: 0;
}
.p-contact--inner {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}
.p-contact .req {
  margin-left: 8px;
  color: #ff3333;
}
.p-contact__item {
  display: flex;
  justify-content: space-around;
}
.p-contact__number {
  text-align: center;
  color: #156B51;
  position: relative;
}
.p-contact__number:nth-of-type(2):after {
  content: "";
  width: 440px;
  height: 4px;
  background: #343434;
  position: absolute;
  top: 40px;
  left: 0;
  transform: translateX(-40%);
  z-index: -1;
}
@media screen and (max-width: 600px) {
  .p-contact__number:nth-of-type(2):after {
    top: 28px;
    width: 60vw;
  }
}
.p-contact__number--item {
  width: 80px;
  height: 80px;
  margin-bottom: 21px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 32px;
  font-weight: 600;
  border-radius: 50%;
  border: 2px solid #156B51;
  background: #fff;
}
@media screen and (max-width: 600px) {
  .p-contact__number--item {
    width: 56px;
    height: 56px;
    font-size: 24px;
  }
}
.p-contact__number--item.act {
  color: #fff;
  background: #156B51;
  border: none;
}
.p-contact__number--item--mb {
  margin-bottom: 5px;
}
.p-contact__txt {
  padding-top: 40px;
}
.p-contact__add {
  font-size: 14px;
  padding: 32px 0 56px;
  margin-bottom: 56px;
  border-bottom: 1px solid #156B51;
}
.p-contact__add .telno {
  padding: 18px 0;
  margin-bottom: 10px;
  color: #156B51;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  background: #E7F0ED;
  border: 1px solid #156B51;
  border-radius: 0 15px 0 15px;
}
@media screen and (max-width: 600px) {
  .p-contact__add .telno {
    text-align: left;
    padding: 18px 10%;
  }
}
@media screen and (max-width: 600px) {
  .p-contact__add .telno .add-tel {
    display: block;
  }
}

.p-contact-form {
  display: grid;
  grid-template-columns: 100%;
  row-gap: 40px;
  width: 100%;
  accent-color: #156B51;
}
.p-contact-form__item {
  width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
  .p-contact-form__item {
    width: 100%;
  }
}
.p-contact-form__item dl {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.p-contact-form__item dl dt {
  width: 100%;
}
.p-contact-form__item dl dd {
  width: 30%;
  margin: 8px 0;
}
.p-contact-form__item dl dd input[type=radio i] {
  margin: 0 8px;
  block-size: 24px;
  inline-size: 24px;
}
@media screen and (max-width: 600px) {
  .p-contact-form__item dl dd {
    width: 50%;
  }
}
.p-contact-form__item dl dd label {
  display: flex;
}
.p-contact-form__item--accept {
  margin-top: 30px;
}
.p-contact-form__item--accept > .accept-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 30px;
       column-gap: 30px;
}
.p-contact-form__item--accept > .accept-wrap > input {
  inline-size: 24px;
  block-size: 24px;
  accent-color: #156B51;
  border: 1px solid #156B51;
  margin-right: 8px;
}
.p-contact-form__item--accept > .accept-wrap > label {
  font-size: 18px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: 35px;
  color: #000000;
  letter-spacing: 0.04em;
}
.p-contact-form__item--accept > .accept-wrap > label > a {
  position: relative;
}
.p-contact-form__item--accept > .accept-wrap > label > a::after {
  position: absolute;
  bottom: -1px;
  left: 0;
  display: block;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #156B51;
}
.p-contact-form .required::after {
  content: "*";
  color: #ff3333;
  margin-left: 8px;
}
.p-contact-form__submit {
  position: relative;
  margin-bottom: 100px;
}
.p-contact-form__submit > input.p-contact-form-submit {
  display: none;
}
.p-contact-form__submit::after {
  content: "";
  width: 20px;
  height: 1px;
  background-color: #156B51;
  position: absolute;
  top: 50%;
  right: 30%;
}
@media screen and (max-width: 600px) {
  .p-contact-form__submit::after {
    right: 26%;
  }
}
.p-contact-form__submit::before {
  content: "";
  width: 10px;
  height: 1px;
  background-color: #156B51;
  transform: rotate(35deg);
  position: absolute;
  top: 45.5%;
  right: 29.5%;
}
@media screen and (max-width: 600px) {
  .p-contact-form__submit::before {
    right: 25.5%;
  }
}
.p-contact-form__submit .submit-btn {
  display: block;
  text-align: center;
  max-width: 405px;
  width: 100%;
  margin: 0 auto;
  padding: 16px;
  border: 1px solid #156B51;
  border-radius: 30px;
  background-color: #fff;
}
.p-contact-form__label, .p-contact-confirm__label {
  display: flex;
  align-items: center;
}
.p-contact-form__input {
  margin-top: 10px;
}
.p-contact-form__input > input,
.p-contact-form__input > select,
.p-contact-form__input > textarea {
  font-size: 16px;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  line-height: 20px;
  color: #000000;
  width: 100%;
  height: 60px;
  padding: 15px 3.125%;
  letter-spacing: 0.04em;
  border: 1px solid #156B51;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.p-contact-form__input > input::-moz-placeholder, .p-contact-form__input > textarea::-moz-placeholder {
  color: rgba(0, 0, 0, 0.1607843137);
}
.p-contact-form__input > input::placeholder,
.p-contact-form__input > textarea::placeholder {
  color: rgba(0, 0, 0, 0.1607843137);
}
.p-contact-form__input > input.readonly {
  border: none;
  border-bottom: 1px solid #000000;
  outline: none;
}
.p-contact-form__input > textarea {
  height: 240px;
}
.p-contact-form__error {
  font-size: 14px;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  line-height: 20px;
  color: #ff3333;
  margin-top: 5px;
}

.p-contact-confirm {
  display: grid;
  align-items: start;
  grid-template-columns: 1fr;
  row-gap: 20px;
  width: 100%;
  margin-bottom: 65px;
}
.p-contact-confirm__item {
  width: 100%;
  height: auto;
  display: contents;
}
.p-contact-confirm__input {
  width: 100%;
  padding: 16px;
  background: rgba(21, 107, 81, 0.1);
}
.p-contact-confirm__submit {
  width: 90%;
  display: grid;
  justify-content: center;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 20px;
       column-gap: 20px;
  margin: 100px auto;
  justify-items: center;
}
.p-contact-confirm__submit .submit-btn {
  display: block;
  text-align: center;
  max-width: 405px;
  width: 100%;
  margin: 0 auto;
  padding: 16px;
  color: #fff;
  border: none;
  border-radius: 30px;
  background-color: #156B51;
}
.p-contact-confirm__submit .back-btn {
  display: block;
  text-align: center;
  max-width: 405px;
  width: 100%;
  margin: 0 auto;
  padding: 16px;
  border: 1px solid #156B51;
  border-radius: 30px;
  background-color: #fff;
}
.p-contact-confirm__submit--hide {
  display: none;
}
.p-contact-confirm__submit > input.p-contact-form-submit {
  display: none;
}
.p-contact-confirm__txt {
  text-align: center;
  padding-top: 40px;
}
.p-contact-confirm__value {
  font-size: 16px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: 25px;
  color: #000000;
  width: 100%;
  letter-spacing: 0.04em;
  word-break: break-all;
  align-self: center;
}
.p-contact-confirm__link {
  font-size: 16px;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  line-height: 32px;
  color: #000000;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  padding-bottom: 1px;
  transition: all 0.3s ease-out;
  letter-spacing: 0.04em;
  border-bottom: 1px solid #000000;
}
.p-contact-confirm__link::before {
  margin-right: 5px;
  content: "←";
}
.p-contact-confirm__link:hover {
  transition: all 0.3s ease-out;
  opacity: 0.7;
}

.p-contact-complete > p {
  font-size: 18px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: 31.5px;
  color: #000000;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  letter-spacing: 0.04em;
}
.p-contact-complete__btn {
  margin-top: 180px;
}

.u-padding-none {
  padding: 0;
}

.u-padding-top-none {
  padding-top: 0;
}

.u-padding-bottom-none {
  padding-bottom: 0;
}