@charset "UTF-8";
/* フォントファミリー
-----------------------------------------------*/
/* フォント
-----------------------------------------------*/
/* カラー
-----------------------------------------------*/
/* インナー幅
-----------------------------------------------*/
/** @format */
/*==============================================
#共通クラス
===============================================*/
html {
  font-size: 10px;
}
@media (max-width: 1129px) {
  html {
    font-size: 0.8849557522vw;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 10px;
  }
}

body {
  font-size: 1.6rem;
  font-family: "Hiragino Sans", "ヒラギノ角ゴ ProN W3", "Yu Gothic", "メイリオ", sans-serif;
  font-weight: 400;
  color: #333333;
  line-height: 1.6;
  overflow-x: hidden;
}

.inner {
  max-width: calc(1100px + 3rem);
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-block: 10rem;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .inner {
    max-width: 100%;
    padding-block: 8rem;
  }
}

@media (any-hover: hover) {
  a {
    -webkit-transition: opacity 0.5s ease;
    transition: opacity 0.5s ease;
  }
  a:hover {
    opacity: 0.7;
  }
}
a[href*="tel:"] {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
}

@media (max-width: 767px) {
  a[href*="tel:"] {
    pointer-events: auto;
    cursor: pointer;
    text-decoration: underline;
  }
}
hr {
  width: 100%;
  border-bottom: 1px solid #000;
  margin: 2rem 0;
}

.to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 6rem;
  height: 6rem;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 768px) {
  .to-top {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 5rem;
    height: 5rem;
  }
}
.to-top img {
  width: 100%;
  height: 100%;
}
.to-top.js-show {
  opacity: 1;
  visibility: visible;
}

.fade-in {
  opacity: 0;
  -webkit-transition: opacity 0.7s ease-out, -webkit-transform 0.7s ease-out;
  transition: opacity 0.7s ease-out, -webkit-transform 0.7s ease-out;
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
  transition: opacity 0.7s ease-out, transform 0.7s ease-out, -webkit-transform 0.7s ease-out;
}

/* PC初期状態 */
.fade-in-up {
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}

.fade-in-left {
  -webkit-transform: translateX(-100px);
          transform: translateX(-100px);
}

.fade-in-right {
  -webkit-transform: translateX(100px);
          transform: translateX(100px);
}

/* アニメーション後 */
.fade-in.show {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

/* SP（スマホ）表示時に左右アニメーションを無効化 */
@media screen and (max-width: 767px) {
  .fade-in-left,
  .fade-in-right {
    -webkit-transform: none !important;
            transform: none !important;
  }
}
/*==============================================
#コンポーネント
===============================================*/
.section-title__ja {
  color: #798777;
  font-weight: 600;
  letter-spacing: 0.64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.4rem;
}
@media screen and (max-width: 768px) {
  .section-title__ja {
    font-size: 1.4rem;
    letter-spacing: 0.56px;
  }
}
.section-title__ja span {
  width: 1.6rem;
  height: 1.6rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.section-title__en {
  color: #333;
  font-family: "Joan", Georgia, serif;
  font-size: 4rem;
  line-height: 1;
  letter-spacing: 1.6px;
}
@media screen and (max-width: 768px) {
  .section-title__en {
    font-size: 2.8rem;
    letter-spacing: 1.12px;
  }
}

.section__lead {
  font-size: 1.6rem;
  margin-top: 3rem;
}
@media screen and (max-width: 768px) {
  .section__lead {
    margin-top: 2rem;
  }
}

.content {
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .content {
    margin-top: 3rem;
  }
}

.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.2rem;
  padding-block: 1rem;
  padding-inline: 2.4rem;
  border-radius: 100vmax;
}
@media screen and (max-width: 768px) {
  .btn {
    gap: 0.8rem;
    padding-block: 1.4rem;
    padding-inline: 2rem;
  }
}

.btn-cta {
  max-width: 40rem;
  width: 100%;
  color: #fff;
  background-color: #E9724C;
  border: 2px solid #E9724C;
  -webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.25);
  -webkit-transition: background-color 0.4s ease, color 0.4s ease;
  transition: background-color 0.4s ease, color 0.4s ease;
}
@media screen and (max-width: 768px) {
  .btn-cta {
    max-width: 31.4rem;
  }
}
.btn-cta:hover {
  color: #E9724C;
  background-color: #fff;
  opacity: 1;
}
.btn-cta:hover .btn-cta__icon {
  fill: #E9724C;
}

.btn-cta__icon {
  width: 3.6rem;
  height: auto;
  -webkit-transition: fill 0.3s ease;
  transition: fill 0.3s ease;
}
@media screen and (max-width: 768px) {
  .btn-cta__icon {
    width: 2.4rem;
  }
}

.btn-cta__text {
  font-size: 2.8rem;
  font-weight: 600;
  letter-spacing: 0.56px;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media screen and (max-width: 768px) {
  .btn-cta__text {
    font-size: 2rem;
    letter-spacing: 0.4px;
  }
}

/** @format */
/*==============================================
#ヘッダー
===============================================*/
.header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  padding-inline: 8rem;
  background-color: #798777;
}
@media screen and (max-width: 768px) {
  .header {
    padding-inline: 1.5rem;
  }
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  padding-left: 50px;
}

.header__logo {
  margin-inline: auto;
  padding-block: 1rem;
}
@media screen and (max-width: 768px) {
  .header__logo img {
    height: 1.6rem;
  }
}

.header__btn {
  width: 70px;
  height: 70px;
  padding: 10px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 768px) {
  .header__btn {
    width: 50px;
    height: 50px;
  }
}

/* ハンバーガーアイコン
-----------------------------------------------*/
.drawer__icon {
  background-color: transparent;
  border: none;
  position: fixed;
  z-index: 101;
  top: 10px;
  left: 8rem;
  width: 50px;
  height: 50px;
  padding: 14px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .drawer__icon {
    left: 1.5rem;
  }
}
.drawer__icon:hover {
  cursor: pointer;
}

.drawer__icon--bar {
  width: 100%;
  height: 0.2rem;
  background-color: #fff;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.drawer__icon--bar:nth-of-type(3) {
  width: 65%;
}

.drawer__icon.js-show .drawer__icon--bar:nth-of-type(1) {
  rotate: 45deg;
  translate: 0 10px;
}
.drawer__icon.js-show .drawer__icon--bar:nth-of-type(2) {
  display: none;
}
.drawer__icon.js-show .drawer__icon--bar:nth-of-type(3) {
  rotate: -45deg;
  translate: 0 -10px;
  width: 100%;
}

/*ドロワーメニュー
-----------------------------------------------*/
.drawer {
  position: fixed;
  z-index: 99;
  top: 70px;
  left: 0;
  width: 100%;
  height: auto;
  background-color: #fff;
}

.drawer__body {
  max-width: 940px;
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding-block: 8rem;
  padding-inline: 20px;
  margin-inline: auto;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .drawer__body {
    padding-block: 4rem;
  }
}

.drawer__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  row-gap: 3rem;
}
@media screen and (max-width: 768px) {
  .drawer__list {
    grid-template-columns: 1fr;
    row-gap: 2.4rem;
  }
}

.drawer__list li {
  text-align: left;
}
@media screen and (max-width: 768px) {
  .drawer__list li {
    text-align: center;
  }
}

.drawer__list a {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.8px;
  padding-block: 0.75rem;
}
@media screen and (max-width: 768px) {
  .drawer__list a {
    font-size: 1.8rem;
    letter-spacing: 0.72px;
    padding-block: 0.25rem;
    padding-inline: 2rem;
  }
}

.drawer__body .btn-cta {
  margin-top: 6rem;
}
@media screen and (max-width: 768px) {
  .drawer__body .btn-cta {
    margin-top: 4rem;
  }
}

.drawer {
  translate: 0 -100%;
  -webkit-transition: translate 0.5s ease;
  transition: translate 0.5s ease;
}
.drawer.js-show {
  translate: 0;
}

/** @format */
/*==============================================
#メインビジュアル
===============================================*/
.mv {
  position: relative;
  width: 100%;
  height: 706px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .mv {
    height: 667px;
  }
}

@-webkit-keyframes zoom-up {
  /* 1.15倍させる指定 */
  0% {
    -webkit-transform: scale(1.25);
            transform: scale(1.25);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes zoom-up {
  /* 1.15倍させる指定 */
  0% {
    -webkit-transform: scale(1.25);
            transform: scale(1.25);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.swiper-mv {
  height: 100%;
}
.swiper-mv .swiper-slide {
  overflow: hidden;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.swiper-mv .swiper-slide-active .slide-img,
.swiper-mv .swiper-slide-duplicate-active .slide-img,
.swiper-mv .swiper-slide-prev .slide-img {
  /* 12秒かけて拡大させる */
  -webkit-animation: zoom-up 12s linear 0s;
          animation: zoom-up 12s linear 0s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}
.swiper-mv .slide-img {
  background-size: cover;
  background-position: center center; /* 背景画像は中央を軸に表示させる */
  height: 100%;
  width: 100%;
}
.swiper-mv .one {
  background: url(../img/img_mv01.webp) no-repeat center center/cover;
}
.swiper-mv .two {
  background: url(../img/img_mv02.webp) no-repeat center center/cover;
}
.swiper-mv .three {
  background: url(../img/img_mv03.webp) no-repeat center center/cover;
}

.mv__layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(51, 51, 51, 0.3);
  z-index: 1;
}

.mv__content {
  position: absolute;
  top: 50%;
  left: 65%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 2; /* レイヤーより前面 */
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .mv__content {
    left: 50%;
  }
}

.mv__text {
  color: #333333;
  font-weight: 600;
  display: inline-block;
  padding-inline: 1rem;
  background-color: rgba(248, 237, 227, 0.5);
}

.mv__title {
  font-size: 1.6rem;
  letter-spacing: 0.64px;
  padding-inline: 1rem;
  padding-block: 0.25rem;
  background-color: rgba(248, 237, 227, 0.5);
}

.mv__logo {
  margin-top: 2.4rem;
  width: 26.2rem;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .mv__logo {
    width: 26rem;
  }
}

.mv__date {
  margin-top: 2.4rem;
  font-family: "Jost", sans-serif;
  font-size: 2.2rem;
}
.mv__date span {
  font-size: 1.6rem;
  font-weight: 600;
}

.mv__btn {
  margin-top: 4rem;
}

.mv__btn .btn-cta__icon {
  width: 2.4rem;
}

.mv__btn .btn-cta__text {
  font-size: 2rem;
}

/** @format */
.concept {
  position: fixed;
  z-index: -1;
  top: 70px;
  left: 0;
  width: 100vw;
  height: 100%;
  aspect-ratio: 1440/756;
  background: url(../img/img_concept.webp) no-repeat center center/cover;
}

.concept__inner {
  position: relative;
}

.concept__content {
  position: absolute;
  top: 8rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  max-width: 900px;
  width: 100%;
  padding-inline: 1.5rem;
  color: #fff;
  text-align: center;
}

.concept__title {
  font-family: "Joan", Georgia, serif;
  font-size: 4rem;
  letter-spacing: 1.6px;
}
@media screen and (max-width: 768px) {
  .concept__title {
    font-size: 2.4rem;
    letter-spacing: 0.96px;
  }
}

.concept__title-lead {
  font-size: 2rem;
  letter-spacing: 0.8px;
}
@media screen and (max-width: 768px) {
  .concept__title-lead {
    font-size: 1.4rem;
    letter-spacing: 0.56px;
  }
}

.concept__body {
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  .concept__body {
    margin-top: 3rem;
  }
}

.concept__text {
  font-size: 1.6rem;
  line-height: 200%;
  letter-spacing: 0.64px;
}
@media screen and (max-width: 768px) {
  .concept__text {
    font-size: 1.4rem;
  }
}
.concept__text span {
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: 0.96px;
}
@media screen and (max-width: 768px) {
  .concept__text span {
    font-size: 2rem;
  }
}
.concept__text + .concept__text {
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .concept__text + .concept__text {
    margin-top: 2rem;
  }
}

.container {
  margin-top: 70rem;
  background-color: #F8EDE3;
  border-radius: 40px 40px 0 0;
}

/** @format */
/*==============================================
#開催概要
===============================================*/
.information {
  position: relative;
}

.decoration {
  position: absolute;
  content: "";
}
@media screen and (max-width: 1130px) {
  .decoration {
    display: none;
  }
}

.leaf-01 {
  width: 216.038px;
  height: 263.91px;
  -webkit-transform: scaleX(-1) rotate(20deg);
          transform: scaleX(-1) rotate(20deg);
  top: 15px;
  right: -20px;
}

.yoga-01 {
  width: 128.289px;
  height: 120px;
  bottom: 0;
  left: calc(50% - 70rem);
}

.information__list {
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .information__list {
    margin-top: 3rem;
  }
}

.information__item {
  border-bottom: 2px dashed #798777;
  padding-block: 2.4rem;
  padding-inline: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .information__item {
    padding-inline: 1.2rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.6rem;
  }
}

.information__item:first-of-type {
  border-top: 2px dashed #798777;
}

.information__term {
  width: 20rem;
  color: #798777;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.8px;
}

.information__desc-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6rem;
}
@media screen and (max-width: 768px) {
  .information__desc-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
  }
}

.information__desc {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 2rem;
  letter-spacing: 0.8px;
}
@media screen and (max-width: 768px) {
  .information__desc {
    font-size: 1.8rem;
  }
}

.mail {
  text-decoration: underline;
}

/** @format */
/*==============================================
#cta
===============================================*/
.cta {
  background-color: #fff;
}

.cta__inner {
  text-align: center;
}

.cta__microcopy {
  font-size: 1.6rem;
  letter-spacing: 0.32px;
}
@media screen and (max-width: 768px) {
  .cta__microcopy {
    font-size: 1.4rem;
  }
}
.cta__microcopy span {
  color: #E9724C;
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: 0.48px;
}
@media screen and (max-width: 768px) {
  .cta__microcopy span {
    font-size: 1.8rem;
  }
}

/** @format */
/*==============================================
#イベント
===============================================*/
.event__inner {
  max-width: 1280px;
}

.event__inner .section-title,
.event__inner .section__lead {
  max-width: 1100px;
  margin-inline: auto;
}

.event__list {
  margin-top: 8rem;
}
@media screen and (max-width: 768px) {
  .event__list {
    margin-top: 4rem;
  }
}

.event__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
@media screen and (max-width: 768px) {
  .event__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 40rem;
    margin-inline: auto;
  }
}
.event__item + .event__item {
  margin-top: 7rem;
}
@media screen and (max-width: 768px) {
  .event__item + .event__item {
    margin-top: 5rem;
  }
}

.event__item:nth-child(odd) {
  margin-left: 19rem;
}
@media screen and (max-width: 768px) {
  .event__item:nth-child(odd) {
    margin-left: unset;
  }
}

.event__item:nth-child(even) {
  margin-right: 19rem;
}
@media screen and (max-width: 768px) {
  .event__item:nth-child(even) {
    margin-right: unset;
  }
}

.event__number {
  position: absolute;
  top: -3rem;
  left: 1.4rem;
  width: 6.7rem;
  height: auto;
}
@media screen and (max-width: 768px) {
  .event__number {
    width: 6rem;
    top: -2rem;
  }
}

.event__img {
  border-radius: 0 0 0 40px;
  width: 50%;
  aspect-ratio: 1090/614;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .event__img {
    width: 100%;
    border-radius: 0 20px 0 0;
  }
}

.event__body {
  background-color: #fff;
  border-radius: 0 40px 0 0;
  padding-block: 2.4rem;
  padding-inline: 4rem;
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 768px) {
  .event__body {
    width: 100%;
    border-radius: 0 0 0 20px;
    padding-block: 1.6rem;
    padding-inline: 2.4rem;
  }
}

.event__title {
  color: #798777;
  font-family: "Jost", sans-serif;
  font-size: 4rem;
  font-weight: 600;
  letter-spacing: 2px;
}
@media screen and (max-width: 768px) {
  .event__title {
    font-size: 3rem;
    letter-spacing: 1.2px;
  }
}

.event__text {
  margin-top: 2rem;
}
@media screen and (max-width: 768px) {
  .event__text {
    margin-top: 0rem;
  }
}

.bg-gradation {
  width: 100%;
  height: 8rem;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(248, 237, 227, 0.9)), color-stop(50%, #fbf6f1), to(#fff));
  background: linear-gradient(180deg, rgba(248, 237, 227, 0.9) 0%, #fbf6f1 50%, #fff 100%);
}

/** @format */
/*==============================================
#3つの楽しみ方
===============================================*/
.enjoy {
  background-color: #fff;
  padding-bottom: 100px;
}

.enjoy__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 6rem;
}
@media screen and (max-width: 768px) {
  .enjoy__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 6rem;
  }
}

.enjoy__item {
  width: 30rem;
  padding-inline: 0.5rem;
  padding-block: 1rem;
  text-align: center;
}

.enjoy__number {
  display: inline-block;
  color: #798777;
  font-family: "Jost", sans-serif;
  font-size: 4.2rem;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: 2.1px;
  position: relative;
  z-index: 1;
}
.enjoy__number::before {
  content: "";
  position: absolute;
  background: url(../img/icon_enjoy-leaf.svg) no-repeat center center/cover;
  width: 32px;
  height: 34px;
  top: -1.6rem;
  left: -0.6rem;
  z-index: -1;
}

.enjoy__img {
  width: auto;
  height: 24rem;
}
.enjoy__img img {
  width: auto;
  height: 100%;
}

.enjoy__title {
  color: #798777;
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 160%;
  letter-spacing: 0.88px;
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .enjoy__title {
    margin-top: 1rem;
  }
}

.enjoy__text {
  text-align: left;
  margin-top: 1rem;
}

.enjoy__btn {
  margin-top: 5rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .enjoy__btn {
    margin-top: 3rem;
  }
}

/** @format */
/*==============================================
#登場ゲスト
===============================================*/
.guest {
  position: relative;
  padding-bottom: 10rem;
}
.guest::before {
  content: "";
  position: absolute;
  background: url(../img/bg_guest.webp) no-repeat center center/cover;
  width: 100%;
  height: 80px;
  top: -80px;
  left: 0;
}
.guest::after {
  content: "";
  position: absolute;
  background: url(../img/img_leaf02.webp) no-repeat center center/cover;
  width: 140.663px;
  height: 181.069px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 80px;
  left: 0;
}
@media screen and (max-width: 1440px) {
  .guest::after {
    display: none;
  }
}

.guest__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem 2rem;
}
@media screen and (max-width: 1130px) {
  .guest__list {
    grid-template-columns: 1fr;
  }
}

.guest__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 1130px) {
  .guest__item {
    max-width: 60rem;
    width: 100%;
    margin-inline: auto;
  }
}
@media screen and (max-width: 768px) {
  .guest__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.guest__img {
  height: auto;
  width: 50%;
  border-radius: 0 0 0 35px;
  overflow: hidden;
  aspect-ratio: 516/372;
}
@media screen and (max-width: 768px) {
  .guest__img {
    border-radius: 0 20px 0 0;
    width: 100%;
  }
}
.guest__img img {
  width: 100%;
  height: 100%;
}

.guest__body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background-color: #A2B29F;
  padding: 2rem 2rem 0.5rem;
  border-radius: 0 35px 0 0;
}
@media screen and (max-width: 768px) {
  .guest__body {
    border-radius: 0 0 0 20px;
    padding: 2rem 1.5rem;
  }
}

.guest__job {
  color: #fff;
  font-weight: 600;
}

.guest__name {
  font-family: "Jost", sans-serif;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: 0.96px;
}

.guest__text {
  margin-top: 1rem;
}

/** @format */
/*==============================================
#チケット
===============================================*/
.ticket {
  background-color: rgba(162, 178, 159, 0.5);
  position: relative;
}
.ticket::before {
  content: "";
  position: absolute;
  background: url(../img/bg_ticket.webp) no-repeat center center/cover;
  width: 100%;
  height: 80px;
  top: -80px;
  left: 0;
}
.ticket::after {
  content: "";
  position: absolute;
  background: url(../img/img_leaf03.webp) no-repeat center center/cover;
  width: 141.474px;
  height: 225.794px;
  -webkit-transform: rotate(-60deg);
          transform: rotate(-60deg);
  top: 80px;
  right: 0;
}
@media screen and (max-width: 1440px) {
  .ticket::after {
    display: none;
  }
}

.ticket .inner {
  padding-top: 8rem;
}

.ticket__period-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 768px) {
  .ticket__period-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
  .ticket__period-box + .ticket__period-box {
    margin-top: 2rem;
  }
}

.ticket__period-box p {
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: 0.96px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .ticket__period-box p {
    font-size: 1.8rem;
    letter-spacing: 0.72px;
  }
}

.ticket__container {
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .ticket__container {
    margin-top: 3rem;
  }
}

.ticket__section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  .ticket__section {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.ticket__box {
  background-color: #fff;
  border-radius: 2rem;
  padding: 2.4rem;
  max-width: 54rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .ticket__box {
    border-radius: 1rem;
  }
}

.ticket__name {
  color: #798777;
  text-align: center;
  font-size: 3.6rem;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: 1.44px;
}
@media screen and (max-width: 768px) {
  .ticket__name {
    font-size: 2.2rem;
    letter-spacing: 0.88px;
  }
}

.ticket__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 4rem;
}
.ticket__price + .ticket__price {
  margin-top: 2.4rem;
}
@media screen and (max-width: 768px) {
  .ticket__price + .ticket__price {
    margin-top: 1.4rem;
  }
}

.ticket__price-label {
  width: 12rem;
  border-radius: 1.5rem;
  padding-block: 1rem;
  color: #fff;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: 0.96px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 768px) {
  .ticket__price-label {
    font-size: 1.6rem;
    letter-spacing: 0.64px;
    border-radius: 0.75rem;
    padding-block: 0.6rem;
    width: 7.6rem;
  }
}

.ticket__price-label.early {
  background-color: #798777;
  position: relative;
}
.ticket__price-label.early::before {
  content: "";
  position: absolute;
  background: url(../img/text_osusume.webp) no-repeat center center/cover;
  width: 7.6rem;
  height: 2.4rem;
  top: -2.75rem;
  left: 1.5rem;
}
@media screen and (max-width: 768px) {
  .ticket__price-label.early::before {
    width: 4.6rem;
    height: 1.4537rem;
    top: -1.75rem;
    left: 1rem;
  }
}

.ticket__price-label.advance {
  background-color: #A2B29F;
}

.ticket__price-price {
  font-family: "Jost", sans-serif;
  font-size: 4rem;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: 1.6px;
}
.ticket__price-price span {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.64px;
}
@media screen and (max-width: 768px) {
  .ticket__price-price {
    font-size: 2.4rem;
    letter-spacing: 0.96px;
  }
}

.ticket-note__section {
  margin-top: 4rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .ticket-note__section {
    margin-top: 2.4rem;
    border-radius: 1rem;
    max-width: 54rem;
    margin-inline: auto;
  }
}

.ticket-note__title {
  border-radius: 2rem 2rem 0 0;
  background-color: #798777;
  padding-block: 1.2rem;
  padding-left: 6rem;
  color: #fff;
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: 0.96px;
}
@media screen and (max-width: 768px) {
  .ticket-note__title {
    border-radius: 1rem 1rem 0 0;
    padding-block: 2rem;
    padding-left: 2rem;
    font-size: 2.2rem;
    letter-spacing: 0.88px;
  }
}

.ticket-note__list {
  background-color: #fff;
  border-radius: 0 0 2rem 2rem;
  padding: 3rem 2rem 3rem 6rem;
  list-style: disc;
}
@media screen and (max-width: 768px) {
  .ticket-note__list {
    border-radius: 0 0 1rem 1rem;
    padding: 2rem 2rem 2rem 4rem;
  }
}

.ticket__btn {
  margin-top: 5rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .ticket__btn {
    margin-top: 4rem;
  }
}

/** @format */
/*==============================================
#アクセス
===============================================*/
.access {
  position: relative;
  padding-bottom: 2rem;
}
.access::before {
  content: "";
  position: absolute;
  background: url(../img/img_yoga03.webp) no-repeat center center/cover;
  width: 172.556px;
  height: 75px;
  bottom: 0;
  left: 27rem;
}
@media screen and (max-width: 600px) {
  .access::before {
    display: none;
  }
}

.access__info {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: 0.88px;
}
@media screen and (max-width: 768px) {
  .access__info {
    font-size: 2rem;
  }
}

.access__map {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  margin-top: 4rem;
}
.access__map::before {
  content: "";
  position: absolute;
  background: url(../img/img_yoga02.webp) no-repeat center center/cover;
  width: 145.182px;
  height: 155px;
  bottom: calc(100% + 1px);
  right: 0;
}
@media screen and (max-width: 600px) {
  .access__map::before {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .access__map {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 3rem;
  }
}

.access__img {
  border-radius: 4rem 0 0 0;
  width: 50%;
  overflow: hidden;
  aspect-ratio: 1/1;
}
.access__img img {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .access__img {
    border-radius: 0 2rem 0 0;
    width: 100%;
    height: auto;
  }
}

.access__body {
  background-color: #fff;
  border-radius: 0 0 4rem 0;
  padding: 2.4rem;
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 768px) {
  .access__body {
    border-radius: 0 0 0 2rem;
    width: 100%;
    padding: 1.6rem;
  }
}

.access__way + .access__way {
  margin-top: 3.6rem;
}
@media screen and (max-width: 768px) {
  .access__way + .access__way {
    margin-top: 2.4rem;
  }
}

.access__way-title {
  color: #798777;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  padding-left: 3.8rem;
  padding-right: 0.5rem;
  border-bottom: 1px dashed #798777;
  position: relative;
  display: inline-block;
}

.access__way-title.train::before {
  content: "";
  position: absolute;
  width: 3.2rem;
  height: 3.2rem;
  background: url(../img/icon_train.svg) no-repeat center center/cover;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.access__way-title.car::before {
  content: "";
  position: absolute;
  width: 3.2rem;
  height: 3.2rem;
  background: url(../img/icon_car.svg) no-repeat center center/cover;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.access__way-list {
  list-style: disc;
  list-style-position: inside;
  margin-top: 1.2rem;
}

.access__note {
  margin-top: 3.6rem;
}
@media screen and (max-width: 768px) {
  .access__note {
    margin-top: 2.4rem;
  }
}

.access__note-text a {
  text-decoration: underline;
}

/** @format */
/*==============================================
#フッター
===============================================*/
.footer {
  background-color: #798777;
}

.footer__inner {
  max-width: 1100px;
  width: 100%;
  margin-inline: auto;
  padding-top: 6rem;
  padding-bottom: 4rem;
  text-align: center;
  padding-inline: 1.5rem;
}

.footer__logo {
  width: 20rem;
  height: auto;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .footer__logo {
    width: 16rem;
  }
}

.footer__sns {
  margin-top: 3rem;
}

.footer__sns-link {
  width: 3rem;
  height: 3rem;
}
.footer__sns-link img {
  width: 100%;
  height: 100%;
}
.footer__sns-link + .footer__sns-link {
  margin-left: 3rem;
}
@media screen and (max-width: 768px) {
  .footer__sns-link {
    width: 2.4rem;
    height: 2.4rem;
  }
}

.footer__nav {
  margin-top: 6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 3rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .footer__nav {
    gap: 2.4rem;
  }
}

.footer__nav-link {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.64px;
  padding-inline: 1rem;
}
@media screen and (max-width: 768px) {
  .footer__nav-link {
    font-size: 1.6rem;
  }
}

.copyright {
  color: #fff;
  font-family: "Jost", sans-serif;
  font-size: 15px;
  letter-spacing: 0.56px;
  padding-block: 1rem;
  width: 90%;
  border-top: 1px solid #fff;
  margin-inline: auto;
  text-align: center;
}