@charset "UTF-8";
/* 上下から中央に収束するアニメーション */
@-webkit-keyframes collapse {
  0% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  50% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1); /* 上下に縮小 */
  }
  70% {
    -webkit-transform: scaleY(0.1);
            transform: scaleY(0.1);
  }
  100% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
  }
}
@keyframes collapse {
  0% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  50% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1); /* 上下に縮小 */
  }
  70% {
    -webkit-transform: scaleY(0.1);
            transform: scaleY(0.1);
  }
  100% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
  }
}
/* スクリーンBとスクリーンCの初期状態 */
/* スクリーンBとスクリーンCが表示されるスタイル */
.starting-display {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 200;
  overflow: hidden;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
}
.starting-display.hidden {
  opacity: 0;
  -webkit-animation: collapse 2s forwards;
          animation: collapse 2s forwards; /* 上下から中央に収束 */
}

.starting-display__inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  width: 100vw;
  height: 100vh;
}

.starting-display__logo {
  width: 400px;
}
@media screen and (min-width: 600px) {
  .starting-display__logo {
    width: 500px;
  }
}

.header {
  width: 100%;
  height: 70px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  background: #fff;
}
@media screen and (min-width: 600px) {
  .header {
    height: 90px;
  }
}
@media screen and (min-width: 900px) {
  .header {
    width: 230px;
    height: 100%;
    background: #000;
  }
}
@media screen and (min-width: 1280px) {
  .header {
    width: 310px;
  }
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 900px) {
  .header__inner {
    height: 100%;
    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;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.header__logo img {
  width: 200px;
}
@media screen and (min-width: 600px) {
  .header__logo img {
    width: 260px;
  }
}
@media screen and (min-width: 900px) {
  .header__logo img {
    width: 210px;
    margin-top: 20px;
  }
}
@media screen and (min-width: 1280px) {
  .header__logo img {
    width: 260px;
  }
}

.header__top-link {
  display: none;
}
@media screen and (min-width: 900px) {
  .header__top-link {
    display: block;
  }
}

.header__nav {
  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;
}

.header__link {
  color: #fff;
  font-size: 19px;
}
@media screen and (min-width: 1280px) {
  .header__link {
    font-size: 23px;
  }
}

.menu-item-12 {
  color: #fff;
  font-size: 19px;
}
@media screen and (min-width: 1280px) {
  .menu-item-12 {
    font-size: 23px;
  }
}

.page {
  color: #fff;
  font-size: 19px;
}
@media screen and (min-width: 1280px) {
  .page {
    font-size: 23px;
  }
}

.menu-item-26 {
  color: #fff;
  font-size: 19px;
}
@media screen and (min-width: 1280px) {
  .menu-item-26 {
    font-size: 23px;
  }
}

.menu-item-13 {
  color: #fff;
  font-size: 19px;
}
@media screen and (min-width: 1280px) {
  .menu-item-13 {
    font-size: 23px;
  }
}

.menu-item-14 {
  color: #fff;
  font-size: 19px;
}
@media screen and (min-width: 1280px) {
  .menu-item-14 {
    font-size: 23px;
  }
}

.menu-item-15 {
  color: #fff;
  font-size: 19px;
}
@media screen and (min-width: 1280px) {
  .menu-item-15 {
    font-size: 23px;
  }
}

.header__top-link_icon {
  display: none;
}
@media screen and (min-width: 900px) {
  .header__top-link_icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 19px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-bottom: 40px;
  }
}
@media screen and (min-width: 1280px) {
  .header__top-link_icon {
    gap: 35px;
  }
}

.header__top-link_icon-tel img {
  width: 53px;
}

.header__top-link_icon-map img {
  width: 52px;
}

.header__top-link_icon-insta img {
  width: 60px;
}

.drawer-icon__container {
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 15;
}
@media screen and (min-width: 600px) {
  .drawer-icon__container {
    right: 30px;
    top: 30px;
  }
}
@media screen and (min-width: 900px) {
  .drawer-icon__container {
    display: none;
  }
}

@media screen and (min-width: 1280px) {
  .header__icon {
    display: none;
  }
}

.drawer-icon {
  position: relative;
  width: 30px;
  height: 30px;
}
@media screen and (min-width: 600px) {
  .drawer-icon {
    width: 40px;
    height: 35px;
  }
}
.drawer-icon.is-checked .drawer-icon__bar:nth-child(2) {
  display: none;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-child(1), .drawer-icon.is-checked .drawer-icon__bar:nth-child(3) {
  top: 12px;
  width: 30px;
}
@media screen and (min-width: 600px) {
  .drawer-icon.is-checked .drawer-icon__bar:nth-child(1), .drawer-icon.is-checked .drawer-icon__bar:nth-child(3) {
    width: 40px;
    top: 14px;
  }
}
.drawer-icon.is-checked .drawer-icon__bar:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.drawer-icon.is-checked .drawer-icon__bar:nth-child(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  right: 10px;
  margin-left: 0;
}
@media screen and (min-width: 600px) {
  .drawer-icon.is-checked .drawer-icon__bar:nth-child(3) {
    margin-left: -4px;
  }
}

.drawer-icon__bar {
  position: absolute;
  width: 30px;
  height: 4.25px;
  top: 0px;
  left: 0;
  background: #000;
  -webkit-transition: top 0.4s, -webkit-transform 0.4s;
  transition: top 0.4s, -webkit-transform 0.4s;
  transition: top 0.4s, transform 0.4s;
  transition: top 0.4s, transform 0.4s, -webkit-transform 0.4s;
  border-radius: 18px;
}
@media screen and (min-width: 600px) {
  .drawer-icon__bar {
    width: 40px;
  }
}
.drawer-icon__bar:nth-child(1) {
  width: 15px;
}
@media screen and (min-width: 600px) {
  .drawer-icon__bar:nth-child(1) {
    width: 20px;
  }
}
.drawer-icon__bar:nth-child(2) {
  top: 12.5px;
}
@media screen and (min-width: 600px) {
  .drawer-icon__bar:nth-child(2) {
    top: 15.5px;
  }
}
.drawer-icon__bar:nth-child(3) {
  top: 25px;
  width: 15px;
  margin-left: 15px;
}
@media screen and (min-width: 600px) {
  .drawer-icon__bar:nth-child(3) {
    width: 20px;
    top: 31px;
    left: 5px;
  }
}

.drawer-content {
  display: none;
  height: 100vh;
  width: 100%;
  background: rgba(255, 255, 255, 0.8078431373);
  text-align: center;
  position: fixed;
  z-index: 10;
  padding-top: 120px;
}
@media screen and (min-width: 600px) {
  .drawer-content {
    padding-top: 140px;
  }
}

.drawer-content__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}

.drawer-content__link {
  font-size: 20px;
  color: #475b98;
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
}
@media screen and (min-width: 600px) {
  .drawer-content__link {
    font-size: 27px;
  }
}

.menu-item-16 {
  font-size: 20px;
  color: #475b98;
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
}
@media screen and (min-width: 600px) {
  .menu-item-16 {
    font-size: 27px;
  }
}

.menu-item-17 {
  font-size: 20px;
  color: #475b98;
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
}
@media screen and (min-width: 600px) {
  .menu-item-17 {
    font-size: 27px;
  }
}

.menu-item-18 {
  font-size: 20px;
  color: #475b98;
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
}
@media screen and (min-width: 600px) {
  .menu-item-18 {
    font-size: 27px;
  }
}

.menu-item-19 {
  font-size: 20px;
  color: #475b98;
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
}
@media screen and (min-width: 600px) {
  .menu-item-19 {
    font-size: 27px;
  }
}

.side__link {
  position: fixed;
  z-index: 100;
  bottom: -90px;
  right: 0;
  background: rgba(0, 0, 0, 0.7568627451);
  padding: 15px 10px 15px 10px;
  width: 100%;
  opacity: 0; /* 非表示状態 */
  -webkit-transition: bottom 0.5s ease, opacity 0.5s ease;
  transition: bottom 0.5s ease, opacity 0.5s ease; /* スムーズなアニメーション */
}
@media screen and (min-width: 900px) {
  .side__link {
    display: none;
  }
}
.side__link.visible {
  bottom: 0px; /* 最終位置 */
  opacity: 1; /* 表示状態 */
}

.side__link-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -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 (min-width: 600px) {
  .side__link-inner {
    gap: 90px;
  }
}
@media screen and (min-width: 768px) {
  .side__link-inner {
    gap: 110px;
  }
}

.side__link-tel img {
  width: 48px;
}
@media screen and (min-width: 768px) {
  .side__link-tel img {
    width: 54px;
  }
}

.side__link-map img {
  width: 60px;
}
@media screen and (min-width: 768px) {
  .side__link-map img {
    width: 69px;
  }
}

.side__link-insta img {
  width: 60px;
  height: 60px;
}
@media screen and (min-width: 768px) {
  .side__link-insta img {
    width: 70px;
    height: 70px;
  }
}

.side__link-top img {
  width: 54px;
}
@media screen and (min-width: 768px) {
  .side__link-top img {
    width: 60px;
  }
}

@media screen and (min-width: 900px) {
  .main {
    margin-left: 230px;
  }
}
@media screen and (min-width: 1280px) {
  .main {
    margin-left: 310px;
  }
}

@-webkit-keyframes fadeInUp {
  from {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
.mv {
  overflow: hidden;
  margin-top: 70px;
  position: relative;
}
@media screen and (min-width: 600px) {
  .mv {
    margin-top: 90px;
  }
}
@media screen and (min-width: 900px) {
  .mv {
    margin-top: 0;
  }
}

.mv__swiper-text_container {
  position: absolute;
  z-index: 10;
  top: 0px;
  right: 0px;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: upright;
  background: rgba(0, 0, 0, 0.5058823529);
  height: 100%;
  width: 60px;
  padding-top: 10px;
  padding-right: 5px;
}
@media screen and (min-width: 600px) {
  .mv__swiper-text_container {
    padding-top: 20px;
    padding-right: 9px;
    width: 80px;
  }
}
@media screen and (min-width: 768px) {
  .mv__swiper-text_container {
    width: 100px;
    padding-right: 13px;
  }
}
@media screen and (min-width: 1280px) {
  .mv__swiper-text_container {
    width: 110px;
  }
}

.mv__swiper-text {
  color: #fff;
  font-size: 17px;
}
@media screen and (min-width: 600px) {
  .mv__swiper-text {
    font-size: 20px;
  }
}
@media screen and (min-width: 768px) {
  .mv__swiper-text {
    font-size: 23px;
  }
}
@media screen and (min-width: 1280px) {
  .mv__swiper-text {
    font-size: 26px;
  }
}
.mv__swiper-text span {
  -webkit-writing-mode: horizontal-tb;
      -ms-writing-mode: lr-tb;
          writing-mode: horizontal-tb;
}

.mv__swiper-text_container-bottom {
  position: absolute;
  z-index: 10;
  left: 0;
  bottom: 0px;
  background: rgba(137, 68, 68, 0.64);
  width: calc(100% - 60px);
  height: 56px;
  padding-left: 10px;
  padding-top: 6px;
  overflow: hidden; /* テキストのオーバーフローを隠す */
}
@media screen and (min-width: 600px) {
  .mv__swiper-text_container-bottom {
    width: calc(100% - 80px);
    height: 65px;
  }
}
@media screen and (min-width: 768px) {
  .mv__swiper-text_container-bottom {
    width: calc(100% - 100px);
    height: 65px;
  }
}
@media screen and (min-width: 1280px) {
  .mv__swiper-text_container-bottom {
    width: calc(100% - 110px);
    height: 72px;
  }
}

.mv__swiper-text_bottom {
  font-size: 24px;
  font-weight: 700;
  color: rgb(222, 222, 222);
  position: relative;
  width: 100%;
  display: inline-block;
  white-space: nowrap; /* テキストの折り返しを防止 */
  -webkit-animation: slideIn 7s linear infinite;
          animation: slideIn 7s linear infinite; /* アニメーションを適用 */
}
@media screen and (min-width: 600px) {
  .mv__swiper-text_bottom {
    font-size: 27px;
    -webkit-animation: slideIn 7s linear infinite;
            animation: slideIn 7s linear infinite; /* アニメーションを適用 */
  }
}
@media screen and (min-width: 768px) {
  .mv__swiper-text_bottom {
    font-size: 27px;
    -webkit-animation: slideIn 8s linear infinite;
            animation: slideIn 8s linear infinite; /* アニメーションを適用 */
  }
}
@media screen and (min-width: 768px) {
  .mv__swiper-text_bottom {
    font-size: 30px;
    -webkit-animation: slideIn 10s linear infinite;
            animation: slideIn 10s linear infinite; /* アニメーションを適用 */
  }
}
.mv__swiper-text_bottom::before {
  content: "";
  background: url(../img/swiper__text.png) no-repeat center center/cover;
  width: 317px;
  height: 20px;
  position: absolute;
  left: -30px;
  bottom: -10px;
  z-index: -1;
}

@-webkit-keyframes slideIn {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%); /* 画面外左から開始 */
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%); /* 画面外右で終了 */
  }
}

@keyframes slideIn {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%); /* 画面外左から開始 */
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%); /* 画面外右で終了 */
  }
}
.mv__slider-image {
  width: 100%;
  height: 100%;
  -webkit-transition: -webkit-transform 35s ease;
  transition: -webkit-transform 35s ease;
  transition: transform 35s ease;
  transition: transform 35s ease, -webkit-transform 35s ease; /* スケールアニメーションを設定 */
  -webkit-transform: scale(1);
          transform: scale(1);
}
.swiper-slide-active .mv__slider-image {
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}

.about {
  padding-top: 80px;
  overflow: hidden;
  opacity: 0; /* 初期状態で非表示 */
}
.about.fadeInUp {
  -webkit-animation-name: fadeInUp;
          animation-name: fadeInUp;
  -webkit-animation-duration: 1s;
          animation-duration: 1s; /* アニメーションの再生時間 */
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards; /* アニメーション終了後に状態を維持 */
  opacity: 1;
}
@media screen and (min-width: 600px) {
  .about {
    padding-top: 120px;
  }
}

/* 上下方向のアニメーション */
@-webkit-keyframes floatAnimation {
  0% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px); /* 初期位置 */
  }
  25% {
    -webkit-transform: translateY(20px);
            transform: translateY(20px); /* 初期位置 */
  }
  50% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px); /* 上に20px */
  }
  75% {
    -webkit-transform: translateY(20px);
            transform: translateY(20px); /* 上に20px */
  }
  100% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px); /* 初期位置に戻る */
  }
}
@keyframes floatAnimation {
  0% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px); /* 初期位置 */
  }
  25% {
    -webkit-transform: translateY(20px);
            transform: translateY(20px); /* 初期位置 */
  }
  50% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px); /* 上に20px */
  }
  75% {
    -webkit-transform: translateY(20px);
            transform: translateY(20px); /* 上に20px */
  }
  100% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px); /* 初期位置に戻る */
  }
}
/* 左右方向のアニメーション */
@-webkit-keyframes floatMove {
  0% {
    -webkit-transform: translateX(-40px);
            transform: translateX(-40px); /* 初期位置 */
  }
  25% {
    -webkit-transform: translateX(40px);
            transform: translateX(40px); /* 初期位置 */
  }
  50% {
    -webkit-transform: translateX(-40px);
            transform: translateX(-40px); /* 右に40px */
  }
  75% {
    -webkit-transform: translateX(40px);
            transform: translateX(40px); /* 右に40px */
  }
  100% {
    -webkit-transform: translateX(-40px);
            transform: translateX(-40px); /* 初期位置に戻る */
  }
}
@keyframes floatMove {
  0% {
    -webkit-transform: translateX(-40px);
            transform: translateX(-40px); /* 初期位置 */
  }
  25% {
    -webkit-transform: translateX(40px);
            transform: translateX(40px); /* 初期位置 */
  }
  50% {
    -webkit-transform: translateX(-40px);
            transform: translateX(-40px); /* 右に40px */
  }
  75% {
    -webkit-transform: translateX(40px);
            transform: translateX(40px); /* 右に40px */
  }
  100% {
    -webkit-transform: translateX(-40px);
            transform: translateX(-40px); /* 初期位置に戻る */
  }
}
.about__top-cloud_container {
  position: absolute;
  top: -30px;
  right: 20px;
  z-index: 1;
  -webkit-animation: floatMove 20s infinite linear;
          animation: floatMove 20s infinite linear;
}
@media screen and (max-width: 374px) {
  .about__top-cloud_container {
    right: 11px;
  }
}
@media screen and (min-width: 600px) {
  .about__top-cloud_container {
    top: -20px;
  }
}
@media screen and (min-width: 768px) {
  .about__top-cloud_container {
    right: auto;
    left: 40px;
    top: -70px;
  }
}

.about__top-cloud {
  width: 80px;
  -webkit-animation: floatAnimation 15s infinite ease-in-out;
          animation: floatAnimation 15s infinite ease-in-out;
  opacity: 0.5;
}
@media screen and (min-width: 600px) {
  .about__top-cloud {
    width: 100px;
  }
}

.about__doragon-container {
  position: absolute;
  top: -80px;
  right: 20px;
}
@media screen and (max-width: 374px) {
  .about__doragon-container {
    right: 11px;
  }
}
@media screen and (min-width: 600px) {
  .about__doragon-container {
    top: -120px;
  }
}
@media screen and (min-width: 768px) {
  .about__doragon-container {
    right: auto;
    left: 40px;
    top: -160px;
  }
}

.about__doragon {
  width: 60px;
  -webkit-animation: floatAnimation 15s infinite ease-in-out;
          animation: floatAnimation 15s infinite ease-in-out;
}
@media screen and (min-width: 600px) {
  .about__doragon {
    width: 80px;
  }
}

.about__bottom-cloud_container {
  position: absolute;
  bottom: -50px;
  left: 20px;
  -webkit-animation: floatAnimation 20s infinite ease-in-out;
          animation: floatAnimation 20s infinite ease-in-out;
}
@media screen and (min-width: 768px) {
  .about__bottom-cloud_container {
    left: auto;
    right: 0px;
    bottom: -20px;
  }
}

.about__bottom-cloud {
  width: 80px;
  -webkit-animation: floatMove 15s infinite linear;
          animation: floatMove 15s infinite linear;
  opacity: 0.5;
}
@media screen and (min-width: 600px) {
  .about__bottom-cloud {
    width: 100px;
  }
}

@media screen and (min-width: 768px) {
  .about__flex-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 70px;
  }
}
.about__inner {
  padding-inline: 40px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .about__inner {
    padding-inline: 20px;
    width: 177vw;
  }
}
@media screen and (min-width: 1280px) {
  .about__inner {
    width: 126vw;
    padding-inline: 50px;
  }
}

.about__message {
  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;
  gap: 40px;
  line-height: 1.8;
}

.about__massage-head {
  font-family: "Zen Old Mincho", serif;
  font-size: 26px;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 600px) {
  .about__massage-head {
    font-size: 36px;
  }
}

.about__massage-body {
  font-family: "Zen Old Mincho", serif;
  font-size: 16px;
  margin-top: 40px;
}
@media screen and (min-width: 600px) {
  .about__massage-body {
    font-size: 20px;
  }
}
@media screen and (min-width: 768px) {
  .about__massage-body {
    margin-top: 0;
    font-size: 18px;
  }
}
@media screen and (min-width: 900px) {
  .about__massage-body {
    font-size: 18px;
  }
}
@media screen and (min-width: 1280px) {
  .about__massage-body {
    font-size: 20px;
  }
}

.about__button-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 40px;
}

.about__button {
  display: inline-block;
  padding: 13px 20px;
  color: #fff;
  text-decoration: none;
  position: relative;
  background: #000;
  border: 1px solid #000;
  font: 12px/1.2 "Zen Old Mincho", serif;
  letter-spacing: 0.4em;
  text-align: center;
  text-indent: 2px;
  text-transform: uppercase;
  -webkit-transition: color 0.1s linear 0.05s;
  transition: color 0.1s linear 0.05s;
}
.about__button::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: #fff;
  z-index: 1;
  opacity: 0;
  -webkit-transition: height 0.2s ease, top 0.2s ease, opacity 0s linear 0.2s;
  transition: height 0.2s ease, top 0.2s ease, opacity 0s linear 0.2s;
}
.about__button::after {
  -webkit-transition: border 0.1s linear 0.05s;
  transition: border 0.1s linear 0.05s;
}
.about__button .about__button-inner {
  position: relative;
  z-index: 2;
}
.about__button:hover {
  color: #000;
  -webkit-transition: color 0.1s linear 0s;
  transition: color 0.1s linear 0s;
}
.about__button:hover::before {
  top: 0;
  height: 100%;
  opacity: 1;
  -webkit-transition: height 0.2s ease, top 0.2s ease, opacity 0s linear 0s;
  transition: height 0.2s ease, top 0.2s ease, opacity 0s linear 0s;
}
.about__button:hover::after {
  border-color: #373737;
  -webkit-transition: border 0.1s linear 0s;
  transition: border 0.1s linear 0s;
}

.about__image {
  margin-top: 80px;
}
@media screen and (min-width: 768px) {
  .about__image {
    margin-top: 0;
    margin-right: 20px;
    margin-top: 10px;
  }
}
.about__image img {
  width: 100%;
}

.fadein {
  opacity: 0;
}
.fadein.show {
  -webkit-animation-name: fadeInUp;
          animation-name: fadeInUp;
  -webkit-animation-duration: 1s;
          animation-duration: 1s; /* アニメーションの再生時間 */
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards; /* アニメーション終了後に状態を維持 */
  opacity: 1;
}

.commitment {
  padding-top: 80px;
  overflow: hidden;
}
@media screen and (min-width: 600px) {
  .commitment {
    padding-top: 120px;
  }
}
@media screen and (min-width: 768px) {
  .commitment {
    padding-bottom: 120px;
  }
}

.commitment__top-cloud_container {
  position: absolute;
  top: 0px;
  right: 20px;
  -webkit-animation: floatMove 20s infinite linear;
          animation: floatMove 20s infinite linear;
  opacity: 0.5;
  z-index: 1;
}
@media screen and (min-width: 600px) {
  .commitment__top-cloud_container {
    top: 40px;
  }
}
@media screen and (min-width: 768px) {
  .commitment__top-cloud_container {
    top: -50px;
  }
}

.commitment__top-cloud {
  width: 80px;
  -webkit-animation: floatAnimation 15s infinite ease-in-out;
          animation: floatAnimation 15s infinite ease-in-out;
}
@media screen and (min-width: 600px) {
  .commitment__top-cloud {
    width: 100px;
  }
}

.commitment__doragon-container {
  position: absolute;
  bottom: -50px;
  left: 20px;
}
@media screen and (max-width: 374px) {
  .commitment__doragon-container {
    left: 11px;
  }
}
@media screen and (min-width: 768px) {
  .commitment__doragon-container {
    bottom: auto;
    top: -150px;
    left: auto;
    right: 20px;
  }
}

.commitment__doragon {
  width: 60px;
  -webkit-animation: floatAnimation 15s infinite ease-in-out;
          animation: floatAnimation 15s infinite ease-in-out;
}
@media screen and (min-width: 600px) {
  .commitment__doragon {
    width: 80px;
  }
}

.commitment__bottom-cloud_container {
  position: absolute;
  bottom: -50px;
  left: 20px;
  -webkit-animation: floatAnimation 20s infinite ease-in-out;
          animation: floatAnimation 20s infinite ease-in-out;
  opacity: 0.5;
  z-index: 1;
}
@media screen and (max-width: 374px) {
  .commitment__bottom-cloud_container {
    left: 11px;
  }
}
@media screen and (min-width: 768px) {
  .commitment__bottom-cloud_container {
    bottom: -80px;
    left: auto;
    right: 20px;
  }
}

.commitment__bottom-cloud {
  width: 80px;
  -webkit-animation: floatMove 15s infinite linear;
          animation: floatMove 15s infinite linear;
}
@media screen and (min-width: 600px) {
  .commitment__bottom-cloud {
    width: 100px;
  }
}

@media screen and (min-width: 768px) {
  .commitment__flex-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    margin-top: 70px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.commitment__inner {
  padding-inline: 40px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .commitment__inner {
    padding-inline: 20px;
    width: 72vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 60px;
  }
}
@media screen and (min-width: 900px) {
  .commitment__inner {
    width: 64vw;
  }
}
@media screen and (min-width: 1280px) {
  .commitment__inner {
    gap: 100px;
    width: 42vw;
  }
}

.commitment__message {
  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;
  gap: 40px;
  text-align: center;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .commitment__message {
    margin-top: 0;
  }
}

.commitment__massage-head {
  font-family: "Zen Old Mincho", serif;
  font-size: 26px;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 600px) {
  .commitment__massage-head {
    font-size: 36px;
  }
}

.commitment__massage-body {
  font-family: "Zen Old Mincho", serif;
  font-size: 16px;
  line-height: 1.8;
}
@media screen and (min-width: 600px) {
  .commitment__massage-body {
    font-size: 20px;
  }
}
@media screen and (min-width: 900px) {
  .commitment__massage-body {
    font-size: 22px;
  }
}
@media screen and (min-width: 1280px) {
  .commitment__massage-body {
    font-size: 24px;
    line-height: 1.8;
  }
}

.commitment__button-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .commitment__button-container {
    margin-top: 0;
  }
}
.commitment__button {
  display: inline-block;
  padding: 13px 20px;
  color: #fff;
  text-decoration: none;
  position: relative;
  background: #000;
  border: 1px solid #000;
  font: 12px/1.2 "Zen Old Mincho", serif;
  letter-spacing: 0.4em;
  text-align: center;
  text-indent: 2px;
  text-transform: uppercase;
  -webkit-transition: color 0.1s linear 0.05s;
  transition: color 0.1s linear 0.05s;
}
.commitment__button::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: #fff;
  z-index: 1;
  opacity: 0;
  -webkit-transition: height 0.2s ease, top 0.2s ease, opacity 0s linear 0.2s;
  transition: height 0.2s ease, top 0.2s ease, opacity 0s linear 0.2s;
}
.commitment__button::after {
  -webkit-transition: border 0.1s linear 0.05s;
  transition: border 0.1s linear 0.05s;
}
.commitment__button .commitment__button-inner {
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 600px) {
  .commitment__button .commitment__button-inner {
    font-size: 14px;
  }
}
.commitment__button:hover {
  color: #000;
  -webkit-transition: color 0.1s linear 0s;
  transition: color 0.1s linear 0s;
}
.commitment__button:hover::before {
  top: 0;
  height: 100%;
  opacity: 1;
  -webkit-transition: height 0.2s ease, top 0.2s ease, opacity 0s linear 0s;
  transition: height 0.2s ease, top 0.2s ease, opacity 0s linear 0s;
}
.commitment__button:hover::after {
  border-color: #373737;
  -webkit-transition: border 0.1s linear 0s;
  transition: border 0.1s linear 0s;
}

.commitment__image {
  margin-top: 80px;
}
@media screen and (min-width: 768px) {
  .commitment__image {
    margin-top: 0;
    margin-left: 20px;
  }
}
.commitment__image img {
  width: 100%;
}

.news {
  padding-top: 80px;
  overflow: hidden;
}
@media screen and (min-width: 600px) {
  .news {
    padding-top: 120px;
  }
}
@media screen and (min-width: 768px) {
  .news {
    padding-top: 0;
  }
}

.news__inner {
  position: relative;
}

.news__title {
  font-family: "Zen Old Mincho", serif;
  font-size: 26px;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 600px) {
  .news__title {
    font-size: 36px;
  }
}

.news__boxes {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .news__boxes {
    margin-top: 70px;
  }
}

.news__box {
  max-width: 300px;
  width: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  padding: 10px;
  border: 1px solid #000;
}
@media screen and (min-width: 600px) {
  .news__box {
    max-width: 450px;
    width: 450px;
    gap: 20px;
  }
}
@media screen and (min-width: 768px) {
  .news__box {
    max-width: 550px;
    width: 550px;
  }
}
@media screen and (min-width: 1280px) {
  .news__box {
    max-width: 700px;
    width: 700px;
  }
}

.news__post-image {
  width: 80px;
}
@media screen and (min-width: 600px) {
  .news__post-image {
    width: 110px;
  }
}
@media screen and (min-width: 768px) {
  .news__post-image {
    width: 150px;
  }
}
@media screen and (min-width: 1280px) {
  .news__post-image {
    width: 190px;
  }
}
.news__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  width: 186px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 600px) {
  .news__body {
    width: 288px;
  }
}
@media screen and (min-width: 768px) {
  .news__body {
    width: 358px;
  }
}

.news__body-text {
  font-family: "Zen Old Mincho", serif;
  font-size: 16px;
}
@media screen and (min-width: 600px) {
  .news__body-text {
    font-size: 17px;
  }
}
@media screen and (min-width: 768px) {
  .news__body-text {
    font-size: 18px;
  }
}

.news__body-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.news__body-date {
  font-family: "Zen Old Mincho", serif;
  font-size: 14px;
  margin-top: 3px;
}
@media screen and (min-width: 600px) {
  .news__body-date {
    font-size: 15px;
  }
}
@media screen and (min-width: 768px) {
  .news__body-date {
    font-size: 16px;
  }
}

.news__body-tag {
  font-family: "Zen Old Mincho", serif;
  font-size: 14px;
  background: #ff4e97;
  padding: 2px;
  border-radius: 5px;
}
@media screen and (min-width: 600px) {
  .news__body-tag {
    font-size: 15px;
  }
}
@media screen and (min-width: 768px) {
  .news__body-tag {
    font-size: 16px;
  }
}
.news__body-tag span {
  color: #fff;
}

.news__top-cloud_container {
  position: absolute;
  top: 0px;
  right: 20px;
  -webkit-animation: floatMove 20s infinite linear;
          animation: floatMove 20s infinite linear;
  z-index: 1;
  opacity: 0.5;
}
@media screen and (min-width: 600px) {
  .news__top-cloud_container {
    top: 40px;
    right: auto;
    left: 20px;
  }
}

.news__top-cloud {
  width: 80px;
  -webkit-animation: floatAnimation 15s infinite ease-in-out;
          animation: floatAnimation 15s infinite ease-in-out;
}
@media screen and (min-width: 600px) {
  .news__top-cloud {
    width: 100px;
  }
}

.news__doragon-container {
  position: absolute;
  top: -50px;
  right: 20px;
}
@media screen and (min-width: 768px) {
  .news__doragon-container {
    top: auto;
    right: auto;
    bottom: -50px;
    left: 20px;
  }
}

.news__doragon {
  width: 60px;
  -webkit-animation: floatAnimation 15s infinite ease-in-out;
          animation: floatAnimation 15s infinite ease-in-out;
}

.news__bottom-cloud_container {
  position: absolute;
  bottom: -50px;
  left: 20px;
  -webkit-animation: floatAnimation 20s infinite ease-in-out;
          animation: floatAnimation 20s infinite ease-in-out;
  opacity: 0.5;
  z-index: 1;
}

.news__bottom-cloud {
  width: 80px;
  -webkit-animation: floatMove 15s infinite linear;
          animation: floatMove 15s infinite linear;
}
@media screen and (min-width: 600px) {
  .news__bottom-cloud {
    width: 100px;
  }
}

.news__image {
  width: 100%;
  margin-top: 80px;
}
@media screen and (min-width: 768px) {
  .news__image {
    margin-top: 120px;
  }
}
.news__image img {
  width: 100%;
}

.menu {
  padding-top: 80px;
  padding-bottom: 80px;
  padding-inline: 20px;
}
@media screen and (min-width: 600px) {
  .menu {
    padding-inline: 40px;
    padding-top: 120px;
    padding-bottom: 120px;
  }
}
@media screen and (min-width: 768px) {
  .menu {
    padding-inline: 60px;
  }
}

.menu__inner {
  position: relative;
}

.menu__title {
  font-family: "Zen Old Mincho", serif;
  font-size: 26px;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 600px) {
  .menu__title {
    font-size: 36px;
  }
}

.surely {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .surely {
    margin-top: 70px;
  }
}

.surely__title {
  font-family: "Zen Old Mincho", serif;
}
@media screen and (min-width: 600px) {
  .surely__title {
    font-size: 18px;
  }
}
@media screen and (min-width: 768px) {
  .surely__title {
    font-size: 20px;
  }
}

.surely__price {
  font-family: "Zen Old Mincho", serif;
}
@media screen and (min-width: 600px) {
  .surely__price {
    font-size: 18px;
  }
}
@media screen and (min-width: 768px) {
  .surely__price {
    font-size: 20px;
  }
}

.menu__price-inner {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}

.menu__price-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 60px;
  border-bottom: 1px dashed #000;
  height: auto;
  padding-bottom: 5px;
}

.menu__food {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
}

.menu__food-title {
  font-family: "Zen Old Mincho", serif;
  font-size: 26px;
}
@media screen and (min-width: 600px) {
  .menu__food-title {
    font-size: 28px;
  }
}
@media screen and (min-width: 768px) {
  .menu__food-title {
    font-size: 30px;
  }
}

.menu__food-summary {
  font-family: "Zen Old Mincho", serif;
  font-size: 14px;
}
@media screen and (min-width: 600px) {
  .menu__food-summary {
    font-size: 16px;
  }
}
@media screen and (min-width: 768px) {
  .menu__food-summary {
    font-size: 18px;
  }
}

.menu__price {
  min-width: 160px;
  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: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  text-align: right;
  font-family: "Zen Old Mincho", serif;
}

.price__text {
  font-family: "Zen Old Mincho", serif;
  font-size: 16px;
}
@media screen and (min-width: 600px) {
  .price__text {
    font-size: 18px;
  }
}
@media screen and (min-width: 768px) {
  .price__text {
    font-size: 20px;
  }
}

.menu__bottom-massage {
  margin-top: 40px;
}

.menu__bottom-massage_text {
  font-family: "Zen Old Mincho", serif;
}
@media screen and (min-width: 600px) {
  .menu__bottom-massage_text {
    font-size: 18px;
  }
}
@media screen and (min-width: 768px) {
  .menu__bottom-massage_text {
    font-size: 20px;
  }
}

.menu__button-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .menu__button-container {
    margin-top: 60px;
  }
}

.menu__button {
  display: inline-block;
  padding: 13px 20px;
  color: #fff;
  text-decoration: none;
  position: relative;
  background: #000;
  border: 1px solid #000;
  font: 12px/1.2 "Zen Old Mincho", serif;
  letter-spacing: 0.4em;
  text-align: center;
  text-indent: 2px;
  text-transform: uppercase;
  -webkit-transition: color 0.1s linear 0.05s;
  transition: color 0.1s linear 0.05s;
}
.menu__button::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: #fff;
  z-index: 1;
  opacity: 0;
  -webkit-transition: height 0.2s ease, top 0.2s ease, opacity 0s linear 0.2s;
  transition: height 0.2s ease, top 0.2s ease, opacity 0s linear 0.2s;
}
.menu__button::after {
  -webkit-transition: border 0.1s linear 0.05s;
  transition: border 0.1s linear 0.05s;
}
.menu__button .menu__button-inner {
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 600px) {
  .menu__button .menu__button-inner {
    font-size: 14px;
  }
}
.menu__button:hover {
  color: #000;
  -webkit-transition: color 0.1s linear 0s;
  transition: color 0.1s linear 0s;
}
.menu__button:hover::before {
  top: 0;
  height: 100%;
  opacity: 1;
  -webkit-transition: height 0.2s ease, top 0.2s ease, opacity 0s linear 0s;
  transition: height 0.2s ease, top 0.2s ease, opacity 0s linear 0s;
}
.menu__button:hover::after {
  border-color: #373737;
  -webkit-transition: border 0.1s linear 0s;
  transition: border 0.1s linear 0s;
}

.menu__top-cloud_container {
  position: absolute;
  top: -50px;
  right: 20px;
  -webkit-animation: floatMove 20s infinite linear;
          animation: floatMove 20s infinite linear;
  opacity: 0.5;
  z-index: 1;
}
@media screen and (min-width: 600px) {
  .menu__top-cloud_container {
    top: 40px;
  }
}

.menu__top-cloud {
  width: 80px;
  -webkit-animation: floatAnimation 15s infinite ease-in-out;
          animation: floatAnimation 15s infinite ease-in-out;
}
@media screen and (min-width: 600px) {
  .menu__top-cloud {
    width: 100px;
  }
}

.menu__bottom-cloud_container {
  position: absolute;
  bottom: -120px;
  left: 20px;
  -webkit-animation: floatAnimation 20s infinite ease-in-out;
          animation: floatAnimation 20s infinite ease-in-out;
  z-index: 1;
  opacity: 0.5;
}

.menu__bottom-cloud {
  width: 80px;
  -webkit-animation: floatMove 15s infinite linear;
          animation: floatMove 15s infinite linear;
}
@media screen and (min-width: 600px) {
  .menu__bottom-cloud {
    width: 100px;
  }
}

.menu__doragon-container {
  position: absolute;
  bottom: -120px;
  left: 20px;
}
@media screen and (min-width: 768px) {
  .menu__doragon-container {
    bottom: auto;
    left: auto;
    top: -60px;
    right: 20px;
  }
}

.menu__doragon {
  width: 60px;
  -webkit-animation: floatAnimation 15s infinite ease-in-out;
          animation: floatAnimation 15s infinite ease-in-out;
}
@media screen and (min-width: 600px) {
  .menu__doragon {
    width: 80px;
  }
}

.landscape {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media screen and (min-width: 600px) {
  .landscape {
    padding-bottom: 120px;
  }
}

.landscape__slider-container {
  width: 100%;
  overflow: hidden;
}

.landscape__slider-wrpper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}

.landscape__slider img {
  width: 100%;
  display: block;
}

.summary__title {
  font-family: "Zen Old Mincho", serif;
  font-size: 26px;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 600px) {
  .summary__title {
    font-size: 30px;
  }
}
@media screen and (min-width: 768px) {
  .summary__title {
    font-size: 34px;
  }
}

.summary__message {
  margin-top: 40px;
  padding-inline: 20px;
}
@media screen and (min-width: 600px) {
  .summary__message {
    padding-inline: 40px;
  }
}
@media screen and (min-width: 768px) {
  .summary__message {
    padding-inline: 60px;
  }
}

.summary__message-text {
  margin-top: 40px;
  line-height: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-decoration: underline;
}
@media screen and (min-width: 600px) {
  .summary__message-text {
    font-size: 18px;
  }
}
@media screen and (min-width: 768px) {
  .summary__message-text {
    font-size: 20px;
  }
}

.senryu-master {
  width: 100%;
  margin-top: 40px;
}

.map {
  margin-top: 40px;
}

iframe {
  width: 100%;
  height: 300px;
}
@media screen and (min-width: 600px) {
  iframe {
    height: 400px;
  }
}
@media screen and (min-width: 768px) {
  iframe {
    height: 500px;
  }
}

.footer {
  background: #000;
  text-align: center;
  padding-top: 60px;
  padding-bottom: 90px;
  position: relative;
}
@media screen and (min-width: 900px) {
  .footer {
    padding-bottom: 20px;
  }
}

.footer__title img {
  width: 250px;
}
@media screen and (min-width: 768px) {
  .footer__title img {
    width: 300px;
  }
}
@media screen and (min-width: 1280px) {
  .footer__title img {
    width: 350px;
  }
}

.footer__address-text {
  font-family: "Zen Old Mincho", serif;
  font-size: 16px;
  color: #fff;
  margin-block: 20px;
}
@media screen and (min-width: 768px) {
  .footer__address-text {
    font-size: 18px;
  }
}
@media screen and (min-width: 1280px) {
  .footer__address-text {
    font-size: 20px;
  }
}

.footer__tel-text {
  font-family: "Zen Old Mincho", serif;
  font-size: 24px;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .footer__tel-text {
    font-size: 26px;
  }
}
@media screen and (min-width: 1280px) {
  .footer__tel-text {
    font-size: 28px;
  }
}

.bottom__page-top {
  position: absolute;
  right: 40px;
  bottom: 40px;
  display: none;
}
@media screen and (min-width: 900px) {
  .bottom__page-top {
    display: block;
  }
}
.bottom__page-top img {
  width: 60px;
  height: 60px;
}

.copylight {
  color: #fff;
  display: block;
  margin-top: 60px;
}
.copylight a {
  border-bottom: 1px solid #fff;
}

@media screen and (min-width: 900px) {
  .commitment__main {
    margin-left: 230px;
  }
}
@media screen and (min-width: 1280px) {
  .commitment__main {
    margin-left: 310px;
  }
}

.page__commitment {
  padding-bottom: 100px;
  overflow: hidden;
  padding-top: 130px;
}
@media screen and (min-width: 600px) {
  .page__commitment {
    padding-top: 200px;
  }
}
@media screen and (min-width: 900px) {
  .page__commitment {
    padding-top: 80px;
  }
}

.page__commitment-inner {
  position: relative;
}
@media screen and (min-width: 1280px) {
  .page__commitment-inner {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }
}

.page__commitment__message-head {
  font-family: "Zen Old Mincho", serif;
  font-size: 26px;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 600px) {
  .page__commitment__message-head {
    font-size: 36px;
  }
}

.page__commitment-message {
  font-family: "Zen Old Mincho", serif;
  font-size: 16px;
  margin-top: 40px;
  padding-inline: 20px;
  line-height: 1.5;
}
@media screen and (min-width: 600px) {
  .page__commitment-message {
    font-size: 20px;
  }
}
@media screen and (min-width: 768px) {
  .page__commitment-message {
    font-size: 18px;
  }
}
@media screen and (min-width: 900px) {
  .page__commitment-message {
    font-size: 18px;
    max-width: 777px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 1280px) {
  .page__commitment-message {
    font-size: 20px;
    max-width: 900px;
  }
}

.page-commitment__top-cloud_container {
  position: absolute;
  top: 40px;
  right: 20px;
  z-index: 1;
  -webkit-animation: floatMove 20s infinite linear;
          animation: floatMove 20s infinite linear;
}
@media screen and (min-width: 600px) {
  .page-commitment__top-cloud_container {
    top: 60px;
  }
}
@media screen and (min-width: 768px) {
  .page-commitment__top-cloud_container {
    right: 20px;
  }
}
.page-commitment__top-cloud {
  width: 80px;
  -webkit-animation: floatAnimation 15s infinite ease-in-out;
          animation: floatAnimation 15s infinite ease-in-out;
  opacity: 0.5;
}
@media screen and (min-width: 600px) {
  .page-commitment__top-cloud {
    width: 100px;
  }
}

.page-commitment__doragon-container {
  position: absolute;
  top: -40px;
  right: 20px;
}
@media screen and (min-width: 900px) {
  .page-commitment__doragon-container {
    top: -40px;
    right: 40px;
  }
}

.page-commitment__doragon {
  width: 60px;
  -webkit-animation: floatAnimation 15s infinite ease-in-out;
          animation: floatAnimation 15s infinite ease-in-out;
}
@media screen and (min-width: 600px) {
  .page-commitment__doragon {
    width: 80px;
  }
}

.page-commitment__bottom-cloud_container {
  position: absolute;
  bottom: -50px;
  left: 20px;
  -webkit-animation: floatAnimation 20s infinite ease-in-out;
          animation: floatAnimation 20s infinite ease-in-out;
  z-index: 1;
}
@media screen and (min-width: 900px) {
  .page-commitment__bottom-cloud_container {
    bottom: -60px;
    left: 40px;
  }
}

.page-commitment__bottom-cloud {
  width: 80px;
  -webkit-animation: floatMove 15s infinite linear;
          animation: floatMove 15s infinite linear;
  opacity: 0.5;
}
@media screen and (min-width: 600px) {
  .page-commitment__bottom-cloud {
    width: 100px;
  }
}

.page-commitment__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-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 40px;
}
@media screen and (min-width: 600px) {
  .page-commitment__menu {
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 1280px) {
  .page-commitment__menu {
    max-width: 800px;
  }
}

.page-commitment__menu-title {
  position: relative;
  padding: 1.5rem 1rem;
  text-align: center;
  width: 120px;
  font-size: 20px;
}
.page-commitment__menu-title::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 120px;
  height: 10px;
  content: "";
  background-image: repeating-linear-gradient(-45deg, #000, #000 1px, transparent 2px, transparent 5px);
  background-size: 7px 7px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.menu-title_control {
  width: 200px;
}
.menu-title_control::after {
  width: 200px;
}

.page-commitment__image {
  margin-top: 40px;
  width: 100%;
}
.page-commitment__image img {
  width: 100%;
  max-width: 650px;
}
@media screen and (min-width: 1280px) {
  .page-commitment__image img {
    max-width: 800px;
  }
}

.page-commitment__text {
  line-height: 1.5;
  margin-top: 40px;
  margin-left: 20px;
  margin-right: 20px;
}
@media screen and (min-width: 600px) {
  .page-commitment__text {
    font-size: 18px;
  }
}
@media screen and (min-width: 1280px) {
  .page-commitment__text {
    font-size: 20px;
  }
}

.page-commitment__price {
  width: 100%;
  text-align: right;
  margin-right: 40px;
  margin-top: 20px;
  font-size: 18px;
  text-decoration: underline;
}
@media screen and (min-width: 600px) {
  .page-commitment__price {
    font-size: 20px;
  }
}
@media screen and (min-width: 768px) {
  .page-commitment__price {
    margin-right: 0;
  }
}
@media screen and (min-width: 1280px) {
  .page-commitment__price {
    font-size: 22px;
  }
}

.page-commitment__group {
  margin-top: 120px;
}
@media screen and (min-width: 600px) {
  .page-commitment__group {
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 1280px) {
  .page-commitment__group {
    max-width: 800px;
  }
}

.page-commitment__group-title_container {
  position: relative;
  width: 270px;
  max-width: 270px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 600px) {
  .page-commitment__group-title_container {
    width: 300px;
    max-width: 300px;
  }
}
.page-commitment__group-title_container::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: -32px;
  left: 111px;
  background: url(../img/group.png) no-repeat center center/contain;
  width: 50px;
  height: 50px;
}
@media screen and (min-width: 600px) {
  .page-commitment__group-title_container::before {
    left: 125px;
  }
}

.page-commitment__group-title {
  position: relative;
  padding: 1.5rem;
  text-align: center;
  border: 2px solid #000;
  background: #fff;
  width: 270px;
  max-width: 270px;
  margin-left: auto;
  margin-right: auto;
}
.page-commitment__group-title::before, .page-commitment__group-title::after {
  position: absolute;
  content: "";
}
.page-commitment__group-title::before {
  top: -40px;
  left: calc(50% - 40px);
  width: 80px;
  height: 80px;
  border: 2px solid #000;
  border-radius: 50%;
  background: #fff;
}
.page-commitment__group-title::after {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
}
.page-commitment__group-title span {
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 600px) {
  .page-commitment__group-title span {
    font-size: 18px;
  }
}

.page-price__button-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 60px;
}
@media screen and (min-width: 768px) {
  .page-price__button-container {
    margin-bottom: 80px;
  }
}

.page-price__button {
  display: inline-block;
  padding: 13px 20px;
  color: #fff;
  text-decoration: none;
  position: relative;
  background: #000;
  border: 1px solid #000;
  font: 12px/1.2 "Zen Old Mincho", serif;
  letter-spacing: 0.4em;
  text-align: center;
  text-indent: 2px;
  text-transform: uppercase;
  -webkit-transition: color 0.1s linear 0.05s;
  transition: color 0.1s linear 0.05s;
}
.page-price__button::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: #fff;
  z-index: 1;
  opacity: 0;
  -webkit-transition: height 0.2s ease, top 0.2s ease, opacity 0s linear 0.2s;
  transition: height 0.2s ease, top 0.2s ease, opacity 0s linear 0.2s;
}
.page-price__button::after {
  -webkit-transition: border 0.1s linear 0.05s;
  transition: border 0.1s linear 0.05s;
}
.page-price__button .page-price__button-inner {
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 600px) {
  .page-price__button .page-price__button-inner {
    font-size: 16px;
  }
}
@media screen and (min-width: 768px) {
  .page-price__button .page-price__button-inner {
    font-size: 18px;
  }
}
.page-price__button:hover {
  color: #000;
  -webkit-transition: color 0.1s linear 0s;
  transition: color 0.1s linear 0s;
}
.page-price__button:hover::before {
  top: 0;
  height: 100%;
  opacity: 1;
  -webkit-transition: height 0.2s ease, top 0.2s ease, opacity 0s linear 0s;
  transition: height 0.2s ease, top 0.2s ease, opacity 0s linear 0s;
}
.page-price__button:hover::after {
  border-color: #373737;
  -webkit-transition: border 0.1s linear 0s;
  transition: border 0.1s linear 0s;
}

.page-price__top-cloud_container {
  position: absolute;
  top: 60px;
  right: 20px;
  z-index: 1;
  -webkit-animation: floatMove 20s infinite linear;
          animation: floatMove 20s infinite linear;
}
@media screen and (max-width: 374px) {
  .page-price__top-cloud_container {
    right: -6px;
  }
}
@media screen and (min-width: 600px) {
  .page-price__top-cloud_container {
    top: 80px;
  }
}
@media screen and (min-width: 768px) {
  .page-price__top-cloud_container {
    right: 20px;
  }
}
.page-price__top-cloud {
  width: 80px;
  -webkit-animation: floatAnimation 15s infinite ease-in-out;
          animation: floatAnimation 15s infinite ease-in-out;
  opacity: 0.5;
}
@media screen and (min-width: 600px) {
  .page-price__top-cloud {
    width: 100px;
  }
}

.page-price__doragon-container {
  position: absolute;
  top: -20px;
  right: 20px;
}
@media screen and (max-width: 374px) {
  .page-price__doragon-container {
    right: -6px;
  }
}
@media screen and (min-width: 900px) {
  .page-price__doragon-container {
    top: -40px;
    right: 40px;
  }
}

.page-price__doragon {
  width: 60px;
  -webkit-animation: floatAnimation 15s infinite ease-in-out;
          animation: floatAnimation 15s infinite ease-in-out;
}
@media screen and (min-width: 600px) {
  .page-price__doragon {
    width: 80px;
  }
}

.page-price__bottom-cloud_container {
  position: absolute;
  bottom: -50px;
  left: 20px;
  -webkit-animation: floatAnimation 20s infinite ease-in-out;
          animation: floatAnimation 20s infinite ease-in-out;
  z-index: 1;
}
@media screen and (min-width: 900px) {
  .page-price__bottom-cloud_container {
    bottom: -60px;
    left: 40px;
  }
}

.page-price__bottom-cloud {
  width: 80px;
  -webkit-animation: floatMove 15s infinite linear;
          animation: floatMove 15s infinite linear;
  opacity: 0.5;
}
@media screen and (min-width: 600px) {
  .page-price__bottom-cloud {
    width: 100px;
  }
}

@media screen and (min-width: 900px) {
  .price__main {
    margin-left: 230px;
  }
}
@media screen and (min-width: 1280px) {
  .price__main {
    margin-left: 310px;
  }
}

.page-price {
  padding-top: 80px;
  padding-bottom: 120px;
  padding-inline: 20px;
}
@media screen and (min-width: 600px) {
  .page-price {
    padding-inline: 40px;
    padding-top: 120px;
    padding-bottom: 120px;
  }
}
@media screen and (min-width: 900px) {
  .page-price {
    padding-inline: 20px;
    padding-top: 0;
  }
}
@media screen and (min-width: 1280px) {
  .page-price {
    padding-inline: 40px;
  }
}

.page-price__inner {
  position: relative;
}
@media screen and (min-width: 1280px) {
  .page-price__inner {
    max-width: 1122px;
    margin-left: auto;
    margin-right: auto;
  }
}

.page-price__title {
  font-family: "Zen Old Mincho", serif;
  font-size: 26px;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 600px) {
  .page-price__title {
    font-size: 36px;
  }
}

.page-surely {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .page-surely {
    margin-top: 70px;
  }
}

.page-surely__title {
  font-family: "Zen Old Mincho", serif;
}
@media screen and (min-width: 600px) {
  .page-surely__title {
    font-size: 18px;
  }
}
@media screen and (min-width: 768px) {
  .page-surely__title {
    font-size: 20px;
  }
}

.page-surely__price {
  font-family: "Zen Old Mincho", serif;
}
@media screen and (min-width: 600px) {
  .page-surely__price {
    font-size: 18px;
  }
}
@media screen and (min-width: 768px) {
  .page-surely__price {
    font-size: 20px;
  }
}

.page-price__menu-type {
  position: relative;
  margin-top: 80px;
  font-size: 24px;
  text-align: center;
  font-family: "Zen Old Mincho", serif;
  position: relative;
  padding: 1.5rem 2rem;
  -webkit-box-shadow: 0 2px 14px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 374px) {
  .page-price__menu-type {
    font-size: 19px;
  }
}
.page-price__menu-type::after, .page-price__menu-type::before {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  content: "";
  background-image: linear-gradient(135deg, #704308 0%, #ffce08 40%, #e1ce08 60%, #704308 100%);
}
.page-price__menu-type::after {
  top: 0;
}
.page-price__menu-type::before {
  bottom: 0;
}
.page-price__menu-type_button {
  position: absolute;
  right: 10px;
  top: 20px;
}
.page-price__menu-type_button.is-checked img {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.page-price__menu-type_button.is-checked.page-price__price-inner {
  display: block;
}
.page-price__menu-type_button img {
  width: 40px;
}

.page-price__price-inner {
  display: none; /* 初期状態は非表示 */
}
@media screen and (min-width: 768px) {
  .page-price__price-inner {
    margin-top: 20px;
  }
}

.page-price__price-flex_box {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 768px) {
  .page-price__price-flex_box {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2列に分ける */
    gap: 20px; /* アイテム間のスペース */
  }
}
.page-price__price-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 60px;
  border-bottom: 1px dashed #000;
  height: auto;
  padding-bottom: 5px;
  margin-top: 20px;
}

.page-price__food {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .page-price__food {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.page-price__food-title {
  font-family: "Zen Old Mincho", serif;
  font-size: 20px;
}
@media screen and (max-width: 374px) {
  .page-price__food-title {
    font-size: 18px;
  }
}
@media screen and (min-width: 600px) {
  .page-price__food-title {
    font-size: 28px;
  }
}
@media screen and (min-width: 768px) {
  .page-price__food-title {
    font-size: 26px;
  }
}
@media screen and (min-width: 900px) {
  .page-price__food-title {
    font-size: 24px;
  }
}
@media screen and (min-width: 1280px) {
  .page-price__food-title {
    font-size: 28px;
  }
}

.page-price__food-summary {
  font-family: "Zen Old Mincho", serif;
  font-size: 14px;
}
@media screen and (min-width: 600px) {
  .page-price__food-summary {
    font-size: 16px;
  }
}
@media screen and (min-width: 768px) {
  .page-price__food-summary {
    font-size: 14px;
  }
}
@media screen and (min-width: 1280px) {
  .page-price__food-summary {
    font-size: 16px;
  }
}

.page-price__price-container_right {
  max-width: 120px;
}

.page-price__food-image img {
  width: 120px;
}
@media screen and (min-width: 600px) {
  .page-price__food-image img {
    width: 160px;
  }
}
@media screen and (min-width: 768px) {
  .page-price__food-image img {
    width: 120px;
  }
}

.page-price__price {
  min-width: 120px;
  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: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  text-align: right;
  font-family: "Zen Old Mincho", serif;
}
@media screen and (max-width: 374px) {
  .page-price__price {
    max-width: 175px;
  }
}
@media screen and (min-width: 900px) {
  .page-price__price {
    min-width: 100px;
  }
}

.price__text {
  font-family: "Zen Old Mincho", serif;
  font-size: 16px;
}
@media screen and (max-width: 374px) {
  .price__text {
    font-size: 15px;
  }
}
@media screen and (min-width: 600px) {
  .price__text {
    font-size: 18px;
  }
}
@media screen and (min-width: 768px) {
  .price__text {
    font-size: 16px;
  }
}
@media screen and (min-width: 1280px) {
  .price__text {
    font-size: 18px;
  }
}

.page-price__modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1000;
}

.page-price__modal-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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  gap: 40px;
}

.page-price__modal-image {
  max-width: 90%;
}
@media screen and (min-width: 768px) {
  .page-price__modal-image {
    max-width: 80%;
  }
}
@media screen and (min-width: 900px) {
  .page-price__modal-image {
    max-width: 640px;
  }
}
.modal__remove {
  z-index: 300;
}
.modal__remove img {
  width: 70px;
}

#grayDisplay {
  z-index: 200;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  /* コンテンツ全てに対して固定的に 1160pxとか指定されているときの対応で、
  ダサいが!importantつける */
  max-width: 100% !important;
  height: 100%;
  background: #000;
}

.page-price__bottom-massage {
  margin-top: 40px;
}

.page-price__bottom-massage_text {
  font-family: "Zen Old Mincho", serif;
}
@media screen and (min-width: 600px) {
  .page-price__bottom-massage_text {
    font-size: 18px;
  }
}
@media screen and (min-width: 768px) {
  .page-price__bottom-massage_text {
    font-size: 20px;
  }
}

.page-price__button-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .page-price__button-container {
    margin-top: 80px;
  }
}

.page-price__button {
  display: inline-block;
  padding: 13px 20px;
  color: #fff;
  text-decoration: none;
  position: relative;
  background: #000;
  border: 1px solid #000;
  font: 12px/1.2 "Zen Old Mincho", serif;
  letter-spacing: 0.4em;
  text-align: center;
  text-indent: 2px;
  text-transform: uppercase;
  -webkit-transition: color 0.1s linear 0.05s;
  transition: color 0.1s linear 0.05s;
}
.page-price__button::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: #fff;
  z-index: 1;
  opacity: 0;
  -webkit-transition: height 0.2s ease, top 0.2s ease, opacity 0s linear 0.2s;
  transition: height 0.2s ease, top 0.2s ease, opacity 0s linear 0.2s;
}
.page-price__button::after {
  -webkit-transition: border 0.1s linear 0.05s;
  transition: border 0.1s linear 0.05s;
}
.page-price__button .page-price__button-inner {
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 600px) {
  .page-price__button .page-price__button-inner {
    font-size: 16px;
  }
}
@media screen and (min-width: 768px) {
  .page-price__button .page-price__button-inner {
    font-size: 18px;
  }
}
.page-price__button:hover {
  color: #000;
  -webkit-transition: color 0.1s linear 0s;
  transition: color 0.1s linear 0s;
}
.page-price__button:hover::before {
  top: 0;
  height: 100%;
  opacity: 1;
  -webkit-transition: height 0.2s ease, top 0.2s ease, opacity 0s linear 0s;
  transition: height 0.2s ease, top 0.2s ease, opacity 0s linear 0s;
}
.page-price__button:hover::after {
  border-color: #373737;
  -webkit-transition: border 0.1s linear 0s;
  transition: border 0.1s linear 0s;
}

.page-summary__top-cloud_container {
  position: absolute;
  top: -54px;
  right: -29px;
  z-index: 1;
  -webkit-animation: floatMove 20s infinite linear;
          animation: floatMove 20s infinite linear;
}
@media screen and (min-width: 600px) {
  .page-summary__top-cloud_container {
    top: 80px;
  }
}
@media screen and (min-width: 768px) {
  .page-summary__top-cloud_container {
    right: 20px;
  }
}
.page-summary__top-cloud {
  width: 80px;
  -webkit-animation: floatAnimation 15s infinite ease-in-out;
          animation: floatAnimation 15s infinite ease-in-out;
  opacity: 0.5;
}
@media screen and (min-width: 600px) {
  .page-summary__top-cloud {
    width: 100px;
  }
}

.page-summary__doragon-container {
  position: absolute;
  top: -121px;
  right: -12px;
}
@media screen and (min-width: 900px) {
  .page-summary__doragon-container {
    top: -40px;
    right: 40px;
  }
}

.page-summary__doragon {
  width: 60px;
  -webkit-animation: floatAnimation 15s infinite ease-in-out;
          animation: floatAnimation 15s infinite ease-in-out;
}
@media screen and (min-width: 600px) {
  .page-summary__doragon {
    width: 80px;
  }
}

.page-summary__bottom-cloud_container {
  position: absolute;
  bottom: -63px;
  left: 38px;
  -webkit-animation: floatAnimation 20s infinite ease-in-out;
          animation: floatAnimation 20s infinite ease-in-out;
  z-index: 1;
}
@media screen and (min-width: 900px) {
  .page-summary__bottom-cloud_container {
    bottom: -60px;
    left: 40px;
  }
}

.page-summary__bottom-cloud {
  width: 80px;
  -webkit-animation: floatMove 15s infinite linear;
          animation: floatMove 15s infinite linear;
  opacity: 0.5;
}
@media screen and (min-width: 600px) {
  .page-summary__bottom-cloud {
    width: 100px;
  }
}

@media screen and (min-width: 900px) {
  .summary__main {
    margin-left: 230px;
  }
}
@media screen and (min-width: 1280px) {
  .summary__main {
    margin-left: 310px;
  }
}

.page-summary {
  padding-bottom: 80px;
  padding-top: 80px;
  padding-inline: 20px;
  overflow: hidden;
}
@media screen and (min-width: 900px) {
  .page-summary {
    padding-top: 0;
  }
}

.page__summary-title {
  font-family: "Zen Old Mincho", serif;
  font-size: 26px;
  font-weight: 700;
  text-align: center;
  margin-top: 60px;
}
@media screen and (min-width: 600px) {
  .page__summary-title {
    font-size: 30px;
  }
}
@media screen and (min-width: 768px) {
  .page__summary-title {
    font-size: 36px;
  }
}

.page-summary__message {
  margin-top: 40px;
  padding-inline: 20px;
}

.page-summary__message-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.page-summary__message-title_text {
  font-family: "Zen Old Mincho", serif;
  font-size: 22px;
}

.page-summary__boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border: 1px solid #000;
  max-width: 430px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 80px;
  position: relative;
}
@media screen and (min-width: 600px) {
  .page-summary__boxes {
    max-width: 600px;
  }
}
@media screen and (min-width: 768px) {
  .page-summary__boxes {
    max-width: 700px;
  }
}

.page-summary__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.page-summary__box-left {
  width: 100px;
  border: 1px solid #000;
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #a2a2a2;
}
@media screen and (min-width: 600px) {
  .page-summary__box-left {
    width: 130px;
  }
}
@media screen and (min-width: 768px) {
  .page-summary__box-left {
    width: 150px;
  }
}

.page-summary__box-left_text {
  font-size: 14px;
  font-family: "Zen Old Mincho", serif;
  color: #fff;
}
@media screen and (min-width: 600px) {
  .page-summary__box-left_text {
    font-size: 17px;
  }
}
@media screen and (min-width: 768px) {
  .page-summary__box-left_text {
    font-size: 20px;
  }
}

.page-summary__box-right {
  border: 1px solid #000;
  width: 100%;
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.page-summary__box-right_text {
  font-size: 14px;
  font-family: "Zen Old Mincho", serif;
}
@media screen and (min-width: 600px) {
  .page-summary__box-right_text {
    font-size: 17px;
  }
}
@media screen and (min-width: 768px) {
  .page-summary__box-right_text {
    font-size: 20px;
  }
}

.page-price__button-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 60px;
}
@media screen and (min-width: 768px) {
  .page-price__button-container {
    margin-bottom: 80px;
  }
}

.page-price__button {
  display: inline-block;
  padding: 13px 20px;
  color: #fff;
  text-decoration: none;
  position: relative;
  background: #000;
  border: 1px solid #000;
  font: 12px/1.2 "Zen Old Mincho", serif;
  letter-spacing: 0.4em;
  text-align: center;
  text-indent: 2px;
  text-transform: uppercase;
  -webkit-transition: color 0.1s linear 0.05s;
  transition: color 0.1s linear 0.05s;
}
.page-price__button::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: #fff;
  z-index: 1;
  opacity: 0;
  -webkit-transition: height 0.2s ease, top 0.2s ease, opacity 0s linear 0.2s;
  transition: height 0.2s ease, top 0.2s ease, opacity 0s linear 0.2s;
}
.page-price__button::after {
  -webkit-transition: border 0.1s linear 0.05s;
  transition: border 0.1s linear 0.05s;
}
.page-price__button .page-price__button-inner {
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 600px) {
  .page-price__button .page-price__button-inner {
    font-size: 16px;
  }
}
@media screen and (min-width: 768px) {
  .page-price__button .page-price__button-inner {
    font-size: 18px;
  }
}
.page-price__button:hover {
  color: #000;
  -webkit-transition: color 0.1s linear 0s;
  transition: color 0.1s linear 0s;
}
.page-price__button:hover::before {
  top: 0;
  height: 100%;
  opacity: 1;
  -webkit-transition: height 0.2s ease, top 0.2s ease, opacity 0s linear 0s;
  transition: height 0.2s ease, top 0.2s ease, opacity 0s linear 0s;
}
.page-price__button:hover::after {
  border-color: #373737;
  -webkit-transition: border 0.1s linear 0s;
  transition: border 0.1s linear 0s;
}