@charset "UTF-8";
/*
Template: arkhe
Theme Name: Arkhe Child
Theme URI: https://arkhe-theme.com/ja/
Description: Arkhe用子テーマ
Version: 1.0.0
Text Domain: arkhe
License: GNU General Public License
License URI: http://www.gnu.org/licenses/gpl.html
*/
/* ==========================================================================
Foundation
========================================================================== */
a {
  color: unset;
  text-decoration: none;
}

@media screen and (min-width: 769px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

.home figure {
  margin: 0;
}

address {
  font-style: unset;
}

html {
  font-size: 16px;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  html {
    font-size: 14px;
  }
}

body {
  color: #72512B;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  background-image: url(img/bg_white.png);
}

.home .l-container:not(.l-header__body) {
  max-width: calc(1240px + var(--ark-padding--container) * 2);
}

.home .l-content__body {
  margin-top: 0;
  margin-bottom: 0;
}

.top #content {
  padding-top: 0;
}

.home .l-content {
  margin-bottom: 0;
}

.l-article {
  max-width: 1120px;
}

.c-gnav > .menu-item > a .ttl {
  font-size: 16px;
}

/* ==========================================================================
Layout
========================================================================== */
.l-wide_block {
  position: relative;
  left: calc(50% - 50vw);
  width: 100vw;
  max-width: 100vw;
}

.l-bg {
  position: relative;
  background-image: url(img/bg_green.png);
  padding-top: 160px;
  padding-bottom: 160px;
}
@media screen and (max-width: 999px) {
  .l-bg {
    padding-top: 120px;
    padding-bottom: calc(min(300px, 70vw) / 1.3 * 0.4 + 40px);
  }
}
.l-bg::before, .l-bg::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  pointer-events: none;
}
.l-bg::before {
  top: 0;
  aspect-ratio: 2.6/1;
  background-image: url(img/bg_about_top.png);
  background-position: top;
}
.l-bg::after {
  bottom: 0;
  aspect-ratio: 2/1;
  background-image: url(img/bg_about_bottom.png);
  background-position: bottom;
}
.l-bg .l-bg__balloon {
  position: absolute;
  bottom: 0;
  left: 10%;
  transform: translateY(50%);
  width: 20%;
  aspect-ratio: 1.3/1;
  z-index: 1;
}
@media screen and (max-width: 999px) {
  .l-bg .l-bg__balloon {
    left: 50%;
    transform: translate(-50%, 60%);
    width: 70%;
    max-width: 300px;
  }
}
.l-bg .l-bg__balloon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ==========================================================================
Object
========================================================================== */
/* Component
----------------------------------------------------------------- */
.c-button {
  display: inline-block;
  position: relative;
  font-weight: bold;
  text-align: center;
  padding: 2em 4em;
  background-color: #FFFFFF;
  border-radius: 32px;
  box-shadow: 7px 7px 0 0 rgba(172, 135, 90, 0.19);
  transition: 0.2s;
}
.c-button:hover {
  box-shadow: 0 0 0 0 rgba(172, 135, 90, 0.19);
  transform: translate(7px, 7px);
}
@media screen and (max-width: 999px) {
  .c-button {
    font-size: 1.4rem;
    padding: 1.5em 3em 1.5em 2em;
  }
}
.c-button::after {
  content: "";
  position: absolute;
  right: 1.5em;
  top: 50%;
  transform: translateY(-50%);
  width: 2rem;
  height: 2rem;
  background-image: url(img/arrow-green.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transition: 0.2s;
}
@media screen and (max-width: 999px) {
  .c-button::after {
    right: 1em;
  }
}

.c-blog_card__list {
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-areas: "card1 card2" "card1 card3";
  grid-template-columns: 60% 40%;
  gap: 1.5rem;
}
@media screen and (max-width: 999px) {
  .c-blog_card__list {
    grid-template-areas: "card1 card1" "card2 card3";
    grid-template-columns: repeat(2, 1fr);
  }
}

.c-blog_card {
  background-color: #FFFFFF;
  border-radius: 32px;
  box-shadow: 6px 6px 0 0 rgba(172, 135, 90, 0.19);
  overflow: hidden;
  transition: 0.2s;
}
.c-blog_card:hover {
  box-shadow: 0 0 0 0 rgba(172, 135, 90, 0.19);
  transform: translate(6px, 6px);
}
.c-blog_card.--1 {
  grid-area: card1;
}
.c-blog_card.--1 .__a {
  display: grid;
  grid-template-columns: 45% 55%;
}
@media screen and (max-width: 999px) {
  .c-blog_card.--1 .__a {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(2, auto);
  }
}
.c-blog_card.--1 .c-blog_card__main {
  gap: 1rem;
  padding: 60px 30px;
}
@media screen and (max-width: 999px) {
  .c-blog_card.--1 .c-blog_card__main {
    padding: 50px 25px 20px;
  }
}
.c-blog_card.--1 .c-blog_card__title {
  font-size: 1.125rem;
}
@media screen and (max-width: 999px) {
  .c-blog_card.--1 .c-blog_card__title {
    font-size: 1.3rem;
  }
}
.c-blog_card.--1 .c-blog_card__new {
  font-size: 0.875rem;
  padding: 0.5rem 0.5rem 1rem;
}
@media screen and (max-width: 999px) {
  .c-blog_card.--1 .c-blog_card__new {
    left: 30px;
    font-size: 1rem;
    padding: 0.2rem 0.5rem 0.5rem;
  }
}
.c-blog_card.--2 {
  grid-area: card2;
}
.c-blog_card.--3 {
  grid-area: card3;
}
.c-blog_card .__a {
  display: grid;
  grid-template-columns: 70% 30%;
  height: 100%;
}
@media screen and (max-width: 999px) {
  .c-blog_card .__a {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr auto;
  }
}
.c-blog_card .c-blog_card__main {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem;
  padding: 20px 24px;
}
@media screen and (max-width: 999px) {
  .c-blog_card .c-blog_card__main {
    justify-content: flex-start;
    padding: 2rem 1rem 1rem;
  }
}
.c-blog_card .c-blog_card__new {
  position: absolute;
  top: 0;
  left: 30px;
  font-family: "Fredoka", sans-serif;
  color: #FFFFFF;
  font-weight: bold;
  font-size: 0.8rem;
  background-color: #42C36F;
  padding: 0 0.5rem 0.3rem;
}
@media screen and (max-width: 999px) {
  .c-blog_card .c-blog_card__new {
    left: 24px;
    padding: 0.1rem 0.4rem 0.3rem;
  }
}
.c-blog_card .c-blog_card__new::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.5px;
  width: 100%;
  height: 0.5em;
  background-color: #FFFFFF;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}
.c-blog_card .c-blog_card__title {
  color: #FE9226;
  font-weight: bold;
}
.c-blog_card .c-blog_card__desc {
  color: #B98D58;
  font-size: 0.875rem;
}
@media screen and (max-width: 999px) {
  .c-blog_card .c-blog_card__desc {
    font-size: 1rem;
  }
}
.c-blog_card .c-blog_card__img {
  display: flex;
}
.c-blog_card .c-blog_card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-date {
  font-family: "Fredoka", sans-serif;
  font-weight: 600;
}

.c-news_card__wrapper {
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 283px;
}

.c-news_card {
  color: #72512B;
  background-color: #FFFFFF;
  border-radius: 40px;
  box-shadow: 6px 6px 0 0 rgba(172, 135, 90, 0.19);
  transition: 0.2s;
}
.c-news_card:hover {
  box-shadow: 0px 0px 0 0 rgba(172, 135, 90, 0.19);
  transform: translate(6px, 6px);
}
@media screen and (max-width: 999px) {
  .c-news_card {
    border-radius: 30px;
  }
}
.c-news_card.--column .c-news_card__link {
  flex-direction: column;
}
.c-news_card .c-news_card__link {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 2rem 4rem 2rem 2rem;
}
.c-news_card .c-news_card__link::after {
  content: "";
  position: absolute;
  right: 1.5em;
  top: 50%;
  transform: translateY(-50%);
  width: 2rem;
  height: 2rem;
  background-image: url(img/arrow-brown.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transition: 0.2s;
}
.c-news_card .c-news_card__info {
  display: flex;
  align-items: center;
  gap: 10px;
}
.c-news_card .c-news_card__title {
  font-size: 1.125rem;
  font-weight: bold;
}

.c-category {
  display: inline-block;
  font-size: 0.75rem;
  color: #B98D58;
  background-color: #F9EEE3;
  padding: 0.4em 1em;
  text-align: center;
  line-height: 1;
  border-radius: 6px;
}
@media screen and (max-width: 999px) {
  .c-category {
    font-size: 0.9rem;
  }
}

.c-category__wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
@media screen and (max-width: 999px) {
  .c-category__wrapper {
    gap: 5px;
  }
}

.c-consider_card__box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 30px 40px;
}
@media screen and (max-width: 1200px) {
  .c-consider_card__box {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .c-consider_card__box {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 1fr);
  }
}

.c-consider_card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 40px;
  background: #FFFFFF;
  border-radius: 32px;
  box-shadow: 7px 7px 0 0 rgba(0, 0, 0, 0.1);
  transition: 0.2s;
}
.c-consider_card:hover {
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.1);
  transform: translate(7px, 7px);
}
.c-consider_card.--tel {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #F9E4CE;
  box-shadow: unset;
  padding: 10px;
}
.c-consider_card .c-consider_card__title {
  display: flex;
  flex-direction: column;
  font-size: 1.5rem;
  font-weight: bold;
}
.c-consider_card .c-consider_card__sub_title {
  font-family: "Fredoka", sans-serif;
  color: #42C36F;
  font-size: 1.125rem;
  font-weight: 600;
}
.c-consider_card .c-consider_card__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20%;
}
.c-consider_card .c-consider_card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.c-feature_card__list {
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
@media screen and (max-width: 999px) {
  .c-feature_card__list {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

.c-feature_card {
  position: relative;
}
.c-feature_card:nth-child(2n) {
  top: -90px;
}
@media screen and (max-width: 999px) {
  .c-feature_card:nth-child(2n) {
    top: unset;
  }
}
.c-feature_card .c-feature_card__img {
  display: flex;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 60px;
  overflow: hidden;
}
.c-feature_card .c-feature_card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-feature_card .c-feature_card__main {
  margin-top: 30px;
}
@media screen and (max-width: 999px) {
  .c-feature_card .c-feature_card__main {
    margin-top: 20px;
  }
}
.c-feature_card .c-feature_card__title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 1200px) {
  .c-feature_card .c-feature_card__title {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 999px) {
  .c-feature_card .c-feature_card__title {
    font-size: 1.7rem;
  }
}
.c-feature_card .c-feature_card__sub_title {
  font-family: "Fredoka", sans-serif;
  color: #42C36F;
  font-weight: 600;
  line-height: 1;
}
.c-feature_card .c-feature_card__text {
  color: #B98D58;
  font-size: 0.95rem;
  font-weight: bold;
  line-height: 2;
  margin-top: 30px;
}
@media screen and (max-width: 999px) {
  .c-feature_card .c-feature_card__text {
    font-size: 1.15rem;
    margin-top: 20px;
  }
}

.c-tel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.c-tel .c-tel__title {
  font-weight: bold;
}
.c-tel .c-tel__num {
  font-size: 2.5rem;
  font-weight: bold;
}
.c-tel .c-tel__note {
  color: #B98D58;
  font-size: 0.875rem;
  font-weight: bold;
}

.c-gnav.--icon {
  --icon-h: 50px;
  align-items: flex-end;
}
.c-gnav.--icon > .menu-item.--about > a::before {
  background-image: url(img/icon_about.png);
  height: var(--icon-h);
  aspect-ratio: 1.3/1;
}
.c-gnav.--icon > .menu-item.--schedule > a::before {
  background-image: url(img/icon_schedule.png);
  height: var(--icon-h);
  aspect-ratio: 1/1;
}
.c-gnav.--icon > .menu-item.--policy > a::before {
  background-image: url(img/icon_policy.png);
  height: var(--icon-h);
  aspect-ratio: 1/1;
}
.c-gnav.--icon > .menu-item.--facility > a::before {
  background-image: url(img/icon_facility.png);
  height: var(--icon-h);
  aspect-ratio: 2/1;
}
.c-gnav.--icon > .menu-item.--faq > a::before {
  background-image: url(img/icon_faq.png);
  height: var(--icon-h);
  aspect-ratio: 1/1;
  background-position: center;
}
.c-gnav.--icon > .menu-item > a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}
.c-gnav.--icon > .menu-item > a::before {
  content: "";
  margin-bottom: 5px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom;
}
.c-gnav.--under_line > .menu-item:hover a::after, .c-gnav.--under_line > .menu-item.-current a::after {
  transform: scaleX(1);
}
.c-gnav.--under_line > .menu-item > a {
  position: relative;
}
.c-gnav.--under_line > .menu-item > a::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  background: #42C36F;
  width: 100%;
  height: 3px;
  transform: scaleX(0);
  transition: 0.2s;
}

/* Project
----------------------------------------------------------------- */
.p-diary {
  position: relative;
  margin-top: 150px;
}
@media screen and (max-width: 999px) {
  .p-diary {
    margin-top: calc(min(37.5vw, 200px) / 1.65 + 20px);
  }
}
.p-diary::before {
  content: "";
  position: absolute;
  bottom: 90%;
  left: calc(var(--ark-padding--container) * -0.8);
  width: 17%;
  aspect-ratio: 1.65/1;
  background-image: url(img/illust_footrace.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
@media screen and (max-width: 999px) {
  .p-diary::before {
    left: unset;
    bottom: 100%;
    right: var(--ark-padding--container);
    width: 37.5%;
    max-width: 200px;
  }
}
.p-diary .p-diary__title {
  text-align: center;
  max-width: 100%;
}
.p-diary .p-diary__title img {
  object-fit: contain;
}
.p-diary .c-blog_card__list {
  margin-top: 45px;
}
.p-diary .p-diary__button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 450px;
  max-width: 100%;
  margin: 40px auto 0;
}
.p-diary .p-diary__button .c-button {
  width: 100%;
  max-width: 100%;
}

.p-news {
  position: relative;
}
.p-news .p-news__title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 2.5rem;
  font-weight: bold;
}
@media screen and (max-width: 1200px) {
  .p-news .p-news__title {
    font-size: 2rem;
  }
}
@media screen and (max-width: 999px) {
  .p-news .p-news__title {
    font-family: 2.2rem;
  }
}
.p-news .c-news_card__wrapper {
  margin-top: 30px;
}
.p-news .p-news__link {
  position: absolute;
  top: 80px;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: bold;
  transition: 0.2s;
}
.p-news .p-news__link:hover {
  opacity: 0.8;
}
@media screen and (max-width: 1200px) {
  .p-news .p-news__link {
    font-size: 1rem;
  }
}
@media screen and (max-width: 999px) {
  .p-news .p-news__link {
    position: static;
    font-size: 1.5rem;
    margin-top: 30px;
  }
}
.p-news .p-news__link::after {
  content: "";
  display: inline-block;
  width: 1.6em;
  aspect-ratio: 1/1;
  background-image: url(img/arrow-green.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.p-consider {
  margin-top: 150px;
  padding-bottom: 20px;
}
@media screen and (max-width: 999px) {
  .p-consider {
    margin-top: 120px;
  }
}
.p-consider .p-consider__title {
  color: #FE9226;
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 999px) {
  .p-consider .p-consider__title {
    font-size: 2.3rem;
  }
}
.p-consider .p-consider__text {
  color: #B98D58;
  font-weight: bold;
  text-align: center;
  line-height: 2;
  margin-top: 40px;
}
@media screen and (max-width: 999px) {
  .p-consider .p-consider__text {
    font-size: 1.125rem;
  }
}
.p-consider .c-consider_card__box {
  margin-top: 70px;
}
@media screen and (max-width: 999px) {
  .p-consider .c-consider_card__box {
    margin-top: 40px;
  }
}

.p-feature__wrapper {
  position: relative;
  overflow-x: clip;
}
.p-feature__wrapper::before, .p-feature__wrapper::after {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: -1;
}
@media screen and (max-width: 999px) {
  .p-feature__wrapper::before, .p-feature__wrapper::after {
    display: none;
  }
}
.p-feature__wrapper::before {
  bottom: 25%;
  left: -5%;
  width: 36%;
  aspect-ratio: 3/2;
  background-image: url(img/deco_buchi01.png);
}
.p-feature__wrapper::after {
  top: 15%;
  right: -10%;
  width: 32%;
  aspect-ratio: 2/1;
  background-image: url(img/deco_buchi02.png);
}

.p-feature {
  position: relative;
  display: flex;
  flex-direction: column;
  margin-top: 150px;
}
@media screen and (max-width: 999px) {
  .p-feature {
    margin-top: calc(min(300px, 70vw) / 1.3 * 0.6 + 50px);
  }
}
.p-feature .p-feature__title {
  --hiyoko_w: 80px;
  position: relative;
  display: inline-flex;
  align-items: flex-end;
  justify-content: center;
  max-width: calc(100% - var(--hiyoko_w) * 1.7);
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-feature .p-feature__title {
    --hiyoko_w: 50px;
  }
}
.p-feature .p-feature__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(100% + 10px);
  width: var(--hiyoko_w);
  aspect-ratio: 4/7;
  background-image: url(img/illust_hiyoko.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom center;
}
@media screen and (max-width: 768px) {
  .p-feature .p-feature__title::after {
    left: calc(100% + 5px);
  }
}
.p-feature .p-feature__title img {
  object-fit: contain;
}
.p-feature .c-feature_card__list {
  margin-top: 180px;
}
@media screen and (max-width: 999px) {
  .p-feature .c-feature_card__list {
    margin-top: 40px;
  }
}
.p-feature .p-feature__button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 450px;
  max-width: 100%;
  margin: 40px auto 0;
}
@media screen and (max-width: 999px) {
  .p-feature .p-feature__button {
    margin-top: 60px;
  }
}
.p-feature .p-feature__button .c-button {
  width: 100%;
  max-width: 100%;
}
.p-feature .p-feature__note {
  position: absolute;
}
@media screen and (max-width: 999px) {
  .p-feature .p-feature__note {
    display: none;
  }
}
.p-feature .p-feature__note.--1 {
  left: 0;
  top: 10%;
  width: 2.5%;
  aspect-ratio: 4/5;
}
.p-feature .p-feature__note.--2 {
  top: 15%;
  left: 10%;
  width: 1.875%;
  aspect-ratio: 2/3;
}
.p-feature .p-feature__note.--3 {
  right: 7%;
  top: 9%;
  width: 2%;
  aspect-ratio: 1/1.65;
}
.p-feature .p-feature__note img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.p-feature .p-feature__band {
  position: absolute;
  bottom: 0;
  right: -2%;
  transform: translateY(35%);
  display: flex;
  width: 25%;
  aspect-ratio: 2/1;
}
@media screen and (max-width: 999px) {
  .p-feature .p-feature__band {
    bottom: unset;
    top: calc(100% + 100px);
    right: 50%;
    transform: translate(50%, -30%);
    width: 55%;
    max-width: 250px;
  }
  .p-feature .p-feature__band::before, .p-feature .p-feature__band::after {
    content: "";
    position: absolute;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
  }
  .p-feature .p-feature__band::before {
    bottom: 105%;
    right: 110%;
    width: 10%;
    aspect-ratio: 4/5;
    background-image: url(img/deco_note-1.svg);
  }
  .p-feature .p-feature__band::after {
    bottom: 90%;
    left: 45%;
    width: 7%;
    aspect-ratio: 2/3;
    background-image: url(img/deco_note-2.svg);
  }
}
.p-feature .p-feature__band img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.p-attention {
  background-color: #FFFFFF;
  border: 4px solid #FE9226;
  margin-top: 100px;
  padding: 50px;
  border-radius: 40px;
}
@media screen and (max-width: 999px) {
  .p-attention {
    margin-top: 30px;
    padding: 20px;
    border-radius: 30px;
  }
}

.p-lunch {
  background-color: #FFFFFF;
  border-radius: 40px;
  box-shadow: 6px 6px 0 0 rgba(172, 135, 90, 0.19);
  display: grid;
  grid-template-rows: auto 1fr;
}
@media screen and (max-width: 999px) {
  .p-lunch {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.p-lunch .p-lunch__head {
  position: relative;
}
.p-lunch .p-lunch__img {
  position: relative;
  display: flex;
}
.p-lunch .p-lunch__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}
.p-lunch .p-lunch__img::before {
  content: "";
  position: absolute;
  bottom: 100%;
  right: 0;
  width: 30%;
  max-width: 100px;
  aspect-ratio: 1.7/2;
  background-image: url(img/illust_lunch_cat.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom;
}
@media screen and (max-width: 999px) {
  .p-lunch .p-lunch__img::before {
    width: 25%;
  }
}
.p-lunch .p-lunch__body {
  padding: 0.5em 1rem 1rem;
  display: grid;
  grid-template-rows: auto auto 1fr;
}
.p-lunch .p-lunch__content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.p-lunch .p-lunch__title {
  font-size: 1.125rem;
  font-weight: bold;
  text-align: center;
  margin-top: 20px;
}
.p-lunch .p-lunch_button {
  position: relative;
  padding: 0.75em 1.75em;
  color: #FFFFFF;
  font-size: 1rem;
  text-align: center;
  transition: color 0.25s, background-color 0.25s;
  background-color: #FE9226;
  border-radius: 1em;
  transition: 0.2s;
}
.p-lunch .p-lunch_button:hover {
  opacity: 0.8;
}
.p-lunch .p-lunch_button__wrapper {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.p-info__wrapper {
  position: relative;
  overflow-x: clip;
}
.p-info__wrapper::before, .p-info__wrapper::after {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: -1;
}
.p-info__wrapper::before {
  top: 9%;
  right: -10%;
  width: 36%;
  aspect-ratio: 3/2;
  background-image: url(img/deco_buchi01.png);
}
@media screen and (max-width: 999px) {
  .p-info__wrapper::before {
    top: 12%;
    right: -55%;
    width: 90%;
  }
}
.p-info__wrapper::after {
  bottom: 5%;
  left: -5%;
  width: 32%;
  aspect-ratio: 2/1;
  background-image: url(img/deco_buchi02.png);
}
@media screen and (max-width: 999px) {
  .p-info__wrapper::after {
    bottom: 32%;
    left: -25%;
    width: 83%;
  }
}

.p-info {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  margin-top: 40px;
  padding-bottom: 150px;
}
@media screen and (max-width: 999px) {
  .p-info {
    grid-template-columns: 1fr;
    gap: 5rem;
    margin-bottom: 80px;
  }
}
.p-info .p-lunch {
  width: 300px;
  margin-top: 20px;
}
@media screen and (max-width: 999px) {
  .p-info .p-lunch {
    width: 100%;
    margin-top: unset;
  }
}

.p-about {
  display: flex;
  justify-content: center;
  --content-w: 45rem;
  --deco: min( calc( (100vw - var(--content-w) - var(--ark-padding--container) * 2) / 2 ), 400px );
}
@media screen and (max-width: 1400px) {
  .p-about {
    --content-w: 40rem;
  }
}
@media screen and (max-width: 1200px) {
  .p-about {
    --content-w: 35rem;
  }
}
.p-about .p-about__deco_box {
  position: absolute;
  top: 0;
  width: var(--deco);
  height: 100%;
}
@media screen and (max-width: 999px) {
  .p-about .p-about__deco_box {
    position: relative;
    top: unset;
    width: 100%;
    max-width: 600px;
  }
}
.p-about .p-about__deco_box.--1 {
  left: calc(100% + var(--ark-padding--container) / 2);
}
@media screen and (max-width: 999px) {
  .p-about .p-about__deco_box.--1 {
    left: unset;
    aspect-ratio: 4/3;
    margin-bottom: 20px;
  }
}
.p-about .p-about__deco_box.--2 {
  right: calc(100% + var(--ark-padding--container) / 2);
}
@media screen and (max-width: 999px) {
  .p-about .p-about__deco_box.--2 {
    right: unset;
    aspect-ratio: 8/7;
    margin-top: 30px;
  }
}
.p-about .p-about__deco_box .p-about__deco {
  position: absolute;
}
.p-about .p-about__deco_box .p-about__deco img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.p-about .p-about__deco_box .p-about__deco {
  --pic_3-h: var(--deco) / 1.6;
  --pic_4-h: var(--deco) * 0.57;
}
.p-about .p-about__deco_box .p-about__deco.--tree_3 {
  top: calc(var(--pic_3-h) + 20px);
  right: 0;
  width: 13%;
  aspect-ratio: 1/1.25;
}
@media screen and (max-width: 999px) {
  .p-about .p-about__deco_box .p-about__deco.--tree_3 {
    right: unset;
    top: 15%;
    left: 8%;
    width: 12%;
  }
}
.p-about .p-about__deco_box .p-about__deco.--tree_4 {
  top: calc(var(--pic_3-h) + var(--pic_4-h) + 60px);
  left: 15%;
  width: 13.3%;
  aspect-ratio: 1/1.574;
}
@media screen and (max-width: 999px) {
  .p-about .p-about__deco_box .p-about__deco.--tree_4 {
    top: unset;
    left: unset;
    bottom: 13%;
    right: 20%;
    width: 10%;
  }
}
.p-about .p-about__deco_box .p-about__deco.--pic_3 {
  top: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 1.6/1;
}
@media screen and (max-width: 999px) {
  .p-about .p-about__deco_box .p-about__deco.--pic_3 {
    left: unset;
    right: -10%;
    width: 65%;
  }
}
.p-about .p-about__deco_box .p-about__deco.--pic_4 {
  top: calc(var(--pic_3-h) + 60px);
  right: 10%;
  width: 57%;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 999px) {
  .p-about .p-about__deco_box .p-about__deco.--pic_4 {
    top: unset;
    right: unset;
    bottom: 0;
    left: 0;
    width: 37.5%;
  }
}
.p-about .p-about__deco_box .p-about__deco {
  --pic_1-h: (var(--deco) * 0.665) / 1.5;
  --pic_2-h: var(--deco) / 2;
}
.p-about .p-about__deco_box .p-about__deco.--tree_1 {
  bottom: calc(var(--pic_1-h) + var(--pic_2-h) + 80px + 40px);
  right: 10%;
  width: 16.7%;
  aspect-ratio: 1/1.2;
}
@media screen and (max-width: 999px) {
  .p-about .p-about__deco_box .p-about__deco.--tree_1 {
    bottom: unset;
    right: unset;
    top: 17%;
    left: 15%;
    width: 12.5%;
  }
}
.p-about .p-about__deco_box .p-about__deco.--tree_2 {
  bottom: calc(var(--pic_2-h) + 30px);
  left: 0;
  width: 14.5%;
  aspect-ratio: 1/1.5;
}
@media screen and (max-width: 999px) {
  .p-about .p-about__deco_box .p-about__deco.--tree_2 {
    left: unset;
    bottom: 5%;
    right: 5%;
    width: 11%;
  }
}
.p-about .p-about__deco_box .p-about__deco.--pic_1 {
  bottom: calc(var(--pic_2-h) + 80px);
  right: 10%;
  width: 66.5%;
  aspect-ratio: 1.35/1;
}
@media screen and (max-width: 999px) {
  .p-about .p-about__deco_box .p-about__deco.--pic_1 {
    bottom: unset;
    top: 0;
    right: 0;
    width: 50%;
  }
}
.p-about .p-about__deco_box .p-about__deco.--pic_2 {
  bottom: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 2/1;
}
@media screen and (max-width: 999px) {
  .p-about .p-about__deco_box .p-about__deco.--pic_2 {
    bottom: 0;
    left: -10%;
    width: 88%;
  }
}
.p-about .p-about__main {
  position: relative;
  color: #FFFFFF;
  width: 100%;
  max-width: var(--content-w);
}
@media screen and (max-width: 999px) {
  .p-about .p-about__main {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 100%;
  }
}
.p-about .p-about__main .p-about__title {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.7;
  text-align: center;
}
@media screen and (max-width: 1400px) {
  .p-about .p-about__main .p-about__title {
    font-size: 2rem;
  }
}
@media screen and (max-width: 999px) {
  .p-about .p-about__main .p-about__title {
    font-size: 2.3rem;
  }
}
.p-about .p-about__main .p-about__text {
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 2;
  margin-top: 100px;
}
@media screen and (max-width: 1400px) {
  .p-about .p-about__main .p-about__text {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 1200px) {
  .p-about .p-about__main .p-about__text {
    font-size: 1.1rem;
    margin-top: 60px;
  }
}
@media screen and (max-width: 999px) {
  .p-about .p-about__main .p-about__text {
    font-size: 1.3rem;
    margin-top: 40px;
  }
}

.p-main_visual__wrapper {
  --mv-pb: 80px;
}
@media screen and (max-width: 999px) {
  .p-main_visual__wrapper {
    padding-bottom: var(--mv-pb);
  }
}
.p-main_visual__wrapper .p-main_visual {
  position: relative;
}
.p-main_visual__wrapper .p-main_visual::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  aspect-ratio: 5.27/1;
  background-image: url(img/flame_mv.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  z-index: 2;
}
.p-main_visual__wrapper .p-main_visual::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 3vw;
  width: 30%;
  aspect-ratio: 2.88/1;
  background-image: url(img/illust_marchingband.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: 3;
}
@media screen and (max-width: 999px) {
  .p-main_visual__wrapper .p-main_visual::after {
    bottom: calc(var(--mv-pb) * -1 + 20px);
    width: 60%;
  }
}
.p-main_visual__wrapper .p-main_visual .p-main_visual__slide {
  position: relative;
  height: 120vh;
}
@media screen and (max-width: 999px) {
  .p-main_visual__wrapper .p-main_visual .p-main_visual__slide {
    height: auto;
    aspect-ratio: 4/3;
  }
}
.p-main_visual__wrapper .p-main_visual .p-main_visual__slide .swiper-area,
.p-main_visual__wrapper .p-main_visual .p-main_visual__slide .swiper {
  height: 100%;
}
.p-main_visual__wrapper .p-main_visual .p-main_visual__slide .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-main_visual__wrapper .p-main_visual .p-main_visual__catch {
  position: absolute;
  bottom: 0;
  left: 5vw;
  width: 30%;
  z-index: 4;
}
.p-main_visual__wrapper .p-main_visual .p-main_visual__catch img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media screen and (max-width: 999px) {
  .p-main_visual__wrapper .p-main_visual .p-main_visual__catch {
    bottom: calc(var(--mv-pb) * -1);
  }
}

.p-links {
  width: 100%;
  margin-top: 120px;
}
@media screen and (max-width: 999px) {
  .p-links {
    margin-top: 90px;
  }
}
.p-links .swiper-slide {
  filter: drop-shadow(10px 10px 0 rgba(0, 0, 0, 0.1));
  margin-bottom: 10px;
  transition: 0.2s;
}
.p-links .swiper-slide:hover {
  filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0.1));
  transform: translate(10px, 10px);
}
.p-links .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.p-links .p-links__controrer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 400px;
  max-width: 90%;
  margin-top: 60px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .p-links .p-links__controrer {
    margin-top: 40px;
  }
}
.p-links .p-links__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 45px;
  background-color: #FFFFFF;
  border-radius: 16px;
  filter: drop-shadow(4px 4px 0 rgba(0, 0, 0, 0.1));
  transition: 0.2s;
}
.p-links .p-links__nav:hover {
  filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0.1));
  transform: translate(4px, 4px);
}
.p-links .p-links__nav::before {
  content: "";
  width: 40%;
  aspect-ratio: 1.1/1;
  background-image: url(img/arrow-simple.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.p-links .p-links__nav.links-prev::before {
  transform: rotate(180deg);
}
.p-links .p-links__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: auto !important;
}
.p-links .p-links__pagination .swiper-pagination-bullet {
  background-color: #FFFFFF;
  width: 14px;
  height: 14px;
  opacity: 1;
  border: 2px solid #FFFFFF;
}
.p-links .p-links__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #3CCC8C;
}

.p-facility {
  position: relative;
  margin-top: 200px;
}
.p-facility .p-facility__slide {
  position: relative;
  height: 550px;
}
@media screen and (max-width: 999px) {
  .p-facility .p-facility__slide {
    height: 75vw;
    max-height: 400px;
  }
}
.p-facility .p-facility__slide::before, .p-facility .p-facility__slide::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  aspect-ratio: 43.6363/1;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .p-facility .p-facility__slide::before, .p-facility .p-facility__slide::after {
    height: 20px;
    aspect-ratio: unset;
  }
}
.p-facility .p-facility__slide::before {
  top: -1px;
  background-image: url(img/flame_facility--top.png);
  background-position: top;
}
.p-facility .p-facility__slide::after {
  bottom: -1px;
  background-image: url(img/flame_facility--bottom.png);
  background-position: bottom;
}
.p-facility .swiper-wrapper {
  transition-timing-function: linear !important;
}
.p-facility .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-facility .p-facility__body {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-facility .p-facility__body {
    position: relative;
    top: unset;
    left: unset;
    transform: translateY(-15%);
  }
}
.p-facility .p-facility__main {
  position: absolute;
  top: 50%;
  left: var(--ark-padding--container);
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 500px;
  max-width: calc(100% - var(--ark-padding--container) * 2);
  padding: 40px;
  background-image: url(img/bg_grain.png);
  border-radius: 30px;
  box-shadow: 10px 10px 0 0 rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 768px) {
  .p-facility .p-facility__main {
    position: relative;
    top: unset;
    left: unset;
    transform: unset;
    width: unset;
    max-width: 100%;
    padding: 30px;
  }
}
.p-facility .p-facility__title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .p-facility .p-facility__title {
    font-size: 1.7rem;
  }
}
.p-facility .p-facility__title_en {
  font-family: "Fredoka", sans-serif;
  color: #42C36F;
  font-weight: 600;
}
.p-facility .p-facility__text {
  color: #B98D58;
  font-weight: bold;
  line-height: 2;
  margin-top: 24px;
}
.p-facility .p-facility__button {
  display: inline-block;
  position: relative;
  color: #FFFFFF;
  font-weight: bold;
  text-align: center;
  margin-top: 36px;
  padding: 0.5em 2em;
  background-color: #42C36F;
  border-radius: 32px;
  transition: 0.2s;
}
.p-facility .p-facility__button:hover {
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  .p-facility .p-facility__button {
    font-size: 1.3rem;
    margin-top: 20px;
  }
}

.l-footer {
  position: relative;
  color: #72512B;
  background-color: #FFFAF5;
  background-image: url(img/bg_white.png);
  margin-top: 80px;
  padding-top: 100px;
}
@media screen and (max-width: 768px) {
  .l-footer {
    margin-top: unset;
  }
}
.l-footer::before {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-image: url(img/bg_footer.png);
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}

.p-footer .p-footer__main {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-top: 40px;
}
@media screen and (max-width: 999px) {
  .p-footer .p-footer__main {
    flex-direction: column;
    margin-top: 20px;
  }
}
.p-footer .p-footer__logo a {
  display: flex;
}
.p-footer .p-footer__address {
  font-weight: bold;
  line-height: 2;
  margin-top: 20px;
}
@media screen and (max-width: 999px) {
  .p-footer .p-footer__address {
    font-size: 1.125rem;
    line-height: 1.5;
    text-align: center;
    margin-top: 40px;
  }
}
.p-footer .p-footer__map {
  width: 400px;
  max-width: 100%;
  aspect-ratio: 1.315/1;
}
@media screen and (max-width: 999px) {
  .p-footer .p-footer__map {
    width: 700px;
    margin: 0 auto;
  }
}
.p-footer .l-footer__nav {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(9, 1fr);
  gap: 1em 3em;
}
@media screen and (max-width: 1200px) {
  .p-footer .l-footer__nav {
    gap: 1em;
  }
}
@media screen and (max-width: 999px) {
  .p-footer .l-footer__nav {
    grid-auto-flow: row;
    grid-template-rows: unset;
    gap: 1em 3em;
  }
}
.p-footer .l-footer__nav .menu-item a {
  position: relative;
  font-size: 1.125rem;
  font-weight: bold;
  transition: 0.2s;
}
@media screen and (max-width: 1200px) {
  .p-footer .l-footer__nav .menu-item a {
    font-size: 1rem;
  }
}
@media screen and (max-width: 999px) {
  .p-footer .l-footer__nav .menu-item a {
    font-size: 1.125rem;
  }
}
.p-footer .l-footer__nav .menu-item a:hover {
  opacity: 0.8;
}
.p-footer .l-footer__nav .menu-item a::before {
  content: "";
  display: inline-block;
  width: 1em;
  aspect-ratio: 1/1;
  margin-right: 0.5em;
  background-image: url(img/note.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.p-footer .l-footer__nav .menu-item.--green a::before {
  background-image: url(img/note--green.svg);
}

.p-footer__copy {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: bold;
  text-align: center;
  opacity: 1;
  width: 100%;
  padding-top: 40px;
  padding-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .p-footer__copy {
    font-size: 1rem;
    padding-bottom: calc(min(95vw, 500px) / 3 / 3 + 30px - 1rem);
  }
}

.p-header {
  position: absolute;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  background-color: transparent;
  z-index: 100;
}
.p-header .l-header__logo {
  --ark-logo_size--pc: 60px;
}
.p-header .p-header__logo {
  padding: 20px 70px 80px 30px;
  background-image: url(img/bg_logo.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top left;
}
@media screen and (max-width: 768px) {
  .p-header .p-header__logo {
    padding: 15px 30px 40px 10px;
  }
}
.p-header .p-header__menu {
  display: flex;
  align-items: center;
  gap: 40px;
  padding-left: 50px;
  padding-top: 20px;
  padding-bottom: 100px;
  padding-right: 30px;
  background-image: url(img/bg_gnavi.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top right;
}
@media screen and (max-width: 1700px) {
  .p-header .p-header__menu {
    gap: 10px;
    padding-top: 10px;
  }
}
@media screen and (max-width: 1400px) {
  .p-header .p-header__menu {
    display: none;
  }
}
.p-header .p-header__button_wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.p-header .p-header__button {
  display: flex;
  align-items: center;
  position: relative;
  font-weight: bold;
  text-align: center;
  padding: 0.5em 0.75em;
  background-color: #FFFFFF;
  border-radius: 50px;
  box-shadow: 2px 2px 0 0 rgba(172, 135, 90, 0.19);
  transition: 0.2s;
}
.p-header .p-header__button:hover {
  box-shadow: 0 0 0 0 rgba(172, 135, 90, 0.19);
  transform: translate(2px, 2px);
}
.p-header .p-header__button::before {
  content: "";
  display: inline-block;
  width: 1.5em;
  aspect-ratio: 1/1;
  margin-right: 0.5em;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transition: 0.2s;
}
.p-header .p-header__button.--contact::before {
  background-image: url(img/icon_contact.png);
}
.p-header .p-header__button.--accessmap::before {
  background-image: url(img/icon_accessmap.png);
}
.p-header .c-gnav {
  display: flex;
  gap: 30px;
  font-size: 1.125rem;
  height: unset;
}
@media screen and (max-width: 1600px) {
  .p-header .c-gnav {
    gap: 0;
    font-size: 1rem;
  }
  .p-header .c-gnav .c-gnav__li > .c-gnav__a {
    padding: 16px 10px;
  }
}
.p-header .c-gnav .__mainText {
  font-weight: bold;
}
.p-header .c-gnav .c-gnav__li,
.p-header .c-gnav .c-gnav__li > .c-gnav__a {
  height: unset;
}

.p-drawer__button {
  display: none;
  position: fixed;
  top: var(--ark-adminbar_height);
  right: 0;
  width: 100px;
  aspect-ratio: 1/1;
  z-index: 9999;
}
@media screen and (max-width: 1400px) {
  .p-drawer__button {
    display: block;
  }
}
.p-drawer__button .c-iconBtn__icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.p-drawer__button .c-iconBtn__icon .arkhe-svg-menu {
  width: 100%;
  height: 100%;
  transform: unset !important;
}

.p-drawer::before {
  background-color: #42C36F !important;
}
.p-drawer .p-drawer__body {
  padding-top: 0;
}
.p-drawer .c-drawerNav {
  border-top: unset;
  border-bottom: unset;
}
.p-drawer .c-drawerNav .menu-item {
  border-bottom: unset;
}
.p-drawer .c-drawerNav .__mainText {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.65em;
  color: #FFFFFF;
  font-size: 1.3rem;
  font-weight: bold;
}
.p-drawer .c-drawerNav .__mainText::before {
  content: "";
  display: inline-block;
  width: 1em;
  aspect-ratio: 1/1;
  background-image: url(img/note--white.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.p-topArea {
  position: relative;
  padding-top: calc(var(--ark-header_height) * 1.1);
  padding-bottom: calc(var(--ark-header_height) * 0.8);
  background-color: #F8EFE7;
  overflow: visible;
}
@media screen and (max-width: 1400px) {
  .p-topArea {
    padding-top: calc(var(--ark-header_height) * 1.5);
  }
}
.p-topArea::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 6vw;
  transform: translateY(20%);
  width: 30%;
  aspect-ratio: 2.88/1;
  background-image: url(img/illust_marchingband.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .p-topArea::before {
    width: 300px;
    max-width: 50%;
    transform: translateY(10%);
  }
}
.p-topArea .p-topArea__body {
  display: flex;
  color: #72512B;
  text-shadow: unset;
}
.p-topArea .p-topArea__title {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  color: #72512B;
  font-size: 3rem;
  font-weight: bold;
  text-align-last: left;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .p-topArea .p-topArea__title {
    font-size: 2.5rem;
  }
}
.p-topArea .p-topArea__title::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 100%;
  transform: translate(-10%, 20%);
  width: 1.5em;
  aspect-ratio: 1/1;
  background-image: url(img/deco_page_title.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
@media screen and (max-width: 768px) {
  .p-topArea .p-topArea__title::before {
    left: unset;
    right: 0;
    transform: translate(calc(var(--ark-padding--container) - 0.5vw), 5%);
  }
}
.p-topArea .p-topArea__sub_title {
  font-family: "Fredoka", sans-serif;
  color: #42C36F;
  font-size: 1.5rem;
  font-weight: 600;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .p-topArea .p-topArea__sub_title {
    font-size: 1.3rem;
  }
}

.p-movie {
  --pt: 120px;
  --pb: 120px;
  position: relative;
  background-color: #11185D;
  color: #FFFFFF;
  margin-top: 120px;
}
.p-movie::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 10%;
  max-height: 80px;
  background-image: url(img/curtain_top.png);
  background-repeat: repeat-x;
  background-size: contain;
  background-position: top;
  z-index: 3;
}
.p-movie .p-movie__curtain {
  position: absolute;
  top: 5%;
  width: 11.5%;
  height: 100%;
  background-image: url(img/curtain.png);
  background-repeat: no-repeat;
  background-position: top right;
  background-size: contain;
  z-index: 2;
}
@media screen and (max-width: 999px) {
  .p-movie .p-movie__curtain {
    top: 0;
    width: 18%;
    max-width: 80px;
  }
}
.p-movie .p-movie__curtain.--left {
  transform: rotateY(180deg);
  left: 0;
}
.p-movie .p-movie__curtain.--right {
  right: 0;
}
.p-movie .p-movie__light {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-image: linear-gradient(180deg, rgba(255, 251, 121, 0.6) 0%, rgba(255, 251, 121, 0.28) 100%);
  width: 135%;
  height: 100%;
  z-index: -1;
}
@media screen and (max-width: 999px) {
  .p-movie .p-movie__light {
    width: 105%;
  }
}
.p-movie .p-movie__light::before, .p-movie .p-movie__light::after {
  content: "";
  position: absolute;
  top: 0;
  width: 25%;
  height: 100%;
  background-color: #11185D;
  z-index: -1;
}
@media screen and (max-width: 999px) {
  .p-movie .p-movie__light::before, .p-movie .p-movie__light::after {
    width: 28%;
  }
}
.p-movie .p-movie__light::before {
  left: -1px;
  clip-path: polygon(0% 0%, 100% 0%, 0% 100%);
}
.p-movie .p-movie__light::after {
  right: -1px;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%);
}
.p-movie .p-movie__light .p-movie_concert {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 35%);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80%;
  aspect-ratio: 4/1;
}
@media screen and (max-width: 999px) {
  .p-movie .p-movie__light .p-movie_concert {
    transform: translate(-50%, 45%);
  }
}
.p-movie .p-movie__light .p-movie_concert img {
  width: 100%;
  max-width: 500px;
}
.p-movie .p-movie__body {
  position: relative;
  display: grid;
  grid-template-columns: auto auto;
  justify-content: center;
  gap: 80px;
  padding-left: 12.5%;
  padding-right: 12.5%;
  z-index: 1;
}
@media screen and (max-width: 1200px) {
  .p-movie .p-movie__body {
    gap: 40px;
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 999px) {
  .p-movie .p-movie__body {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: max(12%, 60px) var(--ark-padding--container);
  }
}
.p-movie .p-movie__main {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 450px;
  padding-top: var(--pt);
  padding-bottom: var(--pb);
}
@media screen and (max-width: 999px) {
  .p-movie .p-movie__main {
    align-items: center;
    padding-top: unset;
    padding-bottom: unset;
  }
}
.p-movie .p-movie__title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1;
}
@media screen and (max-width: 1200px) {
  .p-movie .p-movie__title {
    font-size: 2rem;
  }
}
@media screen and (max-width: 999px) {
  .p-movie .p-movie__title {
    align-items: center;
    font-size: 2.3rem;
  }
}
.p-movie .p-movie__title .p-movie__title_deco {
  width: 4.5em;
}
.p-movie .p-movie__title .p-movie__title_deco img {
  width: 100%;
  object-fit: contain;
}
.p-movie .p-movie__text {
  font-size: 1.25rem;
  line-height: 2;
  margin-top: 60px;
}
@media screen and (max-width: 1200px) {
  .p-movie .p-movie__text {
    font-size: 1rem;
  }
}
@media screen and (max-width: 999px) {
  .p-movie .p-movie__text {
    font-size: 1.125rem;
    text-align: center;
    margin-top: 30px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.p-movie .p-movie__button {
  margin-top: 60px;
}
@media screen and (max-width: 999px) {
  .p-movie .p-movie__button {
    margin-top: 30px;
  }
}
.p-movie .p-movie__button .c-button {
  color: #72512B;
  font-size: 1.25rem;
  text-align: left;
  padding: 1.5em 4em 1.5em 1.5em;
  box-shadow: 7px 7px 0 0 rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 1200px) {
  .p-movie .p-movie__button .c-button {
    font-size: 1rem;
  }
}
@media screen and (max-width: 999px) {
  .p-movie .p-movie__button .c-button {
    font-size: 1.125rem;
    padding: 2em 5em 2em 2em;
  }
}
.p-movie .p-movie__button .c-button::after {
  right: 1em;
  background-image: url(img/arrow-red.svg);
}
.p-movie .p-movie__movie_box {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 600px;
  padding-top: var(--pt);
  padding-bottom: var(--pb);
}
@media screen and (max-width: 999px) {
  .p-movie .p-movie__movie_box {
    padding-top: 0;
    padding-bottom: 0;
    position: static;
  }
}
.p-movie .p-movie__movie_title {
  font-size: 1.25rem;
  font-weight: bold;
  margin-top: 20px;
}
@media screen and (max-width: 999px) {
  .p-movie .p-movie__movie_title {
    font-size: 1.5rem;
    margin-top: 30px;
  }
}
.p-movie .p-movie__movie_desc {
  line-height: 2;
  margin-top: 20px;
}

.p-fixed_buttons {
  position: fixed;
  top: 55%;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 98;
}
@media screen and (max-width: 768px) {
  .p-fixed_buttons {
    top: unset;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
    flex-direction: row;
    width: 95%;
    max-width: 500px;
  }
}
.p-fixed_buttons .p-fixed_buttons__button {
  display: flex;
  width: min(70px, 4.5vw);
  transition: 0.2s;
}
@media screen and (max-width: 768px) {
  .p-fixed_buttons .p-fixed_buttons__button {
    width: 33%;
  }
}
.p-fixed_buttons .p-fixed_buttons__button:hover {
  opacity: 0.8;
}
.p-fixed_buttons .p-fixed_buttons__button picture {
  display: flex;
  width: 100%;
}
.p-fixed_buttons .p-fixed_buttons__button img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Utility
----------------------------------------------------------------- */
@media screen and (min-width: 769px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
}
@media screen and (min-width: 1000px) {
  .ar {
    display: none !important;
  }
}
.u-fadeup {
  opacity: 0;
}
.u-fadeup.loaded {
  animation: 1.5s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards fadeup;
}
.u-fadeup.loaded.--delay {
  animation-delay: 0.5s;
}
.u-fadeup.loaded.--delay-double {
  animation-delay: 1s;
}
.u-fadeup.loaded.--delay-triple {
  animation-delay: 1.5s;
}

.u-fadedown {
  opacity: 0;
}
.u-fadedown.loaded {
  animation: 1.5s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards fadedown;
}
.u-fadedown.loaded.--delay {
  animation-delay: 0.5s;
}
.u-fadedown.loaded.--delay-double {
  animation-delay: 1s;
}
.u-fadedown.loaded.--delay-triple {
  animation-delay: 1.5s;
}

.u-scale {
  opacity: 0;
}
.u-scale.loaded {
  animation: 0.5s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards scale;
}
.u-scale.loaded.--delay {
  animation-delay: 0.5s;
}
.u-scale.loaded.--delay-double {
  animation-delay: 1s;
}
.u-scale.loaded.--delay-triple {
  animation-delay: 1.5s;
}

@keyframes fadeup {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadedown {
  0% {
    transform: translateY(-50px);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes scale {
  0% {
    transform: scale(0.9);
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
/* Block
----------------------------------------------------------------- */
/*--------------------------------
    継承元
--------------------------------*/
/*------ 見出しH2 -------*/
/*------ 見出しH3 -------*/
/*------ 見出しH4 -------*/
/*------ リンク -------*/
.post_content a:not(a[class]), .editor-styles-wrapper a:not(a[class]),
.block-editor-block-preview__content a:not(a[class]) {
  color: var(--color_link);
  text-decoration: underline;
}
.post_content a:hover:not(a[class]), .editor-styles-wrapper a:hover:not(a[class]),
.block-editor-block-preview__content a:hover:not(a[class]) {
  text-decoration: none;
}

/*--------------------------------
    出力
--------------------------------*/
.editor-styles-wrapper h2.wp-block,
.block-editor-block-preview__content h2.wp-block {
  margin-left: auto;
  margin-right: auto;
}
