@charset "UTF-8";
/*-- layoutフォルダの中の_index.scss --*/
/*-- globalフォルダの直下の_index.scss --*/
/*-- settingフォルダの中の_index.scss --*/
/*-- mixinフォルダの中の_index.scss --*/
/*-- globalフォルダの直下の_index.scss --*/
/* -------------------------------------------- 
アニメーションのためのJS
-------------------------------------------- */
.js-fadeHeaderTrigger,
.js-fadeHereTrigger,
.js-fadeUpTrigger,
.js-fadeDownTrigger,
.js-fadeRightTrigger,
.js-fadeLeftTrigger,
.js-fademvTrigger {
  opacity: 0;
}

.js-fadeHeader {
  -webkit-animation: fadeDownAnime 0.8s ease forwards;
          animation: fadeDownAnime 0.8s ease forwards;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  opacity: 0;
}
@-webkit-keyframes fadeDownAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadeDownAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.js-fademv {
  -webkit-animation: fademvAnime 0.5s ease forwards;
          animation: fademvAnime 0.5s ease forwards;
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
  opacity: 0;
}
@-webkit-keyframes fademvAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fademvAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.js-fadeHere {
  -webkit-animation: fadeHereAnime 0.8s ease forwards;
          animation: fadeHereAnime 0.8s ease forwards;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  opacity: 0;
}
@-webkit-keyframes fadeHereAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeHereAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.js-fadeUp {
  -webkit-animation: fadeUpAnime 0.8s ease forwards;
          animation: fadeUpAnime 0.8s ease forwards;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  opacity: 0;
}
@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.js-fadeDown {
  -webkit-animation: fadeDownAnime 0.8s ease forwards;
          animation: fadeDownAnime 0.8s ease forwards;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
  opacity: 0;
}
@keyframes fadeDownAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.js-faderight {
  -webkit-animation: fadeRightAnime 0.8s ease forwards;
          animation: fadeRightAnime 0.8s ease forwards;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  opacity: 0;
}
@-webkit-keyframes fadeRightAnime {
  from {
    opacity: 0;
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes fadeRightAnime {
  from {
    opacity: 0;
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.js-fadeleft {
  -webkit-animation: fadeLeftAnime 0.8s ease forwards;
          animation: fadeLeftAnime 0.8s ease forwards;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  opacity: 0;
}
@-webkit-keyframes fadeLeftAnime {
  from {
    opacity: 0;
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

/* -------------------------------------------- 
背景が伸びてテキストが出現するアニメーション
-------------------------------------------- */
.bgappearTrigger,
.bgLRextendTrigger {
  opacity: 0;
  position: relative;
  z-index: 1;
}

.bgextend {
  -webkit-animation: bgextendAnimeBase 1s forwards;
          animation: bgextendAnimeBase 1s forwards;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  position: relative;
  overflow: hidden;
  opacity: 0;
  z-index: 2;
}
.bgextend.bgLRextend {
  opacity: 1 !important;
}
.bgextend .bgappear {
  -webkit-animation: bgextendAnimeSecond 1s forwards 0.6s;
          animation: bgextendAnimeSecond 1s forwards 0.6s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  opacity: 0;
}
.bgextend .bgappear.bgappear {
  opacity: 1 !important;
}
@-webkit-keyframes bgextendAnimeSecond {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes bgextendAnimeSecond {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes bgextendAnimeBase {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes bgextendAnimeBase {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.bgLRextend {
  z-index: 1;
}
.bgLRextend::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #FFEB00;
  -webkit-animation: bgLRextendAnime 1s forwards;
          animation: bgLRextendAnime 1s forwards;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  z-index: -1;
}
@-webkit-keyframes bgLRextendAnime {
  0% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  50% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  100% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}
@keyframes bgLRextendAnime {
  0% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  50% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  100% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}

/* -------------------------------------------- 
テキストが下からなめらかに出現するアニメーション
-------------------------------------------- */
.smoothText {
  overflow: hidden;
  display: block;
}
.smoothTextTrigger {
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  -webkit-transform: translate3d(0, 100%, 0) skewY(12deg);
          transform: translate3d(0, 100%, 0) skewY(12deg);
  -webkit-transform-origin: left;
          transform-origin: left;
  display: block;
}
.smoothTextAppear {
  -webkit-transform: translate3d(0, 0, 0) skewY(0);
          transform: translate3d(0, 0, 0) skewY(0);
}

/* -------------------------------------------- 
フロアのスライドに対応したテキストに切り替わるアニメーション
-------------------------------------------- */
.fade-out {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.fade-in {
  opacity: 1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.header {
  position: fixed;
  z-index: 999;
}

.header--wrapper {
  width: 100%;
  padding: 20px 15px;
  /**********************************　
  以下、ハンバーガーメニューの設定　
  ************************************/
}
@media screen and (max-width: 360px) {
  .header--wrapper {
    padding: 10px;
  }
}
.header--wrapper .header--back {
  max-width: 1200px;
  margin: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.header--wrapper .header--logo .logo {
  width: 80px;
}
@media screen and (max-width: 330px) {
  .header--wrapper .header--logo .logo {
    width: 70px;
  }
}
.header--wrapper .header-info {
  color: #ffffff;
  text-align: center;
  font-weight: bold;
  font-size: 1.4rem;
}
@media screen and (max-width: 500px) {
  .header--wrapper .header-info {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 350px) {
  .header--wrapper .header-info {
    font-size: 1rem;
  }
}
.header--wrapper nav {
  margin: 0 0 0 auto;
}
.header--wrapper nav ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.header--wrapper nav ul a {
  font-size: 14px;
  font-weight: bold;
  color: #ffffff;
  text-decoration: none;
  display: block;
}
.header--wrapper .header--sp {
  display: none;
}
@media screen and (min-width: 10px) {
  .header--wrapper nav ul a {
    color: #fff;
  }
  .header--wrapper .header--hamburger {
    background-color: transparent;
    position: relative;
    cursor: pointer;
    height: 64px;
    width: 64px;
    padding: 20px 15px;
    border-radius: 50%;
    border: solid 1px #ffffff;
    background: rgba(255, 255, 255, 0.5);
    z-index: 999;
  }
  .header--wrapper .header--hamburger__icon p {
    position: absolute;
    font-size: 1.2rem;
    font-family: "Zen Maru Gothic", serif;
    font-weight: bold;
    color: #ffffff;
    top: 30px;
  }
  .header--wrapper .header--hamburger__icon span {
    position: absolute;
    width: 32px;
    height: 2px;
    background-color: white;
    border-radius: 8px;
    -webkit-transition: ease 0.4s;
    transition: ease 0.4s;
  }
  .header--wrapper .header--hamburger__icon span:nth-of-type(1) {
    top: 20px;
    left: 15px;
  }
  .header--wrapper .header--hamburger__icon span:nth-of-type(2) {
    top: 28px;
    left: 15px;
  }
  .header--wrapper .header--hamburger__icon.js-close span:nth-of-type(1) {
    -webkit-transform: rotate(30deg);
            transform: rotate(30deg);
    top: 20px;
  }
  .header--wrapper .header--hamburger__icon.js-close span:nth-of-type(2) {
    -webkit-transform: rotate(-30deg);
            transform: rotate(-30deg);
    top: 20px;
  }
  .header--wrapper .header--sp {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    top: 0;
    left: 0;
    position: absolute;
    z-index: 10;
    width: 100%;
    height: 100svh;
    background-color: #000;
    padding-top: 100px;
  }
  .header--wrapper .header--sp__item {
    position: relative;
  }
  .header--wrapper .header--sp__item.rental-link {
    display: none;
  }
  .header--wrapper .header--sp__item::before {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    border-top: solid 1px #ffffff;
    border-right: solid 1px #ffffff;
    top: calc(50% - 4px);
    left: 0;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .header--wrapper .header--sp__item a {
    text-indent: 30px;
  }
  .header--wrapper .header--sp__inner {
    width: 100%;
    height: calc(100% - 60px);
  }
  .header--wrapper .header--sp__inner ul {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .header--wrapper .header--sp__inner ul li {
    max-width: 280px;
    width: 100%;
  }
  .header--wrapper .header--sp__link {
    margin: 0 0 28px 0;
  }
  .header--wrapper .header--sp__link li {
    border-bottom: solid 1px #C6C6C6;
  }
  .header--wrapper .header--sp__link li a {
    padding: 18px 0;
  }
}

.rental .header--sp__item {
  display: none;
}
.rental .header--sp__item.rental-link, .rental .header--sp__item.common {
  display: block;
}

/* ===============================================
# 共通コンポーネント
=============================================== */
section {
  width: 100%;
}

html {
  width: 100%;
  height: 100%;
  font-size: 10px;
  overflow-x: hidden;
}

body {
  margin: 0;
  width: 100%;
  height: 100%;
  font-size: 1.6rem;
  line-height: 1.6;
  letter-spacing: 0.04em;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, sans-serif;
}

.bg {
  z-index: 0;
}
.bg::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -10;
  background: url(../img/common/full-bg.jpg) no-repeat center center/cover;
}

.body_wrapper {
  position: relative;
  width: 100%;
  height: auto !important;
  height: 100%;
  min-height: 100%;
  overflow: hidden;
}

.inner {
  width: 90%;
  margin: auto;
}

.sp {
  display: none;
}

#main-content,
.header {
  max-width: 500px;
  width: 100%;
  margin: auto;
}

.section-ttl {
  text-align: center;
  font-family: "Zen Maru Gothic", serif;
  font-weight: bold;
  line-height: 1;
  color: #ffffff;
  position: relative;
}
.section-ttl::before, .section-ttl::after {
  content: "";
  position: absolute;
  width: 43px;
  height: 82px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.section-ttl::before {
  background: url(../img/common/ornament/ttl-ornament_white-left.svg) no-repeat center center/cover;
  left: 5%;
}
.section-ttl::after {
  background: url(../img/common/ornament/ttl-ornament_white-right.svg) no-repeat center center/cover;
  right: 5%;
}
.section-ttl_en {
  font-size: 3.8rem;
  margin: 0 0 15px;
}
.section-ttl_ja {
  font-size: 2rem;
}
.section-catch {
  text-align: center;
  font-weight: bold;
}
.section-catch p {
  overflow: hidden;
  padding: 0 0 5px;
}
.section-catch p .section-catch-line {
  position: relative;
  padding: 0 0 5px;
  overflow: hidden;
}
.section-catch p .section-catch-line::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 5px;
  background-color: #ffffff;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: -webkit-transform 0.5s ease-out;
  transition: -webkit-transform 0.5s ease-out;
  transition: transform 0.5s ease-out;
  transition: transform 0.5s ease-out, -webkit-transform 0.5s ease-out;
}
.section-catch p .section-catch-line span {
  display: inline-block;
  position: relative;
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 0.5s ease-out 0.8s, -webkit-transform 0.5s ease-out 0.8s;
  transition: opacity 0.5s ease-out 0.8s, -webkit-transform 0.5s ease-out 0.8s;
  transition: opacity 0.5s ease-out 0.8s, transform 0.5s ease-out 0.8s;
  transition: opacity 0.5s ease-out 0.8s, transform 0.5s ease-out 0.8s, -webkit-transform 0.5s ease-out 0.8s;
}
.section-catch-s {
  font-size: 2rem;
}
.section-catch-l {
  font-size: 3.5rem;
}
@media screen and (max-width: 400px) {
  .section-catch-l {
    font-size: 3rem;
  }
}
@media screen and (max-width: 350px) {
  .section-catch-l {
    font-size: 2.8rem;
  }
}
.section-catch .animate .section-catch-line::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.section-catch .animate .section-catch-line span {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.section_txt {
  font-weight: bold;
}

.green-btn {
  font-size: 2rem;
  font-weight: bold;
  font-family: "Zen Maru Gothic", serif;
}
.green-btn a {
  display: block;
  color: #000;
  width: 290px;
  padding: 30px 0 30px 56px;
  margin: auto;
  background: #C4FF00;
  border-radius: 50px;
  position: relative;
}
.green-btn a::before {
  content: "";
  position: absolute;
  width: 36px;
  height: 37px;
  background: url(../img/drink/menu-arrow.svg) no-repeat center center/cover;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 42px;
}

.access-book {
  display: none;
}

.tel-green {
  display: block;
}

.tel-white {
  display: none;
}

.rental .green-btn a {
  background: #FFEB00;
}
.rental .access-book {
  display: block;
}
.rental .tel-green {
  display: none;
}
.rental .tel-white {
  display: block;
}

@media screen and (max-width: 767px) {
  .sp {
    display: block;
  }
}
/* ===============================================
# 下層ページのコンポーネント 
=============================================== */
/* ===============================================
# フィックスリンク
=============================================== */
.fixed-nav {
  position: fixed;
  max-width: 500px;
  width: 100%;
  bottom: 0;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, sans-serif;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  z-index: 1;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.fixed-nav.is-show {
  opacity: 1;
}
.fixed-nav_link {
  width: 50%;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.4;
  padding: 10px 8px 10px 42px;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.fixed-nav_link_bottom {
  font-size: 1.6rem;
}
@media screen and (max-width: 350px) {
  .fixed-nav_link_bottom {
    font-size: 1.2rem;
  }
}
.fixed-nav_link::before, .fixed-nav_link::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.fixed-nav_link::before {
  left: 14px;
}
.fixed-nav_link::after {
  width: 15px;
  height: 15px;
  right: 8px;
}
.fixed-nav_link.tel {
  color: #ffffff;
  background: #8FC31F;
}
.fixed-nav_link.tel::before {
  width: 24px;
  height: 24px;
  background: url(../img/common/footer/tel-icon.svg) no-repeat center center/cover;
}
.fixed-nav_link.tel::after {
  background: url(../img/common/footer/tel-link-arrow.svg) no-repeat center center/cover;
}
.fixed-nav_link.map {
  background: #FFEB00;
}
.fixed-nav_link.map::before {
  width: 22px;
  height: 26px;
  background: url(../img/common/footer/map-icon.svg) no-repeat center center/cover;
}
.fixed-nav_link.map::after {
  background: url(../img/common/footer/map-link-arrow.svg) no-repeat center center/cover;
}

/* ===============================================
# フッター
=============================================== */
.footer {
  background: #000;
  padding: 0 0 80px;
}
.footer .insta {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 0 40px;
  padding: 40px 0 0;
}
.footer .copyright {
  font-size: 1.6rem;
  text-align: center;
  color: #ffffff;
}

.rental .access {
  color: #ffffff;
}
.rental .access .section-ttl {
  color: #ffffff;
}
.rental .access .section-ttl::before {
  background: url(../img/common/ornament/ttl-ornament_white-left.svg) no-repeat center center/cover;
  left: 5%;
}
.rental .access .section-ttl::after {
  background: url(../img/common/ornament/ttl-ornament_white-right.svg) no-repeat center center/cover;
  right: 5%;
}
.rental .access #map .gm-style .gm-style-iw-c {
  -webkit-box-shadow: 0 2px 7px 1px rgb(255, 235, 0);
  box-shadow: 0 2px 7px 1px rgb(255, 235, 0);
}
.rental .access #map .shopBtn2 a {
  background: #FFEB00;
}
.rental .footer {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(253, 55, 231, 0)), color-stop(0%, rgb(34, 195, 170)), to(rgb(0, 90, 180)));
  background-image: -webkit-linear-gradient(bottom, rgba(253, 55, 231, 0), rgb(34, 195, 170) 0%, rgb(0, 90, 180));
  background-image: linear-gradient(0deg, rgba(253, 55, 231, 0), rgb(34, 195, 170) 0%, rgb(0, 90, 180));
}

@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
}
/* -------------------------------------------- 
トップ：メインビジュアル
-------------------------------------------- */
.mv {
  width: 100%;
  position: relative;
}
.mv-back {
  width: 100%;
}
.mv-catch {
  position: absolute;
  top: 100px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
}
@media screen and (max-width: 350px) {
  .mv-catch {
    top: 70px;
  }
}
.mv-catch_img {
  width: 80%;
  display: block;
  margin: auto;
  -webkit-transform: translateX(15px);
          transform: translateX(15px);
}
.mv-catch_txt {
  color: #fff;
  font-family: "Zilla Slab", serif;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.1em;
  -webkit-animation: set 1.5s ease-out;
          animation: set 1.5s ease-out;
}
@-webkit-keyframes set {
  0% {
    opacity: 0;
    letter-spacing: 0.4em;
  }
  80% {
    letter-spacing: 0.1em;
  }
}
@keyframes set {
  0% {
    opacity: 0;
    letter-spacing: 0.4em;
  }
  80% {
    letter-spacing: 0.1em;
  }
}
.mv_appeal {
  width: 100%;
  position: absolute;
  bottom: 140px;
}
@media screen and (max-width: 500px) {
  .mv_appeal {
    bottom: 32px;
  }
}
.mv_appeal_ttl {
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: bold;
  width: 90%;
  margin: 0 auto 20px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.mv_appeal_ttl-band01, .mv_appeal_ttl-band02 {
  padding: 0 15px;
  overflow: hidden;
  -webkit-transform: translate(-100%, 0);
          transform: translate(-100%, 0);
  -webkit-transition: -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
  transition: -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s, -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
}
.mv_appeal_ttl-band01 span, .mv_appeal_ttl-band02 span {
  background: #FFEB00;
  display: inline-block;
  padding: 10px 5px;
  -webkit-transform: translate(100%, 0);
          transform: translate(100%, 0);
  -webkit-transition: -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
  transition: -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s, -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
  position: relative;
}
.mv_appeal_ttl-band01 span::before, .mv_appeal_ttl-band01 span::after, .mv_appeal_ttl-band02 span::before, .mv_appeal_ttl-band02 span::after {
  content: "";
  position: absolute;
  background: #FFEB00;
  width: 15px;
  height: 100%;
  top: 0;
}
.mv_appeal_ttl-band01 span::before, .mv_appeal_ttl-band02 span::before {
  -webkit-clip-path: polygon(90% 0, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(90% 0, 100% 0, 100% 100%, 0 100%);
  left: -14px;
}
.mv_appeal_ttl-band01 span::after, .mv_appeal_ttl-band02 span::after {
  -webkit-clip-path: polygon(0 0, 100% 0, 10% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 10% 100%, 0 100%);
  right: -14px;
}
.mv_appeal_ttl-band01.-visible, .mv_appeal_ttl-band02.-visible {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
.mv_appeal_ttl-band01.-visible span, .mv_appeal_ttl-band02.-visible span {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
.mv_appeal_ttl-band01 {
  margin: 0 0 6px;
}
.mv_appeal_txt {
  width: 80%;
  margin: auto;
  color: #ffffff;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.6rem;
}
@media screen and (max-width: 370px) {
  .mv_appeal_txt {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 350px) {
  .mv_appeal_txt {
    width: 90%;
  }
}
.mv_appeal-stamp {
  position: absolute;
  top: -45px;
  right: 5%;
}
.mv_appeal-stamp.js-fadeHereTrigger {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

/* -------------------------------------------- 
トップ：おすすめポイント
-------------------------------------------- */
.point {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgb(253, 55, 231)), to(rgb(255, 78, 0)));
  background-image: -webkit-linear-gradient(bottom, rgb(253, 55, 231), rgb(255, 78, 0));
  background-image: linear-gradient(0deg, rgb(253, 55, 231), rgb(255, 78, 0));
  padding: 50px 0 60px;
  color: #ffffff;
}
.point .section-ttl {
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, sans-serif;
}
.point .section-ttl_en {
  font-size: 2.5rem;
}
.point .section-ttl_en span {
  font-size: 5.5rem;
}
.point .section-ttl_ja {
  font-size: 2.4rem;
}
.point-lists-item {
  padding: 110px 0 40px;
  border-bottom: solid 1px #ffffff;
}
@media screen and (max-width: 500px) {
  .point-lists-item:nth-child(2) {
    padding: 160px 0 40px;
  }
  .point-lists-item:nth-child(2) .point-lists-item-num_img {
    bottom: -55px;
  }
}
.point-lists-item:nth-child(3) {
  padding: 110px 0 0;
  border-bottom: none;
}
.point-lists-item-num {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-weight: bold;
  line-height: 1;
  margin: 0 0 10px;
  position: relative;
}
.point-lists-item-num-txt01 {
  font-size: 1.4rem;
  -webkit-transform: translateY(5px);
          transform: translateY(5px);
}
.point-lists-item-num-txt02 {
  font-size: 4rem;
}
.point-lists-item-num_img {
  position: absolute;
  bottom: -105px;
  left: 45%;
}
.point-lists-item-ttl {
  display: inline-block;
  margin: 0 0 20px;
}
.point-lists-item-ttl-mb {
  margin: 0 0 8px;
}
.point-lists-item-ttl p {
  color: #000;
  font-size: 3.5rem;
  line-height: 1;
  font-weight: bold;
  padding: 10px 20px 15px;
  display: inline-block;
}
@media screen and (max-width: 400px) {
  .point-lists-item-ttl p {
    font-size: 3rem;
  }
}
@media screen and (max-width: 350px) {
  .point-lists-item-ttl p {
    font-size: 2.6rem;
  }
}

/* -------------------------------------------- 
トップ：プライス
-------------------------------------------- */
.price {
  background: #000;
  padding: 60px 0 80px;
  color: #C4FF00;
}
.price .section-ttl {
  color: #C4FF00;
  margin: 0 0 24px;
}
.price .section-ttl::before {
  background: url(../img/common/ornament/ttl-ornament_green-left.svg) no-repeat center center/cover;
}
.price .section-ttl::after {
  background: url(../img/common/ornament/ttl-ornament_green-right.svg) no-repeat center center/cover;
}
.price .section-catch {
  margin: 0 0 24px;
}
.price .section-catch p .section-catch-line::after {
  background: #C4FF00;
}
.price .section_txt {
  margin: 0 0 50px;
}
.price .men {
  color: #45E1E6;
}
.price .lady {
  color: #F72BFF;
}
.price-basic {
  margin: 0 0 60px;
}
.price-basic-time {
  text-align: center;
  font-size: 2.6rem;
  line-height: 1;
  font-family: "Zen Maru Gothic", serif;
  font-weight: bold;
  margin: 0 0 20px;
}
.price-basic-time span {
  font-size: 7.4rem;
}
.price-basic_lists {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 35px;
  position: relative;
}
.price-basic_lists::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 100%;
  background: #ffffff;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-1px);
          transform: translateX(-1px);
}
.price-basic_lists_item {
  font-family: "Zen Maru Gothic", serif;
  font-weight: bold;
  line-height: 1;
}
.price-basic_lists_item_txt {
  font-size: 2.5rem;
  text-align: center;
}
.price-basic_lists_item_num {
  font-size: 2rem;
}
.price-basic_lists_item_num span {
  font-size: 7.8rem;
}
.price-pattern {
  margin: 0 0 50px;
}
.price-pattern .details {
  position: relative;
}
.price-pattern .details-summary {
  position: absolute;
  top: -25px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  max-width: 276px;
  width: 100%;
  display: block;
  padding: 20px 20px 20px 28px;
  color: #000;
  font-size: 1.5rem;
  line-height: 1;
  font-weight: bold;
  font-family: "Zen Maru Gothic", serif;
  background-color: #C4FF00;
  border-radius: 50px;
}
.price-pattern .details-summary:hover {
  cursor: pointer;
  opacity: 0.8;
}
.price-pattern .details-summary .btn {
  position: absolute;
  top: 27%;
  right: 8%;
  width: 25px;
  height: 25px;
  border: solid 2px #000;
  border-radius: 50%;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
}
.price-pattern .details-summary .btn:before, .price-pattern .details-summary .btn:after {
  content: "";
  background-color: #000;
  border-radius: 10px;
  width: 10px;
  height: 2px;
  position: absolute;
  top: 9px;
  left: 6px;
  -webkit-transform-origin: center center;
          transform-origin: center center;
}
.price-pattern .details-summary .btn:before {
  width: 2px;
  height: 10px;
  top: 5px;
  left: 10px;
}
.price-pattern .details-summary.is-active .btn {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}
.price-pattern .details-summary.is-active .btn:before {
  content: none;
}
.price-pattern .details-summary::-webkit-details-marker {
  display: none;
}
.price-pattern .details-content {
  border: solid 2px #ffffff;
  border-radius: 10px;
  padding: 60px 20px 20px;
}
.price-pattern .details-content-annotation {
  text-align: center;
  color: #ffffff;
  font-size: 1.2rem;
}
.price-pattern-inner {
  background: url(../img/price/price-pattern-arrow.svg) no-repeat center center/66%;
}
.price-pattern_lists_item {
  margin: 0 0 30px;
}
.price-pattern_lists_item.js-fadeDownTrigger:nth-child(2) {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
.price-pattern_lists_item.js-fadeDownTrigger:nth-child(3) {
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}
.price-pattern_lists_item-time {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.price-pattern_lists_item-time-num {
  background: #C4FF00;
  color: #000;
  font-family: "Zen Maru Gothic", serif;
  font-weight: bold;
  font-size: 5.4rem;
  line-height: 1;
  width: 90px;
  height: 90px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
}
.price-pattern_lists_item-time_price {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
}
.price-pattern_lists_item-time_price li p {
  border-bottom: solid 2px #ffffff;
  padding: 0 0 12px;
}
.price-pattern_lists_item-time_price .price-basic_lists_item_txt {
  font-size: 1.6rem;
}
.price-pattern_lists_item-time_price .price-basic_lists_item_num {
  font-size: 1.2rem;
}
@media screen and (max-width: 333px) {
  .price-pattern_lists_item-time_price .price-basic_lists_item_num {
    font-size: 1rem;
  }
}
.price-pattern_lists_item-time_price .price-basic_lists_item_num span {
  font-size: 4.8rem;
}

/* -------------------------------------------- 
トップ：店内
-------------------------------------------- */
.floor {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgb(170, 120, 237)), to(rgb(52, 196, 152)));
  background-image: -webkit-linear-gradient(bottom, rgb(170, 120, 237), rgb(52, 196, 152));
  background-image: linear-gradient(0deg, rgb(170, 120, 237), rgb(52, 196, 152));
  padding: 50px 0;
  color: #ffffff;
}
.floor .section-ttl {
  margin: 0 0 24px;
}
.floor .section-catch {
  margin: 0 0 50px;
}
.floor-intro {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 10px;
}
.floor-intro-speech {
  max-width: 170px;
  position: relative;
  display: inline-block;
  margin-right: 20px;
  padding: 20px;
  border: 5px solid #C4FF00;
  border-radius: 8px;
  background-color: #ffffff;
  text-align: left;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #000;
}
.floor-intro-speech.js-fadeLeftTrigger {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
.floor-intro-speech::before, .floor-intro-speech::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  border-style: solid;
}
.floor-intro-speech::before {
  border-width: 0 0 24px 24px;
  border-color: transparent transparent transparent #c4ff00;
  translate: 100% -40%;
  border-radius: 12px;
}
.floor-intro-speech::after {
  border-width: 0 0 16px 16px;
  border-color: transparent transparent transparent #ffffff;
  translate: 100% calc(-50% - 0.4px);
}
.floor-intro-speech_ttl {
  font-size: 1.4rem;
  font-weight: bold;
  color: #8FC31F;
  margin: 0 0 6px;
}
.floor-intro-speech_txt {
  font-size: 1.2rem;
  background-image: -webkit-linear-gradient(top, #ccc 1px, transparent 1px);
  background-image: linear-gradient(180deg, #ccc 1px, transparent 1px);
  background-size: 100% 2em;
  line-height: 2em;
  padding-bottom: 1px;
}
.floor-intro-img {
  max-width: 150px;
}
.floor-intro-img.js-fadeUpTrigger {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.floor-intro-img img {
  width: 100%;
}

/* -------------------------------------------- 
トップ：アミューズメント
-------------------------------------------- */
.amusement {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgb(255, 147, 0)), to(rgb(61, 219, 55)));
  background-image: -webkit-linear-gradient(bottom, rgb(255, 147, 0), rgb(61, 219, 55));
  background-image: linear-gradient(0deg, rgb(255, 147, 0), rgb(61, 219, 55));
  padding: 60px 0 40px;
}
.amusement .section-ttl {
  margin: 0 0 34px;
}
.amusement .content {
  position: relative;
  display: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  color: #ffffff;
}
.amusement .content.show {
  display: block;
}
.amusement .content_img {
  position: relative;
}
.amusement .content_img img {
  width: 100%;
}
.amusement .content_img-point {
  position: absolute;
  bottom: -20px;
  left: -18px;
  background: #F72BFF;
  color: #ffffff;
  font-size: 3.6rem;
  font-weight: bold;
  font-family: "Zen Maru Gothic", serif;
  line-height: 1;
  width: 120px;
  height: 120px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
  -webkit-transform: rotate(-25deg);
          transform: rotate(-25deg);
  z-index: 1;
}
.amusement .content_img-point.js-fadeHere {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.amusement .content_box {
  position: absolute;
  width: 70%;
  bottom: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.4);
  padding: 20px 30px;
}
@media screen and (max-width: 450px) {
  .amusement .content_box {
    padding: 10px 20px;
  }
}
.amusement .content_box_ttl {
  font-size: 2.4rem;
  font-weight: bold;
  font-family: "Zen Maru Gothic", serif;
  line-height: 1;
  text-align: center;
  margin-bottom: 10px;
}
@media screen and (max-width: 450px) {
  .amusement .content_box_ttl {
    font-size: 2rem;
  }
}
.amusement .content_box_txt {
  font-size: 1.6rem;
  line-height: 2;
}
@media screen and (max-width: 450px) {
  .amusement .content_box_txt {
    font-size: 1.4rem;
  }
}
.amusement-tab-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 16px 12px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 0 12px;
}
.amusement-tab-container .tab {
  width: calc(50% - 8px);
  text-align: center;
  background: #ffffff;
  font-size: 1.8rem;
  font-family: "Zen Maru Gothic", serif;
  font-weight: bold;
  line-height: 1;
  padding: 10px 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.amusement-tab-container .tab.tab3 {
  width: calc(33% - 8px);
}
.amusement-tab-container .tab.active {
  background: #FFEB00;
}

/* -------------------------------------------- 
トップ：フードメニュー
-------------------------------------------- */
.food {
  background: #FFEB00;
  color: #E66100;
}
.food-bg {
  background: url(../img/food/food-bg.svg) no-repeat center center/cover;
  padding: 60px 0;
}
.food .section-ttl {
  color: #E66100;
  margin: 0 0 24px;
}
.food .section-ttl::before {
  background: url(../img/common/ornament/ttl-ornament_orange-left.svg) no-repeat center center/cover;
}
.food .section-ttl::after {
  background: url(../img/common/ornament/ttl-ornament_orange-right.svg) no-repeat center center/cover;
}
.food .section-catch {
  margin: 0 0 24px;
}
.food .section-catch p .section-catch-line::after {
  background: #E66100;
}
.food .section_txt {
  margin: 0 0 43px;
}

/* -------------------------------------------- 
トップ：ドリンクメニュー
-------------------------------------------- */
.drink {
  background: #000;
  padding: 70px 0 50px;
  color: #C4FF00;
}
.drink .section-ttl {
  color: #C4FF00;
  margin: 0 0 24px;
}
.drink .section-ttl::before {
  background: url(../img/common/ornament/ttl-ornament_green-left.svg) no-repeat center center/cover;
}
.drink .section-ttl::after {
  background: url(../img/common/ornament/ttl-ornament_green-right.svg) no-repeat center center/cover;
}
.drink .section-ttl.party {
  background: #FFEB00;
  color: #000;
  padding: 16px;
  margin: 0;
}
.drink .section-ttl.party::before {
  background: url(../img/common/ornament/ttl-ornament_black-left.svg) no-repeat center center/cover;
}
.drink .section-ttl.party::after {
  background: url(../img/common/ornament/ttl-ornament_black-right.svg) no-repeat center center/cover;
}
@media screen and (max-width: 400px) {
  .drink .section-ttl.party .section-ttl_en {
    font-size: 3rem;
  }
}
@media screen and (max-width: 350px) {
  .drink .section-ttl.party .section-ttl_en {
    font-size: 2.5rem;
  }
}
.drink .section-catch {
  margin: 0 0 24px;
}
.drink .section-catch p .section-catch-line::after {
  background: #C4FF00;
}
.drink-menu {
  padding: 58px 0;
  background: url(../img/drink/drink-bg.jpg) no-repeat center center/cover;
}
.drink-menu-ttl {
  font-size: 3rem;
  font-weight: bold;
  font-family: "Zen Maru Gothic", serif;
  color: #ffffff;
  text-align: center;
  margin: 0 0 20px;
}
.drink .party-menu {
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: bold;
}
.drink .party-menu-img {
  position: relative;
}
.drink .party-menu-img img {
  width: 100%;
}
.drink .party-menu-img-point {
  position: absolute;
  bottom: -40px;
  right: 20px;
  font-size: 2.6rem;
  font-weight: bold;
  font-family: "Zen Maru Gothic", serif;
  line-height: 1;
  background: #F72BFF;
  border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 90px;
  height: 90px;
  -webkit-transform: rotate(-25deg);
          transform: rotate(-25deg);
}
.drink .party-menu-info {
  padding: 17px 30px 0;
  margin: 0 0 30px;
}
.drink .party-menu-info-price {
  margin: 0 0 5px;
}
.drink .party-menu-info-txt {
  padding: 5px 0 0;
  border-top: solid 1px #ffffff;
}

/* -------------------------------------------- 
トップ：よくある質問
-------------------------------------------- */
.faq {
  background: url(../img/faq/faq-bg.jpg) no-repeat center center/cover;
  padding: 70px 0;
  position: relative;
}
.faq::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 485px;
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(255, 255, 255, 0)), color-stop(80%, rgba(0, 0, 0, 0.83)), to(rgb(0, 0, 0)));
  background-image: -webkit-linear-gradient(bottom, rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.83) 80%, rgb(0, 0, 0));
  background-image: linear-gradient(0deg, rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.83) 80%, rgb(0, 0, 0));
  top: 0;
  left: 0;
  opacity: 0.1;
}
.faq .section-ttl {
  margin: 0 0 35px;
  color: #ffffff;
}
.faq .section-ttl::before {
  background: url(../img/common/ornament/ttl-ornament_white-left.svg) no-repeat center center/cover;
}
.faq .section-ttl::after {
  background: url(../img/common/ornament/ttl-ornament_white-right.svg) no-repeat center center/cover;
}
.faq .inner {
  position: relative;
}
.faq .inner .details {
  border-radius: 10px;
  background-color: #ffffff;
  margin: 0 0 18px;
}
.faq .inner .details:last-child {
  margin: 0;
}
.faq .inner .details-summary {
  position: relative;
  display: block;
  padding: 20px;
  color: #000;
  font-size: 16px;
  font-weight: bold;
}
.faq .inner .details-summary:hover {
  cursor: pointer;
  opacity: 0.8;
}
.faq .inner .details-summary .btn {
  position: absolute;
  top: 15px;
  right: 25px;
  width: 28px;
  height: 28px;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
}
.faq .inner .details-summary .btn:before, .faq .inner .details-summary .btn:after {
  content: "";
  background-color: #707070;
  border-radius: 10px;
  width: 28px;
  height: 4px;
  position: absolute;
  top: 11px;
  left: 0;
  -webkit-transform-origin: center center;
          transform-origin: center center;
}
.faq .inner .details-summary .btn:before {
  width: 4px;
  height: 28px;
  top: 0;
  left: 12px;
}
.faq .inner .details-summary.is-active .btn {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}
.faq .inner .details-summary.is-active .btn:before {
  content: none;
}
.faq .inner .details-summary::-webkit-details-marker {
  display: none;
}
.faq .inner .details-content {
  padding: 20px;
  position: relative;
}
.faq .inner .details-content::before {
  content: "";
  position: absolute;
  width: calc(100% - 40px);
  height: 1px;
  background: #000;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.faq .inner .details-content p {
  margin: 0 0 10px;
  color: #000;
  font-size: 16px;
  font-weight: bold;
}
.faq-num {
  width: 58px;
  height: 58px;
  background: #C4FF00;
  border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.6rem;
  font-weight: bold;
  font-family: "Zen Maru Gothic", serif;
  margin: 0 0 10px;
}

/* -------------------------------------------- 
トップ：口コミ
-------------------------------------------- */
.reviews {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgb(253, 55, 231)), to(rgb(255, 78, 0)));
  background-image: -webkit-linear-gradient(bottom, rgb(253, 55, 231), rgb(255, 78, 0));
  background-image: linear-gradient(0deg, rgb(253, 55, 231), rgb(255, 78, 0));
  padding: 60px 0;
  color: #ffffff;
}
.reviews .section-ttl {
  margin: 0 0 24px;
}
.reviews .section_txt {
  margin: 0 0 68px;
}
.reviews-box {
  background: #ffffff;
  border-radius: 10px;
  color: #000;
  padding: 55px 26px 43px;
  margin: 0 0 52px;
  position: relative;
}
.reviews-box:nth-child(odd) .reviews-box-img {
  background: url(../img/reviews/reviews02.png) no-repeat center center/cover;
}
.reviews-box:last-child {
  margin: 0;
}
.reviews-box-img {
  position: absolute;
  width: 72px;
  height: 72px;
  background: url(../img/reviews/reviews01.png) no-repeat center center/cover;
  top: -36px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.reviews-box-txt {
  line-height: 2;
}
.reviews .green-btn {
  font-size: 1.6rem;
}
.reviews .green-btn a {
  width: 320px;
  text-align: left;
}
@media screen and (max-width: 350px) {
  .reviews .green-btn a {
    width: 100%;
    padding: 30px 0 30px 30px;
  }
}
.reviews .green-btn a::before {
  width: 28px;
  height: 29px;
  right: 42px;
}
@media screen and (max-width: 350px) {
  .reviews .green-btn a::before {
    right: 30px;
  }
}

/* -------------------------------------------- 
トップ：アクセスマップ
-------------------------------------------- */
.access {
  background: #000;
  padding: 70px 0 40px;
  color: #ffffff;
  text-align: center;
}
.access .section-ttl {
  margin: 0 0 10px;
  color: #C4FF00;
}
.access .section-ttl::before {
  background: url(../img/common/ornament/ttl-ornament_green-left.svg) no-repeat center center/cover;
}
.access .section-ttl::after {
  background: url(../img/common/ornament/ttl-ornament_green-right.svg) no-repeat center center/cover;
}
.access-ttl-ja {
  font-size: 1.6rem;
  font-weight: bold;
  font-family: "Zen Maru Gothic", serif;
  margin: 0 0 16px;
}
.access-time {
  font-size: 2.4rem;
  font-weight: bold;
  font-family: "Zen Maru Gothic", serif;
  margin: 0 0 28px;
}
.access #map {
  margin: 0 0 55px;
  /* ===============================================
  # GoogleマップAPIの装飾用
  =============================================== */
}
.access #map .gm-style .gm-style-iw-c {
  -webkit-box-shadow: 0 2px 7px 1px rgb(196, 255, 0);
  box-shadow: 0 2px 7px 1px rgb(196, 255, 0);
  border-radius: 20px;
}
.access #map #gmap_info_window {
  color: #000;
  font-family: "Zen Maru Gothic", serif;
  font-weight: bold;
  font-size: 16px;
  position: relative;
  z-index: 1;
}
.access #map .shopBtn2 a {
  display: block;
  background: #c4ff00;
  padding: 20px 30px;
  border-radius: 50px;
  font-family: "Zen Maru Gothic", serif;
  font-weight: bold;
  color: #000;
  margin: 10px 0 0;
  font-size: 16px;
}
.access #map .gm-style-iw-chr {
  display:none;
  position: absolute;
  top: 0;
  right: 0;
}
.access #map #gmap_info_window {
  padding: 15px 0 0;
}
.access .green-btn {
  font-size: 1.6rem;
  margin: 0 0 22px;
}
.access .green-btn a {
  width: 320px;
  text-align: left;
  padding: 30px 0 30px 40px;
  cursor: pointer;
}
.access .green-btn a::before {
  width: 28px;
  height: 29px;
  right: 30px;
}
.access-info {
  font-size: 1.2rem;
  margin: 0 0 20px;
}
.access-tel {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 3.4rem;
  line-height: 1;
  font-weight: bold;
  font-family: "Zen Maru Gothic", serif;
  color: #C4FF00;
}

/* -------------------------------------------- 
トップ：フッターバナー
-------------------------------------------- */
.banner {
  background: #000;
}
.banner a {
  display: block;
}
.banner a:first-child {
  margin: 0 0 30px;
}
.banner a img {
  width: 100%;
}

/* ===============================================
# 貸し切りページ
=============================================== */
.rental {
  /* -------------------------------------------- 
  おすすめポイント
  -------------------------------------------- */
  /* -------------------------------------------- 
    料金説明
  -------------------------------------------- */
  /* -------------------------------------------- 
    お申し込みの流れ
  -------------------------------------------- */
  /* -------------------------------------------- 
    会場
  -------------------------------------------- */
}
.rental .mv-catch_img {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.rental .mv_appeal {
  width: 100%;
  bottom: 240px;
}
@media screen and (max-width: 500px) {
  .rental .mv_appeal {
    bottom: 160px;
  }
}
.rental .mv_appeal_txt {
  line-height: 2;
}
.rental .mv-organizer {
  position: absolute;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: end;
      -ms-flex-pack: end;
          justify-content: end;
  bottom: 170px;
  left: 50%;
  max-width: 500px;
  width: 100%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 9;
}
@media screen and (max-width: 500px) {
  .rental .mv-organizer {
    bottom: 80px;
  }
}
.rental .mv-organizer.is-fixed {
  position: fixed;
  bottom: 100px;
}
@media screen and (max-width: 500px) {
  .rental .mv-organizer.is-fixed {
    bottom: 80px;
  }
}
.rental .mv-organizer-box {
  position: relative;
  display: inline-block;
  width: 168px;
}
.rental .mv-organizer-box::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background: url(../img/common/ornament/organizer-arrow.svg) no-repeat center center/cover;
  top: 50%;
  -webkit-transform: translateY(-55%);
          transform: translateY(-55%);
  right: 16px;
}
.rental .mv-organizer-box_txt {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-60%);
          transform: translateY(-60%);
  left: 40px;
  font-size: 2rem;
  font-weight: bold;
  font-family: "Zen Maru Gothic", serif;
  line-height: 1;
  color: #ffffff;
}
.rental .mv .modal-open {
  cursor: pointer;
}
.rental .mv .modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
  padding: 40px 20px;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  z-index: 9999;
}
.rental .mv .modal::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
  margin-left: -0.2em;
}
.rental .mv .modal.is-active {
  opacity: 1;
  visibility: visible;
}
.rental .mv .modal-container {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  max-width: 600px;
}
.rental .mv .modal-close {
  position: absolute;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  top: -20px;
  right: -20px;
  width: 40px;
  height: 40px;
  color: #ffffff;
  background: #000;
  border-radius: 50%;
  cursor: pointer;
}
.rental .mv .modal-content {
  width: 300px;
  height: 300px;
  border-radius: 150px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(255, 77, 6)), to(rgb(253, 56, 220)));
  background: -webkit-linear-gradient(top, rgb(255, 77, 6), rgb(253, 56, 220));
  background: linear-gradient(180deg, rgb(255, 77, 6), rgb(253, 56, 220));
  color: #ffffff;
  line-height: 1.8;
  padding: 20px;
}
@media screen and (max-width: 350px) {
  .rental .mv .modal-content {
    width: 280px;
    height: 280px;
  }
}
.rental .mv .modal-content h2 {
  position: relative;
  font-size: 2.4rem;
  letter-spacing: 4px;
  text-indent: 4px;
  margin: -4px auto 4px auto;
}
@media screen and (max-width: 350px) {
  .rental .mv .modal-content h2 {
    font-size: 2rem;
    margin: -8px auto 8px auto;
  }
}
.rental .mv .modal-content h2::before, .rental .mv .modal-content h2::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 40px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.rental .mv .modal-content h2::after {
  background: url(../img/common/ornament/ttl-ornament_white-right.svg) no-repeat center center/cover;
  right: -30px;
}
.rental .mv .modal-content h2::before {
  background: url(../img/common/ornament/ttl-ornament_white-left.svg) no-repeat center center/cover;
  left: -30px;
}
.rental .mv .modal-content p {
  font-size: 3rem;
  margin-top: 0.5em;
  font-weight: bold;
  line-height: 1.6;
}
@media screen and (max-width: 350px) {
  .rental .mv .modal-content p {
    font-size: 2.6rem;
  }
}
.rental .mv .modal-content img {
  width: 30%;
  margin: 1.4em 0;
}
@media screen and (max-width: 350px) {
  .rental .mv .modal-content img {
    margin: 1.2em 0;
  }
}

/* PDF Modal Styles */
.pdf-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.pdf-modal.is-active {
  opacity: 1;
  visibility: visible;
}

.pdf-modal-container {
  position: relative;
  background: white;
  border-radius: 8px;
  padding: 20px;
  max-width: 90vw;
  max-height: 90vh;
  overflow: hidden;
}

.pdf-modal-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  color: #333;
  z-index: 10000;
  background: white;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.pdf-modal-content {
  text-align: center;
  max-height: calc(90vh - 40px);
  overflow-y: auto;
}

.pdf-loading {
  display: none;
  padding: 20px;
  color: #666;
  font-size: 16px;
}

.pdf-iframe {
  border: none;
  border-radius: 4px;
  display: block;
}

.pdf-canvas-container {
  display: none;
  text-align: center;
}

#pdf-canvas {
  max-width: 100%;
  height: auto;
  border: 1px solid #ddd;
  border-radius: 4px;
  margin-bottom: 10px;
}

.pdf-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  padding: 10px;
  background: #f5f5f5;
  border-radius: 4px;
}

.pdf-btn {
  background: #22c3aa;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.3s ease;
}

.pdf-btn:hover {
  background: #1ea590;
}

.pdf-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
}

#page-info {
  font-size: 14px;
  color: #666;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .pdf-modal-container {
    max-width: 95vw;
    max-height: 85vh;
    padding: 15px;
  }
  
  .pdf-iframe {
    display: none;
  }
  
  .pdf-canvas-container {
    display: block;
  }
  
  .pdf-controls {
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .pdf-btn {
    padding: 10px 12px;
    font-size: 13px;
  }
}
.rental .point {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(253, 55, 231, 0)), color-stop(0%, rgb(34, 195, 170)), to(rgb(0, 90, 180)));
  background-image: -webkit-linear-gradient(bottom, rgba(253, 55, 231, 0), rgb(34, 195, 170) 0%, rgb(0, 90, 180));
  background-image: linear-gradient(0deg, rgba(253, 55, 231, 0), rgb(34, 195, 170) 0%, rgb(0, 90, 180));
}
.rental .point .section-ttl {
  text-align: center;
  font-family: "Zen Maru Gothic", serif;
  font-weight: bold;
  line-height: 1;
  color: #ffffff;
  position: relative;
}
.rental .point .section-ttl_en {
  font-size: 3.8rem;
  margin: 0 0 15px;
}
@media screen and (max-width: 360px) {
  .rental .point .section-ttl_en {
    font-size: 3rem;
  }
}
.rental .point-lists-item {
  padding: 30px 0 40px;
}
.rental .point-lists-item:nth-child(3) {
  padding: 30px 0 0;
}
.rental .price {
  background: url(../img/price/rental-price-bg.jpg) no-repeat center center/cover;
  position: relative;
  color: #ffffff;
}
.rental .price .section-ttl {
  color: #ffffff;
}
.rental .price .section-ttl::before {
  background: url(../img/common/ornament/ttl-ornament_white-left.svg) no-repeat center center/cover;
}
.rental .price .section-ttl::after {
  background: url(../img/common/ornament/ttl-ornament_white-right.svg) no-repeat center center/cover;
}
.rental .price .section-catch p .section-catch-line::after {
  background-color: #ffffff;
}
.rental .price-times {
  padding: 28px 28px 40px;
  border-radius: 30px;
  border: solid 8px #1FBDC3;
  background: #ffffff;
  font-weight: bold;
  font-family: "Zen Maru Gothic", serif;
  line-height: 1;
  color: #000;
  margin: 0 0 22px;
}
@media screen and (max-width: 350px) {
  .rental .price-times {
    padding: 28px 20px 40px;
  }
}
.rental .price-times:last-child {
  margin: 0;
}
.rental .price-times_ttl {
  font-size: 3rem;
  color: #1FBDC3;
  text-align: center;
  margin: 0 0 16px;
}
.rental .price-times-info {
  padding: 16px 0;
  border-top: solid 1px #000;
  border-bottom: solid 1px #000;
  margin: 0 0 16px;
}
.rental .price-times-info li {
  font-size: 2.2rem;
  text-align: center;
  margin: 0 0 20px;
}
.rental .price-times-info li:last-child {
  margin: 0;
}
.rental .price-times-con {
  margin: 0 0 16px;
}
.rental .price-times-con li {
  font-size: 1.6rem;
  margin: 0 0 16px;
}
.rental .price-times-con li:last-child {
  margin: 0;
}
.rental .price-times-at li {
  font-size: 12px;
  font-weight: normal;
  margin: 0 0 12px;
}
.rental .price-times-at li:last-child {
  margin: 0;
}
.rental .flow {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(253, 55, 231, 0)), color-stop(0%, rgb(34, 195, 170)), to(rgb(0, 90, 180)));
  background-image: -webkit-linear-gradient(bottom, rgba(253, 55, 231, 0), rgb(34, 195, 170) 0%, rgb(0, 90, 180));
  background-image: linear-gradient(0deg, rgba(253, 55, 231, 0), rgb(34, 195, 170) 0%, rgb(0, 90, 180));
  padding: 54px 0;
}
.rental .flow .section-ttl {
  margin: 0 0 38px;
}
.rental .flow-lists-item {
  margin: 0 0 60px;
  font-weight: bold;
  position: relative;
}
.rental .flow-lists-item::before {
  content: "";
  position: absolute;
  width: 32px;
  height: 32px;
  background: url(../img/common/ornament/flow-arrow.svg) no-repeat center center/cover;
  bottom: -40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.rental .flow-lists-item:last-child {
  margin: 0;
}
.rental .flow-lists-item:last-child::before {
  content: none;
}
.rental .flow-lists-item_ttl {
  font-size: 2rem;
  text-align: center;
  padding: 8px 0 9px;
  background: #ffffff;
  margin: 0 0 16px;
}
.rental .flow-lists-item_txt {
  font-size: 1.6rem;
  color: #ffffff;
}
.rental .floor {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(253, 55, 231, 0)), color-stop(0%, rgb(253, 55, 231)), to(rgb(255, 78, 0)));
  background-image: -webkit-linear-gradient(bottom, rgba(253, 55, 231, 0), rgb(253, 55, 231) 0%, rgb(255, 78, 0));
  background-image: linear-gradient(0deg, rgba(253, 55, 231, 0), rgb(253, 55, 231) 0%, rgb(255, 78, 0));
}
.rental .floor-intro-speech {
  border: 5px solid #1FBDC3;
}
.rental .floor-intro-speech::before {
  border-color: transparent transparent transparent #1FBDC3;
}
.rental .floor-intro-speech_ttl {
  color: #1FBDC3;
}
.rental .access,
.rental .banner {
  background: none;
}
.rental .access-book {
  font-size: 2.8rem;
  font-weight: bold;
  font-family: "Zen Maru Gothic", serif;
  text-align: center;
  margin: 0 0 20px;
}
.rental .access-tel {
  color: #ffffff;
}
.rental .banner {
  display: none;
}

/*-- javascriptフォルダの中の_index.scss --*/
/* レイアウトのためのスタイル */
.swiper {
  width: 100%;
}

.swiper-slide img {
  height: auto;
  width: 100%;
}

/* -------------------------------------------- 
トップ：店内
-------------------------------------------- */
.floor-container {
  position: relative;
}
.floor-container .swiper-pagination {
  bottom: -30px;
}
.floor-container .swiper-pagination-bullet {
  background: #ffffff;
  opacity: 0.3;
  margin: 0 10px !important;
}
.floor-container .swiper-pagination-bullet-active {
  background: #C4FF00;
  opacity: 1;
}
.floor-slider {
  position: relative;
  margin: 0 0 36px;
}
.floor-slider .swiper-slide p {
  text-align: center;
  display: none;
}
.floor-slider-thumbnail {
  width: 90%;
  margin: auto;
}
@media screen and (max-width: 380px) {
  .floor-slider-thumbnail {
    width: 95%;
  }
}
.floor-slider-thumbnail .swiper-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}
.floor-slider-thumbnail .swiper-slide {
  padding: 5px;
  opacity: 0.5;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  width: calc(25% - 10px);
}
.floor-slider-thumbnail .swiper-slide div {
  position: relative;
}
.floor-slider-thumbnail .swiper-slide div::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border: solid 3px #C4FF00;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.floor-slider-thumbnail .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
}
.floor-slider-thumbnail .swiper-slide.swiper-slide-thumb-active div::before {
  opacity: 1;
}
.floor .swiper-button-next, .floor .swiper-button-prev {
  width: 24px;
  height: 24px;
}
.floor .swiper-button-next::after, .floor .swiper-button-prev::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  top: 0;
  left: 0;
}
.floor .swiper-button-next::after {
  background: url(../img/common/ornament/next-arrow-green.svg) no-repeat center center/cover;
}
.floor .swiper-button-prev::after {
  background: url(../img/common/ornament/prev-arrow-green.svg) no-repeat center center/cover;
}

/* -------------------------------------------- 
トップ：フードメニュー
-------------------------------------------- */
.food-slider {
  margin: 0 0 36px;
}
.food .swiper-slide {
  padding: 0 20px;
}
.food .swiper-slide_img img {
  width: 75%;
}
.food .swiper-slide-info {
  width: 85%;
  margin: -18px 0 0 auto;
  padding: 30px 23px 20px;
  background: #E66100;
  color: #ffffff;
  font-weight: bold;
  font-size: 1.4rem;
}
.food .swiper-slide-info-price {
  margin: 0 0 5px;
}
.food .swiper-slide-info-txt {
  padding: 5px 0 0;
  border-top: solid 2px #ffffff;
}
.food .swiper-button-next, .food .swiper-button-prev {
  width: 24px;
  height: 24px;
}
.food .swiper-button-next::after, .food .swiper-button-prev::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  top: 0;
  left: 0;
}
.food .swiper-button-next::after {
  background: url(../img/common/ornament/next-arrow-orange.svg) no-repeat center center/cover;
}
.food .swiper-button-prev::after {
  background: url(../img/common/ornament/prev-arrow-orange.svg) no-repeat center center/cover;
}
.food .swiper-note {
  text-align: right;
  padding: 0 20px;
}

/* -------------------------------------------- 
トップ：ドリンクメニュー
-------------------------------------------- */
.drink-slider {
  margin: 0 0 36px;
}
.drink .swiper-slide {
  padding: 0 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}
.drink .swiper-button-next, .drink .swiper-button-prev {
  width: 24px;
  height: 24px;
}
.drink .swiper-button-next::after, .drink .swiper-button-prev::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  top: 0;
  left: 0;
}
.drink .swiper-button-next::after {
  background: url(../img/common/ornament/next-arrow-green.svg) no-repeat center center/cover;
}
.drink .swiper-button-prev::after {
  background: url(../img/common/ornament/prev-arrow-green.svg) no-repeat center center/cover;
}
.drink-menu-info {
  max-width: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.drink-menu-info-name {
  font-size: 2.4rem;
  font-weight: bold;
  font-family: "Zen Maru Gothic", serif;
  margin: 0 0 15px;
}
@media screen and (max-width: 350px) {
  .drink-menu-info-name {
    font-size: 1.8rem;
  }
}
.drink-menu-info-name p span {
  border-bottom: solid 2px #C4FF00;
}
.drink-menu-info-txt {
  color: #ffffff;
  font-size: 1.5rem;
}/*# sourceMappingURL=styles.css.map */