@charset "UTF-8";
@import url(https://cdn.jsdelivr.net/npm/destyle.css@4.0.1/destyle.min.css);
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Poppins:wght@500&family=Zen+Kaku+Gothic+New:wght@400;500;700;900&display=swap");
@import url("https://use.typekit.net/tpb1val.css");
@import url("https://fonts.googleapis.com/css2?family=Lexend+Zetta:wght@100..900&display=swap");
html {
  font-size: 62.5%;
}
@media screen and (max-width: 1330px) {
  html {
    font-size: calc(10px + (var(--vw, 1vw) * 100 - 1330px) / 133);
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: calc(10px + (var(--vw, 1vw) * 100 - 767px) / 76.7);
  }
}
@media screen and (max-width: 520px) {
  html {
    font-size: calc(10px + (var(--vw, 1vw) * 100 - 375px) / 37.5);
  }
}

.is-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .is-sp {
    display: block;
  }
}

.is-pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .is-pc {
    display: none !important;
  }
}

.is-pc--mid {
  display: block;
}
@media screen and (max-width: 1280px) {
  .is-pc--mid {
    display: none !important;
  }
}

:root {
  --text-base: 1.6rem;
  --color-white: #fff;
  --color-black: #2c3132;
  --color-gray: #8e8c8c;
  --color-pink: #ef8a9c;
  --color-orange: #fc9b00;
  --color-red: #d33a3a;
  --primary-color: #fd8735;
  --secondary-color: #ffe057;
  --bg-base: #fff;
  --bg-cream: #fff8f2;
  --font-noto-san: "Noto Sans JP", sans-serif;
  --font-noto-serif: "Noto Serif JP", serif;
  --font-zen-kaku: "Zen Kaku Gothic New", sans-serif;
  --font-poppins: "Poppins", sans-serif;
  --font-antonio: "Antonio", sans-serif;
  --font-din: "din-2014", sans-serif;
  --font-lz: "Lexend Zetta", sans-serif;
  --font-AcuminVariableConcept: "Acumin Variable Concept", sans-serif;
  --sec-padding: 6.4rem 0;
  --pb-64: 6.4rem;
  --pb-32: 3.2rem;
}
@media screen and (max-width: 520px) {
  :root {
    --sec-padding: 4.4rem 0;
    --text-base: 1.4rem;
  }
}

img {
  width: 100%;
  vertical-align: top;
}

body {
  font-family: var(--font-zen-kaku);
  color: var(--color-black);
  background-color: var(--primary-color);
  font-size: var(--text-base);
  font-weight: 500;
  line-height: 2;
  padding: 2rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media screen and (max-width: 520px) {
  body {
    padding: 0.5rem;
  }
}

body.js-loading {
  padding: 0;
  opacity: 0;
  transition: opacity 1s ease;
  background: var(--bg-base);
}

body {
  opacity: 1;
}

.l-header {
  background: var(--primary-color);
  position: sticky;
  display: block;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
}
.l-header.scrolled {
  padding-top: 2rem;
}
@media screen and (max-width: 520px) {
  .l-header.scrolled {
    padding-top: 0.5rem;
  }
}

.l-main {
  width: 100%;
  min-height: 80vh;
  background: var(--color-white);
  overflow: hidden;
}

.l-footer {
  width: 100%;
}

.l-inner {
  max-width: min(120rem, 100% - 4rem);
  margin: 0 auto;
}
.l-inner--large {
  max-width: min(1330px, 100% - 4rem);
  margin: 0 auto;
}
.l-inner--small {
  max-width: min(100rem, 100% - 4rem);
  margin: 0 auto;
}
.l-inner--xsmall {
  max-width: min(1200px, 100% - 40px);
  margin: 0 auto;
}
.l-inner--right {
  max-width: min(120rem + (100% - 120rem) / 2, 100% - 5rem);
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .l-inner--right {
    max-width: calc(100% - 4rem);
    margin: 0 auto;
  }
}
.l-inner--left {
  max-width: min(120rem + (100% - 120rem) / 2, 100% - 5rem);
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .l-inner--left {
    max-width: calc(100% - 4rem);
    margin: 0 auto;
  }
}

.c-btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  color: var(--color-black);
  background-color: var(--secondary-color);
  border: 0.2rem solid var(--secondary-color);
  text-align: center;
  min-width: 32rem;
  width: fit-content;
  height: 6rem;
  border-radius: 999rem;
  transition: all 0.3s ease;
}
.c-btn::after {
  position: absolute;
  right: 1em;
  top: 50%;
  transform: translateY(-50%);
  content: "\f0da";
  font-size: 2.4rem;
  font-family: "Font Awesome 5 Free";
}
.c-btn:hover {
  background: var(--color-white);
}
@media screen and (max-width: 767px) {
  .c-btn {
    font-size: max(15px, 1.8rem);
  }
}
@media screen and (max-width: 520px) {
  .c-btn {
    font-size: max(15px, 1.5rem);
  }
}
.c-btn.-center {
  margin: 0 auto;
}

.c-title--top {
  position: relative;
  font-size: 3.2rem;
  font-weight: 700;
  text-align: center;
  padding-bottom: 6.4rem;
  width: fit-content;
}
@media screen and (max-width: 520px) {
  .c-title--top {
    font-size: 2.4rem;
    padding-bottom: 3.2rem;
  }
}
.c-title--top.-center {
  margin: 0 auto;
}
.c-title--top::before {
  content: "";
  position: absolute;
  display: block;
  width: 14rem;
  height: 10rem;
  top: -5rem;
  left: -7rem;
  background: url(/assets/images/top/title-deco.webp) no-repeat center center;
  background-size: contain;
}
@media screen and (max-width: 520px) {
  .c-title--top::before {
    width: 10.5rem;
    height: 7.5rem;
    top: -3rem;
    left: -5rem;
  }
}

.c-title {
  position: relative;
  width: fit-content;
  font-size: 3.2rem;
  font-weight: 700;
  padding-bottom: 6.4rem;
}
@media screen and (max-width: 520px) {
  .c-title {
    font-size: 2.4rem;
    padding-bottom: 3.2rem;
  }
}
.c-title.-center {
  margin: 0 auto;
}
.c-title.-right::after {
  content: "";
  display: block;
  width: 4.1rem;
  height: 3.1rem;
  background: url(/assets/images/common/title-deco01.webp) no-repeat center center;
  background-size: contain;
  position: absolute;
  top: -1rem;
  right: -3rem;
}
.c-title.-left::after {
  content: "";
  display: block;
  width: 4.1rem;
  height: 3.1rem;
  background: url(/assets/images/common/title-deco02.webp) no-repeat center center;
  background-size: contain;
  position: absolute;
  top: -1rem;
  left: -4rem;
}

.c-section__title {
  padding-bottom: 3.2rem;
}
.c-section__title--en {
  font-size: 5rem;
  font-weight: 700;
  padding-bottom: 1.2rem;
  line-height: 1.5;
  letter-spacing: 0.3rem;
}
@media screen and (max-width: 520px) {
  .c-section__title--en {
    line-height: 1.25;
  }
}
.c-section__title--ja {
  font-family: var(--font-noto-san);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.js-image img {
  opacity: 0;
  transform: scale(1.1); /* 初期状態を少し大きくしておく */
  transition: transform 0.3s ease;
}

.js-image figure {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.js-image figure::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background: #1f5b6c;
}

.js-image.move figure::before {
  animation: barAnime forwards 1.5s 1 cubic-bezier(0.165, 0.84, 0.44, 1) 0.1s normal;
}

.js-image figure img {
  opacity: 0;
  transform: scale(1.1);
}

.js-image.move figure img {
  animation: photoAnime forwards 1.5s 1 cubic-bezier(0.165, 0.84, 0.44, 1) 0.7s normal;
}

@keyframes barAnime {
  0% {
    left: 0;
    width: 0;
  }
  50% {
    left: 0;
    width: 100%;
  }
  100% {
    left: 100%;
    width: 0;
  }
}
@keyframes photoAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.js-title .line {
  overflow: hidden;
}

.js-concept-detail {
  opacity: 0; /* 完全に非表示に設定 */
  transform: translateY(20px); /* 下に少しずらして非表示にする */
}

.c-psItem {
  background-color: var(--color-white);
  padding: 1.6rem 2rem 2rem 4.5rem;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 520px) {
  .c-psItem {
    flex-direction: column;
    align-items: center;
    gap: 1.4rem;
    padding: 3.7rem 2rem;
  }
}
.c-psItem__title {
  font-family: var(--font-noto-san);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--primary-color);
  padding: 2rem 0 2.4rem;
}
@media screen and (max-width: 520px) {
  .c-psItem__title {
    padding: 0 0 2.4rem;
  }
}
.c-psItem__text {
  font-family: var(--font-noto-san);
  padding-bottom: 2.4rem;
}
.c-psItem__list {
  display: grid;
  grid-template-columns: repeat(2, 16rem);
  gap: 0 3rem;
}
@media screen and (max-width: 520px) {
  .c-psItem__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.c-psItem__list-item {
  font-family: var(--font-noto-san);
}
.c-psItem__list-item::before {
  content: "●";
  padding-right: 0.2em;
}
.c-psItem__list-head {
  background-color: var(--primary-color);
  color: var(--color-white);
  padding: 0 1.5em;
  width: fit-content;
  border-radius: 999px;
  margin-bottom: 1.4rem;
}
.c-psItem__image {
  max-width: 36.8rem;
  padding: 1.2rem 2rem;
  background-color: #dcebda;
}
.c-psItem--r {
  display: flex;
  justify-content: center;
  align-items: center;
}

.p-ps__head .l-inner {
  position: relative;
}

.p-ep__head .l-inner {
  position: relative;
}

.p-privacy__head .l-inner {
  position: relative;
}

.js-ac-btn {
  --ac-width: 5.6rem;
  --rotate: 90deg;
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  display: block;
  width: var(--ac-width);
  height: var(--ac-width);
  background-color: #333333;
  border-radius: 999px;
  cursor: pointer;
  display: grid;
  place-items: center;
}
@media screen and (max-width: 520px) {
  .js-ac-btn {
    position: absolute;
    transform: translateY(0);
    right: 0;
    top: calc(100% + 4.4rem);
  }
}
@media screen and (max-width: 520px) {
  .js-ac-btn.--center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: calc(100% + 4.4rem);
  }
}
.js-ac-btn span {
  display: block;
  width: 40%;
  height: 0.25rem;
  background-color: #fff;
  grid-area: 1/1/-1/-1;
  transition: all 0.3s ease;
}
.js-ac-btn span:nth-of-type(1) {
  rotate: calc(var(--rotate) * -1);
}
.js-ac-btn.is-open {
  --rotate: 0deg;
}
.js-ac-btn.--white {
  background-color: #fff;
}
.js-ac-btn.--white span {
  background-color: #333333;
}

@media screen and (max-width: 520px) {
  .js-ac-head {
    padding: 4.4rem 0 14.4rem !important;
  }
}

.js-ac-content {
  overflow: hidden;
  transition: all 1.2s ease;
  height: 0;
}

.c-sec-top {
  display: flex;
  justify-content: end;
}
.c-sec-top a {
  display: block;
  width: 5.6rem;
  aspect-ratio: 1;
  background-color: #333333;
  border-radius: 999px;
  display: grid;
  place-items: center;
}
.c-sec-top a i {
  color: #fff;
  font-size: 3rem;
}
@media screen and (max-width: 520px) {
  .c-sec-top.--center {
    justify-content: center;
  }
}

.c-fixedLink {
  position: fixed;
  right: 0;
  bottom: 0;
}
@media screen and (max-width: 767px) {
  .c-fixedLink {
    width: 100%;
  }
}
.c-fixedLink__contact {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 6rem;
  height: 17.5rem;
  background-color: #ff6200;
  writing-mode: vertical-rl;
  color: var(--color-white);
  letter-spacing: 0.2em;
  font-weight: 600;
  font-size: 1.4rem;
  gap: 1rem;
  opacity: 1;
  transition: 0.3s ease-in-out;
}
.c-fixedLink__contact::before {
  content: "";
  display: block;
  width: 2rem;
  height: 1.6rem;
  background-image: url(../../assets/images/common/icon-contact.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.c-fixedLink__contact:hover {
  opacity: 0.8;
}
.c-fixedLink__top {
  width: 6rem;
  height: 6rem;
  display: grid;
  place-items: center;
  background-color: #000000;
  opacity: 1;
  transition: 0.3s ease-in-out;
}
.c-fixedLink__top img {
  width: 40%;
}
.c-fixedLink__top:hover {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  .c-fixedLink .c-fixedLink__contact {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 60px;
    writing-mode: unset;
    font-size: 14px;
  }
  .c-fixedLink .c-fixedLink__top {
    position: absolute;
    bottom: 10rem;
    width: 36px;
    height: 36px;
    right: 2rem;
  }
}

.c-nav {
  width: 100%;
  background: #163852;
  padding: 1.8rem 0;
  min-height: 8rem;
}
.c-nav__list {
  display: flex;
  justify-content: center;
  align-items: center;
}
.c-nav__list-item {
  color: var(--color-white);
  font-size: 2rem;
  font-weight: 700;
  padding: 0.25em 1em;
  border-radius: 999px;
  transition: all 0.1s ease;
}
.c-nav__list-item:nth-of-type(1)::before {
  content: "\f015";
  font-family: "Font Awesome 5 Free";
  margin-right: 0.25em;
}
.c-nav__list-item:hover {
  color: var(--primary-color);
  background-color: var(--color-white);
}

.c-slider {
  padding: 4.2rem 0;
}
.c-slider .swiper-wrapper {
  transition-timing-function: linear;
}
.c-slider .swiper-wrapper .swiper-slide {
  pointer-events: none;
}
.c-slider.-top {
  position: relative;
  z-index: 1;
}
.c-slider.-top::after {
  content: "";
  width: 100%;
  height: 50%;
  background: var(--bg-cream);
  position: absolute;
  top: 0;
  left: 0;
}
.c-slider.-bottom {
  position: relative;
  z-index: 1;
}
.c-slider.-bottom::after {
  content: "";
  width: 100%;
  height: 50%;
  background: var(--bg-cream);
  position: absolute;
  bottom: 0;
  left: 0;
}

.c-contact {
  padding: var(--sec-padding);
  background: var(--bg-cream);
}
.c-contact__lead {
  text-align: center;
  padding-bottom: 3.2rem;
}
.c-contact__col {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background: var(--color-white);
  border-radius: 2rem;
  padding: 4rem;
}
@media screen and (max-width: 767px) {
  .c-contact__col {
    grid-template-columns: 1fr;
    background: none;
    gap: 3.2rem;
    padding: 0;
  }
}
.c-contact__col::after {
  content: "";
  display: block;
  width: 1px;
  height: 80%;
  background: var(--primary-color);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .c-contact__col::after {
    content: none;
  }
}
.c-contact__col-item:nth-of-type(1) {
  position: relative;
  z-index: 1;
}
.c-contact__col-item:nth-of-type(1)::before {
  content: "";
  width: 20rem;
  height: 20rem;
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url(/assets/images/common/footer_tel.webp) no-repeat center center/contain;
}
@media screen and (max-width: 520px) {
  .c-contact__col-item:nth-of-type(1)::before {
    width: 15rem;
    height: 15rem;
  }
}
@media screen and (max-width: 767px) {
  .c-contact__col-item {
    background: var(--color-white);
    border-radius: 2rem;
    padding: 2rem;
  }
}
.c-contact__col-item h3 {
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  padding-bottom: 1.6rem;
}
@media screen and (max-width: 520px) {
  .c-contact__col-item h3 {
    font-size: 1.8rem;
  }
}
.c-contact__col-item:nth-of-type(1) a {
  line-height: 5rem;
  font-size: 2rem;
  display: block;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 520px) {
  .c-contact__col-item:nth-of-type(1) a {
    font-size: 1.6rem;
  }
}
.c-contact__col-item:nth-of-type(1) a span {
  font-size: 5rem;
  font-weight: 700;
  color: var(--primary-color);
}
@media screen and (max-width: 520px) {
  .c-contact__col-item:nth-of-type(1) a span {
    font-size: 4rem;
  }
}
.c-contact__col-item:nth-of-type(1) p {
  font-size: 2rem;
  text-align: center;
}
@media screen and (max-width: 520px) {
  .c-contact__col-item:nth-of-type(1) p {
    font-size: 1.6rem;
  }
}
.c-contact__col-item:nth-of-type(2) a {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--primary-color);
  border: 0.2rem solid var(--primary-color);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-white);
  max-width: 40rem;
  width: 100%;
  height: 12rem;
  border-radius: 999px;
  text-align: center;
  margin: 0 auto;
  transition: all 0.3s ease;
}
@media screen and (max-width: 520px) {
  .c-contact__col-item:nth-of-type(2) a {
    font-size: 1.6rem;
    height: 8rem;
  }
}
.c-contact__col-item:nth-of-type(2) a::before {
  content: "";
  width: 10rem;
  height: 10rem;
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url(/assets/images/common/footer_mail.webp) no-repeat center center/contain;
}
@media screen and (max-width: 520px) {
  .c-contact__col-item:nth-of-type(2) a::before {
    width: 7rem;
    height: 7rem;
  }
}
.c-contact__col-item:nth-of-type(2) a::after {
  position: absolute;
  right: 1em;
  top: 50%;
  transform: translateY(-50%);
  content: "\f0da";
  font-size: 3.2rem;
  font-family: "Font Awesome 5 Free";
}
.c-contact__col-item:nth-of-type(2) a:hover {
  background: var(--color-white);
  color: var(--primary-color);
}

.c-pageHead {
  position: relative;
  height: 60rem;
  max-width: 90vw;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 0 0 2rem 0;
}
@media screen and (max-width: 520px) {
  .c-pageHead {
    height: 50rem;
  }
}
.c-pageHead__image {
  height: 60rem;
}
@media screen and (max-width: 520px) {
  .c-pageHead__image {
    height: 50rem;
  }
}
.c-pageHead__image img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.c-pageHead__title {
  position: absolute;
  left: 0;
  bottom: 0;
  background: var(--color-white);
  border-radius: 0 2rem 0 0;
  padding: 2rem 4rem 2rem 2rem;
}
@media screen and (max-width: 520px) {
  .c-pageHead__title {
    padding: 2rem 2rem 1rem 1rem;
  }
}
.c-pageHead__title::before {
  content: "";
  display: block;
  width: 2rem;
  height: 2rem;
  position: absolute;
  top: -2rem;
  left: 0;
  background: url(/assets/images/common/curve.svg) no-repeat center center;
  background-size: contain;
  rotate: 90deg;
}
.c-pageHead__title::after {
  content: "";
  display: block;
  width: 2rem;
  height: 2rem;
  position: absolute;
  bottom: 0;
  right: -2rem;
  background: url(/assets/images/common/curve.svg) no-repeat center center;
  background-size: contain;
  rotate: 90deg;
}
.c-pageHead__title--ja {
  font-size: 5rem;
  font-weight: 500;
  line-height: 1;
  padding-bottom: 1.6rem;
}
@media screen and (max-width: 520px) {
  .c-pageHead__title--ja {
    font-size: 3.2rem;
    padding-bottom: 1rem;
  }
}
.c-pageHead__title--en {
  font-family: var(--font-lz);
  font-size: 2rem;
  color: var(--primary-color);
  line-height: 1;
}
@media screen and (max-width: 520px) {
  .c-pageHead__title--en {
    font-size: 1.6rem;
  }
}
.c-pageHead.-simple {
  height: auto;
}
.c-pageHead.-simple .c-pageHead__title {
  position: relative;
  text-align: center;
  padding: 15rem 0 6.4rem;
}
@media screen and (max-width: 520px) {
  .c-pageHead.-simple .c-pageHead__title {
    padding: 6.4rem 0;
  }
}
.c-pageHead.-simple .c-pageHead__lead {
  text-align: center;
  padding-bottom: 6.4rem;
}

.c-pageLink {
  padding: 10rem 0 3.6rem;
}
@media screen and (max-width: 520px) {
  .c-pageLink {
    padding: 6.4rem 0 2rem;
  }
}
.c-pageLink__list {
  display: flex;
  justify-content: center;
  align-items: center;
}
.c-pageLink__list-item {
  padding: 0 1em;
  border-right: 1px dashed #000;
}
.c-pageLink__list-item:nth-last-of-type(1) {
  border: none;
}

.p-header {
  position: relative;
  background: var(--color-white);
  border-radius: 2rem 2rem 0 0;
  padding: 2rem 0;
}
@media screen and (max-width: 520px) {
  .p-header {
    padding: 1rem 0;
  }
}
.p-header::after {
  --h: 3.2rem;
  content: "";
  display: block;
  background-color: var(--color-white);
  position: absolute;
  bottom: calc(var(--h) * -1);
  width: 100%;
  height: var(--h);
  mask-image: url("/assets/images/common/wave.svg"); /*マスクレイヤーとして使用する画像*/
  mask-repeat: repeat-x;
  mask-size: auto var(--h);
  mask-position: bottom;
  -webkit-mask-image: url("/assets/images/common/wave.svg");
  -webkit-mask-repeat: repeat-x;
  -webkit-mask-size: auto var(--h);
  -webkit-mask-position: bottom;
}
@media screen and (max-width: 520px) {
  .p-header::after {
    --h: 1.6rem;
  }
}
.p-header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.p-header__logo {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}
@media screen and (max-width: 520px) {
  .p-header__logo {
    gap: 1.2rem;
  }
}
.p-header__logo a {
  display: block;
  width: 15rem;
  margin-left: 2rem;
}
@media screen and (max-width: 520px) {
  .p-header__logo a {
    width: 10rem;
  }
}
.p-header__logo-name span {
  display: block;
  font-size: 1.6rem;
  line-height: 1.4;
}
@media screen and (max-width: 520px) {
  .p-header__logo-name span {
    font-size: 1.2rem;
  }
}
.p-header__nav {
  margin-right: 15rem;
}
@media screen and (max-width: 767px) {
  .p-header__nav {
    display: none;
  }
}
.p-header__nav-list {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 2rem;
}
.p-header__nav-list-item {
  min-width: 11rem;
}
.p-header__nav-list-item a {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.p-header__nav-list-item a .p-header__nav-icon {
  width: 4rem;
  transition: all 0.3s ease;
}
.p-header__nav-list-item a .p-header__nav-text {
  font-weight: 700;
  transition: all 0.3s ease;
}
.p-header__nav-list-item a:hover .p-header__nav-text {
  color: var(--primary-color);
}
.p-header__nav-list-item a:hover .p-header__nav-icon {
  scale: 0.85;
}
.p-header__nav-list-item.-contact a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  background: #ffe057;
  border: 2px solid var(--secondary-color);
  border-radius: 999px;
  width: 20rem;
  height: 7rem;
  gap: 1rem;
  font-weight: 700;
  transition: all 0.3s ease;
}
.p-header__nav-list-item.-contact a .p-header__nav-icon {
  position: relative;
  width: 2.7rem;
  height: 2.475rem;
}
.p-header__nav-list-item.-contact a .p-header__nav-icon::after {
  position: absolute;
  content: "";
  width: 2.7rem;
  height: 2.475rem;
  background: url(/assets/images/common/icon-mail.svg) no-repeat center center/contain;
  transition: all 0.3s ease;
}
.p-header__nav-list-item.-contact a .p-header__nav-text--en {
  color: #000;
}
.p-header__nav-list-item.-contact a:hover {
  background: var(--color-white);
}
.p-header__nav-list-item.-contact a:hover .p-header__nav-icon::after {
  background: url(/assets/images/common/icon-mail--yellow.svg) no-repeat center center/contain;
}
.p-header__nav-list-item.-contact a:hover .p-header__nav-text {
  color: #000;
}
.p-header__spNav {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100dvh;
  background: var(--primary-color);
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
@media screen and (max-width: 520px) {
  .p-header__spNav {
    padding: 0.5rem;
  }
}
.p-header__spNav.is-active {
  opacity: 1;
  visibility: visible;
}
.p-header__spNav-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--color-white);
  border-radius: 2rem;
  height: calc(100dvh - 4rem);
  padding: 2rem;
  gap: 3.2rem;
  overflow-y: scroll;
}
@media screen and (max-width: 520px) {
  .p-header__spNav-container {
    height: calc(100dvh - 1rem);
    padding: 1rem;
    gap: 2.4rem;
  }
}
.p-header__spNav-head {
  position: relative;
}
.p-header__spNav-head-image {
  border-radius: 1.5rem;
  overflow: hidden;
  height: 50dvh;
}
@media screen and (max-width: 520px) {
  .p-header__spNav-head-image {
    height: 45dvh;
  }
}
.p-header__spNav-head-image img {
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.p-header__spNav-head-text {
  font-family: var(--font-lz);
  font-size: 3.2rem;
  position: absolute;
  left: 0;
  bottom: 0;
  background: var(--color-white);
  padding: 0.5em 1em;
  border-radius: 0 1.5rem 0 0;
}
@media screen and (max-width: 520px) {
  .p-header__spNav-head-text {
    font-size: 2.4rem;
  }
}
.p-header__spNav-head-text::before {
  content: "";
  position: absolute;
  top: -1.5rem;
  left: 0;
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  background: url(/assets/images/common/curve.svg) no-repeat center center;
  background-size: contain;
  rotate: 90deg;
}
.p-header__spNav-head-text::after {
  content: "";
  position: absolute;
  right: -1.5rem;
  bottom: 0;
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  background: url(/assets/images/common/curve.svg) no-repeat center center;
  background-size: contain;
  rotate: 90deg;
}
.p-header__spNav-head-contact {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--color-white);
  padding: 0 13rem 3.8rem 3.2rem;
  height: 12rem;
  border-radius: 0 0 0 1.5rem;
}
.p-header__spNav-head-contact a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  background: #ffe057;
  border-radius: 999px;
  font-weight: 700;
  width: 20rem;
  height: 7rem;
  gap: 0.3rem;
}
.p-header__spNav-head-contact a .p-header__spNav-icon {
  width: 2.7rem;
}
.p-header__spNav-head-contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: -1.5rem;
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  background: url(/assets/images/common/curve.svg) no-repeat center center;
  background-size: contain;
  rotate: -90deg;
}
.p-header__spNav-head-contact::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1.5rem;
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  background: url(/assets/images/common/curve.svg) no-repeat center center;
  background-size: contain;
  rotate: -90deg;
}
.p-header__spNav-main {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.p-header__spNav-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media screen and (max-width: 520px) {
  .p-header__spNav-list {
    grid-template-columns: 1fr;
  }
}
.p-header__spNav-list-item {
  border-bottom: 1px dashed var(--primary-color);
}
.p-header__spNav-list-item a {
  display: flex;
  gap: 0.25em;
  align-items: center;
  gap: 1em;
  transition: all 0.3s ease;
}
.p-header__spNav-list-item a:hover {
  color: var(--primary-color);
}
.p-header__spNav-list-item a::before {
  content: "";
  display: inline-block;
  width: 1.4rem;
  height: 1.4rem;
  background: url(/assets/images/common/icon-list.webp) no-repeat center center;
  background-size: contain;
}
.p-header__spNav-list-item a .p-header__spNav-text {
  font-size: 1.8rem;
  font-weight: 700;
}
@media screen and (max-width: 520px) {
  .p-header__spNav-list-item a .p-header__spNav-text {
    font-size: 1.6rem;
  }
}
.p-header__spNav-foot {
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.p-header__spNav-info {
  display: flex;
  flex-direction: column;
}
.p-header__spNav-infoLogo {
  max-width: 15rem;
  padding-bottom: 1rem;
}
@media screen and (max-width: 520px) {
  .p-header__spNav-infoLogo {
    max-width: 10rem;
  }
}
@media screen and (max-width: 520px) {
  .p-header__spNav-infoAddress {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 520px) {
  .p-header__spNav-infoContact {
    font-size: 1.2rem;
  }
}
.p-header__spNav-sns {
  display: flex;
  gap: 1rem;
}
.p-header__spNav-sns i {
  display: grid;
  place-items: center;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 999px;
  color: var(--color-white);
}
.p-header__spNav-sns .fa-facebook {
  background-color: #1877f2;
}
.p-header__spNav-sns .fa-instagram {
  background-color: #ff0069;
}

.p-footer {
  position: relative;
}
.p-footer::after {
  content: "";
  display: block;
  background-color: var(--color-white);
  position: absolute;
  transform: rotate(180deg);
  top: -3.2rem;
  width: 100%;
  height: 3.2rem;
  mask-image: url("/assets/images/common/wave.svg"); /*マスクレイヤーとして使用する画像*/
  mask-repeat: repeat-x;
  mask-size: auto 3.2rem;
  mask-position: bottom;
  -webkit-mask-image: url("/assets/images/common/wave.svg");
  -webkit-mask-repeat: repeat-x;
  -webkit-mask-size: auto 3.2rem;
  -webkit-mask-position: bottom;
}
.p-footer__container {
  display: flex;
  justify-content: space-between;
  padding: 8rem 5%;
  background: var(--color-white);
  border-radius: 0 0 2rem 2rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-footer__container {
    flex-direction: column-reverse;
    gap: 3.2rem;
    padding: 3.2rem 5%;
  }
}
.p-footer__info {
  width: fit-content;
}
.p-footer__infoLogo {
  max-width: 16.8rem;
}
.p-footer__infoTel {
  font-size: 3.6rem;
  font-weight: 700;
}
.p-footer__infoContact {
  display: flex;
  gap: 1em;
}
.p-footer__link {
  max-width: 42rem;
}
.p-footer__linkList {
  display: flex;
  justify-content: left;
  flex-wrap: wrap;
  gap: 3.2rem 3.2rem;
}
.p-footer__linkList-item {
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.p-footer__linkList-item::before {
  content: "";
  display: inline-block;
  width: 1.4rem;
  height: 1.4rem;
  background: url(/assets/images/common/icon-list.webp) no-repeat center center;
  background-size: contain;
}
.p-footer__linkList-item:hover a {
  color: var(--primary-color);
}
.p-footer__linkList-item a {
  transition: all 0.3s ease;
}
.p-footer__copy {
  padding-top: 2rem;
  background: var(--primary-color);
  color: var(--color-white);
  text-align: center;
}

.p-header__hamburger {
  --opacity: 1;
  --rotate: 0;
  --translate: 1.7rem;
  display: grid;
  place-items: center;
  width: 12rem;
  aspect-ratio: 1;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: var(--primary-color);
  position: absolute;
  right: 0;
  top: 0;
  z-index: 999;
  border-radius: 0 0 0 2rem;
}
@media screen and (max-width: 520px) {
  .p-header__hamburger {
    width: max(62px, 6.2rem);
    --translate: 1.2rem;
  }
}
.p-header__hamburger.is-active {
  --opacity: 0;
  --rotate: 45deg;
  --translate: 0;
}
.p-header__hamburger span {
  display: block;
  width: 6rem;
  height: 4px;
  border-radius: 999px;
  background-color: var(--color-white);
  grid-area: 1/1/-1/-1;
  transition: all 0.3s ease;
}
@media screen and (max-width: 520px) {
  .p-header__hamburger span {
    width: 3.5rem;
    height: 2px;
  }
}
.p-header__hamburger span:nth-child(1) {
  opacity: var(--opacity);
}
.p-header__hamburger span:nth-child(2) {
  translate: 0 calc(var(--translate) * -1);
  rotate: var(--rotate);
}
.p-header__hamburger span:nth-child(3) {
  translate: 0 var(--translate);
  rotate: calc(var(--rotate) * -1);
}
.p-header__hamburger::before {
  content: "";
  display: block;
  width: 2rem;
  height: 2rem;
  position: absolute;
  background: url(/assets/images/common/curve-hm.svg) no-repeat center center;
  background-size: contain;
  top: 0;
  left: -2rem;
  z-index: 999;
}
.p-header__hamburger::after {
  content: "";
  display: block;
  width: 2rem;
  height: 2rem;
  position: absolute;
  background: url(/assets/images/common/curve-hm.svg) no-repeat center center;
  background-size: contain;
  right: 0;
  bottom: -2rem;
  z-index: 999;
}

#page-top .p-topMv {
  position: relative;
  max-width: 90vw;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  #page-top .p-topMv {
    height: calc(100vh - 16.2rem);
  }
}
#page-top .p-topMv__image {
  max-height: calc(100vh - 16.2rem);
  overflow: hidden;
  border-radius: 2rem;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  #page-top .p-topMv__image {
    height: calc(100vh - 16.2rem);
  }
  #page-top .p-topMv__image img {
    height: 100%;
    object-fit: cover;
  }
}
#page-top .p-topMv__deco {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  #page-top .p-topMv__deco {
    height: calc(100vh - 16.2rem);
  }
  #page-top .p-topMv__deco img {
    height: 100%;
    object-fit: cover;
  }
}
#page-top .p-topMv__catch {
  position: absolute;
  width: 36%;
  bottom: 5%;
  left: 2.5%;
}
@media screen and (max-width: 767px) {
  #page-top .p-topMv__catch {
    width: 70%;
  }
}
@media screen and (max-width: 520px) {
  #page-top .p-topMv__catch {
    width: 90%;
  }
}
#page-top #hidamari {
  padding: var(--sec-padding);
}
#page-top .p-topHidamari .l-inner {
  background-color: var(--bg-cream);
  border: 0.5rem solid #fff4e9;
  padding: var(--sec-padding);
  position: relative;
  border-radius: 2rem;
}
#page-top .p-topHidamari__catch {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3.8rem;
  font-weight: 500;
  color: var(--primary-color);
  text-align: center;
  border-top: 3px solid var(--primary-color);
  border-bottom: 3px solid var(--primary-color);
  max-width: 60%;
  margin: 0 auto;
  word-break: keep-all;
  line-height: 1.75;
}
@media screen and (max-width: 520px) {
  #page-top .p-topHidamari__catch {
    font-size: 2rem;
  }
}
#page-top .p-topHidamari__catch::after {
  content: "";
  display: inline-block;
  width: 4rem;
  height: 4.9763rem;
  background: url(/assets/images/top/hidamari-catch-deco.webp) no-repeat center center;
  background-size: contain;
}
#page-top .p-topHidamari__text {
  text-align: center;
  padding-top: var(--pb-32);
  padding-bottom: var(--pb-32);
}
#page-top .p-topHidamari__philosophy {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 0 2rem;
  max-width: 70rem;
  margin: 0 auto;
}
@media screen and (max-width: 520px) {
  #page-top .p-topHidamari__philosophy {
    gap: 1rem;
  }
}
#page-top .p-topHidamari__philosophy p {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 1;
  text-align: center;
  border-radius: 999px;
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--color-white);
}
@media screen and (max-width: 520px) {
  #page-top .p-topHidamari__philosophy p {
    font-size: 1.6rem;
  }
}
#page-top .p-topHidamari__philosophy p:nth-of-type(1) {
  background: var(--primary-color);
}
#page-top .p-topHidamari__philosophy p:nth-of-type(2) {
  background: #b5d782;
}
#page-top .p-topHidamari__philosophy p:nth-of-type(3) {
  background: #b0d3ef;
}
#page-top .p-topHidamari__image {
  width: 25%;
  position: absolute;
}
#page-top .p-topHidamari__image:nth-of-type(2) {
  left: -10%;
  top: 20%;
}
@media screen and (max-width: 520px) {
  #page-top .p-topHidamari__image:nth-of-type(2) {
    top: 70%;
  }
}
#page-top .p-topHidamari__image:nth-of-type(2):after {
  content: "";
  display: block;
  position: absolute;
  bottom: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 9.4624rem;
  height: 8rem;
  aspect-ratio: 94.62/80;
  background: url(/assets/images/top/hidamari-deco01.webp) no-repeat center center;
  background-size: contain;
}
@media screen and (max-width: 520px) {
  #page-top .p-topHidamari__image:nth-of-type(2):after {
    width: 3.78496rem;
    height: 3.2rem;
  }
}
#page-top .p-topHidamari__image:nth-of-type(3) {
  right: -10%;
  top: 40%;
}
@media screen and (max-width: 520px) {
  #page-top .p-topHidamari__image:nth-of-type(3) {
    top: 65%;
  }
}
#page-top .p-topHidamari__image:nth-of-type(3):after {
  content: "";
  display: block;
  position: absolute;
  bottom: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 14.75rem;
  height: 16.1rem;
  background: url(/assets/images/top/hidamari-deco02.webp) no-repeat center center;
  background-size: contain;
}
@media screen and (max-width: 520px) {
  #page-top .p-topHidamari__image:nth-of-type(3):after {
    width: 5.9rem;
    height: 6.44rem;
  }
}
#page-top #about {
  padding: var(--sec-padding);
}
#page-top .p-topAbout {
  background: url(/assets/images/top/about-bg.webp) no-repeat center center;
  background-size: contain;
}
@media screen and (max-width: 520px) {
  #page-top .p-topAbout {
    background-position-y: 5rem;
    background-position-x: center;
  }
}
#page-top .p-topAbout__image {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 4rem;
  padding-bottom: var(--pb-32);
}
@media screen and (max-width: 520px) {
  #page-top .p-topAbout__image {
    gap: 2rem;
  }
}
#page-top .p-topAbout__image .p-in-image {
  position: relative;
  height: fit-content;
  z-index: 1;
}
#page-top .p-topAbout__image .p-in-image img {
  border-radius: 2rem;
  overflow: hidden;
}
#page-top .p-topAbout__image .p-in-image::after {
  position: absolute;
  z-index: -1;
  right: -1rem;
  bottom: -1rem;
  content: "";
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  border-radius: 2rem;
}
@media screen and (max-width: 520px) {
  #page-top .p-topAbout__image .p-in-image::after {
    right: -0.5rem;
    bottom: -0.5rem;
  }
}
#page-top .p-topAbout__catch {
  font-size: 3.2rem;
  font-weight: 500;
  text-align: center;
  padding-bottom: var(--pb-32);
}
@media screen and (max-width: 520px) {
  #page-top .p-topAbout__catch {
    font-size: 2rem;
  }
}
#page-top .p-topAbout__text {
  position: relative;
  text-align: center;
  padding-bottom: var(--pb-32);
  max-width: 50rem;
  margin: 0 auto;
}
@media screen and (max-width: 520px) {
  #page-top .p-topAbout__text {
    text-align: justify;
  }
}
#page-top .p-topAbout__text::before {
  content: "";
  display: block;
  width: 8.95rem;
  height: 11.1rem;
  background: url(/assets/images/top/about-deco01.webp) no-repeat center center;
  background-size: contain;
  position: absolute;
  left: -20%;
  top: 50%;
}
@media screen and (max-width: 520px) {
  #page-top .p-topAbout__text::before {
    width: 3.58rem;
    height: 4.44rem;
    left: 0;
    top: -6rem;
  }
}
#page-top .p-topAbout__text::after {
  content: "";
  display: block;
  width: 13.9rem;
  height: 17.7rem;
  background: url(/assets/images/top/about-deco02.webp) no-repeat center center;
  background-size: contain;
  position: absolute;
  right: -30%;
  top: 0;
}
@media screen and (max-width: 520px) {
  #page-top .p-topAbout__text::after {
    width: 5.56rem;
    height: 7.08rem;
    right: 0;
    top: -7rem;
  }
}
#page-top .p-topAbout__btn {
  width: fit-content;
  margin: 0 auto;
}
#page-top #hoiku,
#page-top #admission {
  padding: var(--sec-padding);
}
#page-top .p-hoiku-admission__deco01 {
  position: absolute;
  top: -2rem;
  left: -2rem;
  max-width: 12rem;
}
@media screen and (max-width: 767px) {
  #page-top .p-hoiku-admission__deco01 {
    max-width: 9.0022505626rem;
    top: -1rem;
    left: -1rem;
  }
}
@media screen and (max-width: 520px) {
  #page-top .p-hoiku-admission__deco01 {
    max-width: 4rem;
    top: 2rem;
    left: -1rem;
  }
}
#page-top .p-hoiku-admission__deco02 {
  position: absolute;
  bottom: -4rem;
  right: 0;
  max-width: 12rem;
}
@media screen and (max-width: 767px) {
  #page-top .p-hoiku-admission__deco02 {
    max-width: 9.0022505626rem;
    right: -1rem;
    bottom: 0;
  }
}
@media screen and (max-width: 520px) {
  #page-top .p-hoiku-admission__deco02 {
    max-width: 4rem;
    right: -1rem;
    bottom: 0;
  }
}
#page-top #hoiku {
  margin-bottom: 6.4rem;
}
#page-top .p-topHoiku .c-title--top,
#page-top .p-topAdmission .c-title--top {
  margin-top: 5rem;
}
#page-top .p-topHoiku__container,
#page-top .p-topAdmission__container {
  display: flex;
}
#page-top .p-topHoiku__catch,
#page-top .p-topAdmission__catch {
  font-size: 3.2rem;
  font-weight: 500;
  padding-bottom: var(--pb-32);
}
@media screen and (max-width: 520px) {
  #page-top .p-topHoiku__catch,
  #page-top .p-topAdmission__catch {
    font-size: 2rem;
  }
}
#page-top .p-topHoiku__catch span,
#page-top .p-topAdmission__catch span {
  display: block;
}
#page-top .p-topHoiku__catch .p-in-left,
#page-top .p-topAdmission__catch .p-in-left {
  padding-left: 1em;
}
#page-top .p-topHoiku__detail,
#page-top .p-topAdmission__detail {
  max-width: 53rem;
  width: 50vw;
}
#page-top .p-topHoiku__text,
#page-top .p-topAdmission__text {
  padding-bottom: var(--pb-32);
}
#page-top .p-topHoiku__image,
#page-top .p-topAdmission__image {
  position: relative;
  width: 50vw;
}
#page-top .p-topHoiku__image-main,
#page-top .p-topAdmission__image-main {
  width: 100%;
  height: 100%;
  border-radius: 2rem;
  overflow: hidden;
  object-fit: cover;
}
#page-top .p-topHoiku__image img,
#page-top .p-topAdmission__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#page-top .p-topHoiku__container {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: end;
  gap: 5rem;
  padding-right: 2rem;
}
@media screen and (max-width: 767px) {
  #page-top .p-topHoiku__container {
    flex-direction: column;
    gap: 0;
    padding: 0;
  }
  #page-top .p-topHoiku__container .p-topHoiku__detail {
    display: contents;
  }
  #page-top .p-topHoiku__container .c-title--top {
    order: 1;
    margin: 0 auto;
  }
  #page-top .p-topHoiku__container .p-topHoiku__image {
    order: 2;
    width: 100%;
    padding-bottom: 3.2rem;
  }
  #page-top .p-topHoiku__container .p-topHoiku__catch {
    order: 3;
    display: flex;
    margin: 0 auto;
    padding-bottom: 1.6rem;
  }
  #page-top .p-topHoiku__container .p-topHoiku__catch span {
    padding: 0;
  }
  #page-top .p-topHoiku__container .p-topHoiku__text {
    order: 4;
    padding-bottom: 3.2rem;
  }
  #page-top .p-topHoiku__container .c-btn {
    order: 5;
    margin: 0 auto;
  }
}
@media screen and (max-width: 520px) {
  #page-top .p-topHoiku__container .p-topHoiku__catch {
    display: block;
    margin: 0;
  }
  #page-top .p-topHoiku__container .p-topHoiku__catch .p-in-left {
    padding-left: 1em;
  }
}
#page-top .p-topHoiku__container::after {
  content: "";
  width: 70%;
  height: 70%;
  position: absolute;
  z-index: -1;
  top: 24rem;
  left: -2rem;
  background: var(--bg-cream);
  border-radius: 2rem;
}
#page-top .p-topHoiku__catch {
  position: relative;
  width: fit-content;
}
#page-top .p-topHoiku__deco01 {
  position: absolute;
  top: 7rem;
  left: -20rem;
  display: block;
  max-width: 13.5rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  #page-top .p-topHoiku__deco01 {
    max-width: 8rem;
    top: 25rem;
    left: 0;
  }
}
@media screen and (max-width: 520px) {
  #page-top .p-topHoiku__deco01 {
    max-width: 5rem;
    top: 0rem;
    left: 25rem;
  }
}
#page-top .p-topAdmission__container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row-reverse;
  justify-content: start;
  gap: 5rem;
  padding-left: 2rem;
}
@media screen and (max-width: 767px) {
  #page-top .p-topAdmission__container {
    flex-direction: column;
    gap: 0;
    padding: 0;
  }
  #page-top .p-topAdmission__container .c-title--top {
    order: 1;
    margin: 0 auto;
  }
  #page-top .p-topAdmission__container .p-topAdmission__image {
    order: 2;
    width: 100%;
    padding-bottom: 3.2rem;
  }
  #page-top .p-topAdmission__container .p-topAdmission__catch {
    order: 3;
    display: flex;
    margin: 0 auto;
    padding-bottom: 1.6rem;
  }
  #page-top .p-topAdmission__container .p-topAdmission__catch span {
    padding: 0;
  }
  #page-top .p-topAdmission__container .p-topAdmission__text {
    order: 4;
    padding-bottom: 3.2rem;
  }
  #page-top .p-topAdmission__container .c-btn {
    order: 5;
    margin: 0 auto;
  }
}
@media screen and (max-width: 520px) {
  #page-top .p-topAdmission__container .p-topAdmission__catch {
    display: block;
    margin: 0;
  }
  #page-top .p-topAdmission__container .p-topAdmission__catch .p-in-left {
    padding-left: 1em;
  }
}
#page-top .p-topAdmission__container::after {
  content: "";
  width: 70%;
  height: 70%;
  position: absolute;
  z-index: -1;
  top: 24rem;
  right: -2rem;
  background: var(--bg-cream);
  border-radius: 2rem;
}
@media screen and (max-width: 767px) {
  #page-top .p-topAdmission__detail {
    display: contents;
  }
}
#page-top .p-topAdmission__catch {
  position: relative;
  width: fit-content;
}
#page-top .p-topAdmission__deco01 {
  position: absolute;
  bottom: -2.5rem;
  left: -2rem;
  display: block;
  max-width: 4rem;
}
@media screen and (max-width: 767px) {
  #page-top .p-topAdmission__deco01 {
    max-width: 3rem;
    left: -10rem;
    bottom: -4rem;
  }
}
@media screen and (max-width: 520px) {
  #page-top .p-topAdmission__deco01 {
    max-width: 3rem;
    top: 3rem;
    right: -5rem;
    left: unset;
    bottom: unset;
  }
}
#page-top .p-topAdmission__deco02 {
  position: absolute;
  top: 2.5rem;
  right: -17rem;
  display: block;
  max-width: 15rem;
}
@media screen and (max-width: 767px) {
  #page-top .p-topAdmission__deco02 {
    max-width: 7.5rem;
    right: -10rem;
    top: 25rem;
  }
}
@media screen and (max-width: 520px) {
  #page-top .p-topAdmission__deco02 {
    max-width: 7.5rem;
    right: -15rem;
    top: 3rem;
  }
}
#page-top .p-wide {
  padding: var(--sec-padding);
}
#page-top .p-wide .p-in-image {
  position: relative;
  width: 90vw;
  margin: 0 auto;
}
#page-top .p-wide .p-in-image::before {
  position: absolute;
  top: -4rem;
  left: -4rem;
  content: "";
  display: block;
  width: 15vw;
  height: 15vw;
  background: url(/assets/images/top/wide-deco01.webp) no-repeat center center;
  background-size: contain;
}
@media screen and (max-width: 520px) {
  #page-top .p-wide .p-in-image::before {
    top: -1rem;
    left: -1rem;
  }
}
#page-top .p-wide .p-in-image::after {
  position: absolute;
  bottom: -4rem;
  right: -4rem;
  content: "";
  display: block;
  width: 10vw;
  height: 10vw;
  background: url(/assets/images/top/wide-deco02.webp) no-repeat center center;
  background-size: contain;
}
@media screen and (max-width: 520px) {
  #page-top .p-wide .p-in-image::after {
    bottom: -1rem;
    right: -1rem;
  }
}
#page-top .p-wide img {
  display: block;
  width: 100%;
  border-radius: 2rem;
  overflow: hidden;
}

.p-access {
  padding: var(--sec-padding);
}
.p-access__content {
  position: relative;
  margin-bottom: 3.2rem;
}
.p-access__map {
  overflow: hidden;
  border-radius: 2rem;
  height: 50rem;
}
.p-access__map iframe {
  margin-top: -20rem;
  width: 100%;
  height: 90rem;
}
.p-access__title {
  background: var(--color-white);
  padding: 1.5rem 2rem 1.5rem 0.5rem;
  border-radius: 0 0 2rem 0;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .p-access__title {
    padding: 1.5rem 2rem;
  }
}
.p-access__title .c-title--top,
.p-access__title .c-title {
  padding: 0;
}
.p-access__title::before {
  content: "";
  display: block;
  width: 2rem;
  height: 2rem;
  position: absolute;
  bottom: -2rem;
  left: 0;
  background: url(/assets/images/common/curve.svg) no-repeat center center;
  background-size: contain;
  rotate: 180deg;
}
.p-access__title::after {
  content: "";
  display: block;
  width: 2rem;
  height: 2rem;
  position: absolute;
  top: 0;
  right: -2rem;
  background: url(/assets/images/common/curve.svg) no-repeat center center;
  background-size: contain;
  rotate: 180deg;
}
.p-access__list {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 1.5rem 2rem;
  background: var(--color-white);
  border-radius: 2rem 0 0 0;
}
@media screen and (max-width: 520px) {
  .p-access__list {
    position: relative;
    padding: 2rem 0 0;
  }
}
.p-access__list::before {
  content: "";
  display: block;
  width: 2rem;
  height: 2rem;
  position: absolute;
  bottom: 0;
  left: -2rem;
  background: url(/assets/images/common/curve.svg) no-repeat center center;
  background-size: contain;
}
.p-access__list::after {
  content: "";
  display: block;
  width: 2rem;
  height: 2rem;
  position: absolute;
  top: -2rem;
  right: 0;
  background: url(/assets/images/common/curve.svg) no-repeat center center;
  background-size: contain;
}
.p-access__list-item {
  font-size: 2.2rem;
  display: flex;
  align-items: center;
  gap: 0.5em;
}
@media screen and (max-width: 520px) {
  .p-access__list-item {
    font-size: 1.4rem;
  }
}
.p-access__list-item img {
  width: 2.4rem;
  height: 2.4rem;
  pointer-events: none;
}
@media screen and (max-width: 520px) {
  .p-access__list-item img {
    width: 1.8rem;
    height: 1.8rem;
  }
}
.p-access__list-item::before {
  content: "●";
  font-size: 1.4rem;
  color: var(--primary-color);
}
@media screen and (max-width: 520px) {
  .p-access__list-item::before {
    font-size: 1rem;
  }
}
.p-access__list-item span {
  color: var(--primary-color);
  font-weight: 700;
}

.u-primary-color {
  color: var(--primary-color);
}

.c-page-main.is-archive .p-news__list {
  gap: 0 !important;
}
.c-page-main.is-archive .p-news__list-item::before {
  content: none !important;
}
.c-page-main.is-archive .p-news__list-item a.p-in-link {
  display: grid;
  grid-template-columns: 12rem 1fr;
  padding: 1.6rem 1em;
  border-bottom: 1px solid var(--primary-color);
  text-decoration: none;
  color: var(--color-black);
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .c-page-main.is-archive .p-news__list-item a.p-in-link {
    grid-template-columns: 1fr;
    font-size: max(1.6rem, 16px);
  }
}
.c-page-main.is-archive .p-news__list-item a.p-in-link:hover {
  color: var(--primary-color);
}
.c-page-main.is-archive .p-news__list-item .p-in-info {
  display: flex;
}
.c-page-main.is-archive .p-news__list-item .p-in-info--date {
  width: 100%;
  min-width: 12rem;
}
@media screen and (max-width: 767px) {
  .c-page-main.is-archive .p-news__list-item .p-in-info--date {
    font-size: max(1.2rem, 12px);
  }
}
.c-page-main.is-archive .p-news__list-item .p-in-info--cat {
  display: none;
}

.c-page-main.is-news .p-news__head {
  padding-bottom: 3.2rem;
}
.c-page-main.is-news .p-news__head .p-in-date {
  font-size: max(1.4rem, 14px);
  font-weight: 700;
  color: var(--primary-color);
}
.c-page-main.is-news .p-news__head h1 {
  font-size: max(2rem, 2px);
  font-weight: 700;
  border-bottom: 2px solid var(--primary-color);
  padding: 0.5em 0;
}
.c-page-main.is-news .p-news__main {
  min-height: 30rem;
}
.c-page-main.is-news .p-news__main p,
.c-page-main.is-news .p-news__main span {
  line-height: 2;
}
.c-page-main.is-news .p-news__main a {
  color: var(--primary-color);
}
.c-page-main.is-news .p-news__btn {
  margin: 0 auto;
  width: fit-content;
  padding: 3.2rem 0 6.4rem;
}

.p-news__pageNav {
  padding: 3.2rem 0;
}
.p-news__pageNav .nav-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.p-news__pageNav .page-numbers {
  text-align: center;
  font-weight: 700;
  display: block;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  min-width: 5rem;
  border-radius: 0.5rem;
  height: 3rem;
}
.p-news__pageNav .page-numbers.current {
  background-color: var(--primary-color);
  color: var(--color-white);
}
.p-news__pageNav .page-numbers.next, .p-news__pageNav .page-numbers.prev {
  background-color: unset;
}

form {
  display: grid;
  gap: 4rem;
}

.p-contact {
  background: var(--bg-cream);
  border-radius: 2rem;
  border: 0.5rem solid #fff4e9;
  padding: 6.4rem 0;
  margin-bottom: 6.4rem;
}
@media screen and (max-width: 520px) {
  .p-contact {
    padding: 3.2rem 0;
  }
}

.p-contact h2 {
  width: fit-content;
  margin: 0 auto;
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  border-bottom: 1px solid var(--primary-color);
  margin-bottom: 6.4rem;
}
@media screen and (max-width: 520px) {
  .p-contact h2 {
    font-size: 1.8rem;
    margin-bottom: 3.2rem;
  }
}

.p-contact__inner {
  max-width: min(110rem, 100% - 4rem);
  margin: 0 auto;
}

.p-contact__step {
  display: flex;
  justify-content: center;
  gap: 14rem;
  margin-bottom: 6.4rem;
}
@media screen and (max-width: 520px) {
  .p-contact__step {
    gap: 5rem;
    margin-bottom: 3.2rem;
  }
}
.p-contact__step-item {
  text-align: center;
  font-weight: 700;
  color: #b5b5b5;
}
.p-contact__step-item.is-active {
  color: var(--primary-color);
}
.p-contact__step-item .p-in- text {
  font-size: 2rem;
}
.p-contact__step-item .p-in-num {
  font-size: 2.4rem;
  line-height: 1;
}

.p-contact__form-item {
  display: grid;
  gap: 1em;
}
.p-contact__form-item label,
.p-contact__form-item p {
  font-weight: 700;
}
.p-contact__form-item input,
.p-contact__form-item textarea {
  background: var(--color-white);
  padding: 2rem 1.5rem;
  border-radius: 1rem;
}
@media screen and (max-width: 520px) {
  .p-contact__form-item input,
  .p-contact__form-item textarea {
    padding: 1rem;
  }
}
.p-contact__form-item input:focus,
.p-contact__form-item textarea:focus {
  outline: 2px solid var(--primary-color);
}
.p-contact__form-item input:focus[type=checkbox],
.p-contact__form-item input:focus[type=radio] {
  outline: none;
}
.p-contact__form-item input[type=radio] {
  position: relative;
  width: 2rem;
  height: 2rem;
  aspect-ratio: 1;
  border-radius: 999px;
  padding: 0;
  background: var(--bg-cream);
  border: 1px solid #ffe0ca;
  cursor: pointer;
}
.p-contact__form-item input[type=radio]:checked::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 1.2rem;
  height: 1.2rem;
  background: var(--primary-color);
  border-radius: 999px;
}
.p-contact__form-item input[type=checkbox] {
  position: relative;
  width: 2rem;
  height: 2rem;
  background: var(--color-white);
  padding: 0;
  border-radius: 0;
  border: 1px solid #ffe0ca;
  cursor: pointer;
  margin-right: 0.5em;
}
.p-contact__form-item input[type=checkbox]:checked::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  color: var(--primary-color);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.p-contact__form-item .radio {
  display: flex;
  gap: 2rem;
}
@media screen and (max-width: 520px) {
  .p-contact__form-item .radio {
    flex-direction: column;
  }
}
.p-contact__form-item .radio label {
  background: var(--color-white);
  min-width: 16rem;
  width: fit-content;
  height: 6rem;
  display: flex;
  justify-content: start;
  padding: 0 1em;
  align-items: center;
  gap: 1em;
  border-radius: 999px;
  border: 1px solid #ffe0ca;
  cursor: pointer;
}
@media screen and (max-width: 520px) {
  .p-contact__form-item .radio label {
    width: 100%;
  }
}
.p-contact__form-item.-check {
  text-align: center;
}
.p-contact__form-item.-check label {
  display: flex;
  justify-content: center;
  align-items: center;
}
.p-contact__form-item.-check a {
  text-align: center;
  text-decoration: underline;
  width: fit-content;
  margin: 0 auto;
}
.p-contact__form-item.-submit {
  position: relative;
}
.p-contact__form-item.-submit span {
  position: relative;
  width: 100%;
  max-width: 40rem;
  margin: 0 auto;
}
.p-contact__form-item.-submit span:hover::after {
  color: var(--primary-color);
}
.p-contact__form-item.-submit span:hover input[type=submit] {
  background: var(--color-white);
  color: var(--primary-color);
}
.p-contact__form-item.-submit span::after {
  font-family: "Font Awesome 5 Free";
  content: "\f0da";
  position: absolute;
  font-size: 3.2rem;
  font-weight: 900;
  right: 1em;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-white);
  transition: all 0.3s ease;
}
@media screen and (max-width: 520px) {
  .p-contact__form-item.-submit span::after {
    font-size: 2.4rem;
  }
}
.p-contact__form-item.-submit span input[type=submit] {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  border-radius: 999px;
  border: 2px solid var(--primary-color);
  height: 10rem;
  text-align: center;
  background: var(--primary-color);
  color: var(--color-white);
  font-size: 2rem;
  font-weight: 700;
  transition: all 0.3s ease;
}
@media screen and (max-width: 520px) {
  .p-contact__form-item.-submit span input[type=submit] {
    height: 6rem;
    font-size: 1.6rem;
  }
}
.p-contact__form-item .is-required {
  color: var(--color-white);
  position: relative;
  z-index: 1;
  font-size: 1.2rem;
  margin-left: 1em;
}
.p-contact__form-item .is-required::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 4.2rem;
  height: 4.2rem;
  background: url(/assets/images/contact/required.png) no-repeat center center/contain;
}

.p-contact__thanks p {
  margin-bottom: 6.4rem;
}

.p-in-map {
  position: relative;
  overflow: hidden;
}
.p-in-map__controls {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media screen and (max-width: 520px) {
  .p-in-map__controls {
    bottom: 10px;
    right: 10px;
  }
}
.p-in-map__controls button {
  background-color: var(--primary-color);
  min-width: 4rem;
  height: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color-white);
  font-weight: 700;
  border-radius: 10px;
}

.p-about {
  padding: var(--sec-padding);
}
.p-about__container {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 5%;
  margin-bottom: 6.4rem;
}
.p-about__container::before {
  content: "";
  width: 34rem;
  height: 31.1rem;
  background: url(/assets/images/about/about-bg.webp) no-repeat center center/contain;
  position: absolute;
  left: 10%;
  top: 5%;
  rotate: 7deg;
}
@media screen and (max-width: 767px) {
  .p-about__container::before {
    left: 40%;
  }
}
@media screen and (max-width: 520px) {
  .p-about__container::before {
    left: 50%;
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 767px) {
  .p-about__container {
    flex-direction: column;
  }
}
.p-about__detail {
  flex-basis: 45%;
}
@media screen and (max-width: 767px) {
  .p-about__detail {
    padding-bottom: 3.2rem;
  }
}
.p-about__detail h3 {
  width: fit-content;
  font-size: 3.2rem;
  padding-bottom: 3.2rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-about__detail h3 {
    margin: 0 auto;
  }
}
@media screen and (max-width: 520px) {
  .p-about__detail h3 {
    font-size: 2.4rem;
  }
}
.p-about__detail h3::after {
  content: "";
  position: absolute;
  display: block;
  width: 7.634rem;
  height: 8.995rem;
  background: url(/assets/images/about/about-deco.webp) no-repeat center center/contain;
  right: -8rem;
  top: -2.5rem;
}
@media screen and (max-width: 520px) {
  .p-about__detail h3::after {
    width: 3.817rem;
    height: 4.4975rem;
    right: -4rem;
    top: -1rem;
  }
}
.p-about__image {
  flex-basis: 45%;
  border-radius: 2rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-about__image {
    position: relative;
    z-index: 1;
  }
}
.p-about__nursery {
  background-color: var(--bg-cream);
  border-radius: 2rem;
  border: 0.5rem solid #fff4e9;
  padding: 6.4rem;
}
@media screen and (max-width: 520px) {
  .p-about__nursery {
    padding: 3.2rem 2rem;
  }
}
.p-about__nursery-lead {
  text-align: center;
  font-size: 2.4rem;
  color: var(--primary-color);
  margin-bottom: 3.2rem;
}
@media screen and (max-width: 520px) {
  .p-about__nursery-lead {
    font-size: 1.8rem;
    text-align: start;
  }
}
.p-about__nursery-lead strong {
  font-weight: 500;
}
.p-about__nursery-box {
  background: var(--color-white);
  padding: 4rem;
  margin-bottom: 3.2rem;
  border-radius: 2rem;
  border: 0.5rem solid #fff4e9;
  position: relative;
}
@media screen and (max-width: 520px) {
  .p-about__nursery-box {
    padding: 2rem;
  }
}
.p-about__nursery-box::after {
  content: "";
  width: 4.731rem;
  height: 4rem;
  background: url(/assets/images/about/nursery-deco.webp) no-repeat center center/contain;
  position: absolute;
  top: -2rem;
  left: -2rem;
}
.p-about__nursery-box h3 {
  font-size: 2.4rem;
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 3.2rem;
}
@media screen and (max-width: 520px) {
  .p-about__nursery-box h3 {
    font-size: 1.8rem;
    margin-bottom: 1.6rem;
  }
}
.p-about__nursery-box:nth-last-of-type(1) {
  margin: 0;
}

.p-kb {
  padding-top: 6.4rem;
}
@media screen and (max-width: 520px) {
  .p-kb {
    padding-top: 4.4rem;
  }
}
.p-kbHead {
  position: relative;
  z-index: 1;
}
.p-kbHead::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: 40%;
  background-color: var(--bg-cream);
}
.p-kbHead__image {
  position: relative;
}
.p-kbHead__image img {
  border-radius: 2rem;
  overflow: hidden;
}
.p-kbHead__image .p-kb__deco01 {
  position: absolute;
  left: -8rem;
  bottom: 0;
  max-width: 18rem;
}
@media screen and (max-width: 520px) {
  .p-kbHead__image .p-kb__deco01 {
    max-width: 9rem;
    left: -4rem;
  }
}
.p-kbMain {
  background: var(--bg-cream);
}
.p-kbMain .l-inner {
  position: relative;
  z-index: 1;
}
.p-kbMain .l-inner .p-kb__deco02 {
  position: absolute;
  max-width: 24rem;
  left: 20%;
  top: -4rem;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-kbMain .l-inner .p-kb__deco02 {
    left: 20%;
    max-width: 20rem;
  }
}
@media screen and (max-width: 520px) {
  .p-kbMain .l-inner .p-kb__deco02 {
    max-width: 14rem;
    left: 8%;
    top: -2rem;
  }
}
.p-kbMain .l-inner .p-kb__deco03 {
  position: absolute;
  max-width: 12rem;
  right: 10%;
  top: 10rem;
  z-index: -1;
}
@media screen and (max-width: 520px) {
  .p-kbMain .l-inner .p-kb__deco03 {
    max-width: 6rem;
    right: 0;
    top: 7rem;
  }
}
.p-kbMain__lead {
  font-size: 3.2rem;
  font-weight: 500;
  text-align: center;
  padding: 1.6rem 0 3.2rem 0;
}
@media screen and (max-width: 520px) {
  .p-kbMain__lead {
    font-size: 2.4rem;
  }
}
.p-kbMain__lead span {
  color: var(--color-white);
}
.p-kbMain__text {
  text-align: center;
  padding-bottom: 10rem;
}
@media screen and (max-width: 520px) {
  .p-kbMain__text {
    padding-bottom: 5rem;
    text-align: justify;
  }
}
.p-kbMain__contents {
  padding-bottom: 6.4rem;
}
@media screen and (max-width: 520px) {
  .p-kbMain__contents {
    padding-bottom: 4.4rem;
  }
}
.p-kbMain__contents-detail {
  display: grid;
  grid-template-columns: 4em 1fr;
  padding-bottom: 2.4rem;
}
@media screen and (max-width: 520px) {
  .p-kbMain__contents-detail {
    grid-template-columns: 1fr;
  }
}
.p-kbMain__contents-detail h4 {
  font-size: 2.4rem;
  color: var(--primary-color);
  min-width: fit-content;
  height: 100%;
  position: relative;
  display: grid;
  place-items: center;
  z-index: 1;
}
@media screen and (max-width: 520px) {
  .p-kbMain__contents-detail h4 {
    font-size: 1.8rem;
  }
}
.p-kbMain__contents-detail h4::after {
  content: "";
  display: block;
  width: 50%;
  height: 100%;
  background: var(--color-white);
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  border-radius: 1rem 0 0 1rem;
}
@media screen and (max-width: 520px) {
  .p-kbMain__contents-detail h4::after {
    width: 100%;
    height: 50%;
    top: auto;
    bottom: 0;
    border-radius: 1rem 1rem 0 0;
  }
}
.p-kbMain__contents-detail p {
  background: var(--color-white);
  padding: 0.8rem 1.6rem;
  border-radius: 0 1rem 1rem 0;
}
@media screen and (max-width: 520px) {
  .p-kbMain__contents-detail p {
    border-radius: 0 0 1rem 1rem;
    text-align: justify;
  }
}
.p-kbMain__contents-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media screen and (max-width: 520px) {
  .p-kbMain__contents-images {
    grid-template-columns: 1fr;
  }
}
.p-kbMain__contents-images figure {
  display: grid;
  gap: 1rem;
}
.p-kbMain__contents-images figure img {
  border-radius: 1rem;
}
.p-kbMain__contents-images figure figcaption {
  text-align: center;
}

.p-facility {
  padding: var(--sec-padding);
}
.p-facility__contents {
  display: grid;
  grid-template-columns: 62rem 1fr;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .p-facility__contents {
    grid-template-columns: 1fr;
  }
}
.p-facility__table {
  width: 100%;
}
.p-facility__table tr {
  border-bottom: 1px dashed #cacaca;
}
.p-facility__table th {
  color: var(--primary-color);
  min-width: 10rem;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .p-facility__table th {
    padding: 1em 0;
  }
}
.p-facility__table td {
  vertical-align: middle;
}
.p-facility__map iframe {
  width: 100%;
}

.p-policy {
  padding: var(--sec-padding);
}
.p-policy .c-title {
  position: relative;
  z-index: 2;
  padding: 0;
}
.p-policyHead {
  position: relative;
  z-index: 1;
  background: var(--bg-cream);
  border-radius: 0 0 2rem 2rem;
  padding: 3.2rem 2rem;
  margin-bottom: 6.4rem;
}
.p-policyHead::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  top: -3.2rem;
  left: 0;
  height: 3.2rem;
  background: var(--bg-cream);
  border-radius: 2rem 2rem 0 0;
}
.p-policyHead__title {
  font-size: 3.2rem;
  background: var(--color-white);
  text-align: center;
  padding: 1.6rem 6.4rem;
  width: fit-content;
  margin: 0 auto;
  border-radius: 2rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 520px) {
  .p-policyHead__title {
    font-size: 2.4rem;
  }
}
.p-policyHead__title .is-pc {
  display: inline-block;
}
.p-policyHead__text {
  text-align: center;
}
@media screen and (max-width: 520px) {
  .p-policyHead__text {
    text-align: justify;
  }
}
.p-policyMain {
  display: grid;
  gap: 3.2rem;
}
.p-policyMain__content {
  display: flex;
  gap: 6.4rem;
}
@media screen and (max-width: 767px) {
  .p-policyMain__content {
    gap: 3.2rem;
  }
}
@media screen and (max-width: 520px) {
  .p-policyMain__content {
    flex-direction: column-reverse;
    gap: 1.6rem;
  }
}
.p-policyMain__content:nth-of-type(2n) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 520px) {
  .p-policyMain__content:nth-of-type(2n) {
    flex-direction: column-reverse;
  }
}
.p-policyMain__image {
  flex-basis: 30rem;
  aspect-ratio: 1;
  border-radius: 1rem;
  overflow: hidden;
}
@media screen and (max-width: 520px) {
  .p-policyMain__image {
    max-width: 100%;
  }
}
.p-policyMain__detail {
  flex-basis: calc(100% - 30rem);
}
.p-policyMain__detail h4 {
  font-size: 3.2rem;
  padding-bottom: 3.2rem;
}
@media screen and (max-width: 520px) {
  .p-policyMain__detail h4 {
    font-size: 2.4rem;
    padding-bottom: 1.6rem;
  }
}
.p-policyMain__detail p {
  text-align: justify;
}

.p-goal {
  padding: var(--sec-padding);
}
.p-goal__contents {
  position: relative;
}
.p-goal__image {
  border-radius: 2rem;
  overflow: hidden;
  width: 70%;
}
@media screen and (max-width: 520px) {
  .p-goal__image {
    width: 100%;
  }
}
.p-goal__text {
  position: absolute;
  max-width: 47rem;
  top: 0;
  right: 0;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-goal__text {
    max-width: 35rem;
    top: -10%;
    right: 0;
    pointer-events: none;
  }
}
@media screen and (max-width: 520px) {
  .p-goal__text {
    position: relative;
    max-width: 100%;
    padding: 3.2rem 0 0;
  }
}
.p-goal__deco {
  position: absolute;
  max-width: 14rem;
  right: -5rem;
  bottom: 0;
}
@media screen and (max-width: 520px) {
  .p-goal__deco {
    max-width: 7rem;
    right: 0;
  }
}

.p-daily {
  background: var(--bg-cream);
  padding: var(--sec-padding);
}
.p-daily__contents {
  background: var(--color-white);
  padding: 6.4rem 3.2rem;
  border-radius: 2rem;
}
@media screen and (max-width: 520px) {
  .p-daily__contents {
    padding: 3.2rem 1rem;
  }
}
.p-dailyHead__tab {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-dailyHead__tab {
    display: flex;
    justify-content: space-between;
  }
}
.p-dailyHead__tab-btn {
  display: block;
  font-size: 2.4rem;
  background: #eee;
  color: var(--color-white);
  width: 15rem;
  text-align: center;
  padding: 0.5rem 3.2rem;
  border-radius: 1rem;
  margin-bottom: 4rem;
  cursor: pointer;
}
@media screen and (max-width: 520px) {
  .p-dailyHead__tab-btn {
    font-size: 1.6rem;
    width: 12rem;
  }
}
.p-dailyHead__tab-btn.is-active {
  background: var(--primary-color);
}
.p-dailyMain {
  display: flex;
  flex-wrap: wrap;
  gap: 3.2rem 6.4rem;
}
@media screen and (max-width: 520px) {
  .p-dailyMain {
    gap: 1.6rem;
  }
}
.p-dailyMain__title {
  font-size: 2.4rem;
  background: var(--primary-color);
  color: var(--color-white);
  width: fit-content;
  padding: 0.5rem 3.2rem;
  border-radius: 1rem;
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .p-dailyMain__title {
    display: none;
  }
}
.p-dailyMain__list-item {
  margin-left: 2rem;
  display: grid;
  grid-template-columns: 16rem 1fr;
  gap: 1.6rem;
  padding: 1.6rem 0;
  border-bottom: 1px dashed var(--primary-color);
}
@media screen and (max-width: 520px) {
  .p-dailyMain__list-item {
    grid-template-columns: 1fr;
    gap: 0;
    margin: 0 1rem;
  }
}
.p-dailyMain__list-item .p-in-time {
  font-family: var(--font-lz);
  font-weight: 700;
  color: var(--primary-color);
}
.p-dailyMain__box {
  width: calc((100% - 6.4rem) / 2);
}
@media screen and (max-width: 767px) {
  .p-dailyMain__box {
    width: 100%;
  }
}
.p-dailyMain__box.is-01 {
  display: none;
}
.p-dailyMain__box.is-01.is-active {
  display: block;
}
.p-dailyMain__box.is-02 {
  display: none;
}
.p-dailyMain__box.is-02.is-active {
  display: block;
}
.p-dailyMain__box.is-full {
  width: 100%;
}
.p-dailyMain__box.is-full .p-dailyMain__list {
  display: grid;
  gap: 3.2rem;
}
@media screen and (max-width: 520px) {
  .p-dailyMain__box.is-full .p-dailyMain__list {
    gap: 1.6rem;
  }
}
.p-dailyMain__box.is-full .p-dailyMain__list-item {
  display: block;
  position: relative;
  background: var(--bg-cream);
  border-radius: 1rem;
  border-bottom: none;
  margin-left: 0;
  padding: 2rem;
}
@media screen and (max-width: 520px) {
  .p-dailyMain__box.is-full .p-dailyMain__list-item {
    padding: 1rem;
    margin: 0;
  }
}
.p-dailyMain__box.is-full .p-dailyMain__list-item .p-in-time {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 2rem;
}
@media screen and (max-width: 520px) {
  .p-dailyMain__box.is-full .p-dailyMain__list-item .p-in-time {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
  }
}
.p-dailyMain__box.is-full .p-dailyMain__list-item .p-in-text {
  text-align: center;
}
@media screen and (max-width: 520px) {
  .p-dailyMain__box.is-full .p-dailyMain__list-item .p-in-text {
    text-align: start;
  }
}

.p-event {
  padding: var(--sec-padding);
}
.p-event__container {
  background: var(--bg-cream);
  padding: 4rem 3.2rem;
  border-radius: 2rem;
}
@media screen and (max-width: 520px) {
  .p-event__container {
    padding: 3.2rem 2rem;
  }
}
.p-event__box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding-bottom: 3.2rem;
}
@media screen and (max-width: 767px) {
  .p-event__box {
    grid-template-columns: repeat(2, 1fr);
    gap: 10rem 2rem;
  }
}
@media screen and (max-width: 520px) {
  .p-event__box {
    grid-template-columns: 1fr;
    gap: 10rem 2rem;
  }
}
.p-event__box-table {
  position: relative;
  background: var(--color-white);
  border-radius: 1rem;
}
.p-event__box-table tr {
  position: relative;
  display: flex;
  align-items: center;
}
.p-event__box-table tr::after {
  content: "";
  width: calc(100% - 4rem);
  height: 3px;
  background: url(/assets/images/hoiku/stroke.webp) no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.p-event__box-table tr:nth-last-of-type(1)::after {
  content: none;
}
.p-event__box-table th {
  font-size: 2.4rem;
  padding: 2rem 0 2rem 2rem;
  min-width: 10rem;
}
@media screen and (max-width: 520px) {
  .p-event__box-table th {
    font-size: 1.6rem;
    width: 7.5rem;
    min-width: none;
  }
}
.p-event__box-table th span {
  font-size: 6rem;
  font-weight: 700;
  font-family: var(--font-lz);
  letter-spacing: -0.15em;
  margin-right: 0.2em;
}
@media screen and (max-width: 520px) {
  .p-event__box-table th span {
    font-size: 3rem;
  }
}
.p-event__box-table::after {
  content: "";
  display: block;
  width: 11rem;
  height: 11rem;
  position: absolute;
  top: -8rem;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 520px) {
  .p-event__box-table::after {
    width: 8rem;
    height: 8rem;
    top: -6rem;
  }
}
.p-event__box-table.-spring::after {
  background: url(/assets/images/hoiku/event-spring.webp) no-repeat center center/contain;
}
.p-event__box-table.-spring th span {
  color: #e8acaa;
}
.p-event__box-table.-spring td ul li::before {
  background: #e8acaa;
}
.p-event__box-table.-summer::after {
  background: url(/assets/images/hoiku/event-summer.webp) no-repeat center center/contain;
}
.p-event__box-table.-summer th span {
  color: #a5d4df;
}
.p-event__box-table.-summer ul li::before {
  background: #a5d4df;
}
.p-event__box-table.-autumn::after {
  background: url(/assets/images/hoiku/event-autumn.webp) no-repeat center center/contain;
}
.p-event__box-table.-autumn th span {
  color: #f2c189;
}
.p-event__box-table.-autumn ul li::before {
  background: #f2c189;
}
.p-event__box-table.-winter::after {
  background: url(/assets/images/hoiku/event-winter.webp) no-repeat center center/contain;
}
.p-event__box-table.-winter th span {
  color: #98c355;
}
.p-event__box-table.-winter ul li::before {
  background: #98c355;
}
.p-event__box-table td {
  vertical-align: middle;
  padding: 2rem;
}
.p-event__box-table td ul li {
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.p-event__box-table td ul li::before {
  content: "";
  display: inline-block;
  width: 1.4rem;
  height: 1.4rem;
  aspect-ratio: 1;
  border-radius: 999px;
}
.p-event__box-table td .p-in-image {
  max-width: 8rem;
  margin: 0 auto;
}
@media screen and (max-width: 520px) {
  .p-event__box-table td .p-in-image {
    max-width: 5rem;
    margin: 0;
  }
}
.p-event__text {
  font-weight: 700;
  text-align: center;
  color: var(--primary-color);
}

.p-admission {
  padding: var(--sec-padding);
}
.p-admission__title {
  position: relative;
  z-index: 2;
  font-size: 3.2rem;
  text-align: center;
}
.p-admission__title .is-pc {
  display: inline-block;
}
@media screen and (max-width: 520px) {
  .p-admission__title {
    font-size: 2.4rem;
  }
}
.p-admission__text {
  background: var(--bg-cream);
  text-align: center;
  padding: 3.2rem 0;
  position: relative;
  z-index: 1;
}
.p-admission__text::before {
  content: "";
  width: 100%;
  height: 3.2rem;
  position: absolute;
  z-index: -1;
  top: -3.2rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-cream);
  border-radius: 2rem 2rem 0 0;
}
.p-admission__images {
  position: relative;
  z-index: 1;
  padding: 0 10rem;
  margin: 0 auto;
  gap: 9rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
}
@media screen and (max-width: 767px) {
  .p-admission__images {
    gap: 3.2rem;
    padding: 2rem;
  }
}
@media screen and (max-width: 520px) {
  .p-admission__images {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.6rem;
  }
}
.p-admission__images::after {
  content: "";
  width: 100%;
  height: 75%;
  background: var(--bg-cream);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  border-radius: 0 0 2rem 2rem;
}
.p-admission__images .p-in-image {
  position: relative;
  z-index: 1;
  height: fit-content;
}
.p-admission__images .p-in-image img {
  border-radius: 1rem;
  overflow: hidden;
}
.p-admission__images .p-in-image:nth-of-type(2n - 1) {
  margin-top: 2rem;
}
.p-admission__images .p-in-image::after {
  position: absolute;
  z-index: -1;
  right: -1rem;
  bottom: -1rem;
  content: "";
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  border-radius: 1rem;
}
@media screen and (max-width: 520px) {
  .p-admission__images .p-in-image::after {
    right: -0.5rem;
    bottom: -0.5rem;
  }
}

.p-requirements {
  background: var(--bg-cream);
  padding: var(--sec-padding);
}
.p-requirements__container {
  background: var(--color-white);
  border-radius: 2rem;
  padding: 3.2rem 8rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8rem;
}
@media screen and (max-width: 767px) {
  .p-requirements__container {
    grid-template-columns: 1fr;
    padding: 3.2rem;
    gap: 6.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-requirements__container {
    grid-template-columns: 1fr;
    padding: 3.2rem 2rem;
    gap: 3.2rem;
  }
}
.p-requirements__box h3 {
  font-size: 2.4rem;
  color: var(--primary-color);
}
.p-requirements__box table {
  width: 100%;
}
.p-requirements__box table tr {
  border-bottom: 1px dashed var(--primary-color);
}
.p-requirements__box table th {
  color: var(--primary-color);
  min-width: 16rem;
  padding: 1.6rem 0;
}
@media screen and (max-width: 520px) {
  .p-requirements__box table th {
    min-width: 5em;
  }
}
.p-requirements__box table td {
  padding: 1.6rem 0;
}
.p-requirements__box p {
  padding: 1.6rem 0;
}
@media screen and (max-width: 520px) {
  .p-requirements .c-btn {
    min-width: 100%;
  }
}

.p-privacyPolicy {
  background: var(--bg-cream);
  border: 0.5rem solid #fff4e9;
  border-radius: 2rem;
  overflow: hidden;
  margin-bottom: 6.4rem;
}
.p-privacyPolicy__inner {
  padding: 10rem 0;
  max-width: min(77.7rem, 100% - 4rem);
  margin: 0 auto;
}
@media screen and (max-width: 520px) {
  .p-privacyPolicy__inner {
    padding: 3.2rem 0;
  }
}
.p-privacyPolicy h2 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}
.p-privacyPolicy__text {
  background: var(--color-white);
  padding: 2rem 1.6rem;
  border-radius: 1rem;
  overflow: hidden;
  margin-bottom: 3.2rem;
}
.p-privacyPolicy__text ul {
  padding: 1.6rem 2.4rem;
  background: var(--bg-cream);
  margin-top: 2rem;
  border-radius: 1rem;
}
.p-privacyPolicy__contact {
  margin-bottom: 6.4rem;
}
.p-privacyPolicy__contact-text {
  text-align: center;
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 3.2rem;
}
.p-privacyPolicy__contact-box {
  background: var(--bg-cream);
  border: 0.5rem solid #fff4e9;
  max-width: 88rem;
  margin: 0 auto;
  padding: 5rem;
  border-radius: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3.2rem;
}
@media screen and (max-width: 767px) {
  .p-privacyPolicy__contact-box {
    flex-direction: column;
  }
}
@media screen and (max-width: 520px) {
  .p-privacyPolicy__contact-box {
    padding: 3.2rem 2rem;
  }
}
.p-privacyPolicy__contact-box .p-in-text {
  line-height: 2;
  font-size: 2.4rem;
  font-weight: 700;
  width: fit-content;
}
@media screen and (max-width: 520px) {
  .p-privacyPolicy__contact-box .p-in-text {
    font-size: 1.8rem;
  }
}
.p-privacyPolicy__contact-box .p-in-text p {
  border-bottom: 1px solid var(--primary-color);
}
.p-privacyPolicy__contact-box .p-in-tel a {
  font-size: 2rem;
  color: var(--primary-color);
  line-height: 1;
}
@media screen and (max-width: 520px) {
  .p-privacyPolicy__contact-box .p-in-tel a {
    font-size: 1.6rem;
  }
}
.p-privacyPolicy__contact-box .p-in-tel a span {
  font-size: 6rem;
  font-weight: 700;
}
@media screen and (max-width: 520px) {
  .p-privacyPolicy__contact-box .p-in-tel a span {
    font-size: 4rem;
  }
}
.p-privacyPolicy__contact-box .p-in-tel p {
  text-align: center;
  font-size: 2rem;
  color: var(--primary-color);
}
@media screen and (max-width: 520px) {
  .p-privacyPolicy__contact-box .p-in-tel p {
    font-size: 1.6rem;
  }
}

.u-green {
  color: var(--primary-color);
}

.u-white {
  color: var(--color-white);
}

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

.u-border {
  border-bottom: 1px solid var(--primary-color);
}

.u-btn-col {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 520px) {
  .u-btn-col {
    flex-direction: column;
    gap: 3.2rem;
  }
}