@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  outline: none;
  position: relative;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  word-break: break-all;
}

ul,
ol {
  list-style: none;
}

a {
  -webkit-text-decoration: none;
  text-decoration: none;
  color: #333;
  transition: opacity 0.1s linear;
  display: inline-block;
}
input,
textarea,
select {
  outline: none;
  margin: 0;
}

input[type=submit] {
  -webkit-appearance: none;
  border-radius: 0;
}

svg {
  overflow-x: visible;
  overflow-y: visible;
  display: inline-block;
}

img {
  caret-color: transparent;
  display: block;
  max-width: 100%;
  height: auto;
  pointer-events: none;
}

:root {
  /*Space*/
  --space-xl5: clamp(8rem, 6.592rem + 3.756vw, 12rem);
  --space-xl4: clamp(6.4rem, 5.837rem + 1.502vw, 8rem);
  --space-xl3: clamp(4.8rem, 4.237rem + 1.502vw, 6.4rem);
  --space-xl2: clamp(3.2rem, 2.637rem + 1.502vw, 4.8rem);
  --space-xl: clamp(2.4rem, 2.118rem + 0.751vw, 3.2rem);
  --space-lg: clamp(1.6rem, 1.318rem + 0.751vw, 2.4rem);
  --space-md: clamp(1.2rem, 1.059rem + 0.376vw, 1.6rem);
  --space-sm: clamp(0.8rem, 0.659rem + 0.376vw, 1.2rem);
  --space-xs: clamp(0.4rem, 0.259rem + 0.376vw, 0.8rem);
  --space-xs2: clamp(0.2rem, 0.13rem + 0.188vw, 0.4rem);
  --space-xs3: clamp(0.2rem, 0.2rem + 0vw, 0.2rem);
  /*FontSize*/
  --font-size-xl5: clamp(4.8rem, 3.673rem + 3.005vw, 8rem);
  --font-size-xl4: clamp(4rem, 3.155rem + 2.254vw, 6.4rem);
  --font-size-xl3: clamp(3.2rem, 2.637rem + 1.502vw, 4.8rem);
  --font-size-xl2: clamp(2.4rem, 1.977rem + 1.127vw, 3.6rem);
  --font-size-xl: clamp(2rem, 1.718rem + 0.751vw, 2.8rem);
  --font-size-lg: clamp(1.6rem, 1.459rem + 0.376vw, 2rem);
  --font-size-md: clamp(1.4rem, 1.33rem + 0.188vw, 1.6rem);
  --font-size-sm: clamp(1.3rem, 1.265rem + 0.094vw, 1.4rem);
  --font-size-xs: clamp(1rem, 0.93rem + 0.188vw, 1.2rem);
  --font-size-xs2: clamp(1rem, 1rem + 0vw, 1rem);
  /*Radius*/
  --radius-xl: clamp(3rem, 2.648rem + 0.939vw, 4rem);
  --radius-lg: clamp(2rem, 1.648rem + 0.939vw, 3rem);
  --radius-md: clamp(0.8rem, 0.518rem + 0.751vw, 1.6rem);
  --radius-sm: clamp(0.4rem, 0.259rem + 0.376vw, 0.8rem);
  --radius-xs: clamp(0.3rem, 0.3rem + 0vw, 0.3rem);
}

html {
  font-size: 62.5%;
  width: 100%;
}

body {
  color: #333;
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-weight: 500;
  font-size: clamp(1.4rem, 1.33rem + 0.188vw, 1.6rem);
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-align: left;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-y: scroll;
  -ms-overflow-style: none;
  position: relative;
}
body::-webkit-scrollbar {
  display: none;
}
body.is-menu-opened {
  overflow: hidden;
}

.ja {
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif !important;
}

.ja-ttl {
  font-family: "Zen Maru Gothic", sans-serif !important;
}

.en {
  font-family: "Quicksand", sans-serif !important;
}

.inner {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
}
.inner._maxw-800 {
  max-width: 800px;
}
.inner._maxw-1200 {
  max-width: 1200px;
}

.l-header {
  padding-left: 20px;
  padding-right: 20px;
}
.l-header__inner {
  height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(2rem, 1.296rem + 1.878vw, 4rem);
  width: 100%;
  max-width: 1440px;
}
.l-header.l-header-fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-105%);
  transition: all ease-in-out 300ms;
  background-color: #fff;
}
.l-header.l-header-fixed .l-header__inner {
  height: 100px;
}
.l-header.l-header-fixed.is-show {
  visibility: visible;
  opacity: 1;
  transform: translateY(0%);
}
.l-header.l-header-fixed .logo-corporate._in-header .logo {
  width: clamp(16rem, 10.366rem + 15.023vw, 32rem);
}

.l-footer {
  margin-top: clamp(8rem, 5.887rem + 5.634vw, 14rem);
  overflow: hidden;
}
.l-footer__inner {
  position: relative;
  max-width: 1280px;
  padding-top: clamp(8rem, 5.887rem + 5.634vw, 14rem);
  padding-left: 20px;
  padding-right: 20px;
}
.l-footer__inner::before {
  content: "";
  display: inline-block;
  width: calc(100% - 40px);
  height: auto;
  aspect-ratio: 1140/30;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url(../img/deco_footer_gizagiza.svg);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  background-size: 100% 100%;
}
.l-footer__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: clamp(6rem, 5.296rem + 1.878vw, 8rem);
}
.l-footer__head > * {
  margin-left: auto;
  margin-right: auto;
}
.l-footer__body {
  padding-top: clamp(6rem, 5.296rem + 1.878vw, 8rem);
  padding-bottom: clamp(6rem, 3.535rem + 6.573vw, 13rem);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.l-footer__foot {
  padding-top: clamp(2rem, 0.592rem + 3.756vw, 6rem);
  padding-bottom: clamp(2rem, 0.592rem + 3.756vw, 6rem);
  background-color: #40b0dd;
  color: #fff;
  font-size: clamp(1rem, 0.93rem + 0.188vw, 1.2rem);
  font-size: var(--font-size-xs);
  position: relative;
  width: calc(100vw - 2 * 0px);
  margin-left: calc(50% - 50vw + 0px);
  margin-right: calc(50% - 50vw + 0px);
  max-width: none;
}
.l-footer__foot::before {
  content: "";
  display: inline-block;
  width: 105%;
  height: auto;
  aspect-ratio: 1477/75;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url(../img/deco_footer_copyright_nami.svg);
  position: absolute;
  top: -25%;
  left: 50%;
  translate: -50% 0;
  background-size: contain;
}
.l-footer__information {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(1.6rem, 0.755rem + 2.254vw, 4rem);
}
.l-footer__information__address {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 0.648rem + 0.939vw, 2rem);
}
.l-footer__information__address .zipcode .icon-zipcode {
  color: #aaa;
  font-weight: 600;
}
.l-footer__information__address .address {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.1em;
}
.l-footer__information__contact .tel {
  font-size: clamp(2rem, 1.718rem + 0.751vw, 2.8rem);
  font-size: var(--font-size-xl);
  display: flex;
  align-items: center;
  gap: 0.25em;
  font-weight: 600;
}
.l-footer__information__contact .tel::before {
  content: "";
  display: inline-block;
  width: 1.25em;
  height: auto;
  aspect-ratio: 1/1;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url(../img/icon_tel.svg);
  margin-top: 0.1em;
}
.l-drawer {
  background-color: rgba(0, 0, 0, 0.3);
  position: fixed;
  width: 200%;
  height: 100%;
  top: 70px;
  right: 0;
  transition: all 0.1s ease-in-out;
  z-index: 999;
  overflow-y: scroll;
  -ms-overflow-style: none;
}
.l-drawer::-webkit-scrollbar {
  display: none;
}
.l-drawer:not(.is-open) {
  translate: 20px 0;
  opacity: 0;
  pointer-events: none;
}
.l-drawer__inner {
  background-color: #fff;
  position: absolute;
  right: 0;
  top: 0;
  min-height: 100%;
  width: 100vw;
  max-width: 400px;
  padding: clamp(2rem, 1.296rem + 1.878vw, 4rem);
  overflow-y: scroll;
  padding-bottom: 120px;
}

.l-mv {
  position: relative;
  overflow: hidden;
}
.l-mv__sky {
  position: relative;
  min-height: 140px;
  z-index: 1;
  background-color: #fff;
}
.l-mv__sky::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: auto;
  aspect-ratio: 1440/62;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url(../img/mvtop_white_top_v2.svg);
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  background-size: cover;
  z-index: 0;
}
.l-mv__sky .deco._cloud_1 {
  width: clamp(13rem, 8.317rem + 12.488vw, 26.3rem);
  left: 4%;
  bottom: -18%;
}
.l-mv__sky .deco._cloud_2 {
  width: clamp(4.3rem, 2.786rem + 4.038vw, 8.6rem);
  right: 10%;
  bottom: 40%;
}
.l-mv__sky .deco._cloud_3 {
  width: clamp(7.5rem, 4.894rem + 6.948vw, 14.9rem);
  right: 2%;
  bottom: 0;
}
.l-mv__sky .deco._cloud_4 {
  width: clamp(3.8rem, 3.025rem + 2.066vw, 6rem);
  left: 24%;
  bottom: 26%;
  scale: -1 1;
  rotate: 0deg;
  opacity: 0.5;
}
.l-mv__sky .deco._sun {
  width: clamp(3.7rem, 2.397rem + 3.474vw, 7.4rem);
  left: 18%;
  bottom: 40%;
}
.l-mv__sea {
  padding-bottom: clamp(2rem, -1.521rem + 9.39vw, 12rem);
  position: relative;
  width: 100%;
  min-height: clamp(20rem, 12.958rem + 18.779vw, 40rem);
  background-size: cover;
  display: flex;
  align-items: flex-end;
}
.l-mv__sea::before {
  content: "";
  background-image: url(../img/mvtop_seawave.jpg);
  display: block;
  width: 120%;
  height: 120%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  animation: waving-sea 8s cubic-bezier(0.59, 0, 0.41, 0.99) infinite;
  z-index: 0;
}
@keyframes waving-sea {
  0% {
    translate: 0 0;
  }
  50% {
    translate: -3% -3%;
  }
  100% {
    translate: 0 0;
  }
}
.l-mv__sea__inner {
  position: relative;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  gap: clamp(2rem, -0.113rem + 5.634vw, 8rem);
  max-width: 1400px;
}
.l-mv__sea .deco._fugu {
  aspect-ratio: 215/130;
  width: clamp(6.4rem, 4.851rem + 4.131vw, 10.8rem);
  height: auto;
  left: 13%;
  bottom: 12%;
  z-index: 10;
}
.l-mv__sea .deco._fugu img {
  animation: kf_fugu 2s steps(2) infinite alternate;
}
@keyframes kf_fugu {
  0% {
    transform: rotate(0deg);
  }
  79% {
    transform: rotate(0deg);
  }
  80% {
    transform: rotate(-5deg);
    translate: 5px 0;
  }
  100% {
    transform: rotate(5deg);
    translate: -5px 0;
  }
}
.l-mv__sea .deco._kani {
  aspect-ratio: 170/127;
  width: clamp(5.4rem, 4.308rem + 2.911vw, 8.5rem);
  height: auto;
  right: -8%;
  bottom: 50%;
}
.l-mv__sea .deco._kani img {
  animation: kf_kani 2s 1s steps(2) infinite alternate;
}
@keyframes kf_kani {
  0% {
    transform: rotate(0deg);
  }
  79% {
    transform: rotate(0deg);
  }
  80% {
    transform: rotate(-10deg);
    translate: -5px 0;
  }
  100% {
    transform: rotate(10deg);
    translate: 5px 0;
  }
}
.l-mv__sea .deco._hitode {
  aspect-ratio: 126/135;
  width: clamp(4.2rem, 3.461rem + 1.972vw, 6.3rem);
  height: auto;
  right: 0%;
  bottom: -20%;
}
.l-mv__sea .deco._hitode img {
  animation: kf_hitode 2s 2s steps(2) infinite alternate;
}
@keyframes kf_hitode {
  0% {
    transform: rotate(0deg);
  }
  79% {
    transform: rotate(0deg);
  }
  90% {
    transform: rotate(-15deg);
  }
  100% {
    transform: rotate(15deg);
  }
}
.l-mv__sea .deco._kisu {
  aspect-ratio: 426/183;
  width: clamp(6rem, 3.887rem + 5.634vw, 12rem);
  height: auto;
  left: -10%;
  bottom: 31%;
}
.l-mv__sea .deco._kisu img {
  animation: kf_kisu 2s 1s steps(2) infinite alternate;
}
@keyframes kf_kisu {
  0% {
    transform: rotate(0deg);
  }
  79% {
    transform: rotate(0deg);
  }
  80% {
    transform: rotate(-3deg);
    translate: 5px 0;
  }
  100% {
    transform: rotate(3deg);
    translate: -5px 0;
  }
}
.l-mv__sea .deco._baby {
  aspect-ratio: 195/79;
  width: clamp(3rem, 2.296rem + 1.878vw, 5rem);
  height: auto;
  left: -11%;
  bottom: 24%;
}
.l-mv__sea .deco._baby img {
  animation: kf_baby 2s 1.5s steps(2) infinite alternate;
}
@keyframes kf_baby {
  0% {
    transform: rotate(0deg);
  }
  79% {
    transform: rotate(0deg);
  }
  80% {
    transform: rotate(-2deg);
    translate: 4px 0;
  }
  100% {
    transform: rotate(2deg);
    translate: -4px 0;
  }
}
.l-mv__sea .deco._kai {
  width: clamp(4.2rem, 3.285rem + 2.441vw, 6.8rem);
  right: 25%;
  bottom: -10%;
  animation: waving-kai 8s 0.5s steps(2) infinite;
}
@keyframes waving-kai {
  0% {
    translate: 0 0;
  }
  50% {
    translate: -5% -3%;
  }
  100% {
    translate: 0 0;
  }
}
.l-mv__sea .deco._shell {
  width: clamp(3rem, 2.507rem + 1.315vw, 4.4rem);
  right: -12%;
  bottom: 5%;
  animation: waving-kai 8s 0s steps(2) infinite;
}
@keyframes waving-kai {
  0% {
    translate: 0 0;
  }
  50% {
    translate: -3% -5%;
  }
  100% {
    translate: 0 0;
  }
}
.l-mv__sea .carousel-mvtop {
  width: 100%;
  align-self: start;
  margin-top: calc(-1 * clamp(6rem, 3.535rem + 6.573vw, 13rem));
}
.l-mv__beach {
  position: relative;
  width: 100%;
  margin-top: -5%;
  z-index: 1;
}
.l-mv__beach__inner {
  min-height: clamp(20rem, 15.07rem + 13.146vw, 34rem);
  position: relative;
  display: grid;
  align-items: center;
  justify-items: center;
  place-items: center;
  padding-left: 20px;
  padding-right: 20px;
}
.l-mv__beach__inner .items-information {
  position: relative;
  z-index: 1;
  margin-top: 4em;
  margin-bottom: 4em;
  min-width: clamp(20rem, 3.099rem + 45.07vw, 68rem);
}
.l-mv__beach__inner .items-information:hover .deco._matsubokkuri {
  rotate: 360deg;
}
.l-mv__beach__inner .items-information .deco._matsubokkuri {
  width: clamp(3.2rem, 2.355rem + 2.254vw, 5.6rem);
  bottom: 0;
  right: 0;
  translate: 35% 60%;
  transition: rotate 0.3s ease-in-out;
}
.l-mv__beach .bg-sealine {
  z-index: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 300/38;
  width: calc(100vw - 2 * 0px);
  margin-left: calc(50% - 50vw + 0px);
  margin-right: calc(50% - 50vw + 0px);
  max-width: none;
  animation: waving-sealine 8s 1s cubic-bezier(0.59, 0, 0.41, 0.99) infinite;
  z-index: 0;
}
@keyframes waving-sealine {
  0% {
    translate: 0 0;
  }
  50% {
    translate: 0% -8%;
  }
  100% {
    translate: 0 0;
  }
}
.l-mv__beach .bg-beach {
  z-index: 1;
  position: absolute;
  top: clamp(1rem, 0.648rem + 0.939vw, 2rem);
  left: 0;
  width: 100%;
  aspect-ratio: 288/200;
  width: calc(100vw - 2 * 0px);
  margin-left: calc(50% - 50vw + 0px);
  margin-right: calc(50% - 50vw + 0px);
  max-width: none;
}
.l-mv__beach .deco._baketsu {
  width: clamp(4rem, 3.014rem + 2.629vw, 6.8rem);
  top: 0%;
  left: 0;
}
.l-mv__beach .deco._scop {
  width: clamp(3.2rem, 2.285rem + 2.441vw, 5.8rem);
  top: 12%;
  left: -2%;
}
.l-mv__beach .deco._ukiwa {
  width: clamp(5rem, 3.592rem + 3.756vw, 9rem);
  top: -5%;
  left: 25%;
  rotate: -5deg;
  animation: waving-ukiwa 8s 1s steps(2) infinite;
}
@keyframes waving-ukiwa {
  0% {
    translate: 0 0;
    rotate: -5deg;
  }
  50% {
    translate: -5% -2%;
    rotate: -4deg;
  }
  100% {
    translate: 0 0;
    rotate: -5deg;
  }
}
.l-mv__copy-pc {
  padding-top: clamp(4rem, 2.592rem + 3.756vw, 8rem);
  padding-left: clamp(2rem, 1.296rem + 1.878vw, 4rem);
  flex-shrink: 0;
  position: relative;
  z-index: 10;
}
.l-mv__copy-pc img {
  width: clamp(10rem, 8.31rem + 4.507vw, 14.8rem);
}
.l-mv__copy-sp {
  position: relative;
  z-index: 10;
  margin-left: auto;
  margin-right: auto;
  width: -moz-fit-content;
  width: fit-content;
  padding-bottom: clamp(10rem, 9.296rem + 1.878vw, 12rem);
}
.l-mv__copy-sp img {
  width: 4em;
}
.l-mv__bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 1440/103;
  z-index: 5;
}
.l-mv__bottom::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100vh;
  transform: rotate(0deg);
  background-color: #fff;
  top: calc(100% - 1px);
  left: 0;
  z-index: 1;
}
.l-mv .deco {
  position: absolute;
  z-index: 5;
  height: auto;
  pointer-events: none;
}

.l-mv-lv2page {
  overflow: hidden;
  position: relative;
}
.l-mv-lv2page.dispay-delay-because-jump2contents-in-page {
  opacity: 0;
  animation: initLv2PageHead 0.2s 0.1s linear forwards;
}
@keyframes initLv2PageHead {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.l-mv-lv2page-a {
  padding-bottom: clamp(4rem, 1.535rem + 6.573vw, 11rem);
}
.l-mv-lv2page-a__inner {
  max-width: 1280px;
  display: flex;
  align-items: center;
  gap: clamp(3rem, 2.648rem + 0.939vw, 4rem);
}
.l-mv-lv2page-a__head {
  flex: 2;
  font-size: clamp(2.4rem, 1.977rem + 1.127vw, 3.6rem);
  font-size: var(--font-size-xl2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  align-self: stretch;
}
.l-mv-lv2page-a__head__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75em;
}
.l-mv-lv2page-a__head .title-ja {
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
}
.l-mv-lv2page-a__head .title-en {
  font-size: clamp(1.4rem, 1.33rem + 0.188vw, 1.6rem);
  font-size: var(--font-size-md);
  letter-spacing: 0.3em;
  font-weight: 700;
  color: #aaa;
  margin-top: 0.25em;
  line-height: 1;
}
.l-mv-lv2page-a__head .icon-illust {
  height: 1.5em;
  width: auto;
}
.l-mv-lv2page-a__head::after {
  content: "";
  display: inline-block;
  width: 50em;
  height: auto;
  aspect-ratio: 2080/64;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url(../img/deco_beach_wave_pc.svg);
  position: absolute;
  top: calc(100% + clamp(4rem, 1.535rem + 6.573vw, 11rem));
  left: 50%;
  translate: -50% -100%;
}
.l-mv-lv2page-a__body {
  flex: 5;
  aspect-ratio: 16/9;
  width: 100%;
  height: auto;
  overflow: hidden;
  background-color: #eee;
}
.l-mv-lv2page-a__body .mv-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.5;
  scale: 1.05;
  will-change: opacity, scale;
  animation: fadeInLv2PageMv 1.5s 0s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}
@keyframes fadeInLv2PageMv {
  0% {
    opacity: 0.5;
    scale: 1.05;
  }
  100% {
    opacity: 1;
    scale: 1;
  }
}

.l-mv-lv2page-b {
  padding-top: clamp(4rem, 2.592rem + 3.756vw, 8rem);
}
.l-mv-lv2page-b__inner {
  position: relative;
  max-width: 800px;
  display: grid;
  align-items: center;
  justify-items: center;
  place-items: center;
  grid-gap: clamp(2rem, 1.577rem + 1.127vw, 3.2rem);
  gap: clamp(2rem, 1.577rem + 1.127vw, 3.2rem);
}
.l-mv-lv2page-b__inner::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: auto;
  aspect-ratio: 800/39;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url(../img/deco_mv_lv2page_b.svg);
}
.l-mv-lv2page-b__head {
  display: grid;
  align-items: center;
  justify-items: center;
  place-items: center;
}
.l-mv-lv2page-b__head .title-ja {
  font-size: clamp(3.2rem, 2.637rem + 1.502vw, 4.8rem);
  font-size: var(--font-size-xl3);
  font-weight: 700;
  letter-spacing: 0.1em;
}
.l-mv-lv2page-b__head .title-en {
  letter-spacing: 0.3em;
  font-size: clamp(1.4rem, 1.33rem + 0.188vw, 1.6rem);
  font-size: var(--font-size-md);
  font-weight: 700;
  color: #aaa;
  margin-top: 0.25em;
}
.l-mv-lv2page-b__head .icon-illust {
  margin-top: clamp(2rem, 1.577rem + 1.127vw, 3.2rem);
  width: auto;
  max-height: clamp(6rem, 5.296rem + 1.878vw, 8rem);
}
.l-mv-lv2page-b.recruit .icon-illust {
  max-height: clamp(12rem, 10.592rem + 3.756vw, 16rem);
}

.btn-link {
  -webkit-text-decoration: none;
  text-decoration: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  line-height: 1;
  caret-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  color: #333;
  background-color: transparent;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.1s linear;
  will-change: transform;
  background-color: #fff;
  border-radius: 999px;
  font-family: "Zen Maru Gothic", sans-serif;
  letter-spacing: 0.15em;
  font-weight: 700;
  padding: 1em 2em;
  font-size: clamp(1.4rem, 1.189rem + 0.563vw, 2rem);
  gap: 1.25em;
  line-height: 1.2;
}
.btn-link *,
.btn-link *::before,
.btn-link *::after {
  transition: all 0.1s linear;
}
.btn-link._has-border {
  border: solid 1px #ccc;
}
.btn-link._small {
  font-size: clamp(1.4rem, 1.33rem + 0.188vw, 1.6rem);
  font-size: var(--font-size-md);
}
.btn-link._large {
  padding: 1.5em 2em;
}
.btn-link._pdf:hover::after {
  scale: 1.1;
}
.btn-link._pdf::after {
  flex-shrink: 0;
  transition: scale 0.1s linear;
  content: "";
  display: inline-block;
  width: 1.5em;
  height: auto;
  aspect-ratio: 24/30;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url(../img/icon_btn_pdf.svg);
}
.btn-link._external:hover::after {
  scale: 1.1;
}
.btn-link._external::after {
  flex-shrink: 0;
  transition: scale 0.1s linear;
  content: "";
  display: inline-block;
  width: 1.5em;
  height: auto;
  aspect-ratio: 1/1;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url(../img/icon_btn_external.svg);
}
.btn-link._tel:hover::after {
  scale: 1.1;
}
.btn-link._tel::after {
  flex-shrink: 0;
  transition: scale 0.1s linear;
  content: "";
  display: inline-block;
  width: 1.5em;
  height: auto;
  aspect-ratio: 1/1;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url(../img/icon_btn_tel.svg);
}
.btn-link._procedure {
  color: #fff;
}
.btn-link._arrow-blue:hover::after {
  translate: 0.25em 0;
}
.btn-link._arrow-blue::after {
  transition: translate 0.1s linear;
  content: "";
  display: inline-block;
  width: 1.5em;
  height: auto;
  aspect-ratio: 2532/1909;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url(../img/icon_btn_arrow_blue.svg);
}
.btn-link._arrow-green:hover::after {
  translate: 0.25em 0;
}
.btn-link._arrow-green::after {
  transition: translate 0.1s linear;
  content: "";
  display: inline-block;
  width: 1.5em;
  height: auto;
  aspect-ratio: 2532/1909;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url(../img/icon_btn_arrow_green.svg);
}
.btn-link._arrow-orange:hover::after {
  translate: 0.25em 0;
}
.btn-link._arrow-orange::after {
  transition: translate 0.1s linear;
  content: "";
  display: inline-block;
  width: 1.5em;
  height: auto;
  aspect-ratio: 2532/1909;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url(../img/icon_btn_arrow_orange.svg);
}
.btn-link._stripe {
  color: #fff;
  background-color: #eee;
  background-size: 200% 100%;
  background-position: 100% 0;
  background-repeat: repeat-x;
}
.btn-link._stripe::after {
  content: "";
  display: inline-block;
  width: 1.75em;
  height: auto;
  aspect-ratio: 1/1;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url(../img/icon_btn_arrow_maru_white.svg);
}
.btn-link._stripe._blue {
  background-color: #299dd5;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 5%, #1c96cb 5%, #1c96cb 10%);
}
.btn-link._stripe._blue:hover {
  animation: btn-stripe-move-x 1s linear infinite;
}
.btn-link._stripe._green {
  background-color: #0fa880;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 5%, #00a468 5%, #00a468 10%);
}
.btn-link._stripe._green:hover {
  animation: btn-stripe-move-x 1s linear infinite;
}
@keyframes btn-stripe-move-x {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: 77.5% 0;
  }
}

.btn-menu-open,
.btn-menu-close {
  -webkit-text-decoration: none;
  text-decoration: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  line-height: 1;
  caret-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  color: #333;
  background-color: transparent;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.1s linear;
  will-change: transform;
  display: grid;
  align-content: center;
  justify-content: center;
  place-content: center;
  width: 50px;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #00a83b;
}
.btn-menu-open *,
.btn-menu-open *::before,
.btn-menu-open *::after,
.btn-menu-close *,
.btn-menu-close *::before,
.btn-menu-close *::after {
  transition: all 0.1s linear;
}
.btn-menu-open img,
.btn-menu-close img {
  width: 24px;
  height: auto;
}
.btn-menu-open .icon-close,
.btn-menu-close .icon-close {
  display: none;
}
.btn-menu-open.is-open .icon-open,
.btn-menu-close.is-open .icon-open {
  display: none;
}
.btn-menu-open.is-open .icon-close,
.btn-menu-close.is-open .icon-close {
  display: block;
}

.btn-goto-head {
  -webkit-text-decoration: none;
  text-decoration: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  line-height: 1;
  caret-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  color: #333;
  background-color: transparent;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.1s linear;
  will-change: transform;
}
.btn-goto-head *,
.btn-goto-head *::before,
.btn-goto-head *::after {
  transition: all 0.1s linear;
}

#btnScroll2Top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  transition: all 300ms linear;
}
#btnScroll2Top.is-show {
  opacity: 1;
  pointer-events: inherit;
}

.nav-global {
  font-family: "Zen Maru Gothic", sans-serif;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: clamp(2rem, 1.296rem + 1.878vw, 4rem);
}
.nav-global .items-nav-global {
  font-size: clamp(1rem, 0.93rem + 0.188vw, 1.2rem);
  font-size: var(--font-size-xs);
  line-height: 1.2;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: clamp(1.6rem, 0.755rem + 2.254vw, 4rem) clamp(0.8rem, 0.377rem + 1.127vw, 2rem);
}
.nav-global .items-nav-global > .item:hover a {
  opacity: 1;
}
.nav-global .items-nav-global > .item:hover a::before {
  scale: 1.2;
}
.nav-global .items-nav-global > .item > a {
  color: #333;
  font-weight: 700;
  transition: all 0.1s linear;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.25em;
}
.nav-global .items-nav-global > .item > a::before {
  content: "";
  display: inline-block;
  width: 6em;
  height: auto;
  aspect-ratio: 160/107;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  transition: scale 0.1s linear;
  transform-origin: center bottom;
}
.nav-global .items-nav-global > .item._aboutus a::before {
  background-image: url(../img/icon_gnav_1_aboutus.png);
}
.nav-global .items-nav-global > .item._life a::before {
  background-image: url(../img/icon_gnav_2_events.png);
}
.nav-global .items-nav-global > .item._childcare a::before {
  background-image: url(../img/icon_gnav_3_childcare.png);
}
.nav-global .items-nav-global > .item._guide a::before {
  background-image: url(../img/icon_gnav_4_guide.png);
}
.nav-global .items-nav-global > .item._families a::before {
  background-image: url(../img/icon_gnav_5_kirakira.png);
}
.nav-global .items-nav-global > .item._recruit a::before {
  background-image: url(../img/icon_gnav_6_recruit.png);
}
.nav-global .items-nav-global > .item._contact a::before {
  background-image: url(../img/icon_gnav_7_contact.png);
}
.nav-global .items-nav-global._in-drawer {
  flex-direction: column;
  align-items: flex-start;
}
.nav-global .items-nav-global._in-drawer > .item > a {
  flex-direction: row;
  gap: clamp(1rem, 0.648rem + 0.939vw, 2rem);
}
.nav-global .items-nav-global._in-drawer > .item > a .item__text {
  font-size: clamp(1.4rem, 1.33rem + 0.188vw, 1.6rem);
  font-size: var(--font-size-md);
}
.nav-global .items-nav-global._in-drawer .items-nav-global-lv2 {
  margin-top: 1em;
  padding-left: 4.6em;
}
.nav-global .items-nav-global._in-footer {
  flex-wrap: wrap;
  justify-content: center;
  font-size: clamp(1.3rem, 1.265rem + 0.094vw, 1.4rem);
  font-size: var(--font-size-sm);
  gap: clamp(1.6rem, 1.318rem + 0.751vw, 2.4rem) clamp(1.6rem, 1.177rem + 1.127vw, 2.8rem);
}
.nav-global .items-nav-global-lv2 > * + * {
  margin-top: 2em;
}
.nav-global .items-nav-global-lv2 > .item > a {
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-size: clamp(1.4rem, 1.33rem + 0.188vw, 1.6rem);
  font-size: var(--font-size-md);
}
.nav-global .items-nav-global-lv2 > .item.deco > a::before {
  content: "";
  display: inline-block;
  width: 0.5em;
  height: 2px;
  background-color: #ccc;
  border-radius: 2px;
}
.nav-global .items-nav-global-lv2 > .item.deco._pink > a::before {
  background-color: #f7cbcf;
}
.nav-global .items-nav-global-lv2._in-header > .item > a {
  font-size: clamp(1.3rem, 1.265rem + 0.094vw, 1.4rem);
  font-size: var(--font-size-sm);
}
.nav-global .items-nav-sns {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: clamp(5rem, 4.648rem + 0.939vw, 6rem);
  min-height: clamp(5rem, 4.648rem + 0.939vw, 6rem);
  gap: 1em;
  flex-wrap: wrap;
  background-color: #00a83b;
  border-radius: 999px;
  width: -moz-fit-content;
  width: fit-content;
}
.nav-global .items-nav-sns:has(> :nth-child(2)) {
  padding-left: 1em;
  padding-right: 1em;
}
.nav-global .items-nav-sns .item a {
  display: block;
}
.nav-global .items-nav-sns .item a:hover {
  opacity: 1;
}
.nav-global .items-nav-sns .item a:hover img {
  scale: 1.2;
}
.nav-global .items-nav-sns .item a img {
  width: 24px;
  height: auto;
  aspect-ratio: 1/1;
  transition: scale 0.1s linear;
}
.nav-global._in-drawer {
  flex-direction: column;
  align-items: center;
}
.nav-global._in-footer {
  flex-wrap: wrap;
  justify-content: center;
}

.nav-global-sub {
  font-family: "Zen Maru Gothic", sans-serif;
  letter-spacing: 0.05em;
}
.nav-global-sub .items-nav-global-sub {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1em 2em;
  font-size: clamp(1.3rem, 1.265rem + 0.094vw, 1.4rem);
  font-size: var(--font-size-sm);
  font-weight: 700;
}
.nav-global-sub .items-nav-global-sub .item a {
  display: flex;
  align-items: center;
  gap: 0.35em;
}
.nav-global-sub .items-nav-global-sub .item a::before {
  content: "";
  display: inline-block;
  width: 1em;
  height: auto;
  aspect-ratio: 16/15;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url(../img/icon_triangle_right_green.svg);
}
.nav-schedule {
  width: 100%;
  container-type: inline-size;
  container-name: nav-schedule;
}
.nav-schedule .items-nav-schedule {
  display: flex;
  flex-wrap: wrap;
  background-color: #ffe46d;
  font-size: clamp(1.2rem, 1.059rem + 0.376vw, 1.6rem);
}
@container nav-schedule (max-width: 300px) {
  .nav-schedule .items-nav-schedule {
    background-color: transparent;
    display: flex;
    gap: 1em;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
  .nav-schedule .items-nav-schedule .item {
    background-color: #ffe46d;
    border-radius: 999px;
    padding: 0.25em 1.5em;
  }
  .nav-schedule .items-nav-schedule .item::before {
    content: none !important;
  }
}
.nav-schedule .items-nav-schedule .item a {
  font-weight: 700;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
}
.nav-schedule .items-nav-schedule .item:not(:last-child) {
  padding-right: 1em;
}
.nav-schedule .items-nav-schedule .item:not(:first-child) {
  padding-left: 1em;
}
.nav-schedule .items-nav-schedule .item:not(:first-child)::before {
  content: "";
  display: block;
  position: absolute;
  width: 2px;
  height: 1.5em;
  transform: rotate(0deg);
  background-color: #ecbc9c;
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  border-radius: 2px;
  opacity: 0.7;
}

.nav-business .items-nav-business {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1em 3em;
  font-size: clamp(1.2rem, 1.059rem + 0.376vw, 1.6rem);
}
.nav-business .items-nav-business .item:hover .item__icon {
  scale: 1.2;
}
.nav-business .items-nav-business .item a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5em;
  font-weight: 700;
}
.nav-business .items-nav-business .item a::after {
  content: "";
  display: inline-block;
  width: 1em;
  height: auto;
  aspect-ratio: 1700/1472;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url(../img/icon_triangle_down_green.svg);
}
.nav-business .items-nav-business .item__icon {
  height: 3em;
  width: auto;
  transition: scale 0.1s linear;
}
.nav-kirakira-index .items-kirakira-index {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(1.6rem, 1.037rem + 1.502vw, 3.2rem) clamp(2rem, 1.014rem + 2.629vw, 4.8rem);
}
.nav-kirakira-index .items-kirakira-index .item a {
  font-weight: 700;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
}
.nav-kirakira-index .items-kirakira-index .item a::after {
  content: "";
  display: inline-block;
  width: 2em;
  height: auto;
  aspect-ratio: 1/1;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url(../img/icon_arrow_maru_blue.svg);
}

.js-dropdown-body {
  padding-top: 20px;
  position: absolute;
  top: 100%;
  left: 50%;
  translate: -50% 0;
  z-index: 10;
  width: -moz-fit-content;
  width: fit-content;
  word-break: keep-all;
  background-color: #fff;
  border-radius: clamp(0.8rem, 0.518rem + 0.751vw, 1.6rem);
  border-radius: var(--radius-md);
  padding: 3em;
}
.js-dropdown-body:not(.is-open) {
  display: none;
}

.nav-breadcrumbs {
  font-size: clamp(1.2rem, 1.13rem + 0.188vw, 1.4rem);
  background-color: #fff;
}
.nav-breadcrumbs .breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  row-gap: 5px;
  line-height: 1;
}
.nav-breadcrumbs .breadcrumbs > span {
  position: relative;
}
.nav-breadcrumbs .breadcrumbs > span a {
  color: #06a9ea;
  transition: all 0.1s linear;
  display: block;
}
.nav-breadcrumbs .breadcrumbs > span a:hover {
  opacity: 0.8;
}
.nav-breadcrumbs .breadcrumbs > span:not(:first-of-type) {
  padding-left: 2em;
  position: relative;
}
.nav-breadcrumbs .breadcrumbs > span:not(:first-of-type)::before {
  content: "";
  display: inline-block;
  width: 0.45em;
  height: auto;
  aspect-ratio: 1/2;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url(../img/icon_arrow_breadcrumbs.svg);
  position: absolute;
  left: 0.75em;
  top: 0em;
}
.nav-breadcrumbs .breadcrumbs .current-item {
  display: inline-block;
  max-width: 30em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.wp-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: max(20px, min(2.9282576867vw, 40px));
  font-size: clamp(1.4rem, 1.189rem + 0.563vw, 2rem);
  font-weight: 700;
}
.wp-pagination .navigation .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: max(8px, min(0.7320644217vw, 10px));
}
.wp-pagination .navigation .nav-links .page-numbers {
  display: grid;
  align-content: center;
  justify-content: center;
  place-content: center;
  border: solid 2px #06a9ea;
  color: #333;
  border-radius: 50%;
  aspect-ratio: 1/1;
  width: max(40px, min(3.6603221083vw, 50px));
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  transition: all 0.1s linear;
}
.wp-pagination .navigation .nav-links .page-numbers.current {
  background-color: #06a9ea;
  color: #fff;
}
.wp-pagination .navigation .nav-links .page-numbers:hover {
  background-color: #06a9ea;
  color: #fff;
}
.wp-pagination .navigation .nav-links .next {
  display: none;
}
.wp-pagination .navigation .nav-links .prev {
  display: none;
}
.wp-pagination__button {
  aspect-ratio: 7/13;
  width: 0.75em;
  pointer-events: none;
  opacity: 0.15;
}
.wp-pagination__button.is-active {
  opacity: 0.5;
  cursor: pointer;
  pointer-events: inherit;
}
.wp-pagination__button.is-active:hover {
  opacity: 1;
}
.wp-pagination__button._prev {
  scale: -1 1;
}
.wp-pager {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  gap: max(20px, min(2.9282576867vw, 40px));
}
.wp-pager a {
  color: #333;
  transition: all 0.1s linear;
}
.wp-pager a:hover {
  opacity: 0.8;
}
.wp-pager__button {
  opacity: 0.3;
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.wp-pager__button .icon {
  aspect-ratio: 1/2;
  width: 0.5em;
  opacity: 0.4;
}
.wp-pager__button img {
  aspect-ratio: 1/1;
  width: max(50px, min(4.39238653vw, 60px));
}
.wp-pager__button:has(a) {
  opacity: 1;
}
.wp-pager__button._prev .icon {
  scale: -1 1;
}
.c-ttl-section .ja-ttl {
  font-size: clamp(3.2rem, 2.637rem + 1.502vw, 4.8rem);
  font-size: var(--font-size-xl3);
  letter-spacing: 0.05em;
  font-weight: 700;
}
.c-ttl-section .en {
  letter-spacing: 0.3em;
  font-weight: 700;
}

.box-modal-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  opacity: 0;
  transition: all 0.2s ease-in-out;
  pointer-events: none;
}
.box-modal-container .box-modal {
  background-color: #fff;
  border-radius: clamp(2rem, 1.648rem + 0.939vw, 3rem);
  border-radius: var(--radius-lg);
  width: calc(100% - clamp(4rem, 1.183rem + 7.512vw, 12rem));
  max-width: 800px;
  max-height: calc(100% - clamp(4rem, 2.592rem + 3.756vw, 8rem));
  padding: clamp(4rem, 3.296rem + 1.878vw, 6rem) clamp(2rem, 1.296rem + 1.878vw, 4rem);
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 999;
  overflow-y: scroll;
}
.box-modal-container .box-modal .btn-link {
  padding: 0.75em 1.5em 0.8em;
}
.box-modal-container .box-modal-bg {
  background-color: rgba(0, 0, 0, 0.3);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 998;
}
.box-modal-container.is-open {
  opacity: 1;
  pointer-events: inherit;
}

.modal-illust {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  opacity: 0;
  transition: all 0.2s ease-in-out;
  pointer-events: none;
  padding: clamp(2rem, 1.296rem + 1.878vw, 4rem);
  background-color: #fff;
}
.modal-illust__inner {
  background-color: #fff;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
}
.modal-illust__inner .illust {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
}
.modal-illust__inner .illust-description {
  font-size: clamp(1.3rem, 1.265rem + 0.094vw, 1.4rem);
  font-size: var(--font-size-sm);
  max-width: 28em;
  font-weight: 400;
  line-height: 2;
}
.modal-illust__inner .illust-description .btn-link {
  margin-top: 1em;
  margin-left: auto;
}
.modal-illust .btn-close-modal {
  position: absolute;
  top: clamp(2rem, 1.296rem + 1.878vw, 4rem);
  right: clamp(2rem, 1.296rem + 1.878vw, 4rem);
  display: grid;
  align-items: center;
  justify-items: center;
  place-items: center;
  grid-gap: 1em;
  gap: 1em;
  font-size: clamp(1rem, 0.93rem + 0.188vw, 1.2rem);
  font-size: var(--font-size-xs);
}
.modal-illust .btn-close-modal::before {
  content: "";
  display: inline-block;
  width: 3.5em;
  height: auto;
  aspect-ratio: 1/1;
  background: url(../img/icon_close_modal.svg) no-repeat center center;
  background-size: contain;
}
.modal-illust.is-open {
  opacity: 1;
  pointer-events: inherit;
}

#modalVideo {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  z-index: 2147483647;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  transition: 0.5s;
}
#modalVideo.close {
  filter: opacity(0);
  visibility: hidden;
}
#modalVideo.open {
  filter: opacity(1);
  visibility: visible;
}
#modalVideo iframe {
  width: 64vw;
  height: 36vw;
  border-radius: clamp(0.4rem, 0.259rem + 0.376vw, 0.8rem);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.js-modal-video-open {
  cursor: pointer;
}

.items-dlfiles {
  display: flex;
  flex-wrap: wrap;
  gap: 1em 1.25em;
}
.items-dlfiles .item {
  line-height: 1.5;
}
.items-dlfiles .item a {
  display: flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.75em 1.25em;
  border-radius: 999px;
  border: solid 1px #ddd;
}
.items-dlfiles .item a:hover::before {
  scale: 1.2;
}
.items-dlfiles .item a::before {
  content: "";
  display: inline-block;
  width: 1.5em;
  height: auto;
  aspect-ratio: 1/1;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  transition: scale 0.1s linear;
}
.items-dlfiles .item a.pdf::before {
  background-image: url(../img/icon_dlfile_pdf.svg);
}
.items-dlfiles .item a.doc::before {
  background-image: url(../img/icon_dlfile_doc.svg);
}
.items-dlfiles .item a.xls::before {
  background-image: url(../img/icon_dlfile_xls.svg);
}
.items-dlfiles .item a.file::before {
  background-image: url(../img/icon_dlfile_file.svg);
}
.items-dlfiles .item a.external::before {
  background-image: url(../img/icon_dlfile_external.svg);
}

.items-kirakira-movie {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(4rem, 3.296rem + 1.878vw, 6rem) clamp(1.6rem, 0.755rem + 2.254vw, 4rem);
}
.items-kirakira-movie .item {
  width: calc((100% - clamp(1.6rem, 0.755rem + 2.254vw, 4rem)) / 2);
}
@container wysiwyg-editor-content (max-width: 500px) {
  .items-kirakira-movie .item {
    width: 100%;
  }
}
.items-kirakira-movie .item__movie {
  aspect-ratio: 16/9;
  position: relative;
  width: 100%;
  height: auto;
  border-radius: clamp(0.4rem, 0.259rem + 0.376vw, 0.8rem);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.items-kirakira-movie .item__movie > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.items-kirakira-movie .item__caption .title {
  margin-top: 1em;
  margin-bottom: 1em;
  text-align: center;
  font-size: clamp(1.6rem, 1.459rem + 0.376vw, 2rem);
  font-size: var(--font-size-lg);
}
.items-kirakira-movie .item__caption .description {
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.items-kirakira-movie .item__caption .information {
  margin-top: 1em;
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  align-items: center;
  justify-content: center;
}
.items-kirakira-movie .item__caption .information__size {
  line-height: 1;
  background-color: #f8f8f8;
  padding: 0.15em 1em 0.3em;
  border-radius: 999px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  flex-shrink: 0;
  align-items: flex-start;
}
.items-kirakira-movie .item__caption .information__size strong {
  font-family: "Quicksand", sans-serif;
  color: #f5a200;
  padding-left: 0.15em;
  padding-right: 0.15em;
  font-size: clamp(2rem, 1.718rem + 0.751vw, 2.8rem);
  font-size: var(--font-size-xl);
}
.items-kirakira-movie .item__caption .information__add {
  font-size: clamp(1.3rem, 1.265rem + 0.094vw, 1.4rem);
  font-size: var(--font-size-sm);
  color: #555;
}
.items-kirakira-movie .item:only-child {
  margin-left: auto;
  margin-right: auto;
}

.items-kirakira-archive > * + * {
  margin-top: clamp(1.6rem, 1.459rem + 0.376vw, 2rem);
}
.items-kirakira-archive .item {
  border: solid 1px #ccc;
  border-radius: 2em;
  overflow: hidden;
}
.items-kirakira-archive .item__inner {
  display: flex;
  align-items: center;
  gap: 1em 1.5em;
  padding: 2em 0;
  flex-wrap: wrap;
  width: 100%;
}
.items-kirakira-archive .item a {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  gap: 3em;
  padding-left: 2em;
  padding-right: 2em;
}
.items-kirakira-archive .item a:hover {
  background-color: #fcfcfc;
}
.items-kirakira-archive .item a:hover::after {
  translate: 0.25em 0;
}
.items-kirakira-archive .item a::after {
  flex-shrink: 0;
  content: "";
  display: inline-block;
  width: 1em;
  height: auto;
  aspect-ratio: 13/17;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url(../img/icon_btn_arrow_blue.svg);
  transition: all 0.1s linear;
}
.items-kirakira-archive .item .date {
  color: #0095d0;
  font-weight: 600;
  flex-shrink: 0;
}
.items-kirakira-archive .item .title {
  font-weight: 600;
  flex-basis: 0;
  flex-grow: 999;
  min-width: min(15em, 100%);
}

.items-timeline {
  border-left: solid 1px #ccc;
  padding-top: clamp(1.6rem, 1.318rem + 0.751vw, 2.4rem);
  padding-bottom: clamp(1.6rem, 1.318rem + 0.751vw, 2.4rem);
}
.items-timeline > * + * {
  margin-top: clamp(3rem, 2.296rem + 1.878vw, 5rem);
}
.items-timeline .item {
  display: flex;
  align-items: flex-start;
  gap: clamp(1.6rem, 1.318rem + 0.751vw, 2.4rem);
}
.items-timeline .item__head .hour {
  font-size: clamp(2rem, 1.718rem + 0.751vw, 2.8rem);
  font-size: var(--font-size-xl);
  font-weight: 700;
  letter-spacing: 0.1em;
  width: 4.5em;
  padding-left: 1.5em;
  position: relative;
}
.items-timeline .item__head .hour::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  position: absolute;
  border-left-color: #ccc;
  border-width: 0.3em 0 0.3em 0.4em;
  top: 50%;
  left: 0;
  translate: 0 -50%;
}
.items-timeline .item__head .hour.morning {
  color: #55b465;
}
.items-timeline .item__head .hour.noon {
  color: #e99000;
}
.items-timeline .item__head .hour.evening {
  color: #dc5050;
}
.items-timeline .item__body {
  padding-top: 0.35em;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: clamp(1.6rem, 1.318rem + 0.751vw, 2.4rem);
  width: 100%;
}
.items-timeline .item__body .events {
  flex-basis: 0;
  flex-grow: 999;
  min-width: 12em;
  line-height: 2;
  font-weight: 600;
}
.items-timeline .item__body .images {
  flex-shrink: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  max-width: 100%;
  gap: clamp(1.6rem, 1.318rem + 0.751vw, 2.4rem);
  margin-left: auto;
}
.items-timeline .item__body .images img {
  border-radius: clamp(0.3rem, 0.3rem + 0vw, 0.3rem);
  border-radius: var(--radius-xs);
  width: clamp(12rem, 9.535rem + 6.573vw, 19rem);
  height: auto;
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
}

.items-facility {
  width: 100%;
  display: grid;
  grid-gap: clamp(2rem, 1.296rem + 1.878vw, 4rem);
  gap: clamp(2rem, 1.296rem + 1.878vw, 4rem);
  grid-template-columns: repeat(auto-fill, minmax(min(260px, 100%), 1fr));
  grid-row-gap: clamp(3rem, 1.944rem + 2.817vw, 6rem);
  row-gap: clamp(3rem, 1.944rem + 2.817vw, 6rem);
}
.items-facility > * {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  grid-gap: 0;
  gap: 0;
  align-items: start;
}
.items-facility._pickup {
  width: 100%;
  display: grid;
  grid-gap: clamp(2rem, 1.296rem + 1.878vw, 4rem);
  gap: clamp(2rem, 1.296rem + 1.878vw, 4rem);
  grid-template-columns: repeat(auto-fill, minmax(min(400px, 100%), 1fr));
  grid-row-gap: clamp(3rem, 1.944rem + 2.817vw, 6rem);
  row-gap: clamp(3rem, 1.944rem + 2.817vw, 6rem);
}
.items-facility._pickup > * {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  grid-gap: 0;
  gap: 0;
  align-items: start;
}
.items-facility .item__thumb {
  aspect-ratio: 3/2;
  width: 100%;
  height: auto;
  overflow: hidden;
  border-radius: clamp(0.8rem, 0.518rem + 0.751vw, 1.6rem);
  border-radius: var(--radius-md);
}
.items-facility .item__text {
  padding-top: 1em;
}
.items-facility .item__text .title {
  text-align: center;
  font-size: clamp(1.6rem, 1.459rem + 0.376vw, 2rem);
  font-size: var(--font-size-lg);
}
.items-facility .item__text .description {
  line-height: 2;
  font-weight: 400;
  margin-top: 0.75em;
}

.items-food-education > * + * {
  margin-top: clamp(6rem, 3.887rem + 5.634vw, 12rem);
}
.items-food-education .item {
  background-color: #fff;
  padding-top: clamp(3rem, 2.648rem + 0.939vw, 4rem);
  padding-bottom: clamp(3rem, 2.648rem + 0.939vw, 4rem);
}
.items-food-education .item__inner {
  max-width: calc(1000px + 40px);
  display: flex;
  align-items: center;
  gap: clamp(1.6rem, 0.051rem + 4.131vw, 6rem);
}
.items-food-education .item:nth-child(odd) {
  width: calc(100% - (50% - 50vw) - 0px);
  margin-right: calc(50% - 50vw + 0px);
  max-width: none;
  border-top-left-radius: clamp(3rem, 2.648rem + 0.939vw, 4rem);
  border-top-left-radius: var(--radius-xl);
  border-bottom-left-radius: clamp(3rem, 2.648rem + 0.939vw, 4rem);
  border-bottom-left-radius: var(--radius-xl);
}
.items-food-education .item:nth-child(odd) .item__inner {
  margin-right: auto;
  flex-direction: row;
  padding-right: 20px;
}
.items-food-education .item:nth-child(odd) .item__text {
  flex-direction: row;
}
.items-food-education .item:nth-child(even) {
  width: calc(100% - (50% - 50vw) - 0px);
  margin-left: calc(50% - 50vw + 0px);
  max-width: none;
  border-top-right-radius: clamp(3rem, 2.648rem + 0.939vw, 4rem);
  border-top-right-radius: var(--radius-xl);
  border-bottom-right-radius: clamp(3rem, 2.648rem + 0.939vw, 4rem);
  border-bottom-right-radius: var(--radius-xl);
}
.items-food-education .item:nth-child(even) .item__inner {
  margin-left: auto;
  flex-direction: row-reverse;
  padding-left: 20px;
}
.items-food-education .item:nth-child(even) .item__text {
  flex-direction: row-reverse;
}
.items-food-education .item__text {
  display: flex;
  align-items: center;
}
.items-food-education .item__text .title {
  writing-mode: vertical-rl;
  word-break: keep-all;
  letter-spacing: 0.2em;
  font-size: clamp(1.6rem, 1.459rem + 0.376vw, 2rem);
  font-size: var(--font-size-lg);
  padding-left: clamp(3rem, 0.887rem + 5.634vw, 9rem);
  padding-right: clamp(3rem, 0.887rem + 5.634vw, 9rem);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1em;
}
.items-food-education .item__text .title::before {
  content: "";
  display: block;
  aspect-ratio: 1/1;
  width: 3em;
  height: auto;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
.items-food-education .item__text .title.icon-cook::before {
  background-image: url("../img/icon_food_cook.png");
}
.items-food-education .item__text .title.icon-imo::before {
  background-image: url("../img/icon_food_imo.png");
}
.items-food-education .item__text .title.icon-kani::before {
  background-image: url("../img/icon_food_kani.png");
}
.items-food-education .item__text .description {
  line-height: 2;
  font-weight: 400;
}
.items-food-education .item__image {
  flex-shrink: 0;
  width: clamp(20rem, 13.31rem + 17.84vw, 39rem);
  min-height: 1em;
  position: relative;
}
.items-food-education .item__image .image-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 100%;
  aspect-ratio: 1/1;
  height: auto;
  border-radius: 50%;
  overflow: hidden;
}

.items-power2nature > * + * {
  margin-top: clamp(2rem, 1.648rem + 0.939vw, 3rem);
}
.items-power2nature .item {
  background-color: #f8f8f8;
  border-radius: clamp(2rem, 1.648rem + 0.939vw, 3rem);
  border-radius: var(--radius-lg);
  padding: clamp(2.4rem, 2.118rem + 0.751vw, 3.2rem);
  padding: var(--space-xl);
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2.4rem, 1.555rem + 2.254vw, 4.8rem);
  justify-content: center;
  align-items: flex-start;
}
.items-power2nature .item__thumb {
  flex-shrink: 0;
  aspect-ratio: 1/1;
  border-radius: clamp(0.8rem, 0.518rem + 0.751vw, 1.6rem);
  border-radius: var(--radius-md);
  overflow: hidden;
  width: clamp(20rem, 18.592rem + 3.756vw, 24rem);
  height: auto;
}
.items-power2nature .item__text {
  flex-basis: 0;
  flex-grow: 999;
  min-width: 20em;
}
.items-power2nature .item__text .title {
  color: #fff;
  background-color: #aaa;
}
.items-power2nature .item__text .description {
  line-height: 2.2;
  font-weight: 400;
  margin-top: 1em;
}

.items-calendar {
  width: 100%;
  display: grid;
  grid-gap: clamp(2rem, 1.014rem + 2.629vw, 4.8rem);
  gap: clamp(2rem, 1.014rem + 2.629vw, 4.8rem);
  grid-template-columns: repeat(auto-fill, minmax(min(260px, 100%), 1fr));
  grid-row-gap: clamp(4rem, 3.155rem + 2.254vw, 6.4rem);
  row-gap: clamp(4rem, 3.155rem + 2.254vw, 6.4rem);
}
.items-calendar > * {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  grid-gap: 0;
  gap: 0;
  align-items: start;
}
.items-calendar .item__thumb {
  aspect-ratio: 3/2;
  width: 100%;
  height: auto;
  overflow: hidden;
  border-radius: clamp(0.8rem, 0.518rem + 0.751vw, 1.6rem);
  border-radius: var(--radius-md);
}
.items-calendar .item__text {
  padding-top: clamp(0.4rem, 0.189rem + 0.563vw, 1rem);
}
.items-calendar .item__text .title {
  text-align: center;
  font-size: clamp(1.6rem, 1.459rem + 0.376vw, 2rem);
  font-size: var(--font-size-lg);
}
.items-calendar .item__text .title strong {
  display: inline-block;
  font-size: 2em;
  margin-right: 0.1em;
  font-family: "Quicksand", sans-serif;
  letter-spacing: 0.1em;
}
.items-calendar .item__text .description {
  padding-top: clamp(0.4rem, 0.189rem + 0.563vw, 1rem);
  line-height: 2;
  font-weight: 400;
}
.items-calendar .item.spring .item__text .title strong {
  color: #f7a1a2;
}
.items-calendar .item.spring .item__text .description span {
  color: #f7a1a2;
}
.items-calendar .item.summer .item__text .title strong {
  color: #2eb08f;
}
.items-calendar .item.summer .item__text .description span {
  color: #2eb08f;
}
.items-calendar .item.autumn .item__text .title strong {
  color: #ec843f;
}
.items-calendar .item.autumn .item__text .description span {
  color: #ec843f;
}
.items-calendar .item.winter .item__text .title strong {
  color: #8892ae;
}
.items-calendar .item.winter .item__text .description span {
  color: #8892ae;
}

.items-3goals {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(4rem, 3.155rem + 2.254vw, 6.4rem);
}
.items-3goals .item {
  width: clamp(20rem, 14.366rem + 15.023vw, 36rem);
}
.items-3goals .item__thumb {
  aspect-ratio: 1/1;
  width: calc(100% - clamp(4rem, 2.592rem + 3.756vw, 8rem));
  margin-left: auto;
  margin-right: auto;
  border-radius: clamp(4rem, 2.592rem + 3.756vw, 8rem);
  overflow: hidden;
  border: solid clamp(0.2rem, 0.13rem + 0.188vw, 0.4rem) #aaa;
}
.items-3goals .item__text .title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.2rem, 0.777rem + 1.127vw, 2.4rem);
  font-size: clamp(2rem, 1.718rem + 0.751vw, 2.8rem);
  font-size: var(--font-size-xl);
}
.items-3goals .item__text .title__icon {
  aspect-ratio: 1/1;
  width: 1.75em;
  height: auto;
  background-color: #aaa;
  color: #fff;
  display: grid;
  align-items: center;
  justify-items: center;
  place-items: center;
  line-height: 1.2;
  border-radius: 50%;
  flex-shrink: 0;
}
.items-3goals .item__text .title__text {
  font-size: clamp(1.6rem, 1.459rem + 0.376vw, 2rem);
  font-size: var(--font-size-lg);
  line-height: 1.7;
}
.items-3goals .item__text .description {
  font-weight: 400;
  line-height: 2.2;
  text-align: justify;
}
.items-3goals .item:nth-child(3n+1) .item__thumb {
  border-color: #2ba74e;
}
.items-3goals .item:nth-child(3n+1) .title__icon {
  background-color: #2ba74e;
}
.items-3goals .item:nth-child(3n+2) .item__thumb {
  border-color: #fea12e;
}
.items-3goals .item:nth-child(3n+2) .title__icon {
  background-color: #fea12e;
}
.items-3goals .item:nth-child(3n+3) .item__thumb {
  border-color: #29a7e2;
}
.items-3goals .item:nth-child(3n+3) .title__icon {
  background-color: #29a7e2;
}

.items-wlb-certs > * + * {
  margin-top: clamp(2rem, 1.577rem + 1.127vw, 3.2rem);
}
.items-wlb-certs .item {
  display: flex;
  padding: clamp(2rem, 1.577rem + 1.127vw, 3.2rem);
  border: solid 2px #ffcdbe;
  border-radius: clamp(2rem, 1.648rem + 0.939vw, 3rem);
  border-radius: var(--radius-lg);
  gap: clamp(2rem, 1.296rem + 1.878vw, 4rem);
}
.items-wlb-certs .item__logo {
  flex-shrink: 0;
  align-self: start;
}
.items-wlb-certs .item__logo .logo {
  width: clamp(6rem, 4.592rem + 3.756vw, 10rem);
  height: auto;
}
.items-wlb-certs .item__text .title {
  color: #f27a8e;
}
.items-wlb-certs .item__text .description {
  line-height: 2;
  font-weight: 400;
  font-size: clamp(1.3rem, 1.265rem + 0.094vw, 1.4rem);
  font-size: var(--font-size-sm);
}

.items-schoollife {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(3rem, 1.239rem + 4.695vw, 8rem);
}
.items-schoollife .item {
  width: clamp(20rem, 16.831rem + 8.451vw, 29rem);
}
.items-schoollife .item a {
  display: block;
  position: relative;
}
.items-schoollife .item a:hover .item__thumb img {
  scale: 1.05;
}
.items-schoollife .item__thumb {
  aspect-ratio: 1/1;
  border-radius: clamp(2rem, 1.648rem + 0.939vw, 3rem);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: clamp(0.3rem, 0.23rem + 0.188vw, 0.5rem) solid #fff;
}
.items-schoollife .item__thumb img {
  transition: scale 0.1s linear;
}
.items-schoollife .item__title {
  font-size: clamp(1.4rem, 1.189rem + 0.563vw, 2rem);
  width: 6.5em;
  aspect-ratio: 1/1;
  background-color: #fff;
  border-radius: 50%;
  display: grid;
  align-items: center;
  justify-items: center;
  place-items: center;
  font-weight: 700;
  position: absolute;
  bottom: 0%;
  right: 0%;
  translate: 35% 35%;
}

.items-photo-loop {
  align-items: flex-start;
  pointer-events: none;
}
.items-photo-loop .item {
  /* 1 */
  /* 2 */
  /* 3 */
  /* 4 */
  aspect-ratio: 1/1;
  width: clamp(18rem, 14.831rem + 8.451vw, 27rem);
  height: auto;
  overflow: hidden;
  border-radius: clamp(2rem, 1.648rem + 0.939vw, 3rem);
  border-radius: var(--radius-lg);
}
.items-photo-loop .item._1 {
  margin-top: calc(clamp(2rem, 1.296rem + 1.878vw, 4rem) * 1);
}
.items-photo-loop .item._2 {
  margin-top: calc(clamp(2rem, 1.296rem + 1.878vw, 4rem) * 2);
}
.items-photo-loop .item._3 {
  margin-top: calc(clamp(2rem, 1.296rem + 1.878vw, 4rem) * 1);
}
.items-photo-loop .item._4 {
  margin-top: 0;
}
.items-faq > * + * {
  margin-top: clamp(2rem, 1.577rem + 1.127vw, 3.2rem);
}
.items-faq__title {
  aspect-ratio: 650/653;
  width: clamp(10rem, 7.817rem + 5.822vw, 16.2rem);
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  translate: -35% -30%;
  z-index: 1;
  pointer-events: none;
}
.items-faq .item {
  background-color: #fff4ce;
  border-radius: clamp(3rem, 2.296rem + 1.878vw, 5rem);
  padding-left: clamp(2rem, 0.944rem + 2.817vw, 5rem);
  padding-right: clamp(2rem, 0.944rem + 2.817vw, 5rem);
}
.items-faq .item dt {
  padding-top: clamp(1.6rem, 1.318rem + 0.751vw, 2.4rem);
  padding-bottom: clamp(1.6rem, 1.318rem + 0.751vw, 2.4rem);
  font-weight: 700;
  font-size: clamp(1.6rem, 1.459rem + 0.376vw, 2rem);
  font-size: var(--font-size-lg);
  position: relative;
  display: flex;
  align-items: center;
  gap: 1em;
  padding-right: 1.5em;
}
.items-faq .item dt::before {
  content: "Q";
  display: inline-block;
  color: #00a468;
  font-size: 1.75em;
  margin-top: -0.15em;
}
.items-faq .item dd {
  font-weight: 400;
  line-height: 2;
  padding-bottom: clamp(1.6rem, 1.318rem + 0.751vw, 2.4rem);
}
.items-faq .item dd a {
  color: #00a468;
  font-weight: 500;
}

.items-information-tab {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(1.4rem, 1.33rem + 0.188vw, 1.6rem);
}
.items-information-tab .item .c-bourbon {
  font-size: clamp(1.3rem, 1.265rem + 0.094vw, 1.4rem);
  font-size: var(--font-size-sm);
  font-weight: 600;
  min-width: 9.5em;
  border: solid 2px;
  transition: all 0.1s linear;
}
.items-information-tab .item .c-bourbon:hover {
  opacity: 0.8;
}

.items-information .item {
  border-bottom: 1px solid #ccc;
}
.items-information .item._no-item {
  border-bottom: none;
}
.items-information .item a {
  display: flex;
  align-items: center;
  gap: clamp(1.6rem, 1.318rem + 0.751vw, 2.4rem);
  padding-top: clamp(1.6rem, 1.318rem + 0.751vw, 2.4rem);
  padding-bottom: clamp(1.6rem, 1.318rem + 0.751vw, 2.4rem);
  padding-left: clamp(0.8rem, 0.518rem + 0.751vw, 1.6rem);
  padding-right: clamp(0.8rem, 0.518rem + 0.751vw, 1.6rem);
  position: relative;
  transition: all 0.1s linear;
  flex-wrap: wrap;
}
.items-information .item a:hover {
  background-color: #fbfbfb;
}
.items-information .item a:hover::after {
  translate: 0.25em 0;
}
.items-information .item a::after {
  content: "";
  display: inline-block;
  width: 1em;
  height: auto;
  aspect-ratio: 13/17;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url(../img/icon_btn_arrow_gray.svg);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: clamp(0.8rem, 0.518rem + 0.751vw, 1.6rem);
  transition: all 0.1s linear;
}
.items-information .item__head {
  display: flex;
  align-items: center;
  gap: clamp(1.6rem, 1.318rem + 0.751vw, 2.4rem);
}
.items-information .item__head .cat {
  font-size: clamp(1.3rem, 1.265rem + 0.094vw, 1.4rem);
  font-size: var(--font-size-sm);
  font-weight: 600;
  padding-left: 1.25em;
  padding-right: 1.25em;
  min-width: 9.5em;
}
.items-information .item__head .date {
  font-weight: 500;
  color: #555;
}
.items-information .item__title {
  font-weight: 500;
  padding-right: 2em;
}
.items-information._in-mv .item {
  border-bottom: none;
}
.items-information._in-mv .item a {
  background-color: #fff;
  border-radius: clamp(0.8rem, 0.518rem + 0.751vw, 1.6rem);
  border-radius: var(--radius-md);
  padding-top: 1em;
  padding-bottom: 1em;
  padding-left: 1.5em;
  padding-right: 1.5em;
}
.items-information._in-mv .item a::after {
  right: 1.5em;
}
.items-information._in-mv .item a::after {
  background-image: url(../img/icon_btn_arrow_blue.svg);
}

.l-wrap-by-ownwidth {
  container-type: inline-size;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 1em;
}
.l-wrap-by-ownwidth > * {
  flex: 1 1 calc(100% - 1em);
}
.l-wrap-by-ownwidth._w700-g24-48 {
  gap: max(24px, min(3.513909224vw, 48px));
}
@container (width >= 700px) {
  .l-wrap-by-ownwidth._w700-g24-48 > * {
    flex: 1 1 calc(50% - max(24px, min(3.513909224vw, 48px)));
  }
}
.l-wrap-by-ownwidth._w800-g24-48 {
  gap: max(24px, min(3.513909224vw, 48px));
}
@container (width >= 800px) {
  .l-wrap-by-ownwidth._w800-g24-48 > * {
    flex: 1 1 calc(50% - max(24px, min(3.513909224vw, 48px)));
  }
}

.carousel-mvtop {
  overflow: hidden;
}
.carousel-mvtop .items-mv-photo .item {
  border-radius: clamp(3rem, 2.648rem + 0.939vw, 4rem);
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 16/9;
}
.carousel-mvtop__pagination {
  top: auto !important;
  bottom: auto !important;
  left: auto !important;
  right: auto !important;
  display: flex;
  align-items: center;
  gap: 0.75em;
  justify-content: center;
  min-height: 20px;
}
.carousel-mvtop__pagination .swiper-pagination-bullet {
  aspect-ratio: 1/1;
  width: 14px;
  height: auto;
  opacity: 1;
  border-radius: 50% !important;
  background-color: #fff;
  transition: all 0.3s ease;
  caret-color: transparent;
  margin-left: 0 !important;
  margin-right: 0 !important;
  transform-origin: center center;
}
.carousel-mvtop__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #fff86a;
  width: 20px;
}

.carousel-facilities {
  overflow: hidden;
}
.carousel-facilities__pagination {
  top: auto !important;
  bottom: auto !important;
  left: auto !important;
  right: auto !important;
  display: flex;
  align-items: center;
  gap: 0.5em;
  justify-content: center;
  min-height: 20px;
}
.carousel-facilities__pagination .swiper-pagination-bullet {
  aspect-ratio: 1/1;
  width: 14px;
  height: auto;
  opacity: 1;
  border-radius: 50% !important;
  background-color: #d9d9d9;
  transition: all 0.3s ease;
  caret-color: transparent;
  margin-left: 0 !important;
  margin-right: 0 !important;
  transform-origin: center center;
}
.carousel-facilities__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #0fa880;
  width: 20px;
}

.effect-fadeout-zoomup .swiper-slide-active img,
.effect-fadeout-zoomup .swiper-slide-duplicate-active img,
.effect-fadeout-zoomup .swiper-slide-prev img {
  width: 100%;
  height: auto;
  animation: mvZoomUp 8s linear 0s normal both;
}
@keyframes mvZoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

.effect-pan .swiper-slide-duplicate-active > *,
.effect-pan .swiper-slide-prev > *,
.effect-pan .swiper-slide-active > * {
  animation: pan_r2l 8s linear 0s 1 normal both;
}
@keyframes pan_l2r {
  0% {
    transform: scale(1.06) translateX(-3%);
  }
  100% {
    transform: scale(1.06) translateX(3%);
  }
}
@keyframes pan_r2l {
  0% {
    transform: scale(1.06) translateX(3%);
  }
  100% {
    transform: scale(1.06) translateX(-3%);
  }
}

.js-tab-content:not(.is-active) {
  display: none;
}

.js-accordion-head {
  position: relative;
}
.js-accordion-head::after {
  content: "";
  display: inline-block;
  width: 1.5em;
  height: auto;
  aspect-ratio: 1/1;
  background: url(../img/icon_accordion_closer.svg) no-repeat center center;
  background-size: contain;
  position: absolute;
  right: 0;
  top: 50%;
  translate: 0 -50%;
}
.js-accordion-head:not(.is-open)::after {
  background-image: url(../img/icon_accordion_opener.svg);
}

.js-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease;
  box-sizing: border-box;
  position: relative;
}
.js-accordion-body:not(.is-open) {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.c-maru-arrow-down {
  width: 64px;
  height: 64px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  align-items: center;
  justify-items: center;
  place-items: center;
  position: relative;
  border-radius: 50%;
  margin-top: -20px;
  background-color: #000;
  z-index: 2;
}
.c-maru-arrow-down._large {
  width: 80px;
  height: 80px;
}
.c-maru-arrow-down img {
  aspect-ratio: 1/1;
  width: 33%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.c-bourbon {
  display: grid;
  align-items: center;
  justify-items: center;
  place-items: center;
  padding: 0.5em 1.5em;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #eee;
  color: inherit;
  border-radius: 9999px;
}
.c-bourbon._frame {
  background-color: transparent;
  outline: solid 2px currentColor;
  outline-offset: calc -2px;
}

.c-marked-text {
  font-size: max(1.9rem, min(1.756954612vw, 2.4rem));
  font-weight: 900;
  overflow: hidden;
}
.c-marked-text > span {
  background-color: #ffea00;
  -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
  display: inline;
  line-height: 2.4;
  padding: 0.25em 0.5em;
  text-align: center;
}

.logo-corporate a {
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
}
.logo-corporate a .logo {
  aspect-ratio: 1561/327;
  width: clamp(16rem, 7.549rem + 22.535vw, 40rem);
  height: auto;
  max-width: none;
}
.logo-corporate img {
  max-width: 100px;
  height: 100%;
  pointer-events: none;
}
.logo-corporate._in-footer a .logo {
  width: clamp(26rem, 19.662rem + 16.901vw, 44rem);
}

table {
  width: 100%;
  caret-color: transparent;
  border-collapse: separate;
}

.tbl-overview {
  border-collapse: collapse;
}
.tbl-overview tr {
  border-bottom: solid 1px #ccc;
}
.tbl-overview tr * {
  padding: 1em 0.5em;
}
.tbl-overview tr th {
  color: #00a468;
  word-break: keep-all;
}
.tbl-overview tr td {
  padding-left: 2em;
  line-height: 2;
}

.tbl-details {
  border-collapse: separate;
  box-sizing: border-box;
}
.tbl-details tbody {
  background-color: #fff;
}
.tbl-details tbody tr:first-child *:first-child {
  border-top-left-radius: clamp(0.8rem, 0.518rem + 0.751vw, 1.6rem);
  border-top-left-radius: var(--radius-md);
}
.tbl-details tbody tr:first-child *:last-child {
  border-top-right-radius: clamp(0.8rem, 0.518rem + 0.751vw, 1.6rem);
  border-top-right-radius: var(--radius-md);
}
.tbl-details tbody tr:last-child *:first-child {
  border-bottom-left-radius: clamp(0.8rem, 0.518rem + 0.751vw, 1.6rem);
  border-bottom-left-radius: var(--radius-md);
}
.tbl-details tbody tr:last-child *:last-child {
  border-bottom-right-radius: clamp(0.8rem, 0.518rem + 0.751vw, 1.6rem);
  border-bottom-right-radius: var(--radius-md);
}
.tbl-details tbody tr th:first-child {
  border-left: solid clamp(0.2rem, 0.165rem + 0.094vw, 0.3rem) #fff;
}
.tbl-details tbody th,
.tbl-details tbody td {
  border-right: solid clamp(0.2rem, 0.165rem + 0.094vw, 0.3rem) #fff;
  border-bottom: solid clamp(0.2rem, 0.165rem + 0.094vw, 0.3rem) #fff;
  padding: 1em;
}
.tbl-details tbody th {
  text-align: center;
  color: #fff;
  background-color: #00a468;
  width: 7em;
}
.tbl-details tbody td {
  background-color: #fffbee;
  line-height: 2;
}
.tbl-details._kirakira th {
  background-color: #3cb3ea;
}

.tbl-requirements {
  border-collapse: separate;
  box-sizing: border-box;
  width: 100%;
}
.tbl-requirements th,
.tbl-requirements td {
  padding: 1em;
  line-height: 2;
}
.tbl-requirements thead {
  background-color: #00a468;
  color: #fff;
}
.tbl-requirements thead th {
  border-top: solid 2px #ccc;
  font-family: "Zen Maru Gothic", sans-serif;
}
.tbl-requirements thead th:first-child {
  border-left: solid 2px #ccc;
  border-top-left-radius: clamp(2rem, 1.648rem + 0.939vw, 3rem);
  border-top-left-radius: var(--radius-lg);
}
.tbl-requirements thead th:last-child {
  border-right: solid 2px #ccc;
  border-top-right-radius: clamp(2rem, 1.648rem + 0.939vw, 3rem);
  border-top-right-radius: var(--radius-lg);
}
.tbl-requirements thead th strong {
  font-size: 2em;
  font-weight: 700;
}
.tbl-requirements thead th strong.age-012 {
  color: #e8f6ff;
}
.tbl-requirements thead th strong.age-345 {
  color: #ffede7;
}
.tbl-requirements thead th .label {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #333;
  background-color: #a6db95;
  font-size: clamp(1.2rem, 1.13rem + 0.188vw, 1.4rem);
  padding: 0.25em 0.25em 0.3em;
  border-radius: clamp(0.3rem, 0.3rem + 0vw, 0.3rem);
  border-radius: var(--radius-xs);
}
.tbl-requirements thead th:nth-child(1) {
  width: 15%;
}
.tbl-requirements thead th:nth-child(2) {
  width: 27.5%;
}
.tbl-requirements thead th:nth-child(3) {
  width: 27.5%;
}
.tbl-requirements tbody {
  background-color: #fff;
}
.tbl-requirements tbody tr:last-child *:first-child {
  border-bottom-left-radius: clamp(2rem, 1.648rem + 0.939vw, 3rem);
  border-bottom-left-radius: var(--radius-lg);
}
.tbl-requirements tbody tr:last-child *:last-child {
  border-bottom-right-radius: clamp(2rem, 1.648rem + 0.939vw, 3rem);
  border-bottom-right-radius: var(--radius-lg);
}
.tbl-requirements tbody tr th:first-child {
  border-left: solid 2px #ccc;
}
.tbl-requirements tbody tr:nth-child(odd) {
  background-color: #fbfbfb;
}
.tbl-requirements tbody tr:nth-child(even) {
  background-color: #fff;
}
.tbl-requirements tbody th,
.tbl-requirements tbody td {
  border-right: solid 2px #ccc;
  border-bottom: solid 2px #ccc;
}
.tbl-requirements tbody th strong,
.tbl-requirements tbody td strong {
  color: #ff7547;
}
.tbl-requirements._mobile + ._mobile {
  margin-top: clamp(3rem, 2.648rem + 0.939vw, 4rem);
}
.tbl-requirements._mobile thead th {
  text-align: center;
}

.tbl-vertical-when-sp {
  writing-mode: vertical-lr;
}
.tbl-vertical-when-sp td,
.tbl-vertical-when-sp th {
  writing-mode: horizontal-tb;
}

section {
  position: relative;
  padding-left: 20px;
  padding-right: 20px;
  container-type: inline-size;
}
section._pt30_40 {
  padding-top: max(30px, min(2.9282576867vw, 40px));
}
section._pt40-60 {
  padding-top: max(40px, min(4.39238653vw, 60px));
}
section._pt60-80 {
  padding-top: max(60px, min(5.8565153734vw, 80px));
}
section._pt60-120 {
  padding-top: max(60px, min(8.78477306vw, 120px));
}
section._pt80-160 {
  padding-top: max(80px, min(11.7130307467vw, 160px));
}
section._pb60-120 {
  padding-bottom: max(60px, min(8.78477306vw, 120px));
}
section._pb80-120 {
  padding-bottom: max(80px, min(8.78477306vw, 120px));
}
section._pb80-160 {
  padding-bottom: max(80px, min(11.7130307467vw, 160px));
}
section._pb90-180 {
  padding-bottom: max(90px, min(13.17715959vw, 180px));
}
section._pb200_320 {
  padding-bottom: max(200px, min(23.4260614934vw, 320px));
}
section._pb240_480 {
  padding-bottom: max(240px, min(35.1390922401vw, 480px));
}

.c-marquee-texts {
  color: #40b0dd;
  font-size: max(4rem, min(7.3206442167vw, 10rem));
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  display: flex;
  flex-wrap: nowrap;
  white-space: nowrap;
  line-height: 1;
  overflow: hidden;
  pointer-events: none;
  width: 100%;
}
.c-marquee-texts > .text {
  pointer-events: none;
  display: block;
  display: flex;
  padding-left: 0.25em;
  gap: 0.25em;
  animation: marquee 30s linear infinite;
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.c-marquee-texts > .text > * {
  display: block;
}

.c-loop-slider-by-over3child {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
}
.c-loop-slider-by-over3child > * {
  flex-shrink: 0;
  animation: loop-slider 50s linear infinite;
  will-change: transform;
}
@keyframes loop-slider {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}

.u-none,
.u-misai {
  display: none !important;
}

.u-screen-reader-text,
.screen-reader-text {
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(0px 0px 99.9% 99.9%);
  overflow: hidden;
  height: 1px;
  width: 1px;
  padding: 0;
  border: 0;
}

.u-clearfix::after {
  content: "";
  display: block;
  clear: both;
}

.u-fs14_16 {
  font-size: clamp(1.4rem, 1.33rem + 0.188vw, 1.6rem) !important;
}

.u-fs28_32 {
  font-size: clamp(2.8rem, 2.659rem + 0.376vw, 3.2rem) !important;
}

.u-lh10 {
  line-height: 1 !important;
}

.u-lh11 {
  line-height: 1.1 !important;
}

.u-lh12 {
  line-height: 1.2 !important;
}

.u-lh15 {
  line-height: 1.5 !important;
}

.u-lh17 {
  line-height: 1.7 !important;
}

.u-lh18 {
  line-height: 1.8 !important;
}

.u-lh20 {
  line-height: 2 !important;
}

.u-fw700 {
  font-weight: 700 !important;
}

.u-tc-red {
  color: #b70000 !important;
}

.u-tc-orange {
  color: #ff6b00 !important;
}

.u-tc-green {
  color: #00a468 !important;
}

.u-tc-black {
  color: #000 !important;
}

.u-tc-white {
  color: #fff !important;
}

.u-tc-pink {
  color: #ff016a !important;
}

.u-tc-blue {
  color: #00c8f8 !important;
}

.u-kadomaru {
  overflow: hidden;
  border-radius: 1em;
  isolation: isolate;
}
.u-kadomaru._s {
  border-radius: clamp(0.4rem, 0.189rem + 0.563vw, 1rem);
}
.u-kadomaru._m {
  border-radius: clamp(1rem, 0.648rem + 0.939vw, 2rem);
}
.u-kadomaru._l {
  border-radius: clamp(3rem, 2.648rem + 0.939vw, 4rem);
}

.u-tal {
  text-align: left !important;
}

.u-tac {
  text-align: center !important;
}

.u-tar {
  text-align: right !important;
}

.u-pb0 {
  padding-bottom: 0 !important;
}

.u-pb40_60 {
  padding-bottom: clamp(4rem, 3.296rem + 1.878vw, 6rem) !important;
}

.u-pb40_80 {
  padding-bottom: clamp(4rem, 2.592rem + 3.756vw, 8rem) !important;
}

.u-pb40_90 {
  padding-bottom: clamp(4rem, 2.239rem + 4.695vw, 9rem) !important;
}

.u-pb60_130 {
  padding-bottom: clamp(6rem, 3.535rem + 6.573vw, 13rem) !important;
}

.u-pb70_120 {
  padding-bottom: clamp(7rem, 5.239rem + 4.695vw, 12rem) !important;
}

.u-pb80_120 {
  padding-bottom: clamp(8rem, 6.592rem + 3.756vw, 12rem) !important;
}

.u-pb100_140 {
  padding-bottom: clamp(10rem, 8.592rem + 3.756vw, 14rem) !important;
}

.u-pb100_200 {
  padding-bottom: clamp(14rem, 11.887rem + 5.634vw, 20rem) !important;
}

.u-pt0 {
  padding-top: 0 !important;
}

.u-pt20 {
  padding-top: 20px !important;
}

.u-pt60 {
  padding-top: 60px !important;
}

.u-pt60_100 {
  padding-top: clamp(6rem, 4.592rem + 3.756vw, 10rem) !important;
}

.u-pt60_120 {
  padding-top: clamp(6rem, 3.887rem + 5.634vw, 12rem) !important;
}

.u-pt64_120 {
  padding-top: clamp(6.4rem, 4.428rem + 5.258vw, 12rem) !important;
}

.u-pt70_80 {
  padding-top: clamp(7rem, 6.648rem + 0.939vw, 8rem) !important;
}

.u-pt80_120 {
  padding-top: clamp(8rem, 6.592rem + 3.756vw, 12rem) !important;
}

.u-pt100_140 {
  padding-top: clamp(10rem, 8.592rem + 3.756vw, 14rem) !important;
}

.u-mt1em {
  margin-top: 1em !important;
}

.u-mt0 {
  margin-top: 0 !important;
}

.u-mt5_10 {
  margin-top: clamp(0.5rem, 0.324rem + 0.469vw, 1rem) !important;
}

.u-mt10 {
  margin-top: 10px !important;
}

.u-mt10_15 {
  margin-top: clamp(1rem, 0.824rem + 0.469vw, 1.5rem) !important;
}

.u-mt15 {
  margin-top: 15px !important;
}

.u-mt15_20 {
  margin-top: clamp(1.5rem, 1.324rem + 0.469vw, 2rem) !important;
}

.u-mt16_24 {
  margin-top: clamp(1.6rem, 1.318rem + 0.751vw, 2.4rem) !important;
}

.u-mt20 {
  margin-top: 20px !important;
}

.u-mt40 {
  margin-top: 40px !important;
}

.u-mt30 {
  margin-top: 30px !important;
}

.u-mt20_30 {
  margin-top: clamp(2rem, 1.648rem + 0.939vw, 3rem) !important;
}

.u-mt20_40 {
  margin-top: clamp(2rem, 1.296rem + 1.878vw, 4rem) !important;
}

.u-mt20_50 {
  margin-top: clamp(2rem, 0.944rem + 2.817vw, 5rem) !important;
}

.u-mt20_60 {
  margin-top: clamp(2rem, 0.592rem + 3.756vw, 6rem) !important;
}

.u-mt24 {
  margin-top: 24px !important;
}

.u-mt24_48 {
  margin-top: clamp(2.4rem, 1.555rem + 2.254vw, 4.8rem) !important;
}

.u-mt25_30 {
  margin-top: clamp(2.5rem, 2.324rem + 0.469vw, 3rem) !important;
}

.u-mt25_60 {
  margin-top: clamp(2.5rem, 1.268rem + 3.286vw, 6rem) !important;
}

.u-mt30_50 {
  margin-top: clamp(3rem, 2.296rem + 1.878vw, 5rem) !important;
}

.u-mt30_60 {
  margin-top: clamp(3rem, 1.944rem + 2.817vw, 6rem) !important;
}

.u-mt30_70 {
  margin-top: clamp(3rem, 1.592rem + 3.756vw, 7rem) !important;
}

.u-mt30_40 {
  margin-top: clamp(3rem, 2.648rem + 0.939vw, 4rem) !important;
}

.u-mt30_80 {
  margin-top: clamp(3rem, 1.239rem + 4.695vw, 8rem) !important;
}

.u-mt32 {
  margin-top: 32px !important;
}

.u-mt32_64 {
  margin-top: clamp(3.2rem, 2.073rem + 3.005vw, 6.4rem) !important;
}

.u-mt35_40 {
  margin-top: clamp(3.5rem, 3.324rem + 0.469vw, 4rem) !important;
}

.u-mt35_50 {
  margin-top: clamp(3.5rem, 2.972rem + 1.408vw, 5rem) !important;
}

.u-mt35_55 {
  margin-top: clamp(3.5rem, 2.796rem + 1.878vw, 5.5rem) !important;
}

.u-mt35_80 {
  margin-top: clamp(3.5rem, 1.915rem + 4.225vw, 8rem) !important;
}

.u-mt40_50 {
  margin-top: clamp(4rem, 3.648rem + 0.939vw, 5rem) !important;
}

.u-mt40_60 {
  margin-top: clamp(4rem, 3.296rem + 1.878vw, 6rem) !important;
}

.u-mt40_64 {
  margin-top: clamp(4rem, 3.155rem + 2.254vw, 6.4rem) !important;
}

.u-mt40_70 {
  margin-top: clamp(4rem, 2.944rem + 2.817vw, 7rem) !important;
}

.u-mt40_80 {
  margin-top: clamp(4rem, 2.592rem + 3.756vw, 8rem) !important;
}

.u-mt40_90 {
  margin-top: clamp(4rem, 2.239rem + 4.695vw, 9rem) !important;
}

.u-mt40_100 {
  margin-top: clamp(4rem, 1.887rem + 5.634vw, 10rem) !important;
}

.u-mt45_70 {
  margin-top: clamp(4.5rem, 3.62rem + 2.347vw, 7rem) !important;
}

.u-mt50 {
  margin-top: 50px !important;
}

.u-mt50_60 {
  margin-top: clamp(5rem, 4.648rem + 0.939vw, 6rem) !important;
}

.u-mt50_70 {
  margin-top: clamp(5rem, 4.296rem + 1.878vw, 7rem) !important;
}

.u-mt50_80 {
  margin-top: clamp(5rem, 3.944rem + 2.817vw, 8rem) !important;
}

.u-mt50_100 {
  margin-top: clamp(5rem, 3.239rem + 4.695vw, 10rem) !important;
}

.u-mt60 {
  margin-top: 60px !important;
}

.u-mt60_80 {
  margin-top: clamp(6rem, 5.296rem + 1.878vw, 8rem) !important;
}

.u-mt60_90 {
  margin-top: clamp(6rem, 4.944rem + 2.817vw, 9rem) !important;
}

.u-mt60_100 {
  margin-top: clamp(6rem, 4.592rem + 3.756vw, 10rem) !important;
}

.u-mt60_120 {
  margin-top: clamp(6rem, 3.887rem + 5.634vw, 12rem) !important;
}

.u-mt64 {
  margin-top: 64px !important;
}

.u-mt40_120 {
  margin-top: clamp(4rem, 1.183rem + 7.512vw, 12rem) !important;
}

.u-mt70_100 {
  margin-top: clamp(7rem, 5.944rem + 2.817vw, 10rem) !important;
}

.u-mt70 {
  margin-top: 70px !important;
}

.u-mt80 {
  margin-top: 80px !important;
}

.u-mt80_120 {
  margin-top: clamp(8rem, 6.592rem + 3.756vw, 12rem) !important;
}

.u-mt80_160 {
  margin-top: clamp(8rem, 5.183rem + 7.512vw, 16rem) !important;
}

.u-mb15 {
  margin-bottom: 15px !important;
}

.u-mb30 {
  margin-bottom: 30px !important;
}

.u-mb70_100 {
  margin-bottom: clamp(7rem, 5.944rem + 2.817vw, 10rem) !important;
}

.u-mt-onlysp10 {
  margin-top: 10px;
}

.u-mt-onlysp20 {
  margin-top: 20px;
}

.u-mi-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

.u-remove-mt-1st-child > *:first-child {
  margin-top: 0 !important;
}

.u-fill-parent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  pointer-events: none;
}

.u-img-frame {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: auto;
}
.u-img-frame > * {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.u-endpoint-of-linkto {
  position: absolute;
  left: 0;
  top: -100px;
  height: 1px;
  width: 1px;
  visibility: hidden;
  pointer-events: none;
}

.with-nami-white-top {
  position: relative;
}
.with-nami-white-top::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: auto;
  aspect-ratio: 1440/41;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url(../img/deco_nami_white.svg);
  position: absolute;
  top: -5px;
  left: 50%;
  translate: -50% 0;
  background-size: cover;
  scale: 1 -1;
}

.with-nami-white-bottom {
  position: relative;
}
.with-nami-white-bottom::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: auto;
  aspect-ratio: 1440/41;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url(../img/deco_nami_white.svg);
  position: absolute;
  bottom: -5px;
  left: 50%;
  translate: -50% 0;
  background-size: cover;
}

.with-shadow {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  transition: all 0.2s ease-in-out;
}
.with-shadow:hover {
  box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22);
}

@keyframes kf_fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes kf_fadeout {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes kf_fadeup {
  from {
    opacity: 0;
    translate: 0 30px;
  }
  to {
    opacity: 1;
    translate: 0 0;
  }
}
@keyframes kf_popin {
  0% {
    scale: 1 0.9;
    translate: 0 0;
    opacity: 0;
  }
  30% {
    scale: 1 1.2;
    translate: 0 -30%;
    opacity: 1;
  }
  100% {
    scale: 1 1;
    translate: 0 0;
    opacity: 1;
  }
}
@keyframes kf_nyokittoin {
  0% {
    translate: 0 100%;
  }
  100% {
    translate: 0 0%;
  }
}
.js-put-fadein {
  transition: all 0.8s ease;
}
.js-put-fadein:not(.is-played) {
  translate: 0 40px;
  opacity: 0;
}

.js-put-fadein-static {
  transition: all 1.5s 0.1s ease;
}
.js-put-fadein-static:not(.is-played) {
  translate: 0 0px;
  opacity: 0;
}

.js-put-popin {
  opacity: 0;
}
.js-put-popin.is-played {
  animation: kf_popin 1s ease forwards;
}

.js-put-nyokittoin {
  translate: 0 100%;
  transform-origin: center bottom;
}
.js-put-nyokittoin.is-played {
  animation: kf_nyokittoin 1s ease forwards;
}

.js-put-samidare-fadein-to-child > * {
  transition: all 0.8s ease;
}
.js-put-samidare-fadein-to-child > *:nth-child(1) {
  transition-delay: 0.15s;
}
.js-put-samidare-fadein-to-child > *:nth-child(2) {
  transition-delay: 0.3s;
}
.js-put-samidare-fadein-to-child > *:nth-child(3) {
  transition-delay: 0.45s;
}
.js-put-samidare-fadein-to-child > *:nth-child(4) {
  transition-delay: 0.6s;
}
.js-put-samidare-fadein-to-child > *:nth-child(5) {
  transition-delay: 0.75s;
}
.js-put-samidare-fadein-to-child > *:nth-child(6) {
  transition-delay: 0.9s;
}
.js-put-samidare-fadein-to-child > *:nth-child(7) {
  transition-delay: 1.05s;
}
.js-put-samidare-fadein-to-child > *:nth-child(8) {
  transition-delay: 1.2s;
}
.js-put-samidare-fadein-to-child > *:nth-child(9) {
  transition-delay: 1.35s;
}
.js-put-samidare-fadein-to-child > *:nth-child(10) {
  transition-delay: 1.5s;
}
.js-put-samidare-fadein-to-child > *:nth-child(11) {
  transition-delay: 1.65s;
}
.js-put-samidare-fadein-to-child > *:nth-child(12) {
  transition-delay: 1.8s;
}
.js-put-samidare-fadein-to-child > *:nth-child(13) {
  transition-delay: 1.95s;
}
.js-put-samidare-fadein-to-child > *:nth-child(14) {
  transition-delay: 2.1s;
}
.js-put-samidare-fadein-to-child > *:nth-child(15) {
  transition-delay: 2.25s;
}
.js-put-samidare-fadein-to-child > *:nth-child(16) {
  transition-delay: 2.4s;
}
.js-put-samidare-fadein-to-child > *:nth-child(17) {
  transition-delay: 2.55s;
}
.js-put-samidare-fadein-to-child > *:nth-child(18) {
  transition-delay: 2.7s;
}
.js-put-samidare-fadein-to-child > *:nth-child(19) {
  transition-delay: 2.85s;
}
.js-put-samidare-fadein-to-child > *:nth-child(20) {
  transition-delay: 3s;
}
.js-put-samidare-fadein-to-child > *:nth-child(21) {
  transition-delay: 3.15s;
}
.js-put-samidare-fadein-to-child > *:nth-child(22) {
  transition-delay: 3.3s;
}
.js-put-samidare-fadein-to-child > *:nth-child(23) {
  transition-delay: 3.45s;
}
.js-put-samidare-fadein-to-child > *:nth-child(24) {
  transition-delay: 3.6s;
}
.js-put-samidare-fadein-to-child > *:nth-child(25) {
  transition-delay: 3.75s;
}
.js-put-samidare-fadein-to-child > *:nth-child(26) {
  transition-delay: 3.9s;
}
.js-put-samidare-fadein-to-child > *:nth-child(27) {
  transition-delay: 4.05s;
}
.js-put-samidare-fadein-to-child > *:nth-child(28) {
  transition-delay: 4.2s;
}
.js-put-samidare-fadein-to-child > *:nth-child(29) {
  transition-delay: 4.35s;
}
.js-put-samidare-fadein-to-child > *:nth-child(30) {
  transition-delay: 4.5s;
}
.js-put-samidare-fadein-to-child:not(.is-played) > * {
  translate: 0 40px;
  opacity: 0;
}
.js-put-samidare-fadein-to-child._delay03s > *:nth-child(1) {
  transition-delay: 0.3s;
}
.js-put-samidare-fadein-to-child._delay03s > *:nth-child(2) {
  transition-delay: 0.6s;
}
.js-put-samidare-fadein-to-child._delay03s > *:nth-child(3) {
  transition-delay: 0.9s;
}
.js-put-samidare-fadein-to-child._delay03s > *:nth-child(4) {
  transition-delay: 1.2s;
}
.js-put-samidare-fadein-to-child._delay03s > *:nth-child(5) {
  transition-delay: 1.5s;
}
.js-put-samidare-fadein-to-child._delay03s > *:nth-child(6) {
  transition-delay: 1.8s;
}
.js-put-samidare-fadein-to-child._delay03s > *:nth-child(7) {
  transition-delay: 2.1s;
}
.js-put-samidare-fadein-to-child._delay03s > *:nth-child(8) {
  transition-delay: 2.4s;
}
.js-put-samidare-fadein-to-child._delay03s > *:nth-child(9) {
  transition-delay: 2.7s;
}
.js-put-samidare-fadein-to-child._delay03s > *:nth-child(10) {
  transition-delay: 3s;
}
.js-put-samidare-fadein-to-child._delay03s > *:nth-child(11) {
  transition-delay: 3.3s;
}
.js-put-samidare-fadein-to-child._delay03s > *:nth-child(12) {
  transition-delay: 3.6s;
}
.js-put-samidare-fadein-to-child._delay03s > *:nth-child(13) {
  transition-delay: 3.9s;
}
.js-put-samidare-fadein-to-child._delay03s > *:nth-child(14) {
  transition-delay: 4.2s;
}
.js-put-samidare-fadein-to-child._delay03s > *:nth-child(15) {
  transition-delay: 4.5s;
}
.js-put-samidare-fadein-to-child._delay03s > *:nth-child(16) {
  transition-delay: 4.8s;
}
.js-put-samidare-fadein-to-child._delay03s > *:nth-child(17) {
  transition-delay: 5.1s;
}
.js-put-samidare-fadein-to-child._delay03s > *:nth-child(18) {
  transition-delay: 5.4s;
}
.js-put-samidare-fadein-to-child._delay03s > *:nth-child(19) {
  transition-delay: 5.7s;
}
.js-put-samidare-fadein-to-child._delay03s > *:nth-child(20) {
  transition-delay: 6s;
}
.js-put-samidare-fadein-to-child._delay03s > *:nth-child(21) {
  transition-delay: 6.3s;
}
.js-put-samidare-fadein-to-child._delay03s > *:nth-child(22) {
  transition-delay: 6.6s;
}
.js-put-samidare-fadein-to-child._delay03s > *:nth-child(23) {
  transition-delay: 6.9s;
}
.js-put-samidare-fadein-to-child._delay03s > *:nth-child(24) {
  transition-delay: 7.2s;
}
.js-put-samidare-fadein-to-child._delay03s > *:nth-child(25) {
  transition-delay: 7.5s;
}
.js-put-samidare-fadein-to-child._delay03s > *:nth-child(26) {
  transition-delay: 7.8s;
}
.js-put-samidare-fadein-to-child._delay03s > *:nth-child(27) {
  transition-delay: 8.1s;
}
.js-put-samidare-fadein-to-child._delay03s > *:nth-child(28) {
  transition-delay: 8.4s;
}
.js-put-samidare-fadein-to-child._delay03s > *:nth-child(29) {
  transition-delay: 8.7s;
}
.js-put-samidare-fadein-to-child._delay03s > *:nth-child(30) {
  transition-delay: 9s;
}

/*-----------------------------------------------------
  TOPのウェルカムアニメーション
  -----------------------------------------------------*/
.init-animation {
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: grid;
  align-items: center;
  justify-items: center;
  place-items: center;
}
.init-animation .logo {
  aspect-ratio: 280/313;
  width: calc(100% - 120px);
  height: auto;
  max-width: 440px;
  position: relative;
}
.init-animation .logo__mark {
  aspect-ratio: 2803/1466;
  width: 100%;
  height: auto;
}
.init-animation .logo__mark .parts {
  opacity: 0;
  position: absolute;
  z-index: 1;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.init-animation .logo__mark .parts.yama {
  top: -0.2%;
  left: -0.3%;
  width: 62.5%;
}
.init-animation .logo__mark .parts.sea {
  bottom: 0.5%;
  left: -0.2%;
  width: 73.4%;
}
.init-animation .logo__mark .parts._3 {
  top: 0%;
  right: -0.2%;
  width: 32%;
}
.init-animation .logo__mark .parts.ko1 {
  top: 60.2%;
  left: 59%;
  width: 18.4%;
  height: auto;
  aspect-ratio: 50/24;
}
.init-animation .logo__mark .parts.ko1 img {
  position: absolute;
  width: 100%;
  height: auto;
  transition-delay: 0.7s;
}
.init-animation .logo__mark .parts.ko1 .face-a {
  opacity: 0;
}
.init-animation .logo__mark .parts.ko1 .face-b {
  top: 5%;
  opacity: 1;
}
.init-animation .logo__mark .parts.ko1.is-show .face-a {
  opacity: 1;
}
.init-animation .logo__mark .parts.ko1.is-show .face-b {
  opacity: 0;
}
.init-animation .logo__mark .parts.ko2 {
  top: 25%;
  left: 64.5%;
  width: 16.2%;
  height: auto;
  aspect-ratio: 50/24;
}
.init-animation .logo__mark .parts.ko2 img {
  position: absolute;
  width: 100%;
  height: auto;
  transition-delay: 0.7s;
}
.init-animation .logo__mark .parts.ko2 .face-a {
  opacity: 1;
}
.init-animation .logo__mark .parts.ko2 .face-b {
  top: 5%;
  opacity: 0;
}
.init-animation .logo__mark .parts.ko2 .face-c {
  opacity: 0;
  transition-delay: 1.97s;
}
.init-animation .logo__mark .parts.ko2.is-show .face-a {
  opacity: 0;
}
.init-animation .logo__mark .parts.ko2.is-show .face-b {
  opacity: 1;
  animation: nikoniko 1.3s 0.7s linear forwards;
}
@keyframes nikoniko {
  0% {
    translate: 0 0%;
    opacity: 1;
  }
  10% {
    translate: 0 10%;
    opacity: 1;
  }
  20% {
    translate: 0 0%;
    opacity: 1;
  }
  30% {
    translate: 0 10%;
    opacity: 1;
  }
  40% {
    translate: 0 0%;
    opacity: 1;
  }
  50% {
    translate: 0 10%;
    opacity: 1;
  }
  60% {
    translate: 0 0%;
    opacity: 1;
  }
  99.99% {
    translate: 0 0;
    opacity: 1;
  }
  100% {
    translate: 0 0;
    opacity: 0;
  }
}
.init-animation .logo__mark .parts.ko2.is-show .face-c {
  opacity: 1;
}
.init-animation .logo__mark .parts.oya {
  top: 46.5%;
  left: 28%;
  width: 22%;
}
.init-animation .logo__text {
  aspect-ratio: 2482/1433;
  width: 90%;
  position: absolute;
  bottom: 0;
  left: 3%;
  z-index: 1;
}
.init-animation .logo__text .parts.text {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.init-animation .logo > .guide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 0;
}

/*-----------------------------------------------------
  採用TOPのMV
  -----------------------------------------------------*/
.js-change-scroll-direction__sticky-wrap {
  position: sticky !important;
  overflow: hidden;
  top: 0;
  left: 0;
}
.js-change-scroll-direction__contents {
  width: -moz-fit-content;
  width: fit-content;
  will-change: transform;
  backface-visibility: hidden;
}

.js-change-scroll-direction-gsap {
  overflow: hidden;
}
.js-change-scroll-direction-gsap__contents {
  width: -moz-fit-content;
  width: fit-content;
  will-change: transform;
  backface-visibility: hidden;
}

.biz-calendar-custom #biz_calendar {
  max-width: none;
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-weight: 700;
}
.biz-calendar-custom #biz_calendar table.bizcal {
  border: none;
  border-collapse: separate;
  border-spacing: 4px;
  font-size: max(1.4rem, min(1.1713030747vw, 2.4rem));
  margin: 0;
}
.biz-calendar-custom #biz_calendar table.bizcal th {
  background-color: transparent;
  color: #666666;
}
.biz-calendar-custom #biz_calendar table.bizcal th:first-child {
  color: #fb7f22;
}
.biz-calendar-custom #biz_calendar table.bizcal th:nth-last-of-type(1) {
  color: #469de2;
}
.biz-calendar-custom #biz_calendar table.bizcal td {
  background-color: #f7f7f7;
  color: #666666;
  padding: 0.75em 0;
}
.biz-calendar-custom #biz_calendar table.bizcal td:empty {
  background-color: #ededed;
}
.biz-calendar-custom #biz_calendar table.bizcal td.today {
  color: #333;
  -webkit-text-decoration: none;
  text-decoration: none;
  font-weight: 900;
  position: relative;
}
.biz-calendar-custom #biz_calendar table.bizcal td.today::after {
  content: "";
  display: block;
  position: absolute;
  width: 0.25em;
  height: 0.25em;
  transform: rotate(0deg);
  background-color: #000;
  top: 75%;
  left: 50%;
  transform: translate(-50%, 0);
  border-radius: 50%;
}
.biz-calendar-custom #biz_calendar table.bizcal td.today.holiday::after {
  background-color: #fff;
}
.biz-calendar-custom #biz_calendar table.bizcal td.holiday {
  background-color: #fb7f22;
  color: #f7f7f7;
}
.biz-calendar-custom #biz_calendar table.bizcal td.eventday {
  color: #f7f7f7;
}
.biz-calendar-custom #biz_calendar table.bizcal .calmonth {
  color: #333;
  background-color: transparent;
  font-size: max(1.8rem, min(1.317715959vw, 2.2rem));
  padding-left: 0.5em;
}
.biz-calendar-custom #biz_calendar table.bizcal .calbtn {
  background-color: transparent;
  position: relative;
}
.biz-calendar-custom #biz_calendar table.bizcal .calbtn img {
  display: none;
}
.biz-calendar-custom #biz_calendar table.bizcal .calbtn.down-img::after {
  content: "";
  display: inline-block;
  width: 2.5em;
  height: auto;
  aspect-ratio: 1/1;
  background: url(../img/_ui_parts/btn_calendar_prev.svg) no-repeat center center;
  background-size: contain;
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
.biz-calendar-custom #biz_calendar table.bizcal .calbtn.today-img::after {
  content: "";
  display: inline-block;
  width: 2.5em;
  height: auto;
  aspect-ratio: 1/1;
  background: url(../img/_ui_parts/btn_calendar_home.svg) no-repeat center center;
  background-size: contain;
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.biz-calendar-custom #biz_calendar table.bizcal .calbtn.up-img::after {
  content: "";
  display: inline-block;
  width: 2.5em;
  height: auto;
  aspect-ratio: 1/1;
  background: url(../img/_ui_parts/btn_calendar_next.svg) no-repeat center center;
  background-size: contain;
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.biz-calendar-custom #biz_calendar p {
  padding-left: 4px;
  font-weight: 500;
  margin-top: 20px;
  margin-right: 1.5em;
  display: inline-block;
}
.biz-calendar-custom #biz_calendar p span.boxholiday {
  background-color: #fb7f22;
}
.biz-calendar-custom__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.biz-calendar-custom__body > li.widget {
  list-style: none;
}
.biz-calendar-custom__body > li.widget::marker {
  content: none;
}
.biz-calendar-custom__body .widgettitle {
  display: none;
}

.my-smf-container input[type=text],
.my-smf-container input[type=email],
.my-smf-container input[type=tel],
.my-smf-container .smf-form .smf-select-control__control,
.my-smf-container textarea,
.my-smf-container .smf-form .smf-textarea-control__control {
  font-size: 1.6rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: max(16px, min(1.4641288433vw, 20px)) max(16px, min(1.4641288433vw, 20px)) max(15px, min(1.317715959vw, 18px));
  border: solid 1px #f0f0f0;
  border-radius: max(3px, min(0.3660322108vw, 5px));
  width: 100%;
  font-weight: 500;
  background-color: #f0f0f0;
  caret-color: auto;
  line-height: 1.5;
  box-shadow: none;
}
.my-smf-container input[type=text]:focus,
.my-smf-container input[type=email]:focus,
.my-smf-container input[type=tel]:focus,
.my-smf-container .smf-form .smf-select-control__control:focus,
.my-smf-container textarea:focus,
.my-smf-container .smf-form .smf-textarea-control__control:focus {
  background-color: #fff;
  border-color: #c1c1c1;
}
.my-smf-container input[type=text]::-moz-placeholder, .my-smf-container input[type=email]::-moz-placeholder, .my-smf-container input[type=tel]::-moz-placeholder, .my-smf-container .smf-form .smf-select-control__control::-moz-placeholder, .my-smf-container textarea::-moz-placeholder, .my-smf-container .smf-form .smf-textarea-control__control::-moz-placeholder {
  color: #989898;
}
.my-smf-container input[type=text]::placeholder,
.my-smf-container input[type=email]::placeholder,
.my-smf-container input[type=tel]::placeholder,
.my-smf-container .smf-form .smf-select-control__control::placeholder,
.my-smf-container textarea::placeholder,
.my-smf-container .smf-form .smf-textarea-control__control::placeholder {
  color: #989898;
}
.my-smf-container textarea {
  resize: none;
  line-height: 1.5;
  height: 15em;
}
.my-smf-container .smf-checkbox-control {
  display: block;
}
.my-smf-container .smf-checkbox-control input[type=checkbox] {
  opacity: 0;
  position: absolute;
}
.my-smf-container .smf-checkbox-control input[type=checkbox]:checked ~ span::after {
  content: "";
  display: block;
  width: calc(20px * 0.55);
  height: calc(20px * 0.27);
  border-left: solid calc(20px * 0.15) #fff;
  border-bottom: solid calc(20px * 0.15) #fff;
  position: absolute;
  z-index: 1;
  top: 50%;
  transform: translateY(-60%) rotate(-45deg);
  left: calc(20px * 0.22);
}
.my-smf-container .smf-checkbox-control span {
  padding-left: calc(20px + 7px);
  display: block;
  position: relative;
}
.my-smf-container .smf-checkbox-control span::before {
  content: "";
  display: block;
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: #fff;
  border: solid 1px #dddee0;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
.my-smf-container .smf-checkbox-control input[type=checkbox]:checked ~ span::before {
  background-color: #ed8200;
  border-color: #ed8200;
}
.my-smf-container .smf-checkbox-control span::before {
  border-radius: 2px;
}
.my-smf-container .smf-checkboxes-control .smf-label {
  margin-top: 0.5em;
  margin-right: 1.5em !important;
}
.my-smf-container .smf-checkboxes-control__control {
  display: flex;
  flex-wrap: wrap;
  gap: 1em 0.5em;
}
.my-smf-container .smf-radio-button-control {
  position: relative;
}
.my-smf-container .smf-radio-button-control input[type=radio] {
  opacity: 0;
  position: absolute;
}
.my-smf-container .smf-radio-button-control input[type=radio]:checked ~ span::after {
  content: "";
  display: block;
  width: 0.6em;
  height: 0.6em;
  background-color: #c73926;
  border-radius: 50%;
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  margin: auto;
  left: calc((1.2em - 0.6em) / 2);
}
.my-smf-container .smf-radio-button-control span {
  display: inline-block;
  position: relative;
  padding-left: calc(1.2em + 0.5em);
}
.my-smf-container .smf-radio-button-control span::before {
  content: "";
  display: block;
  position: absolute;
  width: 1.2em;
  height: 1.2em;
  border: solid 1px #c1c1c1;
  background-color: #fff;
  border-radius: 50%;
  z-index: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0;
}
.my-smf-container .smf-label {
  margin-right: 1em !important;
}
.my-smf-container .smf-select-control {
  display: block;
  position: relative;
}
.my-smf-container .smf-select-control::after {
  content: "";
  display: inline-block;
  width: 1.1em;
  height: auto;
  aspect-ratio: 1/1;
  background: url(../img/_ui_parts/btn_arrow_down.svg) no-repeat center center;
  background-size: contain;
  position: absolute;
  right: 1em;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  opacity: 0.5;
}
.my-smf-container .wp-block-snow-monkey-forms-item:not(:first-of-type) {
  margin-top: clamp(3rem, 2.296rem + 1.878vw, 5rem);
}
.my-smf-container .smf-item__col--controls {
  margin-top: 0.5em;
}
.my-smf-container .smf-item__controls > * + * {
  margin-top: 1em;
}
.my-smf-container .check-privacy-cotainer > * {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1em 2em;
}
.my-smf-container .check-privacy-cotainer .smf-label {
  margin-right: 0 !important;
  margin-top: 0 !important;
}
.my-smf-container .link2privacy {
  font-size: clamp(1.3rem, 1.265rem + 0.094vw, 1.4rem);
  font-size: var(--font-size-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  cursor: pointer;
  font-weight: 700;
}
.my-smf-container .link2privacy:hover {
  opacity: 0.8;
}
.my-smf-container .link2privacy::after {
  content: "";
  display: inline-block;
  width: 2em;
  height: auto;
  aspect-ratio: 1/1;
  background: url(../img/icon_open_modal.svg) no-repeat center center;
  background-size: contain;
  opacity: 0.8;
}
.my-smf-container .smf-action {
  margin-top: clamp(3rem, 2.296rem + 1.878vw, 5rem);
  margin-top: clamp(6rem, 5.296rem + 1.878vw, 8rem);
}
.my-smf-container .smf-action .smf-button-control + .smf-button-control {
  margin-left: 0;
}
.my-smf-container .wp-block-group {
  margin-top: clamp(3rem, 2.296rem + 1.878vw, 5rem);
  gap: max(16px, min(1.756954612vw, 24px));
  align-items: flex-start;
}
.my-smf-container .wp-block-group .wp-block-snow-monkey-forms-item {
  margin-top: 0;
  width: 100%;
}
.my-smf-container .wp-block-snow-monkey-forms-item:has([data-validations*=required]) .smf-item__label {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.25em 0.5em;
  font-weight: 600;
}
.my-smf-container .wp-block-snow-monkey-forms-item:has([data-validations*=required]) .smf-item__label::before {
  font-size: clamp(1rem, 0.93rem + 0.188vw, 1.2rem);
  font-size: var(--font-size-xs);
  display: inline-block;
  content: "必須";
  color: #ed8200;
  padding: 0.15em 0.75em 0.2em;
  border: solid 1px #ed8200;
  border-radius: clamp(0.2rem, 0.165rem + 0.094vw, 0.3rem);
}
.my-smf-container .smf-error-messages {
  color: #ed8200;
  font-size: clamp(1.3rem, 1.265rem + 0.094vw, 1.4rem);
  font-size: var(--font-size-sm);
}
body.entry .my-smf-container .smf-form {
  padding-top: max(64px, min(8.78477306vw, 120px));
}
body.contact .my-smf-container .smf-form {
  padding-top: max(40px, min(4.6852122987vw, 64px));
}
.my-smf-container .msg-confirm,
.my-smf-container .msg-input {
  margin-bottom: max(40px, min(4.39238653vw, 60px));
}
.my-smf-container .msg-invalid {
  display: none;
}
.my-smf-container .smf-complete-content {
  padding-top: max(40px, min(4.39238653vw, 60px));
}
.my-smf-container [data-screen=confirm] .wp-block-snow-monkey-forms-item {
  background-color: #f8f8f8;
  padding: 1em;
  border-radius: 8px;
}
.my-smf-container input.zipcode {
  max-width: 130px;
}
.my-smf-container .smf-placeholder[data-name=zipcode] {
  display: flex;
  gap: 1em;
  align-items: center;
}
.my-smf-container .smf-placeholder[data-name=zipcode]::before {
  content: "〒";
  display: block;
}
.my-smf-container .msg-note {
  font-size: clamp(1.3rem, 1.265rem + 0.094vw, 1.4rem);
  font-size: var(--font-size-sm);
  margin-top: 0.5em;
}
.my-smf-container .msg-note .color-invalid {
  color: #ed8200;
}
.my-smf-container .smf-action {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: max(10px, min(1.4641288433vw, 20px));
}
.my-smf-container .smf-action .smf-button-control__control {
  -webkit-text-decoration: none;
  text-decoration: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  line-height: 1;
  caret-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  color: #333;
  background-color: transparent;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.1s linear;
  will-change: transform;
  background-color: #fff;
  border-radius: 999px;
  font-family: "Zen Maru Gothic", sans-serif;
  letter-spacing: 0.15em;
  font-weight: 700;
  padding: 1em 2em;
  font-size: clamp(1.4rem, 1.189rem + 0.563vw, 2rem);
  gap: 1.25em;
  line-height: 1.2;
  color: #fff;
  background-color: #eee;
  background-size: 200% 100%;
  background-position: 100% 0;
  background-repeat: repeat-x;
  background-color: #299dd5;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 5%, #1c96cb 5%, #1c96cb 10%);
}
.my-smf-container .smf-action .smf-button-control__control *,
.my-smf-container .smf-action .smf-button-control__control *::before,
.my-smf-container .smf-action .smf-button-control__control *::after {
  transition: all 0.1s linear;
}
.my-smf-container .smf-action .smf-button-control__control:hover {
  animation: btn-stripe-move-x 1s linear infinite;
}
.my-smf-container .smf-action .smf-button-control__control::after {
  content: "";
  display: inline-block;
  width: 1.75em;
  height: auto;
  aspect-ratio: 1/1;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url(../img/icon_btn_arrow_maru_white.svg);
}
.my-smf-container .smf-action .smf-button-control__control[data-action=back] {
  width: -moz-fit-content;
  width: fit-content;
  padding-top: 1.25em;
  padding-bottom: 1.25em;
  background-color: #888;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 5%, #777 5%, #777 10%);
}
.my-smf-container .smf-action .smf-button-control__control[data-action=back]::after {
  content: none;
}
.my-smf-container .snow-monkey-form:not([data-screen=confirm]) .msg-confirm {
  display: none;
}
.my-smf-container .snow-monkey-form:not([data-screen=invalid]) .msg-invalid {
  display: none;
}
.my-smf-container .snow-monkey-form:not([data-screen=input]):not([data-screen=invalid]):not([data-screen=back]) .msg-input {
  display: none;
}
.my-smf-container .snow-monkey-form .nav-progress {
  display: flex;
  flex-wrap: nowrap;
  gap: max(16px, min(2.3426061493vw, 32px));
  justify-content: center;
  margin-bottom: 40px;
}
.my-smf-container .snow-monkey-form .nav-progress .item {
  font-weight: 700;
  font-size: max(1.4rem, min(1.317715959vw, 1.8rem));
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.5em 2.25em;
  border-radius: 999px;
  background-color: #646464;
  color: #fff;
  position: relative;
}
.my-smf-container .snow-monkey-form .nav-progress .item:not(:first-of-type)::before {
  content: "";
  display: block;
  position: absolute;
  width: max(16px, min(2.3426061493vw, 32px));
  height: 1px;
  transform: rotate(0deg);
  background-color: #646464;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
}
.my-smf-container .snow-monkey-form[data-screen=input] #stepInput, .my-smf-container .snow-monkey-form[data-screen=invalid] #stepInput, .my-smf-container .snow-monkey-form[data-screen=back] #stepInput {
  background-color: #c73926;
}
.my-smf-container .snow-monkey-form[data-screen=confirm] #stepConfirm {
  background-color: #c73926;
}
.my-smf-container .snow-monkey-form[data-screen=complete] #stepComplete {
  background-color: #c73926;
}

body:not(:has(form)) .grecaptcha-badge {
  visibility: hidden;
}

.post-password-form p[id^=error] {
  color: #f65904;
  font-weight: 500;
}
.post-password-form p:has(label[for^=pwbox-]) {
  margin-top: 3em;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 1em 0.5em;
  flex-wrap: wrap;
}
.post-password-form label[for^=pwbox-] {
  flex-shrink: 0;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 500;
}
.post-password-form label[for^=pwbox-] input[type=password] {
  font-size: 1.6rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 0.75em 1em 0.7em;
  border: solid 1px #f0f0f0;
  border-radius: clamp(0.8rem, 0.518rem + 0.751vw, 1.6rem);
  border-radius: var(--radius-md);
  min-height: 3em;
}
.post-password-form input[type=submit] {
  -webkit-text-decoration: none;
  text-decoration: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  line-height: 1;
  caret-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  background-color: #0095d0;
  border-radius: clamp(0.8rem, 0.518rem + 0.751vw, 1.6rem);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.1s linear;
  will-change: transform;
  font-size: clamp(1.4rem, 1.33rem + 0.188vw, 1.6rem);
  font-size: var(--font-size-md);
  font-weight: 700;
  padding: 0.7em 1em 0.5em;
  line-height: 1;
  letter-spacing: 0.1em;
  min-height: 3em;
}
.post-password-form input[type=submit] *,
.post-password-form input[type=submit] *::before,
.post-password-form input[type=submit] *::after {
  transition: all 0.1s linear;
}

.wysiwyg-editor-content {
  font-weight: 400;
}
.wysiwyg-editor-content > *:first-child {
  margin-top: 0;
}
.wysiwyg-editor-content > * {
  margin-top: 2em;
}
.wysiwyg-editor-content h1,
.wysiwyg-editor-content h2,
.wysiwyg-editor-content h3,
.wysiwyg-editor-content h4,
.wysiwyg-editor-content h5,
.wysiwyg-editor-content h6 {
  font-size: 1.25em;
}
.wysiwyg-editor-content ul.wp-block-list {
  list-style: disc;
  padding-left: 1.5em;
}
.wysiwyg-editor-content ol.wp-block-list {
  list-style: decimal;
  padding-left: 1.5em;
}
.wysiwyg-editor-content p {
  line-height: 2;
}
.wysiwyg-editor-content p img {
  display: block;
}
.wysiwyg-editor-content figcaption {
  text-align: center;
}
.wysiwyg-editor-content a {
  -webkit-text-decoration: underline;
  text-decoration: underline;
  font-weight: 700;
}
.wysiwyg-editor-content img {
  max-width: calc(100% - clamp(0rem, -2.817rem + 7.512vw, 8rem));
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  border-radius: clamp(0.4rem, 0.259rem + 0.376vw, 0.8rem);
  border-radius: var(--radius-sm);
}
.l-main._overflow-hidden {
  overflow: hidden;
}

.banners-insite {
  width: 100%;
  display: grid;
  grid-gap: clamp(2rem, 1.296rem + 1.878vw, 4rem);
  gap: clamp(2rem, 1.296rem + 1.878vw, 4rem);
  grid-template-columns: repeat(auto-fit, minmax(min(270px, 100%), 1fr));
}
.banners-insite > * {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  grid-gap: 0;
  gap: 0;
  align-items: start;
}
.banners-insite .banner {
  border-radius: clamp(3rem, 2.648rem + 0.939vw, 4rem);
  border-radius: var(--radius-xl);
  padding-top: clamp(4rem, 1.535rem + 6.573vw, 11rem);
  padding-bottom: clamp(4rem, 2.592rem + 3.756vw, 8rem);
  padding-left: clamp(2rem, 1.296rem + 1.878vw, 4rem);
  padding-right: clamp(2rem, 1.296rem + 1.878vw, 4rem);
  display: grid;
  align-items: center;
  justify-items: center;
  place-items: center;
  grid-gap: clamp(2rem, 1.296rem + 1.878vw, 4rem);
  gap: clamp(2rem, 1.296rem + 1.878vw, 4rem);
}
.banners-insite .banner:hover .banner__icon {
  scale: 1.1;
}
.banners-insite .banner__icon {
  aspect-ratio: 228/132;
  width: clamp(14rem, 10.901rem + 8.263vw, 22.8rem);
  height: auto;
  transition: scale 0.1s linear;
}
.banners-insite .banner__text {
  text-align: center;
  display: grid;
  align-items: center;
  justify-items: center;
  place-items: center;
}
.banners-insite .banner__text .title {
  font-size: clamp(2.4rem, 1.977rem + 1.127vw, 3.6rem);
  font-size: var(--font-size-xl2);
}
.banners-insite .banner__text .description {
  line-height: 2;
  margin-top: 1em;
}
.banners-insite .banner__arrow {
  aspect-ratio: 1/1;
  width: clamp(4rem, 2.873rem + 3.005vw, 7.2rem);
  height: auto;
}
.banners-insite .banner._kirakira {
  background-color: #f0f0f0;
}
.banners-insite .banner._contact {
  background-color: #00a468;
  color: #fff;
}

.sect-top-aboutus {
  overflow: hidden;
}
.sect-top-aboutus__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(4rem, 2.592rem + 3.756vw, 8rem);
}
.sect-top-aboutus__inner .c-ttl-section .ja-ttl__main .text {
  opacity: 0;
  translate: 0px 40px;
  transition: all 1s ease;
  will-change: opacity, translate;
}
.sect-top-aboutus__inner .c-ttl-section .ja-ttl__main .text:nth-child(1) {
  transition-delay: 0.1s;
}
.sect-top-aboutus__inner .c-ttl-section .ja-ttl__main .text:nth-child(2) {
  transition-delay: 0.2s;
}
.sect-top-aboutus__inner .c-ttl-section .ja-ttl__main .text:nth-child(3) {
  transition-delay: 0.3s;
}
.sect-top-aboutus__inner .c-ttl-section .ja-ttl__main .text:nth-child(4) {
  transition-delay: 0.4s;
}
.sect-top-aboutus__inner .c-ttl-section .ja-ttl__main .text:nth-child(5) {
  transition-delay: 0.5s;
}
.sect-top-aboutus__inner .c-ttl-section .ja-ttl__main .text:nth-child(6) {
  transition-delay: 0.6s;
}
.sect-top-aboutus__inner .c-ttl-section .ja-ttl__main .text:nth-child(7) {
  transition-delay: 0.7s;
}
.sect-top-aboutus__inner .c-ttl-section .ja-ttl__sub {
  transition: all 1s ease;
  opacity: 0;
  transition-delay: 0.8s;
}
.sect-top-aboutus__inner .c-ttl-section .en {
  transition: all 1s ease;
  opacity: 0;
  transition-delay: 0.8s;
}
.sect-top-aboutus__inner .sect-top-aboutus__body {
  opacity: 0;
  translate: 0px 10px;
  transition: all 1s ease;
  will-change: opacity, translate;
  transition-delay: 1.3s;
}
.sect-top-aboutus__inner.is-framein .c-ttl-section .ja-ttl__main .text {
  opacity: 1;
  translate: 0 0px;
}
.sect-top-aboutus__inner.is-framein .c-ttl-section .ja-ttl__sub {
  opacity: 1;
}
.sect-top-aboutus__inner.is-framein .c-ttl-section .en {
  opacity: 1;
}
.sect-top-aboutus__inner.is-framein .sect-top-aboutus__body {
  opacity: 1;
  translate: 0 0;
}
.sect-top-aboutus .c-ttl-section {
  display: grid;
  align-items: right;
  justify-items: right;
  place-items: right;
}
.sect-top-aboutus .c-ttl-section .ja-ttl {
  display: grid;
  align-items: right;
  justify-items: right;
  place-items: right;
  width: 100%;
}
.sect-top-aboutus .c-ttl-section .ja-ttl__main {
  display: block;
  aspect-ratio: 460/342;
  max-width: clamp(30rem, 24.718rem + 14.085vw, 45rem);
  width: 100%;
  height: auto;
}
.sect-top-aboutus .c-ttl-section .ja-ttl__main .text {
  width: clamp(5.6rem, 4.896rem + 1.878vw, 7.6rem);
  width: 16.5%;
  height: auto;
  position: absolute;
}
.sect-top-aboutus .c-ttl-section .ja-ttl__main .text._1 {
  top: 0;
  left: 0;
}
.sect-top-aboutus .c-ttl-section .ja-ttl__main .text._2 {
  top: 21%;
  left: 7%;
}
.sect-top-aboutus .c-ttl-section .ja-ttl__main .text._3 {
  top: 42%;
  left: 16%;
}
.sect-top-aboutus .c-ttl-section .ja-ttl__main .text._4 {
  bottom: 19%;
  left: 29%;
}
.sect-top-aboutus .c-ttl-section .ja-ttl__main .text._5 {
  bottom: 8%;
  right: 37%;
}
.sect-top-aboutus .c-ttl-section .ja-ttl__main .text._6 {
  bottom: 0;
  right: 19%;
}
.sect-top-aboutus .c-ttl-section .ja-ttl__main .text._7 {
  bottom: 5%;
  right: 0;
}
.sect-top-aboutus .c-ttl-section .ja-ttl__sub {
  display: block;
  font-size: clamp(2rem, 1.718rem + 0.751vw, 2.8rem);
  font-size: var(--font-size-xl);
  margin-top: 0.5em;
  padding-right: clamp(1.6rem, 1.459rem + 0.376vw, 2rem);
}
.sect-top-aboutus .c-ttl-section .en {
  margin-top: 1em;
  padding-right: clamp(1.6rem, 1.459rem + 0.376vw, 2rem);
}
.sect-top-aboutus__head {
  width: 100%;
  flex: 4;
}
.sect-top-aboutus__body {
  flex: 5;
  padding-top: clamp(6rem, 1.775rem + 11.268vw, 18rem);
}
.sect-top-aboutus__body .text-lead {
  font-size: clamp(2rem, 1.718rem + 0.751vw, 2.8rem);
  font-size: var(--font-size-xl);
  line-height: 1.7;
  letter-spacing: 0.2em;
}
.sect-top-aboutus__body .text-lead .green {
  color: #00a468;
}
.sect-top-aboutus__body .text-lead .pink {
  color: #ee86ae;
}
.sect-top-aboutus__body .text-lead .blue {
  color: #40b0dd;
}
.sect-top-aboutus__body .description {
  margin-top: 2em;
  line-height: 2;
}

.sect-top-schoollife {
  padding-top: clamp(18rem, 14.831rem + 8.451vw, 27rem);
  padding-bottom: clamp(18rem, 16.944rem + 2.817vw, 21rem);
}
.sect-top-schoollife__bg {
  background-color: #1ea04b;
  padding-top: clamp(6rem, 4.944rem + 2.817vw, 9rem);
  padding-bottom: clamp(6rem, 4.944rem + 2.817vw, 9rem);
  position: relative;
  width: calc(100vw - 2 * 0px);
  margin-left: calc(50% - 50vw + 0px);
  margin-right: calc(50% - 50vw + 0px);
  max-width: none;
}
.sect-top-schoollife__bg .text-lead {
  color: #fff;
  line-height: 2;
}
.sect-top-schoollife__inner {
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
}
.sect-top-schoollife__inner > * {
  position: relative;
  z-index: 1;
}
.sect-top-schoollife__inner .bg-globe {
  position: absolute;
  z-index: 0;
  aspect-ratio: 1/1;
  width: 110%;
  height: auto;
  top: 50%;
  left: 0;
  translate: -40% -50%;
}
.sect-top-schoollife__inner .bg-globe::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url(../img/green_globe.webp);
  position: absolute;
  top: 0;
  left: 0;
  animation: rotateGlobe 60s linear infinite;
  animation-play-state: paused;
  pointer-events: none;
}
.sect-top-schoollife__inner .bg-globe.is-in-view::after {
  will-change: transform;
  animation-play-state: running;
}
@keyframes rotateGlobe {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}
.sect-top-schoollife__head {
  display: flex;
  gap: clamp(4rem, 2.592rem + 3.756vw, 8rem);
}
.sect-top-schoollife__head .c-ttl-section {
  align-self: start;
}
.sect-top-schoollife__head .c-ttl-section .ja-ttl {
  color: #fff;
  writing-mode: vertical-rl;
  word-break: keep-all;
  letter-spacing: 0.4em;
  line-height: 1;
}
.sect-top-schoollife__head .c-ttl-section .en {
  margin-top: 1em;
}
.sect-top-schoollife__head .c-ttl-section .icon-illust {
  aspect-ratio: 22/15;
  width: clamp(16rem, 13.887rem + 5.634vw, 22rem);
  height: auto;
  position: absolute;
  bottom: 0%;
  left: 0%;
  pointer-events: none;
  translate: 45% -35%;
  background-image: url(../img/walking-kids-3frame.png);
  background-size: 300% 100%;
  background-position: 0 0;
  animation: walking-frame 2.5s steps(2) infinite, waking-kids 2.5s linear infinite;
}
@keyframes walking-frame {
  0%, 100% {
    background-position: 0% 0;
  }
  50% {
    background-position: 100% 0;
  }
}
@keyframes waking-kids {
  0% {
    translate: 45% -35%;
  }
  25% {
    translate: 50% -35%;
  }
  50% {
    translate: 45% -35%;
  }
  75% {
    translate: 50% -35%;
  }
  100% {
    translate: 45% -35%;
  }
}
@keyframes waking-kids-sp {
  0% {
    translate: 35% -80%;
  }
  25% {
    translate: 40% -80%;
  }
  50% {
    translate: 35% -80%;
  }
  75% {
    translate: 40% -80%;
  }
  100% {
    translate: 35% -80%;
  }
}
.sect-top-schoollife__body {
  padding-left: 20px;
  padding-right: 20px;
}
.sect-top-schoollife__title {
  flex: 5;
  align-self: start;
  margin-left: clamp(2rem, 1.296rem + 1.878vw, 4rem);
}
.sect-top-schoollife__text {
  flex: 4;
}

.sect-top-guide {
  background-color: #ffe278;
  position: relative;
}
.sect-top-guide__mv {
  aspect-ratio: 992/500;
  width: 100%;
  height: auto;
  border-radius: clamp(3rem, 2.648rem + 0.939vw, 4rem);
  border-radius: var(--radius-xl);
}
.sect-top-guide__mv .c-ttl-section {
  position: absolute;
  top: -1px;
  right: -1px;
  background-color: #fff;
  z-index: 1;
  padding-left: clamp(2rem, 1.296rem + 1.878vw, 4rem);
  padding-right: clamp(1.6rem, 1.459rem + 0.376vw, 2rem);
  padding-top: clamp(0.8rem, 0.518rem + 0.751vw, 1.6rem);
  padding-bottom: clamp(1.6rem, 1.318rem + 0.751vw, 2.4rem);
  border-bottom-left-radius: clamp(3rem, 2.648rem + 0.939vw, 4rem);
  border-bottom-left-radius: var(--radius-xl);
}
.sect-top-guide__mv .c-ttl-section::before, .sect-top-guide__mv .c-ttl-section::after {
  content: "";
  display: inline-block;
  width: 2em;
  height: auto;
  aspect-ratio: 10/9;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  position: absolute;
  background-image: url(../img/deco_corner_maru_white.svg);
}
.sect-top-guide__mv .c-ttl-section::before {
  top: -1px;
  right: calc(100% - 1px);
}
.sect-top-guide__mv .c-ttl-section::after {
  top: calc(100% - 1px);
  right: -1px;
}
.sect-top-guide__mv .c-ttl-section .ja-ttl {
  font-size: clamp(2.4rem, 1.977rem + 1.127vw, 3.6rem);
  font-size: var(--font-size-xl2);
  letter-spacing: 0.2em;
}
.sect-top-guide__mv .c-ttl-section .en {
  color: #f68104;
}
.sect-top-guide__mv .c-ttl-section .icon-illust {
  position: absolute;
  width: clamp(4rem, 3.648rem + 0.939vw, 5rem);
  top: -1.5em;
  left: 1em;
}
.sect-top-guide__mv .image {
  border-radius: clamp(3rem, 2.648rem + 0.939vw, 4rem);
  border-radius: var(--radius-xl);
}
.sect-top-guide__head {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.sect-top-guide__head::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 50%;
  transform: rotate(0deg);
  background-color: #fff;
  top: -1px;
  left: 0;
  z-index: 0;
  width: calc(100vw - 2 * 0px);
  margin-left: calc(50% - 50vw + 0px);
  margin-right: calc(50% - 50vw + 0px);
  max-width: none;
}
.sect-top-guide__body {
  padding-top: clamp(4rem, 3.296rem + 1.878vw, 6rem);
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-left: clamp(2rem, -0.113rem + 5.634vw, 8rem);
  padding-right: clamp(2rem, -0.113rem + 5.634vw, 8rem);
  gap: clamp(3rem, 2.296rem + 1.878vw, 5rem);
}
.sect-top-guide__body .text-lead {
  width: 100%;
  line-height: 2;
}
.sect-top-guide__body .btn-link {
  flex-shrink: 0;
}
.sect-top-guide__foot {
  max-width: 1000px;
  padding-top: clamp(4rem, 2.944rem + 2.817vw, 7rem);
  padding-bottom: clamp(10rem, 7.887rem + 5.634vw, 16rem);
  padding-left: clamp(2rem, -0.113rem + 5.634vw, 8rem);
  padding-right: clamp(2rem, -0.113rem + 5.634vw, 8rem);
  position: relative;
  margin-left: auto;
  margin-right: auto;
}

.sect-top-news {
  padding-bottom: clamp(12rem, 10.944rem + 2.817vw, 15rem);
}
.sect-top-news__bg-top {
  height: clamp(4rem, 2.592rem + 3.756vw, 8rem);
  background-color: #fff;
  position: relative;
}
.sect-top-news__bg-top::after {
  max-width: 100vw;
  content: "";
  display: inline-block;
  width: 100%;
  height: auto;
  aspect-ratio: 1440/41;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url(../img/deco_nami_white.svg);
  position: absolute;
  bottom: calc(100% - 2px);
  left: 50%;
  translate: -50% 0;
  background-size: cover;
  z-index: 1;
}
.sect-top-news__bg-top::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100vh;
  transform: rotate(0deg);
  background-color: #fff;
  top: 0;
  left: 0;
  z-index: 0;
}
.sect-top-news__inner {
  max-width: 1000px;
  display: flex;
  gap: clamp(4rem, 1.887rem + 5.634vw, 10rem);
}
.sect-top-news .c-ttl-section {
  display: grid;
  align-items: center;
  justify-items: center;
  place-items: center;
}
.sect-top-news .c-ttl-section .en {
  color: #06a9ea;
}
.sect-top-news .c-ttl-section .icon-illust {
  margin-top: 1em;
  width: auto;
  max-height: clamp(6rem, 5.296rem + 1.878vw, 8rem);
  translate: -10% 0;
}
.sect-top-news__head {
  flex-shrink: 0;
}
.sect-top-news__body {
  width: 100%;
}
.sect-top-news__body .btn-link {
  margin-left: auto;
  margin-right: auto;
}
.sect-top-links__inner {
  max-width: 1280px;
}
.sect-top-links .box-top-recruit {
  border-radius: clamp(3rem, 2.648rem + 0.939vw, 4rem);
  border-radius: var(--radius-xl);
  background-color: #ffad9a;
  padding: clamp(2rem, 1.296rem + 1.878vw, 4rem);
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: wrap;
  gap: clamp(4rem, 2.592rem + 3.756vw, 8rem);
}
.sect-top-links .box-top-recruit__title {
  display: grid;
  align-items: center;
  justify-items: center;
  place-items: center;
}
.sect-top-links .box-top-recruit__title .icon-illust {
  pointer-events: none;
  width: clamp(16rem, 12.479rem + 9.39vw, 26rem);
  margin-top: -35%;
}
.sect-top-links .box-top-recruit__title .title-ja {
  font-size: clamp(3.2rem, 2.637rem + 1.502vw, 4.8rem);
  font-size: var(--font-size-xl3);
}
.sect-top-links .box-top-recruit__title .title-en {
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.3em;
  margin-top: 0.25em;
}
.sect-top-links .box-top-recruit__head {
  flex: 4;
}
.sect-top-links .box-top-recruit__head .description {
  line-height: 2;
}
.sect-top-links .box-top-recruit__body {
  flex: 5;
  flex-shrink: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(6, 1fr);
  grid-gap: clamp(2rem, 1.296rem + 1.878vw, 4rem);
  gap: clamp(2rem, 1.296rem + 1.878vw, 4rem);
}
.sect-top-links .box-top-recruit__body img {
  max-width: none;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: clamp(0.8rem, 0.518rem + 0.751vw, 1.6rem);
  border-radius: var(--radius-md);
}
.sect-top-links .box-top-recruit__body img:nth-child(1) {
  grid-area: 1/1/4/4;
}
.sect-top-links .box-top-recruit__body img:nth-child(2) {
  grid-area: 2/4/4/6;
}
.sect-top-links .box-top-recruit__body img:nth-child(3) {
  grid-area: 4/1/7/5;
}

.sect-information__inner {
  max-width: 752px;
}

.sect-post-information {
  padding-top: clamp(2rem, 1.296rem + 1.878vw, 4rem);
}
.sect-post-information__inner {
  max-width: 752px;
}
.sect-post-information__head {
  position: relative;
  padding-bottom: clamp(4rem, 3.296rem + 1.878vw, 6rem);
}
.sect-post-information__head .title {
  font-size: clamp(2.4rem, 1.977rem + 1.127vw, 3.6rem);
  font-size: var(--font-size-xl2);
}
.sect-post-information__head .cat-and-date {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.6rem, 1.318rem + 0.751vw, 2.4rem);
}
.sect-post-information__head .cat-and-date .cat {
  font-weight: 600;
}
.sect-post-information__head .cat-and-date .date {
  color: #555;
}
.sect-post-information__body {
  position: relative;
  padding-top: clamp(4rem, 3.296rem + 1.878vw, 6rem);
  padding-bottom: clamp(4rem, 3.296rem + 1.878vw, 6rem);
  padding-left: clamp(0rem, -0.704rem + 1.878vw, 2rem);
  padding-right: clamp(0rem, -0.704rem + 1.878vw, 2rem);
}
.sect-post-information__body::after, .sect-post-information__body::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: auto;
  aspect-ratio: 800/11;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url(../img/deco_post_information_wave.svg);
  position: absolute;
  opacity: 0.5;
  left: 0;
}
.sect-post-information__body::before {
  top: 0;
  translate: 0 -50%;
}
.sect-post-information__body::after {
  bottom: 0;
  translate: 0 50%;
}
.sect-post-information__foot {
  padding-top: clamp(2rem, 1.648rem + 0.939vw, 3rem);
}

.sect-philosophy {
  padding-top: clamp(6rem, 4.239rem + 4.695vw, 11rem);
  padding-bottom: clamp(6rem, 5.296rem + 1.878vw, 8rem);
  overflow: hidden;
}
.sect-philosophy__inner {
  max-width: 752px;
}
.sect-philosophy__title {
  font-size: clamp(2.4rem, 1.977rem + 1.127vw, 3.6rem);
  font-size: var(--font-size-xl2);
  aspect-ratio: 66029/26976;
  width: 19em;
  max-width: 100%;
  display: grid;
  align-content: center;
  justify-content: center;
  place-content: center;
  margin-left: auto;
  margin-right: auto;
  background: url(../img/bg_ttl_aboutus_philosophy.png) center no-repeat;
  background-size: contain;
}
.sect-philosophy__title__inner {
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  translate: 2.5em 1.1em;
}
.sect-philosophy__title .ja-ttl {
  color: #fff;
  letter-spacing: 0.2em;
  font-size: clamp(2.4rem, 1.977rem + 1.127vw, 3.6rem);
  font-size: var(--font-size-xl2);
}
.sect-philosophy__title .en {
  color: #555;
  font-size: 0.45em;
}
.sect-philosophy .text-lead {
  font-size: clamp(1.8rem, 1.448rem + 0.939vw, 2.8rem);
  letter-spacing: 0.2em;
  line-height: 1.7;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.sect-philosophy .text-lead strong {
  font-weight: 700;
}
.sect-philosophy .text-lead .blue {
  color: #06a9ea;
}
.sect-philosophy .text-lead .green {
  color: #00a83b;
}
.sect-philosophy .text-lead .pink {
  color: #ee86ae;
}
.sect-philosophy .description {
  line-height: 2.2;
  letter-spacing: 0.1em;
}

.sect-3goals {
  padding-left: 0;
  padding-right: 0;
  padding-bottom: clamp(8rem, 3.775rem + 11.268vw, 20rem);
  overflow: hidden;
}
.sect-3goals__head {
  position: relative;
  background: linear-gradient(180deg, #fff 0%, #fff 50%, #fff8df 50%, #fff8df 100%);
}
.sect-3goals__head .mv-photo {
  -o-object-position: center;
     object-position: center;
  position: absolute;
  left: 0;
  top: 0;
  aspect-ratio: 16/9;
  width: 100%;
  height: auto;
  object-position: center;
  transform-origin: center center;
}
.sect-3goals__head .mv-photo img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sect-3goals__head__mask {
  aspect-ratio: 2160/750;
  width: 100%;
  -webkit-mask-image: url(../img/mask_aboutus_goal_mv.png);
  mask-image: url(../img/mask_aboutus_goal_mv.png);
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-position: center;
}
.sect-3goals__title {
  flex-shrink: 0;
  font-size: clamp(2rem, 1.718rem + 0.751vw, 2.8rem);
  font-size: var(--font-size-xl);
  aspect-ratio: 172/254;
  width: 6.2em;
  height: auto;
  display: grid;
  align-items: center;
  justify-items: center;
  place-items: center;
  background: url(../img/bg_ttl_aboutus_goal.png) no-repeat center;
  background-size: cover;
}
.sect-3goals__title .ja-ttl {
  font-size: clamp(2rem, 1.718rem + 0.751vw, 2.8rem);
  font-size: var(--font-size-xl);
  color: #fff;
  writing-mode: vertical-rl;
  word-break: keep-all;
  letter-spacing: 0.5em;
  padding-right: 2.5em;
}
.sect-3goals__body {
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: clamp(18rem, 14.479rem + 9.39vw, 28rem);
  position: relative;
}
.sect-3goals__body::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  transform: rotate(0deg);
  background-color: #fff8df;
  top: 0;
  left: 0;
  z-index: -1;
}
.sect-3goals__body::after {
  content: "";
  display: inline-block;
  width: 200%;
  height: auto;
  aspect-ratio: 2880/89;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url(../img/deco_aboutus_3goal_bottom_nami.png);
  position: absolute;
  background-size: 50% 100%;
  background-repeat: repeat-x;
  bottom: 0;
  left: 0%;
  translate: 0 50%;
  animation: kf_loop_nami 15s linear infinite;
}
@keyframes kf_loop_nami {
  to {
    translate: -50% 50%;
  }
}
.sect-3goals__body__inner {
  max-width: 840px;
  margin-top: calc(-1 * clamp(6rem, 3.887rem + 5.634vw, 12rem));
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  justify-content: flex-start;
  gap: clamp(4rem, 1.887rem + 5.634vw, 10rem);
}
.sect-3goals__body .text-lead {
  padding-top: clamp(10rem, 7.887rem + 5.634vw, 16rem);
  padding-left: clamp(0rem, -1.408rem + 3.756vw, 4rem);
  font-size: clamp(1.8rem, 1.448rem + 0.939vw, 2.8rem);
  line-height: 1.7;
  letter-spacing: 0.2em;
  font-weight: 700;
}
.sect-3goals__body .text-lead strong {
  font-weight: 700;
  position: relative;
}
.sect-3goals__body .text-lead strong::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: clamp(0.4rem, 0.33rem + 0.188vw, 0.6rem);
  transform: rotate(0deg);
  background-color: #eee;
  bottom: -0.75em;
  left: 0;
  background-image: linear-gradient(to right, #2ba74e 0%,#2ba74e 33.333%, #fea12e 33.333%,#fea12e 66.666%, #29a7e2 66.666%, #29a7e2 100%);
  background-image: linear-gradient(to right, #2ba74e 0% 33.333%, #fea12e 33.333% 66.666%, #29a7e2 66.666% 100%);
}
.sect-3goals__body__deco {
  position: absolute;
  top: 10px;
  right: calc(100% - 60px);
  width: clamp(6rem, 3.606rem + 6.385vw, 12.8rem);
}
.sect-3goals__foot {
  padding-left: 20px;
  padding-right: 20px;
  margin-top: calc(-1 * clamp(12rem, 10.592rem + 3.756vw, 16rem));
}
.sect-3goals__foot__inner {
  max-width: 1280px;
}

.sect-message {
  background-color: #00a468;
  padding-bottom: clamp(8rem, 5.887rem + 5.634vw, 14rem);
  color: #fff;
  overflow: hidden;
}
.sect-message__bg-top {
  height: clamp(4rem, 2.592rem + 3.756vw, 8rem);
  background-color: #00a468;
}
.sect-message__bg-top::after {
  max-width: 100vw;
  content: "";
  display: inline-block;
  width: 100%;
  height: auto;
  aspect-ratio: 1440/41;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url(../img/deco_nami_green.svg);
  position: absolute;
  bottom: calc(100% - 2px);
  left: 50%;
  translate: -50% 0;
  background-size: cover;
  z-index: 1;
}
.sect-message__bg-top::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100vh;
  transform: rotate(0deg);
  background-color: #00a468;
  top: 0;
  left: 0;
  z-index: 0;
}
.sect-message__inner {
  max-width: 752px;
}
.sect-message__title {
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}
.sect-message__title .ja-ttl {
  font-size: clamp(2.4rem, 1.977rem + 1.127vw, 3.6rem);
  font-size: var(--font-size-xl2);
}
.sect-message__title .en {
  text-align: center;
  margin-top: 0.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  word-break: keep-all;
  flex-shrink: 0;
}
.sect-message__title .en > * {
  flex-shrink: 0;
}
.sect-message__title .en::before, .sect-message__title .en::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 1px;
  transform: rotate(0deg);
  background-color: #fff;
  position: relative;
}
.sect-message__body {
  font-weight: 500;
  line-height: 2.2;
}
.sect-message__body > * + * {
  margin-top: clamp(2rem, 1.296rem + 1.878vw, 4rem);
}
.sect-message__body img {
  width: calc(100% - clamp(2rem, -1.873rem + 10.329vw, 13rem));
  margin-left: auto;
  margin-right: auto;
  max-width: none;
}
.sect-message__signature {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: clamp(2rem, 1.296rem + 1.878vw, 4rem);
}
.sect-message__signature .name {
  text-align: right;
  line-height: 2.5;
}
.sect-message__signature .photo-profile {
  aspect-ratio: 1/1;
  border-radius: 50%;
  width: clamp(10rem, 7.183rem + 7.512vw, 18rem);
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.sect-wlb {
  padding-top: clamp(8rem, 5.887rem + 5.634vw, 14rem);
}
.sect-wlb__inner {
  max-width: 1000px;
  display: flex;
  gap: clamp(3rem, 1.239rem + 4.695vw, 8rem);
  align-items: flex-start;
}
.sect-wlb__title {
  text-align: right;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.sect-wlb__title .ja-ttl {
  font-size: clamp(2.4rem, 1.977rem + 1.127vw, 3.6rem);
  font-size: var(--font-size-xl2);
}
.sect-wlb__title .en {
  color: #f27a8e;
  margin-top: 0.5em;
}
.sect-wlb__head {
  flex: 3;
  transition: opacity 0.8s ease;
}
.sect-wlb__head__illust {
  padding-top: clamp(4rem, 2.239rem + 4.695vw, 9rem);
  padding-bottom: clamp(0rem, -0.352rem + 0.939vw, 1rem);
  margin-left: calc(-1 * clamp(0rem, -3.521rem + 9.39vw, 10rem));
  position: relative;
}
.sect-wlb__head__illust .illust-staffs {
  position: relative;
  z-index: 1;
  transform-origin: center bottom;
  will-change: transform, opacity;
}
.sect-wlb__head__illust::after {
  content: "";
  display: inline-block;
  width: 100vw;
  height: auto;
  aspect-ratio: 1425/34;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url(../img/deco_wlb_gizagiza_pink.svg);
  position: absolute;
  bottom: 0;
  right: calc(-1 * clamp(1.2rem, -0.49rem + 4.507vw, 6rem));
  z-index: 0;
}
.sect-wlb__head:not(.is-framein) {
  opacity: 0;
}
.sect-wlb__head:not(.is-framein) .illust-staffs {
  translate: 0 -60px;
  opacity: 0;
}
.sect-wlb__head.is-framein .illust-staffs {
  animation: initStaffsAnimation 1.5s ease;
}
@keyframes initStaffsAnimation {
  0% {
    translate: 0 -60px;
    opacity: 0;
  }
  30% {
    translate: 0 5px;
    opacity: 0.5;
    scale: 1.025 0.9;
  }
  60% {
    translate: 0 0;
    opacity: 1;
    scale: 1 1;
  }
  100% {
    translate: 0 0;
    opacity: 1;
    scale: 1 1;
  }
}
.sect-wlb__body {
  flex: 5;
  padding-top: clamp(2rem, 0.592rem + 3.756vw, 6rem);
}
.sect-wlb__body .text-lead {
  font-weight: 400;
  line-height: 2.2;
}
.sect-wlb__body .btn-link {
  margin-left: auto;
}
.sect-wlb__dlfiles .items-dlfiles {
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
}

.sect-overview {
  padding-top: clamp(6rem, 2.479rem + 9.39vw, 16rem);
}
.sect-overview__inner {
  padding-top: clamp(6rem, 3.183rem + 7.512vw, 14rem);
  max-width: 1000px;
  position: relative;
}
.sect-overview__inner::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: auto;
  aspect-ratio: 949/21;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url(../img/deco_overview_top_nami.svg);
  position: absolute;
  top: 0;
  left: 0;
  background-size: cover;
}
.sect-overview__title {
  text-align: center;
}
.sect-overview__title .ja-ttl {
  font-size: clamp(2.4rem, 1.977rem + 1.127vw, 3.6rem);
  font-size: var(--font-size-xl2);
}
.sect-overview__title .en {
  color: #00a468;
}
.sect-overview__body {
  display: flex;
  gap: clamp(2rem, 1.296rem + 1.878vw, 4rem);
}
.sect-overview__table {
  flex: 5;
  flex-shrink: 0;
}
.sect-overview__map {
  flex: 4;
  border-radius: clamp(2rem, 1.648rem + 0.939vw, 3rem);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  align-self: stretch;
}
.sect-overview__map > * {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.sect-aboutus-links {
  padding-top: clamp(8rem, 5.887rem + 5.634vw, 14rem);
}
.sect-aboutus-links .box-complaint {
  border: solid clamp(0.2rem, 0.165rem + 0.094vw, 0.3rem) #f8a487;
  border-radius: clamp(3rem, 2.648rem + 0.939vw, 4rem);
  border-radius: var(--radius-xl);
  padding: clamp(3rem, 2.296rem + 1.878vw, 5rem) clamp(2rem, -1.873rem + 10.329vw, 13rem);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, -0.113rem + 5.634vw, 8rem);
}
.sect-aboutus-links .box-complaint__head {
  flex-shrink: 0;
}
.sect-aboutus-links .box-complaint__title {
  display: grid;
  align-items: center;
  justify-items: center;
  place-items: center;
  font-size: clamp(2rem, 1.718rem + 0.751vw, 2.8rem);
  font-size: var(--font-size-xl);
  grid-gap: 0.5em;
  gap: 0.5em;
  padding-left: 20px;
  padding-right: 20px;
}
.sect-aboutus-links .box-complaint__title .icon-illust {
  width: 5em;
  height: auto;
}
.sect-aboutus-links .box-complaint__title .title-ja {
  color: #73b333;
  letter-spacing: 0.2em;
}
.sect-aboutus-links .box-complaint__body .text-lead {
  line-height: 2.2;
  font-weight: 400;
}

.sect-power2nature {
  padding-top: clamp(8rem, 5.535rem + 6.573vw, 15rem);
}
.sect-power2nature__inner {
  max-width: 1000px;
}
.sect-power2nature__head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(3rem, 1.239rem + 4.695vw, 8rem);
  max-width: 752px;
  margin-left: auto;
  margin-right: auto;
  flex-wrap: wrap;
}
.sect-power2nature__head .title {
  flex-shrink: 0;
}
.sect-power2nature__head .title img {
  width: clamp(14rem, 11.746rem + 6.009vw, 20.4rem);
  height: auto;
}
.sect-power2nature__head .text-lead {
  line-height: 2;
  flex-basis: 0;
  flex-grow: 999;
  min-width: 20em;
}
.box-power2nature + .box-power2nature {
  margin-top: clamp(4rem, 2.592rem + 3.756vw, 8rem);
}
.box-power2nature__head {
  max-width: 752px;
  margin-left: auto;
  margin-right: auto;
}
.box-power2nature__title {
  display: flex;
  align-items: center;
  justify-content: center;
  grid-template-columns: 1.5em 1fr;
  font-size: clamp(2rem, 1.437rem + 1.502vw, 3.6rem);
  letter-spacing: 0.1em;
  padding-left: 1em;
  padding-right: 1em;
}
.box-power2nature__title .number {
  flex-shrink: 0;
  color: #fff;
  background-color: #aaa;
  border-radius: 50%;
  width: 1.5em;
  aspect-ratio: 1/1;
  height: auto;
  display: grid;
  align-content: center;
  justify-content: center;
  place-content: center;
  margin-right: 0.65em;
  padding-left: 0.1em;
}
.box-power2nature__title .text {
  display: inline-block;
}
.box-power2nature__title strong {
  font-weight: 700;
  color: #aaa;
  display: inline-block;
}
.box-power2nature__lead {
  line-height: 2;
  max-width: 44em;
  margin-left: auto;
  margin-right: auto;
}
.box-power2nature:nth-child(4n+1) .box-power2nature__title .number {
  background-color: #fb8787;
}
.box-power2nature:nth-child(4n+1) .box-power2nature__title strong {
  color: #fb8787;
}
.box-power2nature:nth-child(4n+1) .items-power2nature .item__text .title {
  background-color: #fb8787;
}
.box-power2nature:nth-child(4n+2) .box-power2nature__title .number {
  background-color: #71b8ee;
}
.box-power2nature:nth-child(4n+2) .box-power2nature__title strong {
  color: #71b8ee;
}
.box-power2nature:nth-child(4n+2) .items-power2nature .item__text .title {
  background-color: #71b8ee;
}
.box-power2nature:nth-child(4n+3) .box-power2nature__title .number {
  background-color: #f9bd44;
}
.box-power2nature:nth-child(4n+3) .box-power2nature__title strong {
  color: #f9bd44;
}
.box-power2nature:nth-child(4n+3) .items-power2nature .item__text .title {
  background-color: #f9bd44;
}
.box-power2nature:nth-child(4n+4) .box-power2nature__title .number {
  background-color: #6fbf4d;
}
.box-power2nature:nth-child(4n+4) .box-power2nature__title strong {
  color: #6fbf4d;
}
.box-power2nature:nth-child(4n+4) .items-power2nature .item__text .title {
  background-color: #6fbf4d;
}

.sect-schedule {
  padding-top: clamp(8rem, 3.775rem + 11.268vw, 20rem);
  overflow: visible;
}
.sect-schedule__title {
  text-align: center;
}
.sect-schedule__title .ja-ttl {
  font-size: clamp(2.4rem, 1.977rem + 1.127vw, 3.6rem);
  font-size: var(--font-size-xl2);
}
.sect-schedule__title .illust-walking-kids {
  aspect-ratio: 22/15;
  width: clamp(14rem, 11.887rem + 5.634vw, 20rem);
  height: auto;
  pointer-events: none;
  background-image: url(../img/walking-kids-3frame.png);
  background-size: 300% 100%;
  background-position: 0 0;
  animation: walking-frame-2 3s steps(2) infinite, waking-kids-2 3s linear infinite;
}
@keyframes walking-frame-2 {
  0%, 100% {
    background-position: 0% 0;
  }
  50% {
    background-position: 100% 0;
  }
}
@keyframes waking-kids-2 {
  0% {
    translate: 0% 0%;
  }
  25% {
    translate: 5% 0%;
  }
  50% {
    translate: 0% 0%;
  }
  75% {
    translate: 5% 0%;
  }
  100% {
    translate: 0% 0%;
  }
}
.sect-schedule__inner {
  display: flex;
  gap: clamp(3rem, 0.887rem + 5.634vw, 9rem);
  max-width: 1280px;
}
.sect-schedule__inner > * {
  flex: 1;
}
.sect-schedule__head {
  position: sticky;
  top: calc(100px + clamp(4rem, 3.296rem + 1.878vw, 6rem));
  left: 0;
  align-self: flex-start;
  background-color: #00a468;
  color: #fff;
  border-top-right-radius: clamp(3rem, 2.648rem + 0.939vw, 4rem);
  border-top-right-radius: var(--radius-xl);
  border-bottom-right-radius: clamp(3rem, 2.648rem + 0.939vw, 4rem);
  border-bottom-right-radius: var(--radius-xl);
}
.sect-schedule__head__inner {
  max-width: 580px;
  margin-left: auto;
  padding-left: clamp(3rem, 0.887rem + 5.634vw, 9rem);
  padding-right: clamp(3rem, 0.887rem + 5.634vw, 9rem);
  padding-top: clamp(3rem, 1.239rem + 4.695vw, 8rem);
  padding-bottom: clamp(3rem, 1.239rem + 4.695vw, 8rem);
}
.sect-schedule__head::after {
  content: "";
  display: block;
  position: absolute;
  width: 50vw;
  height: 100%;
  transform: rotate(0deg);
  background-color: #00a468;
  position: absolute;
  top: 0;
  right: calc(100% - 1px);
}
.sect-schedule__head .text-lead {
  line-height: 2;
}
.sect-schedule__body > * + * {
  margin-top: clamp(6rem, 5.296rem + 1.878vw, 8rem);
}
.sect-schedule__body .timeline-wrapper {
  position: relative;
}
.sect-schedule__body .timeline-wrapper .ttl-timeline {
  margin-left: -1.25em;
  font-size: clamp(1.8rem, 1.589rem + 0.563vw, 2.4rem);
  display: flex;
  align-items: center;
  gap: 0.5em;
  padding-top: 1.5em;
  padding-bottom: 1.5em;
}
.sect-schedule__body .timeline-wrapper .ttl-timeline__icon {
  height: 2.5em;
  width: auto;
  flex-shrink: 0;
}
.sect-seasonal-events {
  padding-top: clamp(8rem, 4.479rem + 9.39vw, 18rem);
}
.sect-seasonal-events__title {
  display: flex;
  align-items: center;
  gap: 1.75em;
}
.sect-seasonal-events__title .ja-ttl {
  font-size: clamp(2.4rem, 1.977rem + 1.127vw, 3.6rem);
  font-size: var(--font-size-xl2);
  writing-mode: vertical-rl;
  word-break: keep-all;
  letter-spacing: 0.2em;
}
.sect-seasonal-events__title .en {
  padding-top: 1.5em;
  color: #299dd5;
}
.sect-seasonal-events__head {
  max-width: 752px;
  margin-left: auto;
  margin-right: auto;
}
.sect-seasonal-events__head__illust {
  width: 100%;
  height: auto;
  overflow: hidden;
  pointer-events: none;
  position: relative;
  width: calc(100vw - 2 * 0px);
  margin-left: calc(50% - 50vw + 0px);
  margin-right: calc(50% - 50vw + 0px);
  max-width: none;
}
.sect-seasonal-events__head__illust .illust {
  pointer-events: none;
  width: 105%;
  height: auto;
  max-width: none;
}

.sect-food-education {
  padding-top: clamp(8rem, 3.775rem + 11.268vw, 20rem);
  padding-bottom: clamp(10rem, 6.479rem + 9.39vw, 20rem);
  background-color: #ffe278;
  overflow: hidden;
}
.sect-food-education__head__inner {
  position: relative;
}
.sect-food-education__bg-top {
  position: relative;
  width: calc(100vw - 2 * 0px);
  margin-left: calc(50% - 50vw + 0px);
  margin-right: calc(50% - 50vw + 0px);
  max-width: none;
  content: "";
  display: block;
  position: absolute;
  width: 100vw;
  height: 100vh;
  transform: rotate(0deg);
  background-color: #fff;
  bottom: 55%;
  left: 0;
  z-index: 0;
}
.sect-food-education__bg-top::after {
  width: calc(100vw - 2 * 0px);
  margin-left: calc(50% - 50vw + 0px);
  margin-right: calc(50% - 50vw + 0px);
  max-width: none;
  content: "";
  display: inline-block;
  width: 100vw;
  height: auto;
  aspect-ratio: 1440/41;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url(../img/deco_nami_white.svg);
  position: absolute;
  top: calc(100% - 2px);
  left: 50%;
  translate: -50% 0;
  background-size: cover;
  scale: 1 -1;
  z-index: 0;
}
.sect-food-education__mv {
  position: relative;
  z-index: 1;
  aspect-ratio: 1000/420;
  overflow: hidden;
  border-radius: clamp(2rem, 1.648rem + 0.939vw, 3rem);
  border-radius: var(--radius-lg);
}
.sect-food-education__mv img {
  transition: all 2s ease;
  transform-origin: top center;
  scale: 1.2;
}
.sect-food-education__mv.is-framein img {
  scale: 1;
}
.sect-food-education__body {
  margin-top: calc(clamp(4rem, -0.225rem + 11.268vw, 16rem) * -1);
  position: relative;
  z-index: 1;
}
.sect-food-education__body__inner {
  display: flex;
  align-items: flex-end;
  gap: clamp(4rem, 3.155rem + 2.254vw, 6.4rem);
  max-width: 1000px;
}
.sect-food-education__body .text-lead {
  line-height: 2;
  padding-bottom: 2em;
}
.sect-food-education__title {
  flex-shrink: 0;
  background-color: #fff;
  font-size: clamp(2.4rem, 1.977rem + 1.127vw, 3.6rem);
  font-size: var(--font-size-xl2);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: column;
  aspect-ratio: 1/1;
  height: auto;
  width: -moz-fit-content;
  width: fit-content;
  padding-left: 1.4em;
  padding-right: 1.4em;
  border-radius: 50%;
}
.sect-food-education__title .ja-ttl {
  font-size: clamp(2.4rem, 1.977rem + 1.127vw, 3.6rem);
  font-size: var(--font-size-xl2);
  letter-spacing: 0.2em;
}
.sect-food-education__title .en {
  margin-top: 0.25em;
  font-size: clamp(1.4rem, 1.33rem + 0.188vw, 1.6rem);
  font-size: var(--font-size-md);
  color: #dd5e1f;
}
.sect-food-education__title .icon-illust {
  margin-top: 0.75em;
  margin-bottom: -0.75em;
  width: 2em;
  height: auto;
}
.sect-food-education__foot__inner {
  max-width: 1000px;
}

.sect-facilities {
  padding-top: clamp(6rem, 4.592rem + 3.756vw, 10rem);
}
.sect-facilities__ttllead {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, -0.113rem + 5.634vw, 8rem) clamp(4rem, 1.183rem + 7.512vw, 12rem);
  flex-wrap: wrap;
}
.sect-facilities__title {
  flex-shrink: 0;
}
.sect-facilities__title .ja-ttl {
  font-size: clamp(2.4rem, 1.977rem + 1.127vw, 3.6rem);
  font-size: var(--font-size-xl2);
  letter-spacing: 0.2em;
}
.sect-facilities__title .en {
  margin-top: 0.25em;
  font-size: clamp(1.4rem, 1.33rem + 0.188vw, 1.6rem);
  font-size: var(--font-size-md);
  color: #00a83b;
}
.sect-facilities__lead {
  flex-basis: 0;
  flex-grow: 999;
  min-width: 30em;
  line-height: 2.2;
  letter-spacing: 0.1em;
  padding-bottom: 1.25em;
}

.sect-schoollife-links {
  padding-top: clamp(10rem, 7.183rem + 7.512vw, 18rem);
}

.page-head-business {
  padding-top: clamp(8rem, 6.592rem + 3.756vw, 12rem);
  padding-left: 20px;
  padding-right: 20px;
}
.page-head-business__inner {
  max-width: 1000px;
}
.page-head-business .box-lead-business {
  background-color: #fffbee;
  padding-left: clamp(4rem, 2.239rem + 4.695vw, 9rem);
  padding-right: clamp(4rem, 2.239rem + 4.695vw, 9rem);
  padding-top: clamp(3rem, 2.296rem + 1.878vw, 5rem);
  padding-bottom: clamp(3rem, 2.296rem + 1.878vw, 5rem);
  border-radius: clamp(2rem, 1.648rem + 0.939vw, 3rem);
  border-radius: var(--radius-lg);
  border: solid clamp(0.2rem, 0.165rem + 0.094vw, 0.3rem) #eeefef;
  line-height: 2.2;
  letter-spacing: 0.1em;
  position: relative;
}
.page-head-business .box-lead-business__illust {
  width: 8em;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  bottom: -3em;
  right: calc(clamp(0rem, -1.408rem + 3.756vw, 4rem) * -1);
}

.sect-business {
  padding-top: clamp(8rem, 5.887rem + 5.634vw, 14rem);
  overflow: hidden;
}
.sect-business__inner {
  max-width: 1000px;
}
.sect-business__title {
  font-size: clamp(1.8rem, 1.448rem + 0.939vw, 2.8rem);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  gap: 0.5em;
  width: -moz-fit-content;
  width: fit-content;
  padding-left: 0.5em;
  padding-right: 1em;
  padding-bottom: 0.35em;
  position: relative;
}
.sect-business__title::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: clamp(0.2rem, 0.165rem + 0.094vw, 0.3rem);
  transform: rotate(0deg);
  background-color: #52b775;
  bottom: 0;
  left: 0;
  border-radius: 3px;
}
.sect-business__title .icon {
  height: 1.5em;
  width: auto;
  flex-shrink: 0;
}
.sect-business__title .text {
  letter-spacing: 0.2em;
}
.sect-business__body {
  display: flex;
  align-items: flex-start;
  gap: clamp(3rem, 2.648rem + 0.939vw, 4rem);
}
.sect-business__body > * {
  flex: 1;
}
.sect-business__lead > * + * {
  margin-top: clamp(2rem, 1.648rem + 0.939vw, 3rem);
}
.sect-business__lead .text-lead {
  line-height: 2.2;
  letter-spacing: 0.1em;
}
.sect-business__lead .image {
  aspect-ratio: 3/2;
  border-radius: clamp(0.8rem, 0.518rem + 0.751vw, 1.6rem);
  border-radius: var(--radius-md);
}
.sect-business__details {
  width: 100%;
}
.sect-business__dlfiles .ttl-dlfiles {
  padding-left: 1em;
  padding-right: 1em;
  font-size: clamp(1.3rem, 1.265rem + 0.094vw, 1.4rem);
  font-size: var(--font-size-sm);
}
.sect-business__foot {
  width: calc(100vw - 2 * 0px);
  margin-left: calc(50% - 50vw + 0px);
  margin-right: calc(50% - 50vw + 0px);
  max-width: none;
}
.sect-business__foot .carousel-photo-loop .item.nth-even {
  margin-top: 40px;
}

.sect-guideline {
  padding-top: clamp(6rem, 4.592rem + 3.756vw, 10rem);
}
.sect-guideline__inner {
  max-width: 1000px;
}
.sect-guideline__head {
  max-width: 752px;
  margin-left: auto;
  margin-right: auto;
}
.sect-guideline__head .text-lead {
  line-height: 2.2;
}
.sect-guideline__head .illust {
  height: 3.5em;
  width: auto;
  margin-left: auto;
  margin-right: auto;
}
.sect-guideline__body {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.sum-capacity {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.5em;
}
.sum-capacity .ja-ttl {
  font-size: clamp(2rem, 1.718rem + 0.751vw, 2.8rem);
  font-size: var(--font-size-xl);
}
.sum-capacity .items-capacity {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1em 2em;
}
.sum-capacity .items-capacity .item {
  display: flex;
  align-items: center;
  gap: 1em;
  line-height: 1;
}
.sum-capacity .items-capacity .item dt {
  background-color: #fffdf1;
  border: solid 2px #eeeeee;
  font-weight: 600;
  padding: 0.5em 1.25em 0.55em;
}
.sum-capacity .items-capacity .item dd {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(2rem, 1.718rem + 0.751vw, 2.8rem);
  font-size: var(--font-size-xl);
  font-weight: 700;
  display: flex;
  align-items: flex-end;
  gap: 0.1em;
  padding-bottom: 0.2em;
}
.sum-capacity .items-capacity .item dd strong {
  color: #f68104;
  font-size: 1.85em;
}
.sum-capacity .items-capacity .item dd span {
  padding-bottom: 0.15em;
}

.items-classroom {
  width: 100%;
  display: grid;
  grid-gap: clamp(2rem, 1.014rem + 2.629vw, 4.8rem);
  gap: clamp(2rem, 1.014rem + 2.629vw, 4.8rem);
  grid-template-columns: repeat(auto-fill, minmax(min(220px, 100%), 1fr));
}
.items-classroom > * {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  grid-gap: 0;
  gap: 0;
  align-items: start;
}
.items-classroom > * {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.items-classroom .item {
  background-color: #fffdf1;
  border: solid 2px #eeeeee;
  text-align: center;
  aspect-ratio: 1/1;
  border-radius: 50%;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}
.items-classroom .item__icon {
  width: 75%;
}
.items-classroom .item__icon .icon {
  margin-left: auto;
  margin-right: auto;
}
.items-classroom .item__text {
  letter-spacing: 0.1em;
  padding-top: 0.5em;
}
.items-classroom .item__text .classroom__age strong {
  font-size: 1.5em;
}
.items-classroom .item__text .classroom__name {
  letter-spacing: 0.05em;
}
.items-classroom .item__text .capacity {
  font-size: clamp(1.6rem, 1.459rem + 0.376vw, 2rem);
  font-size: var(--font-size-lg);
}
.items-classroom .item__text .capacity strong {
  font-size: 2em;
  padding-right: 0.1em;
}

.sect-requirement {
  padding-top: clamp(4rem, 2.592rem + 3.756vw, 8rem);
  padding-bottom: clamp(8rem, 5.183rem + 7.512vw, 16rem);
  overflow-x: scroll;
}
.sect-requirement__inner {
  overflow-x: scroll;
}

.sect-procedure {
  background-color: #fff0b9;
  padding-top: clamp(6rem, 4.592rem + 3.756vw, 10rem);
  padding-bottom: clamp(8rem, 5.887rem + 5.634vw, 14rem);
  position: relative;
}
.sect-procedure::before {
  content: "";
  display: inline-block;
  width: calc(100vw + 40px);
  height: auto;
  aspect-ratio: 1440/89;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url(../img/deco_guide_edge_wave_2.svg);
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% -50%;
  scale: -1 1;
}
.sect-procedure__inner {
  max-width: 1000px;
}
.sect-procedure__title {
  font-size: clamp(2rem, 1.718rem + 0.751vw, 2.8rem);
  font-size: var(--font-size-xl);
  letter-spacing: 0.1em;
  padding-right: 1em;
  display: flex;
  align-items: center;
  gap: 0.75em;
  width: -moz-fit-content;
  width: fit-content;
}
.sect-procedure__title * {
  position: relative;
  z-index: 1;
}
.sect-procedure__title::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 0.5em;
  transform: rotate(0deg);
  background-color: #ffe278;
  position: absolute;
  bottom: 0em;
  left: 0;
  border-radius: 3px;
  z-index: 0;
}
.sect-procedure__title .icon {
  aspect-ratio: 1/1;
  width: 1em;
  height: auto;
  flex-shrink: 0;
  position: relative;
}
.sect-procedure__title .icon::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  background-size: contain;
}
.sect-procedure__title .icon._kai::before {
  background-image: url(../img/icon_ttl_kai.png);
  aspect-ratio: 89/180;
  width: 1.25em;
}
.sect-procedure__title .icon._hitode::before {
  background-image: url(../img/icon_ttl_hitode.png);
  aspect-ratio: 133/138;
  width: 2em;
  translate: -55% -50%;
}

.box-procedure {
  background-color: #fff;
  padding: clamp(3.2rem, 2.637rem + 1.502vw, 4.8rem);
  padding: var(--space-xl2);
  border-radius: clamp(2rem, 1.648rem + 0.939vw, 3rem);
  border-radius: var(--radius-lg);
}
.box-procedure__title {
  margin-bottom: clamp(1.6rem, 1.318rem + 0.751vw, 2.4rem);
  font-size: clamp(1.6rem, 1.318rem + 0.751vw, 2.4rem);
  display: flex;
  align-items: center;
  gap: 0.75em;
}
.box-procedure__title .icon {
  height: 2em;
  width: auto;
  flex-shrink: 0;
}
.box-procedure__title .main {
  font-weight: 700;
  letter-spacing: 0.1em;
}
.box-procedure__title .main .num {
  font-size: 1.5em;
  padding-right: 0.1em;
}
.box-procedure__title .sub {
  font-weight: 500;
  font-size: clamp(1.4rem, 1.33rem + 0.188vw, 1.6rem);
  font-size: var(--font-size-md);
}
.box-procedure__body .description {
  max-width: 100%;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  line-height: 2;
  font-weight: 400;
}
.box-procedure__body .description a {
  font-weight: 500;
  -webkit-text-decoration: underline;
  text-decoration: underline;
  color: #0095d0;
}
.box-procedure__body .btn-link {
  margin-top: clamp(2rem, 1.648rem + 0.939vw, 3rem);
  margin-left: auto;
}
.box-procedure + .box-procedure {
  margin-top: clamp(4rem, 3.648rem + 0.939vw, 5rem);
}

.sect-faq {
  background-color: #ffe278;
  padding-top: clamp(8rem, 6.592rem + 3.756vw, 12rem);
  padding-bottom: clamp(10rem, 8.592rem + 3.756vw, 14rem);
  position: relative;
}
.sect-faq::before, .sect-faq::after {
  content: "";
  display: inline-block;
  width: calc(100vw + 40px);
  height: auto;
  aspect-ratio: 1440/89;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url(../img/deco_guide_edge_wave.svg);
  position: absolute;
}
.sect-faq::before {
  top: 0;
  left: 50%;
  translate: -50% -50%;
}
.sect-faq::after {
  bottom: 0;
  left: 50%;
  translate: -50% 50%;
}
.sect-faq__inner {
  max-width: 752px;
}
.sect-faq__title {
  font-size: clamp(2.4rem, 1.977rem + 1.127vw, 3.6rem);
  font-size: var(--font-size-xl2);
  text-align: center;
}

.sect-enrollment-guide-links {
  padding-top: clamp(8rem, 5.887rem + 5.634vw, 14rem);
}

.sect-contents4family {
  padding-top: clamp(4rem, 2.592rem + 3.756vw, 8rem);
}
.sect-contents4family__inner {
  max-width: 752px;
}
.sect-contents4family .text-lead {
  line-height: 2.2;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.sect-post-kirakira {
  padding-top: clamp(4rem, 3.296rem + 1.878vw, 6rem);
}
.sect-post-kirakira__title {
  flex: 1;
  font-size: clamp(2.4rem, 1.977rem + 1.127vw, 3.6rem);
  font-size: var(--font-size-xl2);
  letter-spacing: 0.05em;
}
.sect-post-kirakira__head {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(3rem, 1.944rem + 2.817vw, 6rem);
  padding-top: 40px;
}
.sect-post-kirakira__head.is-locked {
  display: none;
}
.sect-post-kirakira__body {
  position: relative;
}
.sect-post-kirakira__body.is-locked {
  padding-top: clamp(6rem, 3.887rem + 5.634vw, 12rem);
}
.sect-post-kirakira__body.is-unlocked {
  margin-top: clamp(6rem, 5.296rem + 1.878vw, 8rem);
  padding-top: clamp(4rem, 3.296rem + 1.878vw, 6rem);
}
.sect-post-kirakira__body.is-unlocked::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: auto;
  aspect-ratio: 1140/15;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url(../img/deco_kirakira_festa_wave.svg);
  position: absolute;
  top: 0;
  left: 0%;
}
.sect-post-kirakira__body .wysiwyg-editor-content > *:not(.items-kirakira-movie) {
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
}
.sect-post-kirakira .nav-kirakira-index {
  max-width: 752px;
  margin-left: auto;
  margin-right: auto;
}
.sect-post-kirakira .nav-kirakira-index .ja-ttl {
  font-size: clamp(1.6rem, 1.459rem + 0.376vw, 2rem);
  font-size: var(--font-size-lg);
  text-align: center;
  color: #3cb3ea;
}
.sect-post-kirakira .nav-kirakira-index.is-locked {
  display: none;
}
.sect-post-kirakira .tbl-details {
  flex: 1;
}
.sect-post-kirakira .nav-breadcrumbs {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.sect-post-kirakira .box-caution {
  line-height: 2.2;
  font-size: clamp(1.3rem, 1.265rem + 0.094vw, 1.4rem);
  font-size: var(--font-size-sm);
  display: flex;
  align-items: center;
  padding: clamp(2.4rem, 2.118rem + 0.751vw, 3.2rem);
  padding: var(--space-xl);
  border: solid 2px #f5a200;
  border-radius: clamp(0.8rem, 0.518rem + 0.751vw, 1.6rem);
  border-radius: var(--radius-md);
  gap: 1em;
  flex-wrap: wrap;
}
.sect-post-kirakira .box-caution__icon {
  flex-shrink: 0;
  padding: clamp(1rem, -0.056rem + 2.817vw, 4rem);
  display: grid;
  align-content: center;
  justify-content: center;
  place-content: center;
  margin-left: auto;
  margin-right: auto;
}
.sect-post-kirakira .box-caution__icon icon {
  width: 4em;
  height: auto;
}
.sect-post-kirakira .box-caution__text {
  margin-top: 0.5em;
  flex-basis: 0;
  flex-grow: 999;
  min-width: min(20em, 100%);
}
.sect-post-kirakira .wysiwyg-editor-content {
  container-type: inline-size;
  container-name: wysiwyg-editor-content;
}
.sect-post-kirakira .wysiwyg-editor-content.is-locked {
  text-align: center;
}
.sect-post-kirakira .myblock-ttl-link2index {
  text-align: center;
  font-family: "Zen Maru Gothic", sans-serif;
  letter-spacing: 0.1em;
  margin-top: 5em;
  margin-bottom: 3em;
}
.sect-post-kirakira .myblock-ttl-link2index .text {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  font-size: clamp(2.4rem, 1.977rem + 1.127vw, 3.6rem);
  font-size: var(--font-size-xl2);
  gap: 0.35em;
}
.sect-post-kirakira .myblock-ttl-link2index .text::before, .sect-post-kirakira .myblock-ttl-link2index .text::after {
  flex-shrink: 0;
  content: "";
  display: inline-block;
  width: 1.4em;
  height: auto;
  aspect-ratio: 44/14;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url(../img/deco_ttl_link2index.svg);
  translate: 0% 15%;
}

.myblock-ttl-link2index {
  position: relative;
}

.sect-contact__inner {
  max-width: 752px;
}
.sect-only-text__inner {
  max-width: 800px;
}
.sect-only-text__inner > *:first-child {
  margin-top: 0;
}
.sect-only-text__inner > * {
  margin-top: 1em;
}
.sect-only-text__inner p {
  line-height: 2;
  font-weight: 400;
}
.sect-only-text__inner a {
  color: #0095d0;
  -webkit-text-decoration: underline;
  text-decoration: underline;
  font-weight: 500;
}
.sect-only-text__inner h2,
.sect-only-text__inner h3,
.sect-only-text__inner h4,
.sect-only-text__inner h5,
.sect-only-text__inner h6 {
  font-size: 1.5em;
  margin-top: 2em;
}
.sect-only-text__inner h2::first-letter {
  color: #06a9ea;
}

.sect-404__inner {
  max-width: 800px;
}
.sect-404 .txt-lead {
  font-weight: 400;
  line-height: 2;
}
@media screen and (min-width: 860px) {
  .inner._maxw-800 {
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (min-width: 1260px) {
  .inner._maxw-1200 {
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (max-width: 768px) {
  .l-header {
    background-color: #fff;
  }
  .l-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
  }
  .l-header.l-header-fixed {
    display: none;
  }
  .l-footer__foot::before {
    width: 200%;
  }
  .l-mv__sky .deco._cloud_1 {
    bottom: 30%;
    rotate: 2deg;
  }
  .l-mv__sky .deco._cloud_2 {
    right: 20%;
    bottom: 50%;
  }
  .l-mv__sky .deco._cloud_3 {
    bottom: 30%;
    rotate: -1deg;
  }
  .l-mv__sky .deco._cloud_4 {
    right: 20%;
    bottom: 50%;
  }
  .l-mv__sky .deco._sun {
    bottom: 50%;
  }
  .l-mv__sea .deco._fugu {
    bottom: 7.5%;
    left: 5%;
  }
  .l-mv__sea .deco._kani {
    right: 0.5%;
    bottom: 60%;
  }
  .l-mv__sea .deco._hitode {
    right: 5%;
    bottom: -5%;
  }
  .l-mv__sea .deco._kisu {
    left: -5%;
    bottom: 45%;
  }
  .l-mv__sea .deco._baby {
    left: -2%;
    bottom: 38%;
  }
  .l-mv__sea .deco._kai {
    right: 22%;
    bottom: -20%;
  }
  .l-mv__sea .deco._shell {
    right: -10%;
    bottom: -5%;
  }
  .l-mv__beach .deco._baketsu {
    left: 10%;
  }
  .l-mv__beach .deco._scop {
    top: 8%;
    left: 3%;
  }
  .l-mv__beach .deco._ukiwa {
    top: 5%;
    left: 22%;
    animation: none;
  }
  .l-mv-lv2page-a__inner {
    flex-direction: column-reverse;
  }
  .l-mv-lv2page-a__head {
    width: calc(100% - 60px);
    margin-left: auto;
    margin-right: auto;
  }
  .l-mv-lv2page-a__head::after {
    aspect-ratio: 1064/64;
    background-image: url(../img/deco_beach_wave_sp.svg);
    width: 100%;
  }
  .nav-global._in-header {
    display: none;
  }
  .wp-pager {
    justify-content: center;
  }
  .modal-illust__inner {
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 2em;
  }
  .modal-illust__inner .illust {
    width: calc(100vw - 2 * 4px);
    margin-left: calc(50% - 50vw + 4px);
    margin-right: calc(50% - 50vw + 4px);
    max-width: none;
  }
  .modal-illust__inner .illust-description .btn-link {
    margin-right: auto;
  }
  #modalVideo iframe {
    width: 95vw;
    height: 53.4375vw;
  }
  .items-schoollife .item__title {
    translate: 20% 20%;
  }
  .items-faq .item dt {
    gap: 0.75em;
  }
  .carousel-mvtop .items-mv-photo .item {
    aspect-ratio: 3/2;
  }
  .carousel-mvtop__pagination .swiper-pagination-bullet {
    background-color: #d9d9d9;
  }
  .carousel-facilities__pagination .swiper-pagination-bullet {
    background-color: #d9d9d9;
  }
  .js-accordion-body {
    transition-duration: 0.3s;
  }
  .c-marked-text > span {
    padding: 0.25em;
  }
  .c-loop-slider-by-over3child > * {
    animation-duration: 30s;
  }
  .u-only-pc,
br.u-only-pc,
img.u-only-pc {
    display: none !important;
  }
  .u-endpoint-of-linkto {
    top: -70px;
  }
  .with-nami-white-top::before {
    width: 200%;
    top: -10px;
  }
  .with-nami-white-bottom::after {
    width: 200%;
    bottom: -10px;
  }
  .init-animation .logo__mark .parts.ko2 .face-c {
    transition-delay: 1.94s;
  }
  .my-smf-container .msg-invalid {
    display: block;
    margin-top: max(40px, min(4.39238653vw, 60px));
    margin-bottom: max(40px, min(4.39238653vw, 60px));
    color: #ed8200;
    text-align: center;
  }
  .my-smf-container .smf-action {
    margin-top: 40px;
  }
  .l-main {
    padding-top: 70px;
  }
  .sect-top-aboutus__inner {
    flex-direction: column;
    align-items: center;
  }
  .sect-top-aboutus .c-ttl-section .ja-ttl__main {
    margin-left: auto;
    margin-right: auto;
  }
  .sect-top-aboutus__body {
    padding-top: 0;
  }
  .sect-top-aboutus__body .text-lead {
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
  .sect-top-aboutus__body .btn-link {
    margin-left: auto;
    margin-right: auto;
  }
  .sect-top-schoollife {
    padding-bottom: clamp(8rem, 6.592rem + 3.756vw, 12rem);
  }
  .sect-top-schoollife__inner .bg-globe {
    top: 0;
    left: 50%;
    translate: -50% -40%;
    width: 140%;
  }
  .sect-top-schoollife__head {
    flex-direction: column;
    align-items: center;
  }
  .sect-top-schoollife__head .c-ttl-section .icon-illust {
    translate: 35% -80%;
    animation: walking-frame 2.5s steps(2) infinite, waking-kids-sp 2.5s linear infinite;
  }
  .sect-top-schoollife__title {
    margin-left: auto;
    margin-right: auto;
  }
  .sect-top-guide__mv {
    aspect-ratio: 3/2;
  }
  .sect-top-guide__body {
    flex-direction: column;
    align-items: center;
  }
  .sect-top-news__bg-top::after {
    background-size: 200%;
    aspect-ratio: 1440/82;
  }
  .sect-top-news__inner {
    flex-direction: column;
  }
  .sect-top-links .box-top-recruit {
    flex-direction: column;
  }
  .sect-top-links .box-top-recruit__title .icon-illust {
    margin-top: -20%;
  }
  .sect-top-links .box-top-recruit__body {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
  }
  .sect-top-links .box-top-recruit__body img:nth-child(1) {
    grid-area: 1/1/2/2;
  }
  .sect-top-links .box-top-recruit__body img:nth-child(2) {
    grid-area: 1/2/2/3;
  }
  .sect-top-links .box-top-recruit__body img:nth-child(3) {
    grid-area: 2/1/3/3;
  }
  .sect-3goals__head__mask {
    aspect-ratio: 16/9;
  }
  .sect-message__bg-top::after {
    background-size: 200%;
    aspect-ratio: 1440/82;
  }
  .sect-message__signature {
    justify-content: center;
  }
  .sect-wlb__inner {
    flex-direction: column;
  }
  .sect-wlb__title {
    text-align: center;
  }
  .sect-wlb__head {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  .sect-wlb__head__illust::after {
    width: 250vw;
    bottom: -4px;
  }
  .sect-overview__body {
    flex-direction: column-reverse;
  }
  .sect-overview__map {
    aspect-ratio: 1/1;
  }
  .sect-aboutus-links .box-complaint {
    flex-direction: column;
  }
  .sect-aboutus-links .box-complaint__body .btn-link {
    margin-left: auto;
    margin-right: auto;
  }
  .sect-seasonal-events__title {
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
  .sect-seasonal-events__head__illust .illust {
    width: 200%;
  }
  .sect-seasonal-events__body {
    padding-left: 20px;
    padding-right: 20px;
  }
  .sect-food-education__bg-top::after {
    width: 200vw;
  }
  .sect-food-education__mv {
    aspect-ratio: 3/2;
    width: calc(100vw - 2 * 0px);
    margin-left: calc(50% - 50vw + 0px);
    margin-right: calc(50% - 50vw + 0px);
    max-width: none;
    border-radius: 0;
  }
  .sect-food-education__body__inner {
    flex-direction: column;
    align-items: center;
  }
  .sect-food-education__body .text-lead {
    padding-bottom: 0;
  }
  .sect-facilities__title {
    text-align: center;
  }
  .sect-facilities__lead {
    padding-bottom: 0;
    min-width: 20em;
  }
  .page-head-business .box-lead-business__illust {
    width: 7em;
    bottom: -7em;
  }
  .items-classroom {
    grid-template-columns: repeat(auto-fill, minmax(min(160px, 100%), 1fr));
  }
  .items-classroom .item {
    max-width: 200px;
  }
  .items-classroom .item__icon {
    width: 60%;
  }
  .sect-procedure__title {
    margin-left: auto;
    margin-right: auto;
  }
  .box-procedure__body .btn-link {
    margin-left: auto;
    margin-right: auto;
  }
  .sect-post-kirakira__head {
    flex-direction: column;
    padding-left: 20px;
    padding-right: 20px;
  }
  .sect-post-kirakira__body.is-unlocked::before {
    background-image: url(../img/deco_kirakira_festa_wave_sp.svg);
    aspect-ratio: 625/15;
  }
  .sect-post-kirakira .nav-kirakira-index {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (min-width: 768.1px) {
  .l-header__inner {
    height: 140px;
  }
  .l-drawer {
    display: none;
  }
  .l-mv__sea__inner {
    padding-right: clamp(4rem, 3.296rem + 1.878vw, 6rem);
  }
  .l-mv-lv2page-a__head .title-ja {
    letter-spacing: 0.2em;
    writing-mode: vertical-rl;
  }
  .l-mv-lv2page-a__body {
    width: calc(100% - (50% - 50vw) - 0px);
    margin-right: calc(50% - 50vw + 0px);
    max-width: none;
    border-bottom-left-radius: clamp(3rem, 2.648rem + 0.939vw, 4rem);
    border-bottom-left-radius: var(--radius-xl);
    border-top-left-radius: clamp(3rem, 2.648rem + 0.939vw, 4rem);
    border-top-left-radius: var(--radius-xl);
  }
  .btn-link {
    min-width: 9em;
  }
  .btn-menu-open,
.btn-menu-close {
    display: none;
  }
  .modal-illust__inner .illust {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
  }
  .tbl-vertical-when-sp {
    writing-mode: inherit;
  }
  .u-only-sp,
br.u-only-sp,
img.u-only-sp {
    display: none !important;
  }
  .u-mt-onlysp10 {
    margin-top: 0;
  }
  .u-mt-onlysp20 {
    margin-top: 0;
  }
  .biz-calendar-custom #biz_calendar table.bizcal {
    padding: 0.8em;
  }
  .biz-calendar-custom #biz_calendar table.bizcal td {
    padding: 1.5em 0;
  }
  .biz-calendar-custom #biz_calendar table.bizcal td.today::after {
    top: 65%;
  }
  .biz-calendar-custom #biz_calendar table.bizcal .calbtn {
    transform: translateX(55%);
  }
  .my-smf-container textarea {
    height: 15em;
  }
  .my-smf-container .smf-action .smf-button-control__control {
    min-width: 9em;
  }
  .sect-wlb__head {
    position: sticky;
    top: calc(100px + clamp(2rem, 1.296rem + 1.878vw, 4rem));
  }
  .sect-overview__map {
    min-width: 300px;
  }
  .box-power2nature__title {
    padding-left: 0em;
  }
}
@media screen and (max-width: 600px) {
  .l-footer__inner::before {
    background-size: contain;
    background-image: url(../img/deco_footer_gizagiza_sp.svg);
    aspect-ratio: 573/32;
  }
  .sect-philosophy__title {
    align-content: end;
    justify-content: center;
    place-content: end center;
    padding-bottom: 0.5em;
  }
  .sect-philosophy__title__inner {
    translate: 0 0;
  }
}
@media screen and (max-width: 500px) {
  .l-drawer {
    background-color: #fff;
    width: 100%;
  }
  .l-mv-lv2page-b__inner::after {
    background-image: url(../img/deco_mv_lv2page_b_sp.svg);
    aspect-ratio: 570/39;
    max-width: calc(100% - 40px);
  }
  .nav-global {
    flex-direction: column;
  }
  .nav-global .items-nav-global {
    flex-direction: column;
    align-items: flex-start;
  }
  .nav-global .items-nav-global > .item > a {
    flex-direction: row;
    gap: clamp(1rem, 0.648rem + 0.939vw, 2rem);
  }
  .nav-global .items-nav-global > .item > a .item__text {
    font-size: clamp(1.4rem, 1.33rem + 0.188vw, 1.6rem);
    font-size: var(--font-size-md);
  }
  .nav-global .items-nav-global > .item > a::before {
    width: 4.5em;
  }
  .nav-global .items-nav-global > .item._aboutus a::before {
    translate: 3% 0;
  }
  .nav-global .items-nav-global > .item._childcare a::before {
    translate: -5% 0;
  }
  .nav-global .items-nav-global > .item._guide a::before {
    translate: 3% 0;
  }
  .items-power2nature .item__text {
    min-width: 100%;
  }
  .items-3goals .item {
    width: calc(100% - 40px);
  }
  .items-wlb-certs .item {
    display: grid;
    align-items: center;
    justify-items: center;
    place-items: center;
  }
  .items-wlb-certs .item__text .title {
    text-align: center;
  }
  .tbl-overview tr * {
    display: block;
  }
  .tbl-overview tr th {
    padding-left: 0;
    padding-right: 0;
  }
  .tbl-overview tr td {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }
  .sect-3goals__body::after {
    aspect-ratio: 1440/60;
  }
  .sect-power2nature__head .text-lead {
    min-width: 100%;
  }
  .page-head-business {
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 1024px) {
  .nav-global .items-nav-global > .item > a::before {
    width: 5em;
  }
  .nav-global .items-nav-global._in-header {
    gap: 0;
  }
  .nav-global .items-nav-global._in-header > .item > a .item__text {
    display: none;
  }
}
@media screen and (max-width: 1200px) {
  .nav-global .items-nav-global._in-header > .item > a .item__icon {
    width: 5em;
  }
}
@media screen and (max-width: 580px) {
  .items-facility {
    padding-left: 20px;
    padding-right: 20px;
  }
  .items-facility._pickup {
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (max-width: 700px) {
  .items-food-education .item {
    padding-bottom: 0;
  }
  .items-food-education .item:nth-child(odd) .item__inner {
    flex-direction: column;
  }
  .items-food-education .item:nth-child(odd) .item__text {
    padding-right: 20px;
  }
  .items-food-education .item:nth-child(even) .item__inner {
    flex-direction: column;
  }
  .items-food-education .item:nth-child(even) .item__text {
    padding-left: 20px;
  }
  .items-food-education .item__image {
    aspect-ratio: 1/1;
    height: auto;
    margin-bottom: -7.5%;
  }
}
@media screen and (max-width: 900px) {
  .items-faq__title {
    translate: 0 0;
    position: relative;
    top: auto;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 375px) {
  .my-smf-container .snow-monkey-form .nav-progress .item {
    padding-left: 1.5em;
    padding-right: 1.5em;
  }
}
@media screen and (max-width: 640px) {
  .sect-3goals__title {
    margin-left: auto;
    margin-right: auto;
    translate: 15% 0;
  }
  .sect-3goals__body__inner {
    flex-direction: column;
    gap: clamp(4rem, 3.296rem + 1.878vw, 6rem);
  }
  .sect-3goals__body .text-lead {
    padding-top: 0;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
  .sect-3goals__body__deco {
    top: 50%;
    right: calc(100% - 120px);
  }
}
@media screen and (max-width: 750px) {
  .sect-schedule__inner {
    flex-direction: column;
  }
  .sect-schedule__head {
    position: relative;
    top: auto;
    left: auto;
    border-top-left-radius: clamp(3rem, 2.648rem + 0.939vw, 4rem);
    border-top-left-radius: var(--radius-xl);
    border-bottom-left-radius: clamp(3rem, 2.648rem + 0.939vw, 4rem);
    border-bottom-left-radius: var(--radius-xl);
  }
  .sect-schedule__head__inner {
    max-width: 100%;
    padding-left: calc(20px * 2);
    padding-right: calc(20px * 2);
  }
  .sect-schedule__head::after {
    content: none;
  }
  .sect-schedule__body {
    padding-left: calc(20px * 1);
    padding-right: calc(20px * 1);
  }
}
@media screen and (max-width: 800px) {
  .sect-business__body {
    flex-direction: column;
  }
}
@media screen and (max-width: 810px) {
  .sect-requirement .tbl-requirements._pc {
    display: none;
  }
  .sect-requirement .tbl-requirements._mobile {
    display: table;
  }
}
@media screen and (min-width: 810px) {
  .sect-requirement .tbl-requirements._pc {
    display: table;
  }
  .sect-requirement .tbl-requirements._mobile {
    display: none;
  }
}
/*# sourceMappingURL=maps/main.css.map */
