@charset "UTF-8";
/* フォント設定
------------------------- */
.font-sawarabi {
  font-family: "Sawarabi Gothic", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.font-instrument {
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  font-style: normal;
}

html, body {
  min-height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #F4F2E9;
  font-family: "Sawarabi Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 400;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
body.is-menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* コンテナ
------------------------- */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 60px;
}

.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

@media (max-width: 900px) {
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
  .container {
    padding: 0 20px;
  }
}
/* グローバルナビゲーション
------------------------- */
.gnav {
  position: fixed;
  top: 0;
  right: 0;
  width: 68%;
  height: 100vh;
  background: #F3A8B4;
  z-index: 1500;
  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;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
.gnav.is-open {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.gnav__list {
  text-align: center;
}
.gnav__list li {
  margin-bottom: 40px;
}
.gnav__list li:last-child {
  margin-bottom: 0;
}
.gnav__list a {
  font-family: "Instrument Serif", serif;
  font-size: 40px;
  color: #000;
  text-decoration: none;
  letter-spacing: 0.05em;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.gnav__list a:hover {
  opacity: 0.6;
}

.logo-header {
  position: fixed;
  z-index: 999;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  opacity: 0;
  visibility: hidden;
  width: 100%;
  display: block;
  padding: 28px 30px;
  background: #F4F2E9;
}
.logo-header.is-visible {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 900px) {
  .gnav {
    width: 100%;
    height: 105vw;
  }
  .gnav__list {
    text-align: center;
  }
  .gnav__list li {
    margin-bottom: 20px;
  }
  .gnav__list a {
    font-size: 34px;
    color: #000;
  }
  .logo-header {
    padding: 20px 20px;
  }
  .logo-header .logo-header__logo {
    max-width: 200px;
  }
}
/* メインビジュアル
------------------------- */
.mv {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
.mv__header {
  position: fixed;
  top: 20px;
  right: 30px;
  z-index: 4000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}
.mv__sns {
  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;
  width: 44px;
  height: 44px;
  color: #000;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.mv__sns:hover {
  opacity: 0.5;
}
.mv__menu {
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  width: 48px;
  height: 48px;
  background: #EB613B;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  position: relative;
  z-index: 1000;
}
.mv__menu span {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 1px;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
}
.mv__menu:hover {
  opacity: 0.8;
}
.mv__menu.is-open span:nth-child(1) {
  -webkit-transform: translateY(6px) rotate(45deg);
          transform: translateY(6px) rotate(45deg);
}
.mv__menu.is-open span:nth-child(2) {
  opacity: 0;
}
.mv__menu.is-open span:nth-child(3) {
  -webkit-transform: translateY(-6px) rotate(-45deg);
          transform: translateY(-6px) rotate(-45deg);
}
.mv__content {
  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;
  min-width: 380px;
  width: 32%;
  padding: 40px 20px;
}
.mv__logo {
  max-width: 320px;
  margin: 0 auto 30px auto;
}
.mv__logo img {
  width: 100%;
}
.mv__copy {
  font-size: 17px;
  margin: 0 auto 30px auto;
  min-width: 320px;
  text-align: left;
  line-height: 2;
  padding-left: 89px;
  letter-spacing: 0.08em;
}
.mv__image {
  position: relative;
  overflow: hidden;
  width: 68%;
}
.mv__reservation {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 130px;
  height: 130px;
  background: #EB603A;
  border-radius: 50%;
  color: #fff;
  border: 1px solid #fff;
  text-decoration: none;
  -webkit-transition: opacity 0.3s, bottom 0.1s, -webkit-transform 0.3s;
  transition: opacity 0.3s, bottom 0.1s, -webkit-transform 0.3s;
  transition: transform 0.3s, opacity 0.3s, bottom 0.1s;
  transition: transform 0.3s, opacity 0.3s, bottom 0.1s, -webkit-transform 0.3s;
}
.mv__reservation:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.mv__reservation-en {
  font-size: 12px;
  letter-spacing: 0.02em;
}
.mv__reservation-ja {
  font-size: 12px;
  margin-top: 2px;
  letter-spacing: 0.05em;
  padding: 22px 0 0 0;
}
.mv__reservation-icon {
  margin-top: 18px;
  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 (max-width: 900px) {
  .mv {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .mv__header {
    top: 10px;
    right: 15px;
    gap: 14px;
  }
  .mv__menu {
    width: 44px;
    height: 44px;
  }
  .mv__content {
    width: 100%;
    min-width: auto;
    padding: 50px 30px 50px 30px;
    text-align: center;
  }
  .mv__logo {
    max-width: 260px;
    margin: 0 auto 30px auto;
  }
  .mv__copy {
    min-width: auto;
    padding-left: 0;
    text-align: center;
    font-size: 15px;
    margin-bottom: 0;
  }
  .mv__image {
    width: 100%;
    height: 105vw;
  }
  .mv__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .mv__reservation {
    bottom: 30px;
    right: 15px;
    width: 80px;
    height: 80px;
  }
  .mv__reservation-en {
    font-size: 10px;
  }
  .mv__reservation-ja {
    font-size: 10px;
    letter-spacing: 0;
    padding: 15px 0 0 0;
  }
  .mv__reservation-icon {
    margin-top: 5px;
  }
  .mv__reservation-icon svg {
    width: 16px;
    height: 16px;
  }
}
/* イベント
------------------------- */
.event {
  padding: 80px 60px;
}
.event__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  margin-bottom: 0px;
}
.event__title {
  font-family: "Instrument Serif", serif;
  font-size: 102px;
  font-weight: 400;
  letter-spacing: 0.02em;
}
.event__subtitle {
  font-size: 16px;
  letter-spacing: 0.05em;
}
.event__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  max-width: 920px;
  background: #fff;
  padding: 30px;
  margin: 0 auto;
}
.event__card-image {
  width: 285px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.event__card-image img {
  width: 100%;
  height: auto;
}
.event__card-body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-top: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.event__card-title {
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.05em;
  padding-bottom: 10px;
  border-bottom: 2px solid #000;
  margin-bottom: 20px;
}
.event__card-text {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 10px;
}
.event__card-date {
  font-size: 16px;
  margin-bottom: 30px;
}
.event__card-date small {
  font-size: 12px;
  color: #444;
  display: block;
  margin-top: 10px;
}
.event__card-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  gap: 20px;
  background: #000;
  color: #fff;
  text-decoration: none;
  padding: 20px 90px 20px 30px;
  font-size: 14px;
  letter-spacing: 0.05em;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  border-radius: 40px;
  margin-left: auto;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.event__card-btn:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.event__card-btn-arrow {
  font-size: 16px;
  position: absolute;
  right: 20px;
  top: calc(50% - 3px);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.event__card-btn-arrow svg {
  width: 16px;
  height: 16px;
}

@media (max-width: 900px) {
  .event {
    padding: 60px 0;
  }
  .event__header {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 15px;
    margin-bottom: 10px;
  }
  .event__title {
    font-size: 70px;
  }
  .event__subtitle {
    font-size: 13px;
  }
  .event__card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
    padding: 30px 30px 50px 30px;
  }
  .event__card-image {
    width: 100%;
    margin-bottom: 25px;
  }
  .event__card-body {
    padding: 0;
  }
  .event__card-title {
    font-size: 22px;
    line-height: 1.4;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #333;
  }
  .event__card-text {
    font-size: 16px;
    margin-bottom: 15px;
  }
  .event__card-date {
    font-size: 14px;
    margin-bottom: 40px;
  }
  .event__card-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 220px;
    padding: 18px 30px;
    margin: 0 auto;
  }
}
/* コンセプト
------------------------- */
.concept {
  background: #EB603A;
}
.concept__hero {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  position: relative;
  padding-top: 120px;
}
.concept__hero-image {
  width: 50%;
}
.concept__hero-content {
  width: 50%;
  padding: 0 30px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.concept__title {
  font-family: "Instrument Serif", serif;
  font-size: 100px;
  font-weight: 400;
  letter-spacing: 0em;
  margin-bottom: 4.2rem;
}
.concept__catch {
  font-size: 26px;
  line-height: 2;
  margin-bottom: 2.6rem;
  letter-spacing: 0.08em;
}
.concept__text {
  font-size: 16px;
  line-height: 2.3;
  letter-spacing: 0.05em;
  position: relative;
  margin-bottom: -8px;
}
.concept__drink {
  padding: 8rem 20px;
  text-align: center;
  color: #fff;
}
.concept__drink-lead {
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.05em;
  margin-bottom: 45px;
}
.concept__drink-divider {
  width: 60px;
  height: 2px;
  background: #fff;
  margin: 0 auto 55px;
}
.concept__drink-label {
  font-size: 16px;
  letter-spacing: 0.05em;
  margin-bottom: 30px;
}
.concept__drink-options {
  margin-bottom: 20px;
}
.concept__drink-options img {
  max-width: 400px;
  margin: 0 auto;
}
.concept__drink-more {
  font-size: 14px;
}

@media (max-width: 900px) {
  .concept__hero {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-top: 60px;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .concept__hero-image {
    width: calc(100% - 20px);
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .concept__hero-content {
    width: 100%;
    padding: 0 25px 50px;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .concept__title {
    font-size: 70px;
    margin-bottom: 45px;
  }
  .concept__catch {
    font-size: 26px;
    text-align: left;
    margin-bottom: 30px;
    line-height: 1.8;
  }
  .concept__text {
    font-size: 16px;
    line-height: 2.2;
  }
  .concept__drink {
    padding: 60px 20px 60px 20px;
  }
  .concept__drink-lead {
    font-size: 14px;
    line-height: 2;
    margin-bottom: 35px;
  }
  .concept__drink-divider {
    margin-bottom: 40px;
  }
  .concept__drink-label {
    font-size: 13px;
    margin-bottom: 25px;
  }
  .concept__drink-options img {
    max-width: 280px;
  }
  .concept__drink-more {
    font-size: 13px;
  }
}
/* カバー
------------------------- */
.cover img {
  width: 100%;
}

/* メニュー
------------------------- */
.menu {
  padding: 100px 0;
  overflow: hidden;
  display: block;
  position: relative;
  max-width: 100%;
}
.menu__title {
  font-family: "Instrument Serif", serif;
  font-size: 100px;
  font-weight: 400;
  letter-spacing: 0em;
  margin-bottom: 60px;
}
.menu__block {
  max-width: 920px;
  margin: 0 auto 80px auto;
  position: relative;
  z-index: 5;
}
.menu__block:before {
  content: "";
  display: block;
  width: 52vw;
  height: 100%;
  background: #F4F2E9;
  position: absolute;
  top: 0;
  left: calc(460px - 50.5vw);
  z-index: 2;
}
.menu__block-single:before {
  display: none;
}
.menu__block-title {
  font-size: 36px;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #000;
  display: block;
}
.menu__block-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.menu__block-row--reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.menu__block-catch {
  font-size: 26px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0em;
  color: #E86C4D;
  margin-bottom: 20px;
  position: relative;
  display: block;
  margin-right: -60px;
}
.menu__block-desc {
  font-size: 16px;
  line-height: 2;
}
.menu__block-text {
  width: 50%;
  position: relative;
  z-index: 5;
}
.menu__block-image {
  width: 50%;
  position: relative;
  z-index: 1;
}
.menu__block-image picture {
  display: block;
  position: relative;
  overflow: hidden;
  border: 2px solid #F3A8B4;
  border-radius: 20px;
}
.menu__card {
  width: 350px;
  border: 2px solid #F3A8B4;
  border-radius: 20px;
  overflow: hidden;
  display: block;
  position: relative;
  padding: 0 20px 30px 20px;
}
.menu__card-image {
  margin-bottom: 20px;
}
.menu__card-body {
  padding-left: 10px;
}
.menu__card-label {
  font-size: 12px;
  margin-bottom: 8px;
}
.menu__card-name {
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.menu__card-name span {
  letter-spacing: -0.02em;
}
.menu__card-desc {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 5px;
  height: 72px;
  letter-spacing: -0.04em;
}
.menu__card-desc.height-small {
  height: 47px;
}
.menu__card-percent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
}
.menu__card-percent span {
  font-size: 13px;
  display: inline-block;
  padding: 6px 14px;
  background: #fff;
  border-radius: 30px;
}
.menu__card-param {
  position: relative;
  padding-top: 15px;
}
.menu__card-param img {
  height: 25px;
  width: auto;
}
.menu .swiper-slide {
  width: 350px;
}
.menu__slider {
  width: 350px;
  width: 50vw;
  position: relative;
  overflow: visible;
}
.menu__slider .swiper-pagination {
  position: relative;
  margin-top: 20px;
  width: 350px;
}
.menu__slider .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: transparent;
  border: 1px solid #E86C4D;
  opacity: 1;
  margin: 0 8px !important;
}
.menu__slider .swiper-pagination-bullet-active {
  background: #E86C4D;
}
.menu__slider .swiper-button-prev,
.menu__slider .swiper-button-next {
  width: 40px;
  height: 40px;
  top: calc(50% - 20px);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 50%;
  overflow: hidden;
}
.menu__slider .swiper-button-prev::after,
.menu__slider .swiper-button-next::after {
  display: none;
}
.menu__slider .swiper-button-prev.swiper-button-disabled,
.menu__slider .swiper-button-next.swiper-button-disabled {
  opacity: 1;
}
.menu__slider .swiper-button-prev.swiper-button-disabled::after,
.menu__slider .swiper-button-next.swiper-button-disabled::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: #fff;
  opacity: 0.5;
}
.menu__slider .swiper-button-prev {
  left: -20px;
}
.menu__slider .swiper-button-next {
  right: calc(50vw - 370px);
}
.menu__note {
  font-size: 16px;
  text-align: center;
  margin-bottom: 30px;
}
.menu__buttons {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 70px;
}
.menu__btn {
  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;
  position: relative;
  width: 100%;
  height: 120px;
  max-width: 500px;
  padding: 18px 30px;
  border-radius: 90px;
  text-decoration: none;
  font-size: 20px;
  letter-spacing: 0.05em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.menu__btn--menu {
  background: #F3A8B4;
  border: 1px solid #F3A8B4;
  color: #fff;
}
.menu__btn--menu:hover {
  background: #fff;
  color: #F3A8B4;
}
.menu__btn--reservation {
  background: #E86C4D;
  border: 1px solid #E86C4D;
  color: #fff;
}
.menu__btn--reservation:hover {
  background: #fff;
  color: #E86C4D;
}
.menu__btn-arrow {
  font-size: 18px;
  position: absolute;
  right: 30px;
  top: calc(50% - 3px);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.menu__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 60px 0 0 0;
}
.menu__sns-link {
  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;
  gap: 12px;
  width: 260px;
  height: 64px;
  background: #fff;
  border-radius: 30px;
  border: 2px solid #000;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.05em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: 17px;
}
.menu__sns-link:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.menu__btn--menu:hover .menu__btn-arrow svg path {
  stroke: #F3A8B4;
}

.menu__btn--reservation:hover .menu__btn-arrow svg path {
  stroke: #E86C4D;
}

@media (max-width: 1120px) {
  .menu__block:before {
    left: auto;
    right: 50%;
  }
}
@media (max-width: 900px) {
  .menu {
    padding: 60px 0 90px 0;
  }
  .menu__title {
    font-size: 70px;
    margin-bottom: 48px;
  }
  .menu__block {
    margin-bottom: 90px;
  }
  .menu__block:before {
    display: none;
  }
  .menu__block-title {
    font-size: 30px;
    padding-bottom: 15px;
    margin-bottom: 20px;
  }
  .menu__block-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 25px;
  }
  .menu__block-row--reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .menu__block-text {
    width: 100%;
  }
  .menu__block-image {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
  }
  .menu__block-image picture {
    border-radius: 30px;
  }
  .menu__block-catch {
    font-size: 18px;
    line-height: 1.8;
    margin-right: 0;
    letter-spacing: 0;
  }
  .menu__block-desc {
    font-size: 16px;
  }
  .menu .swiper-slide {
    width: 100%;
  }
  .menu .swiper-pagination {
    width: 100%;
  }
  .menu__slider {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
  }
  .menu__slider:before {
    display: none;
  }
  .menu__slider .swiper-button-prev,
  .menu__slider .swiper-button-next {
    width: 30px;
    height: 30px;
    top: calc(50% - 15px);
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .menu__slider .swiper-button-prev {
    left: -15px;
  }
  .menu__slider .swiper-button-next {
    right: -15px;
  }
  .menu__card {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    padding: 0 15px 20px 15px;
    border-radius: 30px;
  }
  .menu__card-image {
    max-width: 280px;
    margin: 0 auto;
  }
  .menu__card-name {
    font-size: 22px;
  }
  .menu__card-desc {
    font-size: 14px;
  }
  .menu__buttons {
    gap: 40px;
    padding: 0 0;
  }
  .menu__card-percent span {
    font-size: 14px;
  }
  .menu__btn {
    height: 76px;
    font-size: 18px;
    border-radius: 50px;
    padding-left: 20px;
    padding-right: 50px;
  }
  .menu__btn-arrow {
    right: 20px;
    font-size: 16px;
  }
  .menu__btn-arrow svg {
    width: 32px;
  }
  .menu__sns {
    padding: 40px 20px 0;
  }
  .menu__sns-link {
    width: 200px;
    height: 50px;
    font-size: 13px;
  }
}
/* アクセス
------------------------- */
.access {
  background: #EBE2B3;
  padding: 80px 20px 120px;
}
.access__title {
  font-family: "Instrument Serif", serif;
  font-size: 100px;
  font-weight: 400;
  letter-spacing: 0.02em;
}
.access__map-wrapper {
  position: relative;
  overflow: hidden;
  display: block;
}
.access__map {
  margin-bottom: 40px;
  position: relative;
  aspect-ratio: 100/33;
  display: block;
}
.access__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}
.access__info {
  text-align: center;
  margin-bottom: 50px;
}
.access__name {
  font-size: 14px;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}
.access__address {
  font-size: 14px;
  letter-spacing: 0.05em;
  margin-bottom: 30px;
}
.access__detail {
  margin-bottom: 24px;
}
.access__detail dt {
  font-size: 13px;
  font-weight: 400;
  margin-bottom: 2px;
}
.access__detail dd {
  font-size: 13px;
  line-height: 2;
}
.access__buttons {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
  max-width: 370px;
  margin: 0 auto;
}
.access__btn {
  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;
  position: relative;
  width: 100%;
  height: 90px;
  font-size: 14px;
  line-height: 1.5;
  border-radius: 50px;
  text-decoration: none;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding-right: 20px;
}
.access__btn--contact {
  background: #F3A8B4;
  border: 1px solid #F3A8B4;
  color: #fff;
}
.access__btn--contact:hover {
  background: #fff;
  color: #F3A8B4;
}
.access__btn--contact:hover svg path {
  stroke: #F3A8B4;
}
.access__btn--media {
  background: #E86C4D;
  border: 1px solid #E86C4D;
  color: #fff;
}
.access__btn--media:hover {
  background: #fff;
  color: #E86C4D;
}
.access__btn--media:hover svg path {
  stroke: #E86C4D;
}
.access__btn-arrow {
  position: absolute;
  right: 25px;
  top: calc(50% - 3px);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media (max-width: 900px) {
  .access {
    padding: 60px 0px 80px;
  }
  .access__title {
    font-size: 70px;
    margin-bottom: 30px;
  }
  .access__map {
    aspect-ratio: 34/16;
    margin-bottom: 20px;
  }
  .access__name {
    font-size: 14px;
    margin-bottom: 28px;
  }
  .access__address {
    font-size: 14px;
    margin-bottom: 28px;
  }
  .access__detail {
    margin-bottom: 28px;
  }
  .access__detail dt {
    font-size: 14px;
  }
  .access__detail dd {
    font-size: 14px;
  }
  .access__buttons {
    max-width: 100%;
    gap: 50px;
  }
  .access__btn {
    height: 76px;
    font-size: 14px;
    border-radius: 40px;
  }
  .access__btn svg {
    width: 20px;
    height: 20px;
  }
}
/* フッター
------------------------- */
.footer {
  background: #EBE2B3;
  padding: 0px 20px 0px;
}
.footer__warning {
  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;
  max-width: 540px;
  margin: 0 auto;
}
.footer__brand {
  text-align: center;
  margin-bottom: 70px;
  position: relative;
}
.footer__brand a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.footer__brand a:hover {
  opacity: 0.7;
}
.footer__brand-logo {
  display: inline-block;
  max-width: 348px;
  margin-bottom: 15px;
}
.footer__brand-logo img {
  width: 100%;
}
.footer__brand-link {
  font-size: 14px;
}
.footer__brand-link span {
  margin-right: 15px;
}
.footer__brand-link a {
  text-decoration: none;
}
.footer__brand-link a:hover {
  text-decoration: underline;
}
.footer__brand-link a svg {
  vertical-align: middle;
  margin-left: 4px;
  position: relative;
  top: -1px;
}

.pagetop {
  position: relative;
  margin-top: 60px;
  padding: 30px 20px 30px 20px;
  text-align: right;
}
.pagetop a {
  display: inline-block;
}

.footer-copyright {
  background: #fff;
  padding: 40px 20px;
  text-align: center;
}
.footer-copyright__text {
  font-size: 15px;
  text-align: center;
  letter-spacing: 0.05em;
}

@media (max-width: 900px) {
  .pagetop {
    margin-top: 130px;
    padding: 10px 20px 30px 20px;
    text-align: center;
  }
  .pagetop img {
    width: 120px;
  }
  .footer {
    padding: 40px 20px 0px;
  }
  .footer-copyright {
    padding: 30px 20px;
  }
  .footer-copyright__text {
    font-size: 12px;
  }
}
/*  アニメーション
------------------------- */
.js-fade-up {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease, -webkit-transform 0.8s ease;
}
.js-fade-up.is-active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.js-fade-in {
  opacity: 0;
  -webkit-transform: translateX(5%);
          transform: translateX(5%);
  -webkit-transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease, -webkit-transform 0.8s ease;
}
.js-fade-in.is-active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}