@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans&family=Noto+Sans+JP:wght@400;700&family=Shippori+Mincho&display=swap");
/******* media *******/
/*!
* animate.css - https://animate.style/
* Version - 4.1.1
* Licensed under the MIT license - https://opensource.org/licenses/MIT
*
* Copyright (c) 2021 Animate.css
*/
:root {
  --animate-duration: 1s;
  --animate-delay: 1s;
  --animate-repeat: 1;
}

.animate__animated {
  animation-duration: 1s;
  animation-duration: var(--animate-duration);
  animation-fill-mode: both;
}

.animate__animated.animate__infinite {
  animation-iteration-count: infinite;
}

.animate__animated.animate__repeat-1 {
  animation-iteration-count: 1;
  animation-iteration-count: var(--animate-repeat);
}

.animate__animated.animate__repeat-2 {
  animation-iteration-count: 2;
  animation-iteration-count: calc(var(--animate-repeat) * 2);
}

.animate__animated.animate__repeat-3 {
  animation-iteration-count: 3;
  animation-iteration-count: calc(var(--animate-repeat) * 3);
}

.animate__animated.animate__delay-1s {
  animation-delay: 1s;
  animation-delay: var(--animate-delay);
}

.animate__animated.animate__delay-2s {
  animation-delay: 2s;
  animation-delay: calc(var(--animate-delay) * 2);
}

.animate__animated.animate__delay-3s {
  animation-delay: 3s;
  animation-delay: calc(var(--animate-delay) * 3);
}

.animate__animated.animate__delay-4s {
  animation-delay: 4s;
  animation-delay: calc(var(--animate-delay) * 4);
}

.animate__animated.animate__delay-5s {
  animation-delay: 5s;
  animation-delay: calc(var(--animate-delay) * 5);
}

.animate__animated.animate__faster {
  animation-duration: 0.5s;
  animation-duration: calc(var(--animate-duration) / 2);
}

.animate__animated.animate__fast {
  animation-duration: 0.8s;
  animation-duration: calc(var(--animate-duration) * 0.8);
}

.animate__animated.animate__slow {
  animation-duration: 2s;
  animation-duration: calc(var(--animate-duration) * 2);
}

.animate__animated.animate__slower {
  animation-duration: 3s;
  animation-duration: calc(var(--animate-duration) * 3);
}

@media print, (prefers-reduced-motion: reduce) {
  .animate__animated {
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
    animation-iteration-count: 1 !important;
  }
  .animate__animated[class*=Out] {
    opacity: 0;
  }
}
/* Attention seekers  */
@keyframes bounce {
  from, 20%, 53%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }
  70% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }
  80% {
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0) scaleY(0.95);
  }
  90% {
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
.animate__bounce {
  animation-name: bounce;
  transform-origin: center bottom;
}
@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.animate__flash {
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.animate__pulse {
  animation-name: pulse;
  animation-timing-function: ease-in-out;
}
@keyframes rubberBand {
  from {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.animate__rubberBand {
  animation-name: rubberBand;
}
@keyframes shakeX {
  from, to {
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0);
  }
}
.animate__shakeX {
  animation-name: shakeX;
}
@keyframes shakeY {
  from, to {
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(0, -10px, 0);
  }
  20%, 40%, 60%, 80% {
    transform: translate3d(0, 10px, 0);
  }
}
.animate__shakeY {
  animation-name: shakeY;
}
@keyframes headShake {
  0% {
    transform: translateX(0);
  }
  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    transform: translateX(0);
  }
}
.animate__headShake {
  animation-timing-function: ease-in-out;
  animation-name: headShake;
}
@keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.animate__swing {
  transform-origin: top center;
  animation-name: swing;
}
@keyframes tada {
  from {
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.animate__tada {
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes wobble {
  from {
    transform: translate3d(0, 0, 0);
  }
  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.animate__wobble {
  animation-name: wobble;
}
@keyframes jello {
  from, 11.1%, to {
    transform: translate3d(0, 0, 0);
  }
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.animate__jello {
  animation-name: jello;
  transform-origin: center;
}
@keyframes heartBeat {
  0% {
    transform: scale(1);
  }
  14% {
    transform: scale(1.3);
  }
  28% {
    transform: scale(1);
  }
  42% {
    transform: scale(1.3);
  }
  70% {
    transform: scale(1);
  }
}
.animate__heartBeat {
  animation-name: heartBeat;
  animation-duration: 1.3s;
  animation-duration: calc(var(--animate-duration) * 1.3);
  animation-timing-function: ease-in-out;
}

/* Back entrances */
@keyframes backInDown {
  0% {
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInDown {
  animation-name: backInDown;
}
@keyframes backInLeft {
  0% {
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInLeft {
  animation-name: backInLeft;
}
@keyframes backInRight {
  0% {
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInRight {
  animation-name: backInRight;
}
@keyframes backInUp {
  0% {
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInUp {
  animation-name: backInUp;
}

/* Back exits */
@keyframes backOutDown {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  20% {
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    transform: translateY(700px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutDown {
  animation-name: backOutDown;
}
@keyframes backOutLeft {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  20% {
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutLeft {
  animation-name: backOutLeft;
}
@keyframes backOutRight {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  20% {
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutRight {
  animation-name: backOutRight;
}
@keyframes backOutUp {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  20% {
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutUp {
  animation-name: backOutUp;
}

/* Bouncing entrances  */
@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}
.animate__bounceIn {
  animation-duration: 0.75s;
  animation-duration: calc(var(--animate-duration) * 0.75);
  animation-name: bounceIn;
}
@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0) scaleY(3);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0) scaleY(0.9);
  }
  75% {
    transform: translate3d(0, -10px, 0) scaleY(0.95);
  }
  90% {
    transform: translate3d(0, 5px, 0) scaleY(0.985);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInDown {
  animation-name: bounceInDown;
}
@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0) scaleX(1);
  }
  75% {
    transform: translate3d(-10px, 0, 0) scaleX(0.98);
  }
  90% {
    transform: translate3d(5px, 0, 0) scaleX(0.995);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInLeft {
  animation-name: bounceInLeft;
}
@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0) scaleX(1);
  }
  75% {
    transform: translate3d(10px, 0, 0) scaleX(0.98);
  }
  90% {
    transform: translate3d(-5px, 0, 0) scaleX(0.995);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInRight {
  animation-name: bounceInRight;
}
@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  75% {
    transform: translate3d(0, 10px, 0) scaleY(0.95);
  }
  90% {
    transform: translate3d(0, -5px, 0) scaleY(0.985);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInUp {
  animation-name: bounceInUp;
}

/* Bouncing exits  */
@keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.animate__bounceOut {
  animation-duration: 0.75s;
  animation-duration: calc(var(--animate-duration) * 0.75);
  animation-name: bounceOut;
}
@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0) scaleY(0.985);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0) scaleY(3);
  }
}
.animate__bounceOutDown {
  animation-name: bounceOutDown;
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0) scaleX(0.9);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0) scaleX(2);
  }
}
.animate__bounceOutLeft {
  animation-name: bounceOutLeft;
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0) scaleX(0.9);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0) scaleX(2);
  }
}
.animate__bounceOutRight {
  animation-name: bounceOutRight;
}
@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0) scaleY(0.985);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}
.animate__bounceOutUp {
  animation-name: bounceOutUp;
}

/* Fading entrances  */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.animate__fadeIn {
  animation-name: fadeIn;
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInDown {
  animation-name: fadeInDown;
}
@keyframes fadeInDownBig {
  from {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInDownBig {
  animation-name: fadeInDownBig;
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInLeft {
  animation-name: fadeInLeft;
}
@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInLeftBig {
  animation-name: fadeInLeftBig;
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInRight {
  animation-name: fadeInRight;
}
@keyframes fadeInRightBig {
  from {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInRightBig {
  animation-name: fadeInRightBig;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInUp {
  animation-name: fadeInUp;
}
@keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInUpBig {
  animation-name: fadeInUpBig;
}
@keyframes fadeInTopLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInTopLeft {
  animation-name: fadeInTopLeft;
}
@keyframes fadeInTopRight {
  from {
    opacity: 0;
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInTopRight {
  animation-name: fadeInTopRight;
}
@keyframes fadeInBottomLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInBottomLeft {
  animation-name: fadeInBottomLeft;
}
@keyframes fadeInBottomRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInBottomRight {
  animation-name: fadeInBottomRight;
}

/* Fading exits */
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.animate__fadeOut {
  animation-name: fadeOut;
}
@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}
.animate__fadeOutDown {
  animation-name: fadeOutDown;
}
@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.animate__fadeOutDownBig {
  animation-name: fadeOutDownBig;
}
@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}
.animate__fadeOutLeft {
  animation-name: fadeOutLeft;
}
@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.animate__fadeOutLeftBig {
  animation-name: fadeOutLeftBig;
}
@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}
.animate__fadeOutRight {
  animation-name: fadeOutRight;
}
@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.animate__fadeOutRightBig {
  animation-name: fadeOutRightBig;
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}
.animate__fadeOutUp {
  animation-name: fadeOutUp;
}
@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.animate__fadeOutUpBig {
  animation-name: fadeOutUpBig;
}
@keyframes fadeOutTopLeft {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, -100%, 0);
  }
}
.animate__fadeOutTopLeft {
  animation-name: fadeOutTopLeft;
}
@keyframes fadeOutTopRight {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(100%, -100%, 0);
  }
}
.animate__fadeOutTopRight {
  animation-name: fadeOutTopRight;
}
@keyframes fadeOutBottomRight {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 100%, 0);
  }
}
.animate__fadeOutBottomRight {
  animation-name: fadeOutBottomRight;
}
@keyframes fadeOutBottomLeft {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 100%, 0);
  }
}
.animate__fadeOutBottomLeft {
  animation-name: fadeOutBottomLeft;
}

/* Flippers */
@keyframes flip {
  from {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    animation-timing-function: ease-in;
  }
  to {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    animation-timing-function: ease-in;
  }
}
.animate__animated.animate__flip {
  backface-visibility: visible;
  animation-name: flip;
}
@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.animate__flipInX {
  backface-visibility: visible !important;
  animation-name: flipInX;
}
@keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.animate__flipInY {
  backface-visibility: visible !important;
  animation-name: flipInY;
}
@keyframes flipOutX {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.animate__flipOutX {
  animation-duration: 0.75s;
  animation-duration: calc(var(--animate-duration) * 0.75);
  animation-name: flipOutX;
  backface-visibility: visible !important;
}
@keyframes flipOutY {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.animate__flipOutY {
  animation-duration: 0.75s;
  animation-duration: calc(var(--animate-duration) * 0.75);
  backface-visibility: visible !important;
  animation-name: flipOutY;
}

/* Lightspeed */
@keyframes lightSpeedInRight {
  from {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(-5deg);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.animate__lightSpeedInRight {
  animation-name: lightSpeedInRight;
  animation-timing-function: ease-out;
}
@keyframes lightSpeedInLeft {
  from {
    transform: translate3d(-100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(-20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(5deg);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.animate__lightSpeedInLeft {
  animation-name: lightSpeedInLeft;
  animation-timing-function: ease-out;
}
@keyframes lightSpeedOutRight {
  from {
    opacity: 1;
  }
  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.animate__lightSpeedOutRight {
  animation-name: lightSpeedOutRight;
  animation-timing-function: ease-in;
}
@keyframes lightSpeedOutLeft {
  from {
    opacity: 1;
  }
  to {
    transform: translate3d(-100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
}
.animate__lightSpeedOutLeft {
  animation-name: lightSpeedOutLeft;
  animation-timing-function: ease-in;
}

/* Rotating entrances */
@keyframes rotateIn {
  from {
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateIn {
  animation-name: rotateIn;
  transform-origin: center;
}
@keyframes rotateInDownLeft {
  from {
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInDownLeft {
  animation-name: rotateInDownLeft;
  transform-origin: left bottom;
}
@keyframes rotateInDownRight {
  from {
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInDownRight {
  animation-name: rotateInDownRight;
  transform-origin: right bottom;
}
@keyframes rotateInUpLeft {
  from {
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInUpLeft {
  animation-name: rotateInUpLeft;
  transform-origin: left bottom;
}
@keyframes rotateInUpRight {
  from {
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInUpRight {
  animation-name: rotateInUpRight;
  transform-origin: right bottom;
}

/* Rotating exits */
@keyframes rotateOut {
  from {
    opacity: 1;
  }
  to {
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.animate__rotateOut {
  animation-name: rotateOut;
  transform-origin: center;
}
@keyframes rotateOutDownLeft {
  from {
    opacity: 1;
  }
  to {
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.animate__rotateOutDownLeft {
  animation-name: rotateOutDownLeft;
  transform-origin: left bottom;
}
@keyframes rotateOutDownRight {
  from {
    opacity: 1;
  }
  to {
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.animate__rotateOutDownRight {
  animation-name: rotateOutDownRight;
  transform-origin: right bottom;
}
@keyframes rotateOutUpLeft {
  from {
    opacity: 1;
  }
  to {
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.animate__rotateOutUpLeft {
  animation-name: rotateOutUpLeft;
  transform-origin: left bottom;
}
@keyframes rotateOutUpRight {
  from {
    opacity: 1;
  }
  to {
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.animate__rotateOutUpRight {
  animation-name: rotateOutUpRight;
  transform-origin: right bottom;
}

/* Specials */
@keyframes hinge {
  0% {
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    transform: rotate3d(0, 0, 1, 80deg);
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    transform: rotate3d(0, 0, 1, 60deg);
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.animate__hinge {
  animation-duration: 2s;
  animation-duration: calc(var(--animate-duration) * 2);
  animation-name: hinge;
  transform-origin: top left;
}
@keyframes jackInTheBox {
  from {
    opacity: 0;
    transform: scale(0.1) rotate(30deg);
    transform-origin: center bottom;
  }
  50% {
    transform: rotate(-10deg);
  }
  70% {
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.animate__jackInTheBox {
  animation-name: jackInTheBox;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes rollIn {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__rollIn {
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.animate__rollOut {
  animation-name: rollOut;
}

/* Zooming entrances */
@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.animate__zoomIn {
  animation-name: zoomIn;
}
@keyframes zoomInDown {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInDown {
  animation-name: zoomInDown;
}
@keyframes zoomInLeft {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInLeft {
  animation-name: zoomInLeft;
}
@keyframes zoomInRight {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInRight {
  animation-name: zoomInRight;
}
@keyframes zoomInUp {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInUp {
  animation-name: zoomInUp;
}

/* Zooming exits */
@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.animate__zoomOut {
  animation-name: zoomOut;
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomOutDown {
  animation-name: zoomOutDown;
  transform-origin: center bottom;
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
  }
}
.animate__zoomOutLeft {
  animation-name: zoomOutLeft;
  transform-origin: left center;
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
  }
}
.animate__zoomOutRight {
  animation-name: zoomOutRight;
  transform-origin: right center;
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomOutUp {
  animation-name: zoomOutUp;
  transform-origin: center bottom;
}

/* Sliding entrances */
@keyframes slideInDown {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInDown {
  animation-name: slideInDown;
}
@keyframes slideInLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInLeft {
  animation-name: slideInLeft;
}
@keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInRight {
  animation-name: slideInRight;
}
@keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInUp {
  animation-name: slideInUp;
}

/* Sliding exits */
@keyframes slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}
.animate__slideOutDown {
  animation-name: slideOutDown;
}
@keyframes slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}
.animate__slideOutLeft {
  animation-name: slideOutLeft;
}
@keyframes slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}
.animate__slideOutRight {
  animation-name: slideOutRight;
}
@keyframes slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}
.animate__slideOutUp {
  animation-name: slideOutUp;
}

/* animation */
.invisible {
  transition: opacity 0.5s ease;
  opacity: 0;
}

.fadeInUp-2s {
  display: block;
  animation: fadeInUp;
  animation-duration: 1s;
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 60px, 0);
  }
}

.fadeIn-2s {
  display: block;
  animation: fadeIn;
  animation-duration: 1s;
  opacity: 0;
  animation-fill-mode: forwards;
}
@keyframes fadeIn {
  100% {
    opacity: 1;
  }
}

/******* base *******/
img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}

a {
  color: #000000;
  text-decoration: none;
}
a:hover {
  color: #000000;
  transition: all 0.3s ease-out;
  opacity: 0.7;
}

p {
  margin-bottom: 0;
}

.vh100 {
  min-height: 100vh;
}

@media (min-width: 992px) {
  .w900 {
    max-width: 900px;
    margin: 0 auto;
  }
}

@supports (-webkit-touch-callout: none) {
  .vh100 {
    min-height: -webkit-fill-available;
  }
}
.tjf {
  text-align: justify;
  text-justify: inter-ideograph;
}

.dpc {
  display: none;
}
@media (min-width: 768px) {
  .dpc {
    display: block;
  }
}

/* 5 Columns */
.col-15, .col-sm-15, .col-md-15, .col-lg-15 {
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

@media (min-width: 768px) {
  .col-sm-15 {
    width: 20%;
    flex: 0 0 20%;
  }
}
@media (min-width: 992px) {
  .col-md-15 {
    width: 20%;
    flex: 0 0 20%;
  }
}
@media (min-width: 1200px) {
  .col-lg-15 {
    width: 20%;
    flex: 0 0 20%;
  }
}
html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.8;
  font-size: 1.3rem;
  color: #000000;
  font-feature-settings: "palt" 1;
  letter-spacing: 0.1em;
}
@media (min-width: 768px) {
  body {
    font-size: 1.4rem;
  }
}
body.en {
  letter-spacing: 0.06em;
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  body.en {
    font-size: 1.5rem;
  }
}

ul {
  list-style-type: none;
  padding: 0;
}

main {
  overflow-x: hidden;
  max-width: 100%;
  padding-top: 60px;
}
@media (min-width: 768px) {
  main {
    padding-top: 80px;
  }
}

.bggray {
  background-color: #c8c8c8;
}

.bgstay {
  background-color: #c8c8c8;
}

.bgrestaurant {
  background-color: #EAE0CF;
}

.bgbanquet {
  background-color: #C8C8C8;
}

section {
  padding: 60px 0;
}
section .title {
  padding-bottom: 30px;
}
section .title h3 {
  text-align: center;
  font-family: "futura-pt", sans-serif;
  font-size: 2.7rem;
  font-weight: 400;
  letter-spacing: 0.12em;
}
@media (min-width: 992px) {
  section .title h3 {
    font-size: 3.6rem;
  }
}
section .title h3 + p {
  text-align: center;
  font-size: 1.2rem;
  letter-spacing: 0.3em;
}
section .title h3 + p.en {
  letter-spacing: 0.1em;
}
section.link_block .txt_box {
  padding-top: 1em;
  position: relative;
}
section.link_block .txt_box h4 {
  font-family: "futura-pt", sans-serif;
  font-weight: 400;
  font-size: 2.3rem;
  letter-spacing: 0.08em;
}
@media (min-width: 992px) {
  section.link_block .txt_box h4 {
    font-size: 2.9rem;
  }
}
section.link_block .txt_box h4 img {
  max-width: 250px;
  margin: 0 auto;
}
section.link_block .txt_box p {
  font-size: 1.4rem;
  margin-bottom: 0.75em;
}
section.link_block .txt_box p.comfort_separate_sub {
  font-size: 2.1rem;
}
section.link_block .txt_box a.restaurant_index_reserve {
  background-color: #D6bc46;
  display: inline-block;
  padding: 13px 10px;
  color: white;
  border-radius: 50%;
  max-width: 50px;
  margin: 15px auto;
}
section.link_block .txt_box a.restaurant_index_reserve:after {
  content: "予約";
}
@media (min-width: 576px) {
  section.link_block .txt_box a.restaurant_index_reserve {
    position: absolute;
    top: 20px;
    right: 0;
    max-width: 80px;
  }
}
section.sub_link_block {
  padding: 30px 0;
}
section.sub_link_block .txt_box {
  padding-top: 20px;
}
section.sub_link_block .txt_box h4 {
  font-family: "futura-pt", sans-serif;
  font-weight: 400;
  font-size: 2.4rem;
  letter-spacing: 0.08em;
}
section.sub_link_block .txt_box h4 img {
  max-width: 400px;
  margin: 0 auto;
}
section.sub_link_block .txt_box p {
  font-size: 1.2rem;
}

.consolebox {
  position: fixed;
  bottom: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.5);
  z-index: 9999;
  padding: 10px;
}
.consolebox p {
  padding: 0;
  margin: 0;
}
.consolebox p.size::before {
  content: "size : ";
}
.consolebox p.size::after {
  content: "default";
}
@media (min-width: 576px) {
  .consolebox p.size::after {
    content: "sm";
  }
}
@media (min-width: 768px) {
  .consolebox p.size::after {
    content: "md";
  }
}
@media (min-width: 992px) {
  .consolebox p.size::after {
    content: "lg";
  }
}
@media (min-width: 1200px) {
  .consolebox p.size::after {
    content: "xl";
  }
}
@media (min-width: 1400px) {
  .consolebox p.size::after {
    content: "xxl";
  }
}

header {
  position: fixed;
  padding: 0 0 0 15px;
  width: 100%;
  height: 60px;
  z-index: 99;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  line-height: 0;
  gap: 20px;
}
@media (min-width: 576px) {
  header {
    height: 80px;
  }
}
header h1.logo {
  margin: 0;
  line-height: 0;
}
header h1.logo a img {
  width: 200px;
}
@media (min-width: 320px) {
  header h1.logo a img {
    width: 160px;
  }
}
@media (min-width: 768px) {
  header h1.logo a img {
    width: auto;
  }
}
header h2.copy {
  display: none;
  font-size: 10px;
  line-height: 1.5;
  margin: 0;
}
@media (min-width: 768px) {
  header h2.copy {
    display: block;
  }
}
header ul.nav {
  display: flex;
}
header ul.nav > li {
  background-color: white;
  height: 100%;
  display: inline-table;
  cursor: pointer;
  position: relative;
  padding: 15px 5px;
}
header ul.nav > li p, header ul.nav > li a {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  padding: 0 20px;
  line-height: 1.2;
  color: currentColor;
  font-size: 1.3rem;
}
@media (min-width: 768px) {
  header ul.nav > li p, header ul.nav > li a {
    font-size: 1.4rem;
  }
}
header ul.nav > li p:hover, header ul.nav > li a:hover {
  opacity: 0.7;
}
header ul.nav > li ul.pulldown {
  display: block;
  z-index: 99;
  background-color: white;
  position: absolute;
  top: -100%;
  left: 0;
  padding: 0 5px 15px 5px;
  pointer-events: none;
  min-width: 100%;
  opacity: 0;
  transition: all 0.3s ease-out;
}
header ul.nav > li ul.pulldown.show {
  opacity: 1;
  top: 100%;
}
header ul.nav > li ul.pulldown li {
  display: block;
  position: relative;
  width: 100%;
  line-height: 1;
  height: 20px;
  margin-top: 10px;
}
header ul.nav > li ul.pulldown li a {
  padding: 0;
  display: inline-block;
  width: 100%;
  text-align: left;
  pointer-events: auto;
  font-size: 1.3rem;
}
header ul.nav > li.btn_language p {
  font-size: 1rem;
  padding: 0;
  background-color: white;
  z-index: 100;
  position: relative;
  letter-spacing: 0.15em;
}
@media (min-width: 576px) {
  header ul.nav > li.btn_language p {
    font-size: 1.4rem;
  }
}
header ul.nav > li.btn_stay a {
  color: white;
  background-color: #808080;
}
header ul.nav > li.btn_restaurant a {
  color: white;
  background-color: #D6BC46;
}
header ul.nav > li.btn_bridal a {
  color: white;
  background-color: #77D7FF;
}
header ul.nav > li.btn_banquet a {
  color: white;
  background-color: #000000;
}
header ul.nav > li.btn_hamburger {
  padding: 15px 5px 0 5px;
}
@media (min-width: 576px) {
  header ul.nav > li.btn_hamburger {
    padding: 20px 15px 0 10px;
  }
}
header ul.nav > li.btn_hamburger svg {
  width: 30px;
}
@media (min-width: 576px) {
  header ul.nav > li.btn_hamburger svg {
    width: 40px;
  }
}
header ul.nav > li.btn_hamburger svg text {
  color: black;
  letter-spacing: 0.15em;
}
header ul.nav > li.mobile_only {
  display: inline-table;
}
@media (min-width: 992px) {
  header ul.nav > li.mobile_only {
    display: none;
  }
}
header ul.nav > li.pc_only {
  display: none;
}
@media (min-width: 992px) {
  header ul.nav > li.pc_only {
    display: inline-table;
  }
}
header ul.nav.head_nav {
  margin-left: auto;
  height: 100%;
}
header ul.nav.foot_nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  z-index: 99;
}
header ul.nav.foot_nav li {
  width: 25%;
  flex-grow: 1;
  padding: 0;
}
header ul.nav.foot_nav li a {
  height: 60px;
  padding: 0;
}
header ul.nav.foot_nav li.border-right {
  border-right: 1px solid white;
}

#drawer {
  pointer-events: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  transition: all 0.3s ease-out;
  background-color: rgba(0, 0, 0, 0.7);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  z-index: 100;
  display: table;
}
#drawer.show {
  opacity: 1;
  pointer-events: auto;
  cursor: pointer;
}
#drawer.show ul li {
  pointer-events: auto;
}
#drawer ul {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}
#drawer ul li {
  background-color: white;
  width: auto;
  text-align: left;
  margin: 1px auto;
  max-width: 200px;
  padding: 5px 15px;
}
#drawer ul li a {
  display: inline-block;
  width: 100%;
  height: 100%;
}
#drawer ul li a:hover {
  opacity: 0.5;
}

footer {
  position: relative;
  background-color: #ffffff;
  padding: 60px 0 80px 0;
}
@media (min-width: 992px) {
  footer {
    padding: 60px 0 30px 0;
  }
}
footer a {
  color: #000000;
}
footer a:hover {
  color: #000000;
}
footer .wrapper {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
@media (min-width: 768px) {
  footer .wrapper {
    flex-direction: row;
  }
}
footer span.strong {
  font-weight: bold;
  margin-right: 4px;
  display: inline-block;
}
footer ul {
  display: block;
  margin: 15px 0;
}
footer ul.fnav {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  footer ul.fnav {
    flex-wrap: nowrap;
  }
}
footer ul.fnav li {
  border: 1px solid black;
  border-width: 1px 0 0 1px;
  border-top-left-radius: 7px;
  width: 100%;
  padding: 10px 0 5px 0;
  text-align: center;
}
footer ul.fnav_sub {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
  align-items: center;
}
@media (min-width: 992px) {
  footer ul.fnav_sub {
    flex-wrap: nowrap;
  }
}
footer ul.fnav_sub li {
  width: 50%;
  border: none;
  text-align: center;
  padding: 15px;
  line-height: 1.6;
}
@media (min-width: 992px) {
  footer ul.fnav_sub li {
    padding: 0;
    flex-grow: 1;
    border: 1px solid black;
    border-width: 0 1px 0 0;
    text-align: center;
  }
  footer ul.fnav_sub li:last-child {
    border-width: 0;
  }
}
footer ul.fsns {
  width: auto;
  display: inline-flex;
  align-items: center;
  gap: 30px 10px;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  footer ul.fsns {
    gap: 30px;
  }
}
footer ul.fsns li {
  min-width: calc(50vw - 20px);
  font-size: 1.1rem;
  text-align: center;
}
@media (min-width: 768px) {
  footer ul.fsns li {
    min-width: auto;
  }
}
footer ul.fsns li a {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 5px;
  justify-content: center;
}
@media (min-width: 768px) {
  footer ul.fsns li a {
    flex-direction: row;
  }
}
footer ul.fsns li i {
  font-size: 2.6rem;
}
footer ul.fsns li:last-child {
  margin-right: 0;
}
footer ul.area_link {
  font-size: 1.2rem;
}
footer ul.area_link li {
  margin-bottom: 10px;
}

.regulations_footer {
  width: 100%;
  height: 430px;
}
@media (min-width: 768px) {
  .regulations_footer {
    margin-top: 30px;
    height: 230px;
  }
}

.slideshow ul.slideshow_inner {
  position: relative;
  margin: 0 0 20px 0;
  z-index: 1;
}
.slideshow ul.slideshow_inner li {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 0.3s ease-out;
  background-size: cover;
  background-position: center;
  pointer-events: none;
}
.slideshow ul.slideshow_inner li.current {
  opacity: 1;
  pointer-events: auto;
}
.slideshow ul.slideshow_inner li a {
  display: block;
  width: 100%;
  height: 100%;
}
.slideshow ul.pager {
  width: 100%;
  display: flex;
  text-align: center;
  justify-content: center;
  gap: 30px;
  z-index: 2;
}
.slideshow ul.pager li {
  opacity: 0.7;
  transition: all 0.3s ease-out;
  color: white;
  font-size: 1rem;
}
.slideshow ul.pager li.current {
  opacity: 1;
}
.slideshow .text_wrapper {
  padding: 0 0 15px 0;
}
@media (min-width: 1400px) {
  .slideshow .text_wrapper {
    padding: 0 0 30px 0;
  }
}
.slideshow .text_wrapper .copy {
  font-family: "Shippori Mincho", serif;
  font-size: 1.8rem;
  line-height: 1.8;
  text-align: center;
  letter-spacing: 0.15em;
}
@media (min-width: 576px) {
  .slideshow .text_wrapper .copy {
    font-size: 2.2rem;
  }
}
@media (min-width: 768px) {
  .slideshow .text_wrapper .copy {
    font-size: 3rem;
  }
}
.slideshow .text_wrapper .text {
  line-height: 2;
  padding: 15px;
  letter-spacing: 0.15em;
  margin: 0 auto;
}
.slideshow .text_wrapper .text br {
  display: none;
}
@media (min-width: 576px) {
  .slideshow .text_wrapper .text {
    text-align: center;
    font-size: 1.4rem;
  }
  .slideshow .text_wrapper .text br {
    display: block;
  }
}
@media (min-width: 768px) {
  .slideshow .text_wrapper .text {
    font-size: 1.6rem;
  }
}

section.reserve > div {
  line-height: 0;
}
section.reserve .reserve_tab {
  margin: 0;
  text-align: center;
  padding: 10px 0;
  cursor: pointer;
  line-height: 1.2;
}
section.reserve .reserve_tab.reserve_stay {
  background-color: #808080;
  color: white;
}
section.reserve .reserve_tab.reserve_restaurant {
  background-color: #D6BC46;
  color: white;
}
section.reserve .reserve_box {
  margin-bottom: 15px;
  display: block;
  line-height: 1.4;
}
section.reserve .reserve_box.hide {
  display: none;
}
section.reserve .reserve_box div.td {
  width: 100%;
  height: 100%;
  padding: 5px 10px;
  border: 0 solid gray;
  border-width: 0 0 1px 0;
}
section.reserve .reserve_box div.td p.title {
  display: inline-block;
  width: 35%;
  font-size: 1.4rem;
  margin: 0;
  padding: 0;
}
@media (min-width: 992px) {
  section.reserve .reserve_box div.td p.title {
    width: 100%;
    font-size: 1.1rem;
  }
}
section.reserve .reserve_box div.td select {
  font-size: 1.6rem;
  width: 62%;
  -moz-appearance: menulist;
  -webkit-appearance: menulist;
  margin-top: 3px;
}
@media (min-width: 992px) {
  section.reserve .reserve_box div.td select {
    width: 100%;
  }
}
section.reserve .reserve_box div.td select.select_reserve_restaurant_disable {
  pointer-events: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
section.reserve .reserve_box div.td input[type=date], section.reserve .reserve_box div.td input[type=time] {
  width: 62%;
  font-size: 2rem;
  color: black;
  margin-top: 3px;
}
@media (min-width: 992px) {
  section.reserve .reserve_box div.td input[type=date], section.reserve .reserve_box div.td input[type=time] {
    width: 100%;
  }
}
section.reserve .reserve_box div.td p.count {
  font-size: 2rem;
  margin: 0;
  width: 57%;
  display: inline-block;
}
@media (min-width: 992px) {
  section.reserve .reserve_box div.td p.count {
    width: 100%;
  }
}
section.reserve .reserve_box div.td p.count input {
  max-width: 2em;
  font-size: 1.6rem;
  text-align: center;
  margin-top: 3px;
}
@media (min-width: 992px) {
  section.reserve .reserve_box div.td p.count input {
    max-width: 4em;
  }
}
section.reserve .reserve_box div.td p.count .count_up, section.reserve .reserve_box div.td p.count .count_down {
  cursor: pointer;
}
section.reserve .reserve_box div.td ul {
  display: inline-block;
  margin: 0 0 3px 0;
}
section.reserve .reserve_box div.td .reserve_btn {
  width: 100%;
  display: inline-block;
  text-align: center;
  background-color: black;
  color: white;
  margin: 0;
  vertical-align: top;
  margin-top: 10px;
  padding: 15px 0;
  cursor: pointer;
}
section.reserve .reserve_box div.td.border-none {
  border-width: 0 0 0 0;
}
section.reserve .reserve_box div.td.td-last {
  border-width: 0 0 0 0;
  padding: 0;
}
@media (min-width: 992px) {
  section.reserve .reserve_box div.td {
    height: 60px;
  }
  section.reserve .reserve_box div.td.border-both {
    border: 0 solid lightgray;
    border-width: 0 1px;
  }
  section.reserve .reserve_box div.td.border-right {
    border: 0 solid lightgray;
    border-width: 0 1px 0 0;
  }
  section.reserve .reserve_box div.td.border-none {
    border: 0 solid lightgray;
  }
  section.reserve .reserve_box div.td.td-last {
    border: 0 solid lightgray;
    border-width: 0 0 0 0;
  }
}

.lightbox_thumb {
  cursor: pointer;
}

.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.7);
  width: 100%;
  min-height: 100vh;
  height: 100%;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease-out;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.lightbox.show {
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  opacity: 1;
  pointer-events: auto;
}
.lightbox .inner {
  width: 90%;
  height: 90vh;
  display: none;
  text-align: center;
  position: relative;
  justify-content: center;
  align-items: center;
}
.lightbox .inner.roommap {
  text-align: center;
}
.lightbox .inner.roommap img {
  max-width: 100%;
  max-height: 100%;
}
.lightbox .inner.view360 {
  max-width: 1200px;
}
.lightbox .inner img {
  max-width: 100%;
  max-height: 100%;
}
.lightbox .inner.show {
  display: flex;
  flex-direction: column;
}
.lightbox .inner p {
  color: white;
  text-align: center;
  margin: 0;
  padding: 0;
  font-size: 1.4rem;
  width: 100%;
}
.lightbox .inner .lightbox_arrow {
  position: absolute;
  width: 30px;
  height: 30px;
  top: calc(50% - 15px);
  cursor: pointer;
  border: 0 solid white;
  border-width: 2px 2px 0 0;
  transform-origin: center;
}
@media (min-width: 768px) {
  .lightbox .inner .lightbox_arrow {
    top: calc(50% - 25px);
    width: 50px;
    height: 50px;
  }
}
.lightbox .inner .lightbox_arrow:hover {
  opacity: 0.6;
}
.lightbox .inner .lightbox_arrow.prev {
  left: 0;
  transform: rotate(-135deg);
}
@media (min-width: 768px) {
  .lightbox .inner .lightbox_arrow.prev {
    left: -15px;
  }
}
.lightbox .inner .lightbox_arrow.next {
  right: 0;
  transform: rotate(45deg);
}
@media (min-width: 768px) {
  .lightbox .inner .lightbox_arrow.next {
    right: -15px;
  }
}

.square {
  width: 100%;
  padding-top: 100%;
  overflow: hidden;
  background-color: black;
  display: block;
}

.fullhd {
  width: 100%;
  padding-top: 56.25%;
  background-color: black;
  overflow: hidden;
  display: block;
}

#hamburger {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  color: #000;
}
#hamburger svg {
  width: 100%;
  height: 100%;
}
#hamburger svg rect {
  fill: none;
  stroke: currentColor;
  stroke-width: 2px;
}
#hamburger svg line {
  stroke: currentColor;
  stroke-width: 2px;
  fill: none;
  transition: all 0.2s ease-out;
  opacity: 1;
}
#hamburger:hover {
  cursor: pointer;
}
#hamburger.show {
  color: #fc0;
}
#hamburger.show svg line:nth-of-type(1) {
  transform-origin: 50% 30%;
  transform: translate(0, 20%) rotate(45deg);
}
#hamburger.show svg line:nth-of-type(2) {
  opacity: 0;
}
#hamburger.show svg line:nth-of-type(3) {
  transform-origin: 50% 70%;
  transform: translate(0, -20%) rotate(-45deg);
}

.page_index section.mainvisual {
  padding: 0;
  width: 100%;
  overflow: hidden;
  min-height: calc(100vh - 60px);
  display: block;
  background-position: center;
  background-size: cover;
  display: block;
  position: relative;
}
@media (min-width: 768px) {
  .page_index section.mainvisual {
    min-height: calc(100vh - 80px);
  }
}
.page_index section.mainvisual video {
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}
.page_index section.mainvisual_banner {
  padding: 0;
}
.page_index section.mainvisual_banner .slideshow {
  position: relative;
}
.page_index section.mainvisual_banner .slideshow .slideshow_inner {
  width: 100%;
  padding-top: 61.0416666667%;
  margin: 0 0 60px 0;
}
.page_index section.mainvisual_banner .slideshow .pager {
  position: absolute;
  bottom: 0;
}
.page_index section.mainvisual_banner_sp .slideshow .slideshow_inner {
  padding-top: 124.9333333333%;
  margin: 0 0 30px 0;
}
.page_index section.omimai {
  padding: 0;
  margin-top: -15px;
}
.page_index section.omimai p {
  padding: 15px;
  display: block;
  border: 1px solid black;
  text-align: center;
}
.page_index section.banner {
  padding-top: 0;
}
.page_index section.banner .wrapper {
  width: 100%;
  position: relative;
}
.page_index section.banner .wrapper a.ryokousien {
  width: 100%;
  margin: 0 auto;
  display: block;
  padding-bottom: 30px;
}
.page_index section.banner .wrapper a.ryokousien img {
  width: 100%;
}
.page_index section.banner #banner_slider {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}
@media (min-width: 768px) {
  .page_index section.banner #banner_slider {
    overflow: inherit;
  }
}
.page_index section.banner #banner_slider li {
  padding-right: 5px;
}
.page_index section.banner #banner_slider li img {
  width: 100%;
}
.page_index section.banner #banner_slider button:before, .page_index section.banner #banner_slider button:after {
  color: black;
  display: none;
}
@media (min-width: 768px) {
  .page_index section.banner #banner_slider button:before, .page_index section.banner #banner_slider button:after {
    display: block;
  }
}
.page_index section.about {
  margin-top: -60px;
  padding: 120px 0 0 0;
}
@incude sm {
  .page_index section.about {
    margin-top: -80px;
    padding: 160px 0 0 0;
  }
}
.page_index section.about .bggray {
  margin-top: -60px;
  padding: 30px 0 60px 0;
}
@media (min-width: 576px) {
  .page_index section.about .bggray {
    margin-top: -60px;
  }
}
.page_index section.about .bggray .about_wrapper {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .page_index section.about .bggray .about_wrapper {
    flex-flow: row;
  }
}
.page_index section.about .bggray .about_wrapper .text_wrapper {
  margin-bottom: 30px;
  width: 100%;
}
@media (min-width: 768px) {
  .page_index section.about .bggray .about_wrapper .text_wrapper {
    margin-bottom: 0;
    width: 55%;
  }
}
.page_index section.about .bggray .about_wrapper .text_wrapper h1 {
  font-family: "Shippori Mincho", serif;
  font-size: 3rem;
  line-height: 1.4;
  margin-bottom: 1em;
}
@media (min-width: 768px) {
  .page_index section.about .bggray .about_wrapper .text_wrapper h1 {
    font-size: 4rem;
  }
}
.page_index section.about .bggray .about_wrapper .text_wrapper p {
  font-size: 1.6rem;
}
@media (min-width: 768px) {
  .page_index section.about .bggray .about_wrapper .text_wrapper p {
    font-size: 2rem;
  }
}
.page_index section.about .bggray .about_wrapper .text_wrapper a {
  font-size: 1.6rem;
  padding: 15px;
  border: 1px solid darkgray;
  color: darkgray;
}
@media (min-width: 768px) {
  .page_index section.about .bggray .about_wrapper .text_wrapper a {
    font-size: 2rem;
  }
}
.page_index section.about .bggray .about_wrapper .image_wrapper {
  width: 100%;
}
@media (min-width: 768px) {
  .page_index section.about .bggray .about_wrapper .image_wrapper {
    width: calc(45% - 30px);
  }
}
.page_index section.about .bggray .about_wrapper .image_wrapper img {
  width: 100%;
  height: 160px;
  -o-object-fit: cover;
     object-fit: cover;
}
.page_index section.about .bggray .about_wrapper .image_wrapper .col-12 {
  margin: 0;
}
.page_index section.about .bggray .about_wrapper .image_wrapper .col-12 img {
  height: 360px;
}
.page_index section.en_news .news_box {
  padding: 30px;
  border: 1px solid #000000;
}
@media (min-width: 768px) {
  .page_index section.en_news .news_box {
    padding: 60px;
  }
}
.page_index section.en_news h3 {
  font-family: "Times New Roman", Times, "serif";
  font-size: 1.6rem;
  margin-bottom: 1.4em;
}
@media (min-width: 768px) {
  .page_index section.en_news h3 {
    font-size: 1.8rem;
  }
}
.page_index section.top_gallery {
  padding-bottom: 0;
}
.page_index section.top_gallery .gallery_btn {
  background-color: #D6BC46;
}
.page_index section.top_gallery .gallery_btn a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 5px 0 3px;
}
.page_index section.top_gallery .gallery_btn p {
  text-align: center;
  font-family: "futura-pt", sans-serif;
  font-weight: 400;
  font-size: 2.9rem;
  letter-spacing: 0.08em;
}

.page.en section.page_header .title h2 + p {
  letter-spacing: 0.06em;
}
.page section.page_header {
  padding-bottom: 30px;
}
.page section.page_header .title {
  padding-bottom: 0;
  text-align: center;
}
.page section.page_header .title h2 {
  font-family: "futura-pt", sans-serif;
  font-weight: 400;
  font-size: 3.3rem;
  letter-spacing: 0.12em;
}
@media (min-width: 768px) {
  .page section.page_header .title h2 {
    font-size: 4.2rem;
  }
}
.page section.page_header .title h2 + p {
  font-size: 1.6rem;
  letter-spacing: 0.3em;
}
@media (min-width: 768px) {
  .page section.page_header .title h2 + p {
    font-size: 1.8rem;
  }
}
.page section.page_header .title h2 + p.comfort_separate_sub {
  font-size: 2.1rem;
}
@media (min-width: 768px) {
  .page section.page_header .title h2 + p.comfort_separate_sub {
    font-size: 3rem;
  }
}
.page section.mainvisual {
  padding: 0;
  background-color: lightgray;
}
.page section.mainvisual .slideshow ul.slideshow_inner {
  position: relative;
}
.page section.mainvisual .slideshow ul.slideshow_inner li {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.page section.mainvisual .slideshow ul.slideshow_inner li img {
  width: 100%;
}
.page section.category_box ul.category_list {
  display: flex;
  justify-content: flex-start;
}
@media (min-width: 768px) {
  .page section.category_box ul.category_list {
    justify-content: center;
  }
}
.page section.category_box ul.category_list li {
  cursor: pointer;
  transition: all 0.3s ease-out;
  white-space: nowrap;
  margin-left: 15px;
  margin-bottom: 15px;
}
.page section.category_box ul.category_list li a {
  color: gray;
}
.page section.category_box ul.category_list li:hover {
  opacity: 0.8;
}
.page section.category_box ul.category_list li.current a {
  color: black;
}
.page section.category_box ul.category_list li:not(:last-child)::after {
  content: "|";
  margin-left: 15px;
  color: lightgray;
}
.page section.category_box .select_category_wrapper {
  width: 100%;
  position: relative;
}
.page section.category_box .select_category_wrapper::after {
  content: "▼";
  color: black;
  position: absolute;
  top: 5px;
  right: 10px;
  font-size: 1.2rem;
  pointer-events: none;
}
.page section.category_box .select_category_wrapper select {
  text-align: center;
  width: 100%;
  padding: 5px 0;
  background-color: #c8c8c8;
}
.page section.category_box .select_category_wrapper select:focus {
  outline: none;
}
.page section.page_content .content_one {
  margin-bottom: 6em;
}
.page section.page_content .content_one:last-child {
  margin-bottom: 0;
}
.page section.page_content .content_one a {
  color: #d6bc46;
}
.page section.page_content .content_one a:hover {
  color: #d6bc46;
}
.page section.page_content .content_one .page_title {
  margin-bottom: 2.7em;
  text-align: center;
}
.page section.page_content .content_one .page_title h3 {
  font-size: 2.1rem;
  letter-spacing: 0.25em;
  line-height: 1.7;
}
.page section.page_content .content_one .page_title h3 small {
  font-size: 1.3rem !important;
}
.page section.page_content .content_one .secondpage_title {
  text-align: center;
  background-color: #000000;
  padding: 15px 0;
  margin-bottom: 1.5em;
}
.page section.page_content .content_one .secondpage_title h3 {
  color: #ffffff;
  font-size: 1.6rem;
  margin-bottom: 0;
}
.page section.page_content .content_one .secondpage_subtitle {
  text-align: center;
  background-color: #ffffff;
  border: 1px solid #000000;
  padding: 15px 0;
  margin-bottom: 1.5em;
}
.page section.page_content .content_one .secondpage_subtitle h3 {
  color: #000000;
  font-size: 1.6rem;
  margin-bottom: 0;
}
.page section.page_content .content_one a.btn {
  color: #ffffff;
  border-radius: 0;
  min-width: 200px;
}
.page section.page_content .content_one a.btn.btn-lg {
  font-size: 1.6rem;
}
.page section.page_content .content_one .content_title h4 {
  font-size: 1.4rem;
  margin-bottom: 0.5em;
  position: relative;
  padding-left: 15px;
  letter-spacing: 0.15em;
}
.page section.page_content .content_one .content_title h4:before {
  background: #000;
  content: "";
  height: 7px;
  width: 7px;
  left: 0;
  position: absolute;
  top: 5px;
}
.page section.page_content .content_one .attention_box {
  background-color: #d5d5d5;
  padding: 15px;
  margin-bottom: 1em;
}
@media (min-width: 768px) {
  .page section.page_content .content_one .attention_box {
    padding: 30px;
  }
}
.page section.page_content .content_one .attention_box.strict {
  background-color: #000000;
  color: #ffffff;
}
.page section.page_content .content_one .attention_box p:last-child {
  margin-bottom: 0;
}
.page section.page_content .content_one .attention_box ul {
  list-style: none;
  margin-bottom: 0;
}
.page section.page_content .content_one .attention_box ul li {
  text-indent: -1em;
  margin-left: 1em;
}
.page section.page_content .content_one .attention_box dl.dinner {
  overflow: hidden;
}
.page section.page_content .content_one .attention_box dl.dinner dt {
  float: left;
  clear: left;
  margin-right: 0.5em;
  width: 5em;
  font-weight: normal;
}
.page section.page_content .content_one .attention_box dl.dinner dd {
  float: left;
  margin-left: 1em;
}
.page section.page_content .content_one table thead {
  background-color: #d5d5d5;
  text-align: center;
}
.page section.page_content .content_one table tbody th {
  font-weight: normal;
  background-color: #cfcfcf;
}
.page section.page_content .content_one table tbody th small {
  font-size: 1rem;
}
.page section.page_content .content_one table tbody td {
  text-align: center;
  vertical-align: middle;
}

.page_stay .comfort_separate_pc {
  background-color: #727171;
}
.page_stay .comfort_separate_pc .comfort_separate_box {
  max-width: 630px;
  margin: 0 auto;
}
.page_stay .comfort_separate_pc .comfort_separate_box img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 768px) {
  .page_stay .comfort_separate_pc .comfort_separate_box img {
    height: 300px;
  }
}
@media (min-width: 992px) {
  .page_stay .comfort_separate_pc .comfort_separate_box img {
    height: 200px;
  }
}

.page_stay_single.en section.mainvisual_slideshow .copy {
  letter-spacing: 0.1em;
}
.page_stay_single.en section.mainvisual_slideshow .text {
  letter-spacing: 0.06em;
}
.page_stay_single section.page_header {
  padding: 30px 0;
}
@media (min-width: 992px) {
  .page_stay_single section.page_header {
    padding: 60px 0 15px 0;
  }
}
.page_stay_single section.page_header .title {
  margin-bottom: 30px;
}
.page_stay_single section.page_header ul.sub_nav li {
  text-align: center;
  margin-bottom: 5px;
}
.page_stay_single section.page_header ul.sub_nav li a {
  color: gray;
}
.page_stay_single section.page_header ul.sub_nav li a.current {
  color: black;
}
@media (min-width: 992px) {
  .page_stay_single section.page_header ul.sub_nav {
    display: flex;
    justify-content: center;
  }
  .page_stay_single section.page_header ul.sub_nav li {
    padding: 0 30px;
    border-right: 1px solid lightgray;
  }
  .page_stay_single section.page_header ul.sub_nav li:last-child {
    border-right: none;
  }
  .page_stay_single section.page_header ul.sub_nav li a {
    color: gray;
    transition: all 0.3s ease-out;
  }
  .page_stay_single section.page_header ul.sub_nav li a:hover {
    color: black;
  }
}
.page_stay_single section.mainvisual_slideshow {
  padding: 0;
}
.page_stay_single section.mainvisual_slideshow .privilege {
  display: block;
  padding-bottom: 60px;
}
.page_stay_single section.mainvisual_slideshow .privilege .inner {
  margin: 0;
}
@media (min-width: 992px) {
  .page_stay_single section.mainvisual_slideshow .privilege .inner {
    flex-direction: row;
  }
}
.page_stay_single section.mainvisual_slideshow .privilege .inner h3 {
  font-size: 1.6rem;
  background-color: black;
  color: white;
  justify-content: center;
  align-items: center;
  display: flex;
  margin: 0;
  padding: 6px;
}
.page_stay_single section.mainvisual_slideshow .privilege .inner .wrapper .text_box {
  background-color: black;
  color: white;
  padding: 15px;
}
.page_stay_single section.mainvisual_slideshow .privilege .inner .wrapper .text_box h4 {
  font-size: 1.3rem;
  margin-bottom: 0.6em;
}
@media (min-width: 1200px) {
  .page_stay_single section.mainvisual_slideshow .privilege .inner .wrapper .text_box h4 {
    font-size: 1.4rem;
  }
}
.page_stay_single section.mainvisual_slideshow .privilege .inner .wrapper .text_box p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 0;
}
@media (min-width: 1200px) {
  .page_stay_single section.mainvisual_slideshow .privilege .inner .wrapper .text_box p {
    font-size: 1.2rem;
  }
}
.page_stay_single section.rooms ul.rooms {
  display: flex;
  justify-content: flex-start;
  margin: -15px 0 30px;
  /*display: flex;
          justify-content: center;
          margin: 30px 0;
          li {
              padding: 0 15px;
              border-right: 1px solid gray;
              &:last-child {
                  border-right: none;
              }
              a {
                  color: gray;
                  transition: all .3s ease-out;
                  &:hover {
                      color: black;
                  }
              }
          }*/
}
@media (min-width: 768px) {
  .page_stay_single section.rooms ul.rooms {
    justify-content: center;
  }
}
.page_stay_single section.rooms ul.rooms li {
  cursor: pointer;
  color: gray;
  transition: all 0.3s ease-out;
  white-space: nowrap;
  margin-left: 15px;
  margin-bottom: 15px;
}
.page_stay_single section.rooms ul.rooms li:hover {
  opacity: 0.8;
}
.page_stay_single section.rooms ul.rooms li.current {
  color: black;
}
.page_stay_single section.rooms ul.rooms li:not(:last-child)::after {
  content: "|";
  margin-left: 15px;
}
.page_stay_single section.rooms .rooms_wrapper {
  width: 100%;
  position: relative;
}
.page_stay_single section.rooms .rooms_wrapper::after {
  content: "▼";
  color: white;
  position: absolute;
  top: 5px;
  right: 15px;
  z-index: 2;
  pointer-events: none;
}
.page_stay_single section.rooms .rooms_wrapper select.rooms {
  width: 100%;
  text-align: center;
  outline: 1px solid black;
  background-color: black;
  color: white;
  padding: 5px 0;
}
.page_stay_single section.extras .extra {
  margin-bottom: 60px;
  min-height: 160px;
}
.page_stay_single section.extras .extra h4 {
  font-family: "futura-pt", sans-serif;
  font-weight: 400;
  width: 100%;
  border-bottom: 1px solid black;
  padding: 0 0 5px 0;
  font-size: 2.2rem;
}
.page_stay_single section.extras .extra .wrapper {
  position: static;
  width: 100%;
  aspect-ratio: 16/9;
  margin: 15px 0;
}
@media (min-width: 992px) {
  .page_stay_single section.extras .extra .wrapper {
    position: relative;
    margin: 0;
  }
}
.page_stay_single section.extras .extra .wrapper img {
  position: static;
  margin-bottom: 20px;
  top: 0px;
}
@media (min-width: 992px) {
  .page_stay_single section.extras .extra .wrapper img {
    top: -30px;
    position: absolute;
  }
}
.page_stay_single section.extras .extra p.text {
  fpnt-size: 1.6rem;
}
.page_stay_single section.extras .extra p.text a {
  color: #d6bc46;
}
.page_stay_single section.extras .extra p.text_sub {
  font-size: 1.2rem;
}

.page_stay_dinner section.page_content .content_one {
  margin-bottom: 2.5em;
}
.page_stay_dinner .content_one {
  max-width: 960px;
  margin: 0 auto;
}
.page_stay_dinner .content_one .dinner_phone .wrapper {
  border: 1px solid black;
  padding: 15px;
  text-align: center;
}
.page_stay_dinner .content_one .dinner_phone .wrapper h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5em;
}
.page_stay_dinner .content_one .dinner_phone .wrapper p {
  font-size: 1.6rem;
  margin-bottom: 0;
}
.page_stay_dinner .content_one .dinner_phone .wrapper p.name {
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  .page_stay_dinner .content_one .dinner_phone .wrapper p.name {
    font-size: 1.6rem;
  }
}
.page_stay_dinner .content_one .dinner_phone .wrapper p.name a {
  color: #000000;
}
@media (min-width: 768px) {
  .page_stay_dinner .content_one .dinner_phone .wrapper p.name a {
    pointer-events: none;
  }
}
.page_stay_dinner .content_one .dinner_phone .wrapper p.comment {
  font-size: 1.3rem;
  padding-top: 0.2em;
}

.page_stay_breakfast .bf_tripadvisor {
  max-width: 890px;
  margin: 0 auto;
  position: relative;
}
.page_stay_breakfast .bf_tripadvisor .bf_tripadvisor_icon {
  position: static;
  width: 240px;
  margin: 0 auto;
  padding-top: 40px;
}
@media (min-width: 768px) {
  .page_stay_breakfast .bf_tripadvisor .bf_tripadvisor_icon {
    position: absolute;
    right: 0;
    top: 30px;
    padding-top: 0;
  }
}
.page_stay_breakfast .content_one {
  max-width: 960px;
  margin: 0 auto;
}
.page_stay_breakfast section.page_content.bf_phalf {
  padding: 30px 0;
}
.page_stay_breakfast .bf_picup {
  background-color: #96836b;
  padding: 1em;
  color: #ffffff;
  text-align: center;
  max-width: 100%;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .page_stay_breakfast .bf_picup {
    max-width: 80%;
  }
}
.page_stay_breakfast .bf_picup h3 {
  font-size: 2.2rem;
  margin-bottom: 0.4em;
  font-weight: normal;
  letter-spacing: 0.17em;
}
@media (min-width: 768px) {
  .page_stay_breakfast .bf_picup h3 {
    font-size: 2.8rem;
  }
}
.page_stay_breakfast .bf_picup p {
  margin-bottom: 1em;
}
.page_stay_breakfast .bf_picup p.attention {
  background-color: #ffffff;
  padding: 3px;
  color: #96836b;
  width: 300px;
  margin: 0 auto;
}
.page_stay_breakfast .bf_header {
  margin-bottom: 2em;
}
.page_stay_breakfast .bf_header .content_attention {
  float: none;
  border: 1px solid #cccccc;
  padding: 10px;
  margin-top: 5px;
  width: 100%;
}
@media (min-width: 992px) {
  .page_stay_breakfast .bf_header .content_attention {
    float: right;
    border: 1px solid #cccccc;
    padding: 10px;
    margin-top: 5px;
    width: 480px;
  }
}
.page_stay_breakfast .bf_header .content_attention p {
  text-align: center;
}
.page_stay_breakfast .bf_header .content_attention .data_box {
  max-width: 15em;
  margin: 0 auto;
}
.page_stay_breakfast .bf_header h4 {
  font-size: 1.4rem;
  margin-bottom: 1em;
}
.page_stay_breakfast .bf_header h3 {
  font-size: 2rem;
  margin-bottom: 1em;
}
@media (min-width: 768px) {
  .page_stay_breakfast .bf_header h3 {
    font-size: 2.4rem;
  }
}
.page_stay_breakfast .bf_header h3 span {
  background-color: #787878;
  color: #ffffff;
}
.page_stay_breakfast .bf_header h3.bf_alert {
  position: relative;
}
.page_stay_breakfast .bf_header h3.bf_alert::after {
  top: 2px;
  left: 70px;
  position: absolute;
  content: "";
  display: inline-block;
  width: 132px;
  height: 26px;
  background-image: url(../images/bf_benkay_alert.png);
  background-size: contain;
  background-repeat: no-repeat;
}
.page_stay_breakfast .bf_header h2 {
  font-size: 2.4rem;
  font-weight: normal;
  letter-spacing: 0.15em;
}
@media (min-width: 768px) {
  .page_stay_breakfast .bf_header h2 {
    font-size: 2.8rem;
  }
}
.page_stay_breakfast .bf_header p span.price {
  font-size: 2rem;
  letter-spacing: 0;
}
@media (min-width: 768px) {
  .page_stay_breakfast .bf_header p span.price {
    font-size: 2.6rem;
  }
}
.page_stay_breakfast .bf_content p.copy {
  margin-bottom: 1.5em;
}
.page_stay_breakfast .bf_image {
  margin-bottom: 3em;
}
.page_stay_breakfast .bf_point {
  margin-bottom: 3em;
}
.page_stay_breakfast .bf_point .bf_point_one {
  background-color: #656565;
  padding: 15px;
  border-radius: 15px;
  color: #ffffff;
}
.page_stay_breakfast .bf_point .bf_point_one.first_con {
  padding: 35px 15px;
}
.page_stay_breakfast .bf_point .bf_point_one p:last-child {
  margin-bottom: 0;
}
.page_stay_breakfast .bf_point .bf_point_one p.point_small {
  line-height: 1.4;
  font-size: 1.3rem;
}
.page_stay_breakfast .bf_special {
  background-color: #eae0cf;
  padding: 20px;
  margin-bottom: 3em;
}
@media (min-width: 768px) {
  .page_stay_breakfast .bf_special {
    padding: 30px;
  }
}
.page_stay_breakfast .bf_special .sp_title {
  margin-bottom: 1em;
}
.page_stay_breakfast .bf_special .sp_title h3 {
  font-size: 1.7rem;
  margin-bottom: 0.7em;
}
.page_stay_breakfast .bf_menu {
  margin-bottom: 3em;
}
.page_stay_breakfast .bf_menu .bf_menu_title h4 {
  font-size: 1.6rem;
  margin-bottom: 1em;
}
.page_stay_breakfast .bf_menu .bf_menu_one {
  margin-bottom: 2em;
}
.page_stay_breakfast .bf_menu .bf_menu_one:last-child {
  margin-bottom: 0;
}
.page_stay_breakfast .bf_menu .bf_menu_one ul {
  list-style: none;
  padding-left: 1em;
}
.page_stay_breakfast .bf_menu .bf_menu_one ul li:before {
  content: "⚪︎";
  text-indent: 1em;
  margin-left: -1em;
}
.page_stay_breakfast .bf_menu .bf_menu_one dl {
  overflow: hidden;
}
.page_stay_breakfast .bf_menu .bf_menu_one dl dt {
  float: left;
  clear: left;
  width: 6em;
  font-weight: normal;
}
.page_stay_breakfast .bf_menu .bf_menu_one dl dd {
  float: left;
  width: auto;
}
.page_stay_breakfast .bf_menu .bf_menu_other {
  border: 1px solid #cccccc;
  padding: 5px;
  text-align: center;
}
.page_stay_breakfast .renpaku h3 {
  font-size: 1.6rem;
  margin-bottom: 1em;
}
.page_stay_breakfast .renpaku h3 span {
  background-color: #000000;
  color: #ffffff;
  padding: 5px;
}
.page_stay_breakfast.en .bf_header h3.bf_alert::after {
  left: 120px;
  width: 190px;
  height: 26px;
  background-image: url(../images/bf_benkay_alert_en.png);
}

.page_stay_roomservice .content_one {
  max-width: 960px;
  margin: 0 auto;
}
.page_stay_roomservice .content_one .content_attention {
  border: 1px solid #cccccc;
  padding: 15px;
  margin-bottom: 46px;
}
.page_stay_roomservice .content_one .content_attention p {
  text-align: center;
  margin-bottom: 1em;
}
.page_stay_roomservice .content_one .content_attention .data_box {
  max-width: 15em;
  margin: 0 auto;
}
.page_stay_roomservice .content_one .content_title {
  text-align: center;
  margin-bottom: 50px;
}
.page_stay_roomservice .content_one .roomservice_one .roomservice_img {
  margin-bottom: 20px;
}
.page_stay_roomservice .content_one .roomservice_one .roomservice_txt {
  text-align: center;
}
.page_stay_roomservice .content_one .roomservice_one .roomservice_txt h2 {
  font-size: 2rem;
}
.page_stay_roomservice .content_one .roomservice_one .roomservice_txt a.btn {
  min-width: auto;
}

.page_stay_treatment .content_one {
  max-width: 960px;
  margin: 0 auto;
}
.page_stay_treatment .notice {
  background-color: black;
  color: white;
  margin: 45px auto 0 auto;
  max-width: 720px;
  padding: 15px;
}
@media (min-width: 576px) {
  .page_stay_treatment .notice {
    text-align: center;
  }
}
.page_stay_treatment .notice p {
  margin: 0;
}
.page_stay_treatment .stay_treatment_content .stay_treatment_header {
  padding: 30px 0;
  margin-bottom: 60px;
  background-color: #c8c8c8;
}
.page_stay_treatment .stay_treatment_content .stay_treatment_header h3 {
  font-size: 2.4rem;
  margin-bottom: 1em;
}
.page_stay_treatment .stay_treatment_content .stay_treatment_header p {
  text-align: justify;
}
@media (min-width: 992px) {
  .page_stay_treatment .stay_treatment_content .stay_treatment_header p.message {
    padding-right: 30px;
  }
}
.page_stay_treatment .stay_treatment_content .stay_treatment_header p.description {
  padding-top: 15px;
  border-top: 1px solid black;
  margin-top: 15px;
}
.page_stay_treatment .stay_treatment_content .stay_treatment_header img {
  margin-bottom: 15px;
  width: 100%;
}
.page_stay_treatment .stay_treatment_content .stay_treatment_table_wrapper {
  margin-bottom: 50px;
}
.page_stay_treatment .stay_treatment_content .stay_treatment_table_wrapper h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}
.page_stay_treatment .stay_treatment_content .stay_treatment_table_wrapper h3 span.small {
  font-size: 1.2rem;
}
@media (min-width: 576px) {
  .page_stay_treatment .stay_treatment_content .stay_treatment_table_wrapper h3 {
    font-size: 2rem;
  }
}
.page_stay_treatment .stay_treatment_content .stay_treatment_table_wrapper .stay_treatment_table {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}
.page_stay_treatment .stay_treatment_content .stay_treatment_table_wrapper .stay_treatment_table .left {
  order: 2;
  display: flex;
}
.page_stay_treatment .stay_treatment_content .stay_treatment_table_wrapper .stay_treatment_table .left p {
  padding: 3px 0;
  width: 50%;
  text-align: center;
}
.page_stay_treatment .stay_treatment_content .stay_treatment_table_wrapper .stay_treatment_table .left p.time {
  background-color: black;
  color: white;
}
.page_stay_treatment .stay_treatment_content .stay_treatment_table_wrapper .stay_treatment_table .left p.price {
  background-color: #bcbcbc;
}
.page_stay_treatment .stay_treatment_content .stay_treatment_table_wrapper .stay_treatment_table .right {
  order: 1;
  border-top: 1px solid #bcbcbc;
  padding: 10px 0;
}
.page_stay_treatment .stay_treatment_content .stay_treatment_table_wrapper .stay_treatment_table .right p {
  margin: 0;
}
.page_stay_treatment .stay_treatment_content .stay_treatment_table_wrapper .stay_treatment_table .right p::before {
  content: "・";
  display: inline-block;
  margin-right: 5px;
}
@media (min-width: 768px) {
  .page_stay_treatment .stay_treatment_content .stay_treatment_table_wrapper .stay_treatment_table {
    flex-direction: row;
    margin-bottom: 30px;
  }
  .page_stay_treatment .stay_treatment_content .stay_treatment_table_wrapper .stay_treatment_table .left {
    display: block;
    order: 1;
  }
  .page_stay_treatment .stay_treatment_content .stay_treatment_table_wrapper .stay_treatment_table .left p {
    text-align: center;
    margin: 0;
    padding: 4px 0;
    width: 120px;
  }
  .page_stay_treatment .stay_treatment_content .stay_treatment_table_wrapper .stay_treatment_table .right {
    order: 2;
    display: flex;
    width: calc(100% - 120px);
    justify-content: center;
    align-items: center;
    padding: 0;
  }
  .page_stay_treatment .stay_treatment_content .stay_treatment_table_wrapper .stay_treatment_table .right p {
    margin: 0;
  }
  .page_stay_treatment .stay_treatment_content .stay_treatment_table_wrapper .stay_treatment_table .right p::before {
    content: "";
    margin-right: 0;
  }
  .page_stay_treatment .stay_treatment_content .stay_treatment_table_wrapper .stay_treatment_table .right p:not(:last-child)::after {
    content: "+";
    padding: 0 10px;
    height: 100%;
    display: inline-block;
  }
}
.page_stay_treatment .stay_treatment_content .stay_treatment_table_wrapper .stay_treatment_table_mini {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
}
.page_stay_treatment .stay_treatment_content .stay_treatment_table_wrapper .stay_treatment_table_mini p {
  width: 100%;
}
.page_stay_treatment .stay_treatment_content .stay_treatment_table_wrapper .stay_treatment_table_mini p span {
  display: inline-block;
  width: 50%;
  text-align: center;
  padding: 3px 0;
}
.page_stay_treatment .stay_treatment_content .stay_treatment_table_wrapper .stay_treatment_table_mini p span.time {
  background-color: black;
  color: white;
}
.page_stay_treatment .stay_treatment_content .stay_treatment_table_wrapper .stay_treatment_table_mini p span.price {
  background-color: #bcbcbc;
}
@media (min-width: 768px) {
  .page_stay_treatment .stay_treatment_content .stay_treatment_table_wrapper .stay_treatment_table_mini {
    flex-direction: row;
    justify-content: flex-start;
    gap: 15px;
  }
  .page_stay_treatment .stay_treatment_content .stay_treatment_table_wrapper .stay_treatment_table_mini p {
    width: auto;
  }
  .page_stay_treatment .stay_treatment_content .stay_treatment_table_wrapper .stay_treatment_table_mini p span {
    width: 120px;
  }
}
.page_stay_treatment .stay_treatment_content .stay_treatment_table_wrapper.closed h3 {
  vertical-align: top;
}
.page_stay_treatment .stay_treatment_content .stay_treatment_table_wrapper.closed h3::before {
  content: "休業中";
  display: inline-block;
  color: red;
  border: 1px solid red;
  padding: 1px 5px;
  margin: 2px calc(100% - 70px) 5px 0;
  font-size: 1.4rem;
  text-align: center;
  width: 70px;
}
@media (min-width: 768px) {
  .page_stay_treatment .stay_treatment_content .stay_treatment_table_wrapper.closed h3::before {
    width: auto;
    margin: 2px 15px 0 0;
  }
}
.page_stay_treatment .content_one {
  max-width: 960px;
  margin: 0 auto;
}
.page_stay_treatment .content_one .treatment_box {
  background-color: #d4cab9;
  padding: 1em;
  margin-bottom: 1em;
}
.page_stay_treatment .content_one .treatment_box p:last-child {
  margin-bottom: 0;
}
.page_stay_treatment .content_one .content_in {
  padding-top: 1em;
}
.page_stay_treatment .content_one .content_in .content_in_box {
  border: 1px solid #d5d5d5;
  border-radius: 10px;
  padding: 15px;
}
.page_stay_treatment .content_one .content_in .content_in_box .content_in_title {
  margin-bottom: 1.5em;
  text-align: center;
}
.page_stay_treatment .content_one .content_in .content_in_box .content_in_title h4 {
  font-size: 1.8rem;
  letter-spacing: 0.25em;
  line-height: 1.7;
}
.page_stay_treatment .content_one .content_in .content_in_box .content_in_title h4 span.strict_note {
  background-color: #000000;
  color: #ffffff;
  padding: 2px 0px 2px 5px;
  font-size: 1.5rem;
}
.page_stay_treatment .content_one .content_in .content_in_box .price_box {
  background-color: #d5d5d5;
  padding: 1em;
  margin-bottom: 0;
}
.page_stay_treatment .content_one .content_in .content_in_box .price_box p:last-child {
  margin-bottom: 0;
}

.page_stay_service .content_one {
  max-width: 960px;
  margin: 0 auto;
}
.page_stay_service .content_one .treatment_box {
  background-color: #d4cab9;
  padding: 1em;
  margin-bottom: 1em;
}
.page_stay_service .content_one .treatment_box p:last-child {
  margin-bottom: 0;
}
.page_stay_service .content_one .content_in {
  padding-top: 1em;
}
.page_stay_service .content_one .content_in .content_in_box {
  border: 1px solid #d5d5d5;
  border-radius: 10px;
  padding: 15px;
}
.page_stay_service .content_one .content_in .content_in_box .content_in_title {
  margin-bottom: 1em;
  text-align: left;
}
.page_stay_service .content_one .content_in .content_in_box .content_in_title h4 {
  font-size: 1.8rem;
  letter-spacing: 0.25em;
  line-height: 1.7;
}
.page_stay_service .content_one .content_in .content_in_box .content_in_title h4 span.strict_note {
  background-color: #000000;
  color: #ffffff;
  padding: 2px 0px 2px 5px;
  font-size: 1.5rem;
}
.page_stay_service .content_one .content_in .content_in_box .irregular_txt span {
  background-color: #000000;
  color: #ffffff;
}

.page_special_menu section.mainvisual {
  width: 100%;
  background-color: transparent;
}
.page_special_menu section.mainvisual img {
  width: 100%;
}

.restaurant_sub_nav {
  width: 100%;
}
@media (min-width: 992px) {
  .restaurant_sub_nav {
    display: flex;
    justify-content: center;
  }
  .restaurant_sub_nav a {
    color: gray;
    transition: all 0.3s ease-out;
    border: 1px solid lightgray;
    border-width: 0 1px 0 0;
    text-align: center;
    width: 12%;
  }
  .restaurant_sub_nav a:last-child {
    border-width: 0;
  }
  .restaurant_sub_nav a.current {
    color: black;
  }
  .restaurant_sub_nav a:hover {
    color: black;
  }
}

.page_restaurant .nav_menu_list {
  padding: 60px 0;
}
.page_restaurant .nav_news_list {
  padding: 60px 0 120px 0;
}
.page_restaurant .privateroom_link {
  width: 100%;
  margin-top: 60px;
}
.page_restaurant .privateroom_link a {
  width: 100%;
  color: black;
  text-align: center;
  padding: 30px 0;
  display: block;
  font-size: 1.6rem;
  letter-spacing: 8px;
}
.page_restaurant .privateroom_link a.private {
  background-color: #d6bc46;
}
.page_restaurant .privateroom_link a.purpose {
  background-color: #cbaa76;
}
.page_restaurant .privateroom_link a span.white {
  color: white;
  font-size: 2.4rem;
  letter-spacing: 14px;
}

.page_restaurant_live section.page_header {
  padding-bottom: 0;
}
.page_restaurant_live section.mainvisual_slideshow .slideshow .slideshow_wrapper {
  position: relative;
}
.page_restaurant_live section.mainvisual_slideshow .slideshow .slideshow_wrapper .slideshow_inner {
  z-index: 1;
}
.page_restaurant_live section.mainvisual_slideshow .slideshow .slideshow_wrapper .slideshow_over {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.page_restaurant_live section.mainvisual_slideshow .slideshow .slideshow_wrapper .slideshow_over .mv_border {
  display: block;
  width: 100%;
  height: calc(16.6666666667% + 1px);
  border-bottom: 1vw solid white;
  margin: 0;
}
.page_restaurant_live section.mainvisual_slideshow .slideshow .slideshow_wrapper .singsingsing {
  z-index: 3;
  position: absolute;
  bottom: 0;
  left: 0;
}
.page_restaurant_live section.mainvisual_slideshow .slideshow .slideshow_wrapper .singsingsing img {
  height: calc(37.5vw - 1px);
}
.page_restaurant_live section.phone {
  padding: 0;
}
.page_restaurant_live section.phone .wrapper {
  border: 1px solid black;
  padding: 15px;
}
.page_restaurant_live section.phone .wrapper h3 {
  font-size: 1.2rem;
  text-align: center;
}
@media (min-width: 992px) {
  .page_restaurant_live section.phone .wrapper h3 {
    text-align: left;
  }
}
.page_restaurant_live section.phone .wrapper p {
  text-align: center;
  margin-bottom: 0;
  font-size: 2rem;
}
.page_restaurant_live section.phone .wrapper p.name {
  font-size: 1.4rem;
}
@media (min-width: 576px) {
  .page_restaurant_live section.phone .wrapper p.name {
    font-size: 2rem;
  }
}
@media (min-width: 768px) {
  .page_restaurant_live section.phone .wrapper p.number a {
    pointer-events: none;
  }
}
.page_restaurant_live section.restaurant_live_schedule {
  margin: 60px 0;
  background-color: black;
  color: white;
}
@media (min-width: 992px) {
  .page_restaurant_live section.restaurant_live_schedule .container {
    max-width: 900px;
  }
}
.page_restaurant_live section.restaurant_live_schedule .title .showtime {
  width: 100%;
  text-align: center;
  color: #0080c8;
}

.page_restaurant_single.en section.mainvisual_slideshow .copy,
.page_benkay.en section.mainvisual_slideshow .copy {
  letter-spacing: 0.1em;
}
.page_restaurant_single.en section.mainvisual_slideshow .text,
.page_benkay.en section.mainvisual_slideshow .text {
  letter-spacing: 0.06em;
}
.page_restaurant_single.en section.restaurant_spec_table .content_one,
.page_benkay.en section.restaurant_spec_table .content_one {
  max-width: 960px;
  margin: 0 auto;
}
.page_restaurant_single.en section.restaurant_spec_table .content_one table td,
.page_benkay.en section.restaurant_spec_table .content_one table td {
  text-align: left;
  word-wrap: break-word;
}
.page_restaurant_single section,
.page_benkay section {
  overflow: hidden;
}
.page_restaurant_single section.page_header,
.page_benkay section.page_header {
  padding: 30px 0 0 0;
  text-align: center;
}
@media (min-width: 992px) {
  .page_restaurant_single section.page_header,
  .page_benkay section.page_header {
    padding: 60px 0 0 0;
  }
}
.page_restaurant_single section.page_header h2,
.page_benkay section.page_header h2 {
  max-width: 300px;
  margin: 0 auto;
}
.page_restaurant_single section.page_header p,
.page_benkay section.page_header p {
  margin-bottom: 20px;
}
.page_restaurant_single section.page_header p.o_hours,
.page_benkay section.page_header p.o_hours {
  font-size: 1.4rem;
  line-height: 1.7;
  color: #666666;
}
.page_restaurant_single section.restaurant_banner,
.page_benkay section.restaurant_banner {
  text-align: center;
  padding: 0;
}
.page_restaurant_single section.restaurant_banner a,
.page_benkay section.restaurant_banner a {
  margin-bottom: 20px;
  display: block;
}
.page_restaurant_single section.restaurant_banner a:last-child,
.page_benkay section.restaurant_banner a:last-child {
  margin-bottom: 0;
}
.page_restaurant_single section.restaurant_banner a img,
.page_benkay section.restaurant_banner a img {
  max-width: 100%;
}
.page_restaurant_single section.benkay_list p.copy,
.page_benkay section.benkay_list p.copy {
  width: 100%;
  text-align: center;
  margin-bottom: 30px;
}
.page_restaurant_single section.benkay_list h3,
.page_benkay section.benkay_list h3 {
  text-align: center;
  margin: 15px 0;
  font-family: "Shippori Mincho", serif;
}
.page_restaurant_single section.benkay_list img,
.page_benkay section.benkay_list img {
  aspect-ratio: 2/1;
  -o-object-fit: cover;
     object-fit: cover;
}
.page_restaurant_single section.mainvisual_slideshow,
.page_benkay section.mainvisual_slideshow {
  padding: 0 0 30px 0;
}
.page_restaurant_single section.reserve,
.page_benkay section.reserve {
  padding: 30px 0;
}
.page_restaurant_single section.message h4,
.page_benkay section.message h4 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 2em;
  letter-spacing: 0.1em;
}
@media (min-width: 768px) {
  .page_restaurant_single section.message h4,
  .page_benkay section.message h4 {
    font-size: 2rem;
  }
}
.page_restaurant_single section.message p,
.page_benkay section.message p {
  text-align: center;
  font-size: 1.4rem;
  line-height: 2em;
}
@media (min-width: 768px) {
  .page_restaurant_single section.message p,
  .page_benkay section.message p {
    font-size: 1.6rem;
  }
}
.page_restaurant_single section.message p span,
.page_benkay section.message p span {
  display: inline-block;
  border: 1px solid #000000;
  padding: 10px 20px;
}
@media (min-width: 768px) {
  .page_restaurant_single section.message p span,
  .page_benkay section.message p span {
    padding: 15px 30px;
  }
}
.page_restaurant_single section.pickup,
.page_benkay section.pickup {
  padding: 100px 0 60px 0;
}
.page_restaurant_single section.pickup ul li,
.page_benkay section.pickup ul li {
  margin-bottom: 10px;
}
.page_restaurant_single section.pickup ul li .label,
.page_benkay section.pickup ul li .label {
  font-size: 1.6rem;
}
.page_restaurant_single section.pickup ul li .text,
.page_benkay section.pickup ul li .text {
  font-size: 1.4rem;
  padding-left: 1.8rem;
}
.page_restaurant_single section.pickup img,
.page_benkay section.pickup img {
  width: 100%;
}
.page_restaurant_single section.restaurant_live_schedule,
.page_benkay section.restaurant_live_schedule {
  background-color: black;
  color: white;
}
@media (min-width: 992px) {
  .page_restaurant_single section.restaurant_live_schedule .container,
  .page_benkay section.restaurant_live_schedule .container {
    max-width: 900px;
  }
}
.page_restaurant_single section.restaurant_live_schedule .section_footer,
.page_benkay section.restaurant_live_schedule .section_footer {
  text-align: right;
}
.page_restaurant_single section.restaurant_live_schedule .section_footer a.btn,
.page_benkay section.restaurant_live_schedule .section_footer a.btn {
  display: inline-block;
  color: white;
  border: 1px solid white;
  padding: 8px 15px;
  font-size: 1.4rem;
}
.page_restaurant_single section.restaurant_live_schedule .showtime,
.page_benkay section.restaurant_live_schedule .showtime {
  color: #0080c8;
}
.page_restaurant_single section .ozashiki_text,
.page_benkay section .ozashiki_text {
  background-color: lightgray;
  padding: 15px;
  margin-top: 30px;
}
@media (min-width: 768px) {
  .page_restaurant_single section .ozashiki_text,
  .page_benkay section .ozashiki_text {
    padding: 30px;
  }
}
.page_restaurant_single section.menu_list ul.nav_category,
.page_benkay section.menu_list ul.nav_category {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: -15px 0 30px;
}
.page_restaurant_single section.menu_list ul.nav_category li,
.page_benkay section.menu_list ul.nav_category li {
  cursor: pointer;
  color: gray;
  transition: all 0.3s ease-out;
  white-space: nowrap;
  margin-left: 15px;
  margin-bottom: 15px;
}
.page_restaurant_single section.menu_list ul.nav_category li:hover,
.page_benkay section.menu_list ul.nav_category li:hover {
  opacity: 0.8;
}
.page_restaurant_single section.menu_list ul.nav_category li.current,
.page_benkay section.menu_list ul.nav_category li.current {
  color: black;
}
.page_restaurant_single section.menu_list ul.nav_category li:not(:last-child)::after,
.page_benkay section.menu_list ul.nav_category li:not(:last-child)::after {
  content: "|";
  margin-left: 15px;
  color: lightgray;
}
.page_restaurant_single section.menu_list div.nav_category_wrapper,
.page_benkay section.menu_list div.nav_category_wrapper {
  width: 100%;
  position: relative;
  margin-bottom: 30px;
}
.page_restaurant_single section.menu_list div.nav_category_wrapper::after,
.page_benkay section.menu_list div.nav_category_wrapper::after {
  content: "▼";
  color: white;
  position: absolute;
  top: 5px;
  right: 15px;
  z-index: 2;
  pointer-events: none;
}
.page_restaurant_single section.menu_list div.nav_category_wrapper select.nav_category,
.page_benkay section.menu_list div.nav_category_wrapper select.nav_category {
  width: 100%;
  text-align: center;
  outline: 1px solid black;
  background-color: black;
  color: white;
  padding: 5px 0;
}
.page_restaurant_single section.menu_list .wrapper,
.page_benkay section.menu_list .wrapper {
  /*display: flex;
  flex-wrap: wrap;
  margin: -15px;*/
}
.page_restaurant_single section.menu_list .wrapper .menu,
.page_benkay section.menu_list .wrapper .menu {
  /*margin-bottom: 30px;
  @include md {
  	margin-bottom: 15px;
  }
  &.hide {
  	display: none;
  }
  width: 50%;
  @include md {
  	width: 33%;
  }
  @include lg {
  	width: 25%;
  }
  padding: 15px;*/
}
.page_restaurant_single section.menu_list .wrapper .menu a,
.page_benkay section.menu_list .wrapper .menu a {
  display: block;
  position: relative;
  margin-bottom: 10px;
  padding-top: 75%;
  background-size: cover;
  background-position: center;
}
.page_restaurant_single section.menu_list .wrapper .menu a span.categories,
.page_benkay section.menu_list .wrapper .menu a span.categories {
  position: absolute;
  top: 0;
  left: 0;
  background-color: black;
  color: white;
  padding: 1px 4px 3px 4px;
  font-size: 1.1rem;
}
@media (min-width: 768px) {
  .page_restaurant_single section.menu_list .wrapper .menu a span.categories,
  .page_benkay section.menu_list .wrapper .menu a span.categories {
    font-size: 1.3rem;
  }
}
.page_restaurant_single section.menu_list .wrapper .menu h4,
.page_benkay section.menu_list .wrapper .menu h4 {
  font-size: 1.4rem;
  margin-bottom: 0.6em;
  line-height: 1.7;
}
@media (min-width: 768px) {
  .page_restaurant_single section.menu_list .wrapper .menu h4,
  .page_benkay section.menu_list .wrapper .menu h4 {
    font-size: 1.6rem;
  }
}
.page_restaurant_single section.menu_list .wrapper .menu p,
.page_benkay section.menu_list .wrapper .menu p {
  margin: 0;
  line-height: 1;
}
.page_restaurant_single section.menu_list .wrapper .menu p.period,
.page_benkay section.menu_list .wrapper .menu p.period {
  font-size: 1.2rem;
  margin-bottom: 0.6em;
  color: #666666;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .page_restaurant_single section.menu_list .wrapper .menu p.period,
  .page_benkay section.menu_list .wrapper .menu p.period {
    font-size: 1.3rem;
  }
}
.page_restaurant_single section.menu_list .wrapper .menu p.sub_title,
.page_benkay section.menu_list .wrapper .menu p.sub_title {
  font-size: 1.3rem;
}
.page_restaurant_single section.menu_list .wrapper .menu p.price,
.page_benkay section.menu_list .wrapper .menu p.price {
  font-size: 1.4rem;
  text-align: right;
  line-height: 1.6;
}
.page_restaurant_single section.drinkmenu .drinkmenu_btn,
.page_benkay section.drinkmenu .drinkmenu_btn {
  display: flex;
  width: 100%;
  background-color: black;
  justify-content: center;
  overflow: hidden;
}
.page_restaurant_single section.drinkmenu .drinkmenu_btn img,
.page_benkay section.drinkmenu .drinkmenu_btn img {
  height: 80px;
  line-height: 0;
}
@media (min-width: 992px) {
  .page_restaurant_single section.drinkmenu .drinkmenu_btn img,
  .page_benkay section.drinkmenu .drinkmenu_btn img {
    height: 120px;
  }
}
.page_restaurant_single section.piano,
.page_benkay section.piano {
  padding: 30px 0;
}
.page_restaurant_single section.piano h4,
.page_benkay section.piano h4 {
  font-size: 1.8rem;
  margin-bottom: 1em;
}
@media (min-width: 768px) {
  .page_restaurant_single section.floormap img,
  .page_benkay section.floormap img {
    margin: 0 15%;
    width: 70%;
  }
}
@media (min-width: 1200px) {
  .page_restaurant_single section.floormap img,
  .page_benkay section.floormap img {
    margin: 0 20%;
    width: 60%;
  }
}
.page_restaurant_single section.link,
.page_benkay section.link {
  text-align: center;
}
.page_restaurant_single section.link a,
.page_benkay section.link a {
  text-align: center;
  display: inline-block;
  margin: 0 auto;
  background-color: #c8c8c8;
  padding: 15px 45px;
}
.page_restaurant_single section.cheff .chef_head,
.page_benkay section.cheff .chef_head {
  margin-bottom: 1em;
}
.page_restaurant_single section.cheff p.position,
.page_benkay section.cheff p.position {
  font-size: 1.2rem;
  margin-bottom: 0.5em;
}
.page_restaurant_single section.cheff p.name,
.page_benkay section.cheff p.name {
  font-size: 2rem;
  margin: 0;
}
.page_restaurant_single section.oneharmony .inner,
.page_benkay section.oneharmony .inner {
  padding: 30px;
  background-color: #ded4c3;
}
.page_restaurant_single section.oneharmony .inner h4,
.page_benkay section.oneharmony .inner h4 {
  font-size: 2rem;
  margin-bottom: 1em;
}
.page_restaurant_single section.oneharmony .inner p,
.page_benkay section.oneharmony .inner p {
  margin-bottom: 0;
}
.page_restaurant_single section.oneharmony .inner .wrapper,
.page_benkay section.oneharmony .inner .wrapper {
  position: relative;
  text-align: center;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .page_restaurant_single section.oneharmony .inner .wrapper,
  .page_benkay section.oneharmony .inner .wrapper {
    margin-bottom: 0;
  }
}
.page_restaurant_single section.oneharmony .inner .wrapper img,
.page_benkay section.oneharmony .inner .wrapper img {
  width: 180px;
}
.page_restaurant_single section.dresscode .frame,
.page_benkay section.dresscode .frame {
  border: 1px solid black;
  padding: 15px;
}
@media (min-width: 768px) {
  .page_restaurant_single section.dresscode .frame,
  .page_benkay section.dresscode .frame {
    padding: 30px;
  }
}
.page_restaurant_single section.dresscode .frame h3,
.page_benkay section.dresscode .frame h3 {
  margin-bottom: 15px;
  font-size: 1.8rem;
}
.page_restaurant_single section.dresscode .frame ul,
.page_benkay section.dresscode .frame ul {
  margin: 0;
}
.page_restaurant_single section.restaurant_benkay_nav .benkay_nav_label,
.page_benkay section.restaurant_benkay_nav .benkay_nav_label {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: black;
  color: white;
  aspect-ratio: 27/15;
  width: 100%;
}
.page_restaurant_single section.restaurant_benkay_nav .benkay_nav_link img,
.page_benkay section.restaurant_benkay_nav .benkay_nav_link img {
  aspect-ratio: 27/15;
  -o-object-fit: cover;
     object-fit: cover;
}
.page_restaurant_single section.restaurant_benkay_nav .benkay_nav_link p,
.page_benkay section.restaurant_benkay_nav .benkay_nav_link p {
  text-align: center;
  margin-top: 10px;
}
.page_restaurant_single .restaurant_single_archive-btn,
.page_benkay .restaurant_single_archive-btn {
  position: fixed;
  right: 15px;
  bottom: 75px;
  background-color: black;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  z-index: 2;
}
.page_restaurant_single .restaurant_single_archive-btn .inner,
.page_benkay .restaurant_single_archive-btn .inner {
  width: 100%;
  height: 100%;
  position: relative;
}
.page_restaurant_single .restaurant_single_archive-btn .inner a,
.page_benkay .restaurant_single_archive-btn .inner a {
  display: block;
  width: 100%;
  color: white;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.page_restaurant_private .restaurant_private_rooms .restaurant_private_room {
  margin: 0 0 100px 0;
  padding: 50px 0;
}
.page_restaurant_private .restaurant_private_rooms .restaurant_private_room .copy {
  margin-bottom: 15px;
}
.page_restaurant_private .restaurant_private_rooms .restaurant_private_room h3 img {
  max-width: 320px;
  max-height: 100px;
  margin-bottom: 20px;
}
.page_restaurant_private .restaurant_private_rooms .restaurant_private_room h3 .style {
  display: block;
  font-size: 1.5rem;
}
.page_restaurant_private .restaurant_private_rooms .restaurant_private_room h3.tohlee img {
  max-height: 80px;
}
.page_restaurant_private .restaurant_private_rooms .restaurant_private_room .floor {
  margin-top: 30px;
}
.page_restaurant_private .restaurant_private_rooms .restaurant_private_room p.description {
  margin-bottom: 0em;
}
.page_restaurant_private .restaurant_private_rooms .restaurant_private_room p.infomation {
  margin-bottom: 0em;
}
.page_restaurant_private .restaurant_private_rooms .restaurant_private_room p.infomation.small {
  font-size: 1.2rem;
}
.page_restaurant_private .restaurant_private_rooms .restaurant_private_room .info_box {
  margin-top: 1em;
}
.page_restaurant_private .restaurant_private_rooms .restaurant_private_room .info_box h3 {
  font-size: 1.4rem;
  margin-bottom: 0.7em;
}
.page_restaurant_private .restaurant_private_rooms .restaurant_private_room .info_box .info_box_in {
  border: 1px solid #000000;
  padding: 15px;
  max-width: 640px;
}
.page_restaurant_private .restaurant_private_rooms .restaurant_private_room .info_box .info_box_in p {
  margin-bottom: 0;
}
.page_restaurant_private .restaurant_private_rooms .restaurant_private_room.olive {
  background-color: #d6ccbb;
}
.page_restaurant_private .restaurant_private_rooms .restaurant_private_room.large .restaurant_private_room_large_img p {
  margin: 0;
}
.page_restaurant_private .rooms .room {
  padding: 0;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .page_restaurant_private .rooms .room {
    padding: 30px 30px 10px 30px;
  }
}
.page_restaurant_private .rooms .room .slideshow .slideshow_inner {
  margin: 0 0 10px 0;
}
.page_restaurant_private .rooms .room .slideshow .pager {
  margin: 0;
}
.page_restaurant_private .rooms .room .slideshow .pager li {
  color: gray;
}
.page_restaurant_private .rooms .room .infomation {
  padding: 15px;
  width: 100%;
}
.page_restaurant_private .rooms .room .infomation p {
  margin: 0 0 5px 0;
  padding: 0;
  line-height: 1.4em;
}
.page_restaurant_private .rooms .room .infomation p.title_sub {
  font-size: 1.4rem;
}
.page_restaurant_private .rooms .room .infomation p.title {
  font-size: 2rem;
  margin-bottom: 15px;
}
.page_restaurant_private .rooms .room .infomation p.type {
  margin-bottom: 15px;
}
.page_wingj .wingj_header {
  text-align: center;
  padding-bottom: 0;
}
.page_wingj .wingj_header h2 img {
  height: 90px;
}
@media (min-width: 768px) {
  .page_wingj .wingj_header h2 img {
    height: 120px;
  }
}
.page_wingj .wingj_header .copy {
  font-size: 1.8rem;
}
@media (min-width: 768px) {
  .page_wingj .wingj_header .copy {
    font-size: 2.2rem;
  }
}
.page_wingj .wingj_header .schedule {
  font-size: 2.2rem;
}
@media (min-width: 768px) {
  .page_wingj .wingj_header .schedule {
    font-size: 2.8rem;
  }
}
.page_wingj .wingj_header .title_sub {
  font-size: 2.2rem;
}
@media (min-width: 768px) {
  .page_wingj .wingj_header .title_sub {
    font-size: 2.8rem;
  }
}
.page_wingj .wingj_header .description {
  margin: 0;
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  .page_wingj .wingj_header .description {
    font-size: 1.6rem;
  }
}
.page_wingj .wingj_content .menus .menu {
  display: block;
  background-color: white;
}
.page_wingj .wingj_content .menus .menu .data {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 15px;
}
.page_wingj .wingj_content .menus .menu .data .restaurant {
  text-align: center;
  margin-bottom: 0.5em;
}
.page_wingj .wingj_content .menus .menu .data .restaurant .logo {
  margin: 0 auto;
  max-width: 60%;
  max-height: 100px;
}
.page_wingj .wingj_content .menus .menu .data .info {
  padding: 1em 0 0 0;
}
.page_wingj .wingj_content .menus .menu .data .info .copy {
  font-size: 1.8rem;
  line-height: 1.6;
  margin-bottom: 0.5em;
}
.page_wingj .wingj_content .menus .menu .data .info .message {
  font-size: 1.4rem;
}
@media (min-width: 1400px) {
  .page_wingj .wingj_content .menus .menu .data {
    flex-direction: row;
  }
  .page_wingj .wingj_content .menus .menu .data .restaurant {
    width: 45%;
    margin-bottom: 0;
  }
  .page_wingj .wingj_content .menus .menu .data .restaurant .logo {
    margin: 0;
    max-width: 100%;
    max-height: 300px;
  }
  .page_wingj .wingj_content .menus .menu .data .restaurant .floor,
  .page_wingj .wingj_content .menus .menu .data .restaurant .name {
    font-size: 1.3rem;
    display: block;
    text-align: center;
  }
  .page_wingj .wingj_content .menus .menu .data .info {
    width: 55%;
  }
}

.page_restaurant_gift .content_one {
  max-width: 960px;
  margin: 0 auto;
}
.page_restaurant_gift .content_one .coupon_price {
  background-color: #d4cab9;
  padding: 1em;
  margin-bottom: 1em;
}
.page_restaurant_gift .content_one .coupon_price p:last-child {
  margin-bottom: 0;
}

.page_restaurant_birthday .content_one {
  max-width: 960px;
  margin: 0 auto;
}

.page_restaurant_allergy .content_one {
  max-width: 960px;
  margin: 0 auto;
}

.page_restaurant_dinner .content_one {
  max-width: 960px;
  margin: 0 auto;
}

.page_restaurant_jalcoupon .content_one {
  max-width: 960px;
  margin: 0 auto;
}

.page_restaurant_celebration .content_one {
  max-width: 960px;
  margin: 0 auto;
}
.page_restaurant_celebration .content_one .celebration_title {
  text-align: center;
  margin-bottom: 70px;
}
.page_restaurant_celebration .content_one .celebration_title img {
  max-width: 170px;
  margin-bottom: 30px;
}
.page_restaurant_celebration .content_one .celebration_title h3 {
  font-size: 1.5rem;
  line-height: 1.8;
}
.page_restaurant_celebration .content_one .celebration_title h4 {
  font-size: 1.5rem;
  line-height: 1.8;
  font-weight: bold;
}
.page_restaurant_celebration .content_one .topic_title {
  margin-bottom: 1.5em;
}
.page_restaurant_celebration .content_one .topic_title h4 {
  font-size: 1.4rem;
  color: #ffffff;
}
@media (min-width: 768px) {
  .page_restaurant_celebration .content_one .topic_title h4 {
    font-size: 1.8rem;
  }
}
.page_restaurant_celebration .content_one .topic_title h4 span {
  background-color: #cdae2d;
  padding: 7px 10px;
  margin-right: 0.3em;
}
@media (min-width: 768px) {
  .page_restaurant_celebration .content_one .topic_title h4 span {
    margin-right: 0.5em;
  }
}
.page_restaurant_celebration .content_one .topic_title h4 span:last-child {
  margin-right: 0;
}
.page_restaurant_celebration .content_one .topic_one {
  margin-bottom: 70px;
}
.page_restaurant_celebration .content_one .topic_one.child {
  margin-bottom: 40px;
}
.page_restaurant_celebration .content_one .topic_one p span.ud {
  border-bottom: 1px solid #000000;
}
.page_restaurant_celebration .content_one .topic_one ul {
  padding-top: 1.5em;
}
.page_restaurant_celebration .content_one .topic_one .topic_title {
  margin-bottom: 1.5em;
}
.page_restaurant_celebration .content_one .topic_one .topic_title h4 {
  font-size: 1.4rem;
  color: #ffffff;
}
@media (min-width: 768px) {
  .page_restaurant_celebration .content_one .topic_one .topic_title h4 {
    font-size: 1.8rem;
  }
}
.page_restaurant_celebration .content_one .topic_one .topic_title h4 span {
  background-color: #cdae2d;
  padding: 7px 10px;
  margin-right: 0.3em;
}
@media (min-width: 768px) {
  .page_restaurant_celebration .content_one .topic_one .topic_title h4 span {
    margin-right: 0.5em;
  }
}
.page_restaurant_celebration .content_one .topic_one .topic_title h4 span:last-child {
  margin-right: 0;
}
.page_restaurant_celebration .content_one .topic_one .topic_title h4 span.price {
  background: none;
  color: #000000;
  font-family: "futura-pt", sans-serif;
  font-size: 2.8rem;
  font-weight: 400;
}
.page_restaurant_celebration .content_one .topic_one .topic_title h5 {
  margin-top: 20px;
}
.page_restaurant_celebration .content_one .topic_one .topic_title h5 span.price {
  background: none;
  color: #000000;
  font-family: "futura-pt", sans-serif;
  font-size: 2.8rem;
  font-weight: 400;
}
.page_restaurant_celebration .content_one .topic_one .price_box {
  padding-top: 1em;
  overflow: hidden;
}
.page_restaurant_celebration .content_one .topic_one .price_box h3.name {
  font-family: "Shippori Mincho", serif;
  font-size: 2.2rem;
  float: left;
  margin-right: 3em;
}
.page_restaurant_celebration .content_one .topic_one .price_box h4.price {
  font-family: "futura-pt", sans-serif;
  font-size: 2.8rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  float: left;
}
.page_restaurant_celebration .content_one .topic_one .price_box h4.price span.small {
  font-size: 1.4rem;
  font-weight: normal;
}
.page_restaurant_celebration .content_one .topic_one.benkay_price {
  margin-bottom: 0;
}
.page_restaurant_celebration .content_one .topic_one.benkay_price h3 {
  margin-bottom: 1em;
}
.page_restaurant_celebration .content_one .topic_one.benkay_price .price_box {
  margin-bottom: 1.5em;
}
.page_restaurant_celebration .content_one .topic_one.benkay_price .price_box:last-child {
  margin-bottom: 0;
}
.page_restaurant_celebration .content_one .topic_one.benkay_price .price_box h3.name {
  width: 10em;
}
.page_restaurant_celebration .content_one .celebrationtxt {
  margin-bottom: 4em;
}
.page_restaurant_celebration .content_one .celebration_box {
  padding: 15px;
  background-color: lightgray;
}
@media (min-width: 768px) {
  .page_restaurant_celebration .content_one .celebration_box {
    padding: 30px;
  }
}
.page_restaurant_celebration .content_one .celebration_box ul.celebrationlist li {
  margin-bottom: 2em;
}
.page_restaurant_celebration .content_one .celebration_box ul.celebrationlist li:last-child {
  margin-bottom: 0;
}
.page_restaurant_celebration .content_one .yuino_box {
  margin-bottom: 60px;
  overflow: hidden;
}
.page_restaurant_celebration .content_one .yuino_box h4 {
  font-weight: bold;
  margin-bottom: 1em;
}
.page_restaurant_celebration .content_one .yuino_box h4.flt_left {
  width: auto;
  float: none;
  padding-top: 0;
}
@media (min-width: 992px) {
  .page_restaurant_celebration .content_one .yuino_box h4.flt_left {
    width: 200px;
    float: left;
    padding-top: 0.5em;
  }
}
.page_restaurant_celebration .content_one .yuino_box p.yuino_txt {
  font-size: 1.8rem;
  font-family: "Shippori Mincho", serif;
}
@media (min-width: 992px) {
  .page_restaurant_celebration .content_one .yuino_box p.yuino_txt {
    font-size: 2.1rem;
  }
}
.page_restaurant_celebration .content_one .yuino_box p.yuino_txt.flt_left {
  max-width: 740px;
  float: left;
}
.page_restaurant_celebration .content_one .yuino_box p.yuino_txt.small {
  font-size: 1.7rem !important;
}
.page_restaurant_celebration .content_one .yuino_box .yuino_one {
  margin-bottom: 70px;
}
.page_restaurant_celebration .content_one .yuino_box .yuino_one:last-child {
  margin-bottom: 0;
}
.page_restaurant_celebration .content_one .yuino_box .yuino_one .yuino_one_title {
  margin-bottom: 40px;
}
.page_restaurant_celebration .content_one .yuino_box .yuino_one .yuino_one_title h3 {
  font-family: "Shippori Mincho", serif;
  font-size: 1.7rem;
  line-height: 1.7;
  margin-bottom: 0.7em;
}
.page_restaurant_celebration .content_one .yuino_box .yuino_one .yuino_one_title h2 {
  font-size: 3.6rem;
  font-weight: normal;
  vertical-align: middle;
}
.page_restaurant_celebration .content_one .yuino_box .yuino_one .yuino_one_title h2 span.small {
  font-size: 1.6rem;
  font-weight: bold;
  margin-right: 2em;
}
.page_restaurant_celebration .content_one .yuino_box .yuino_one .yuino_one_content h4 {
  font-size: 1.4rem;
  margin-bottom: 1em;
}
.page_restaurant_celebration .content_one .yuino_box .yuino_one .yuino_one_content p {
  font-size: 1.3rem;
  clear: both;
}
.page_restaurant_celebration .content_one .yuino_box .yuino_one .yuino_one_content dl {
  font-size: 1.3rem;
}
.page_restaurant_celebration .content_one .yuino_box .yuino_one .yuino_one_content dl dt {
  float: left;
  clear: left;
  width: 5em;
  font-weight: normal;
}
.page_restaurant_celebration .content_one .yuino_box .yuino_one .yuino_one_content dl dd {
  float: left;
  margin-left: 1em;
}
.page_restaurant_celebration .content_one .yuino_box .yuino_price {
  padding-top: 1em;
  overflow: hidden;
}
.page_restaurant_celebration .content_one .yuino_box .yuino_price h3.name {
  font-size: 1.7rem;
  color: #ffffff;
  float: none;
  margin-right: 0em;
  margin-bottom: 1em;
}
.page_restaurant_celebration .content_one .yuino_box .yuino_price h3.name span {
  background-color: #cdae2d;
  padding: 7px 10px;
  margin-right: 0.5em;
}
@media (min-width: 992px) {
  .page_restaurant_celebration .content_one .yuino_box .yuino_price h3.name {
    float: left;
    margin-right: 1em;
  }
}
.page_restaurant_celebration .content_one .yuino_box .yuino_price h5.price {
  font-family: "futura-pt", sans-serif;
  font-size: 2.8rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  float: none;
}
.page_restaurant_celebration .content_one .yuino_box .yuino_price h5.price span.small {
  font-size: 1.4rem;
  font-weight: normal;
}
@media (min-width: 992px) {
  .page_restaurant_celebration .content_one .yuino_box .yuino_price h5.price {
    float: left;
  }
}
.page_restaurant_celebration .content_one .yuino_box .yuino_price p {
  clear: both;
}

.page_banquet_plans .mod-banquet_plans div.title {
  display: none;
}
.page_banquet_plans .scroll_footer {
  display: none;
}

.page_menu_single section.page_header h2,
.page_banquet_plan_single section.page_header h2 {
  margin-bottom: 0;
}
.page_menu_single section.page_header h2 img,
.page_banquet_plan_single section.page_header h2 img {
  width: 50%;
  max-width: 320px;
}
.page_menu_single section.page_header p,
.page_banquet_plan_single section.page_header p {
  margin-bottom: 30px;
}
.page_menu_single section.page_header h3,
.page_banquet_plan_single section.page_header h3 {
  margin-bottom: 0;
  font-size: 1.6rem;
}
.page_menu_single section.mainvisual,
.page_banquet_plan_single section.mainvisual {
  background-color: white;
  position: relative;
}
.page_menu_single section.mainvisual h1,
.page_banquet_plan_single section.mainvisual h1 {
  width: 100%;
  text-align: center;
  margin: 60px 0;
  font-size: 2rem;
}
.page_menu_single section.mainvisual ul.cover,
.page_banquet_plan_single section.mainvisual ul.cover {
  position: relative;
  display: block;
  width: 100%;
}
.page_menu_single section.mainvisual ul.cover::before,
.page_banquet_plan_single section.mainvisual ul.cover::before {
  padding-top: 75%;
  content: "";
  display: block;
}
.page_menu_single section.mainvisual ul.cover li,
.page_banquet_plan_single section.mainvisual ul.cover li {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 0.3s ease-out;
}
.page_menu_single section.mainvisual ul.cover li.show,
.page_banquet_plan_single section.mainvisual ul.cover li.show {
  opacity: 1;
}
.page_menu_single section.mainvisual ul.thumbnail,
.page_banquet_plan_single section.mainvisual ul.thumbnail {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
}
.page_menu_single section.mainvisual ul.thumbnail::before,
.page_banquet_plan_single section.mainvisual ul.thumbnail::before {
  padding-top: 16%;
  content: "";
  display: block;
}
.page_menu_single section.mainvisual ul.thumbnail li,
.page_banquet_plan_single section.mainvisual ul.thumbnail li {
  position: absolute;
  top: 0;
  left: 100%;
  display: block;
  width: 25%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 1;
  transition: all 0.2s ease-out;
  cursor: pointer;
  border: 2px solid white;
  box-sizing: border-box;
  pointer-events: none;
  z-index: 2;
}
.page_menu_single section.mainvisual ul.thumbnail li.thumb,
.page_banquet_plan_single section.mainvisual ul.thumbnail li.thumb {
  opacity: 1;
  pointer-events: auto;
}
.page_menu_single section.mainvisual ul.thumbnail li.thumb:hover,
.page_banquet_plan_single section.mainvisual ul.thumbnail li.thumb:hover {
  opacity: 1;
}
.page_menu_single section.mainvisual ul.thumbnail li.thumb.thumb_3,
.page_banquet_plan_single section.mainvisual ul.thumbnail li.thumb.thumb_3 {
  left: 75%;
  z-index: 5;
}
.page_menu_single section.mainvisual ul.thumbnail li.thumb.thumb_2,
.page_banquet_plan_single section.mainvisual ul.thumbnail li.thumb.thumb_2 {
  left: 50%;
  z-index: 4;
}
.page_menu_single section.mainvisual ul.thumbnail li.thumb.thumb_1,
.page_banquet_plan_single section.mainvisual ul.thumbnail li.thumb.thumb_1 {
  left: 25%;
  z-index: 3;
}
.page_menu_single section.mainvisual ul.thumbnail li.thumb.thumb_0,
.page_banquet_plan_single section.mainvisual ul.thumbnail li.thumb.thumb_0 {
  left: 0;
  z-index: 1;
}
.page_menu_single section.mainvisual ul.thumbnail .menu_thumbnail_btn,
.page_banquet_plan_single section.mainvisual ul.thumbnail .menu_thumbnail_btn {
  width: 30px;
  height: 100%;
  position: absolute;
  bottom: 0;
  z-index: 6;
  cursor: pointer;
  background-position: center;
  transition: all 0.3s ease-out;
}
.page_menu_single section.mainvisual ul.thumbnail .menu_thumbnail_btn.menu_thumbnail_btn_prev,
.page_banquet_plan_single section.mainvisual ul.thumbnail .menu_thumbnail_btn.menu_thumbnail_btn_prev {
  background-image: url(../images/arrow_prev.svg);
  left: 0;
}
.page_menu_single section.mainvisual ul.thumbnail .menu_thumbnail_btn.menu_thumbnail_btn_next,
.page_banquet_plan_single section.mainvisual ul.thumbnail .menu_thumbnail_btn.menu_thumbnail_btn_next {
  background-image: url(../images/arrow_next.svg);
  right: 0;
}
.page_menu_single section.mainvisual ul.thumbnail .menu_thumbnail_btn:hover,
.page_banquet_plan_single section.mainvisual ul.thumbnail .menu_thumbnail_btn:hover {
  background-color: rgba(0, 0, 0, 0.3);
}
.page_menu_single section.takeout a,
.page_banquet_plan_single section.takeout a {
  display: block;
  padding: 30px 0;
  width: 90%;
  margin: 0 5%;
  background-color: #d6bc46;
  color: white;
  text-align: center;
}
.page_menu_single section.information .copy,
.page_banquet_plan_single section.information .copy {
  font-size: 1.6rem;
}
.page_menu_single section.information .title,
.page_banquet_plan_single section.information .title {
  font-size: 2.2rem;
  margin-bottom: 5px;
  padding: 0;
}
.page_menu_single section.information .description,
.page_banquet_plan_single section.information .description {
  font-size: 1.6rem;
}
.page_menu_single section.information table,
.page_banquet_plan_single section.information table {
  width: 100%;
}
.page_menu_single section.information table a,
.page_banquet_plan_single section.information table a {
  color: #d6bc46;
  word-break: break-all;
}
.page_menu_single section.information table tr,
.page_banquet_plan_single section.information table tr {
  font-size: 1.4rem;
}
.page_menu_single section.information table tr:first-child,
.page_banquet_plan_single section.information table tr:first-child {
  border-top: 1px solid #e5e5e5;
}
.page_menu_single section.information table tr th,
.page_banquet_plan_single section.information table tr th {
  left: 0;
  background-color: #eae0cf;
  padding: 10px;
  white-space: nowrap;
  text-align: center;
  font-weight: normal;
  font-size: 1.3rem;
}
@media (min-width: 768px) {
  .page_menu_single section.information table tr th,
  .page_banquet_plan_single section.information table tr th {
    font-size: 1.4rem;
  }
}
.page_menu_single section.information table tr td,
.page_banquet_plan_single section.information table tr td {
  padding: 10px 15px;
  font-size: 1.3rem;
}
@media (min-width: 768px) {
  .page_menu_single section.information table tr td,
  .page_banquet_plan_single section.information table tr td {
    font-size: 1.4rem;
  }
}
.page_menu_single section.information table tr td p,
.page_banquet_plan_single section.information table tr td p {
  font-size: 1.6rem;
}
.page_menu_single section.information table tr td p.sub,
.page_banquet_plan_single section.information table tr td p.sub {
  font-size: 1.2rem;
}
.page_menu_single section.information table tr td dl dt,
.page_banquet_plan_single section.information table tr td dl dt {
  float: none;
  clear: left;
  margin-right: 0.5em;
  width: auto;
  font-weight: normal;
}
@media (min-width: 768px) {
  .page_menu_single section.information table tr td dl dt,
  .page_banquet_plan_single section.information table tr td dl dt {
    float: left;
    clear: left;
    margin-right: 0.5em;
    width: 10em;
    font-weight: normal;
  }
}
.page_menu_single section.information table tr td dl dd,
.page_banquet_plan_single section.information table tr td dl dd {
  float: left;
  margin-left: 1em;
  margin-bottom: 1.5em;
}
.page_menu_single section .back_btn,
.page_banquet_plan_single section .back_btn {
  width: 100%;
  min-width: 300px;
  text-align: center;
  padding: 3em;
}
.page_menu_single section .back_btn a,
.page_banquet_plan_single section .back_btn a {
  background-color: black;
  color: white;
  padding: 1em 3em;
}

.page_banquet_plan_single .mainvisual img {
  width: 100%;
}
.page_banquet_plan_single .mainvisual .summary {
  margin: 2em 0;
  font-size: 1.6rem;
}
.page_banquet_plan_single .courses .course {
  padding: 1em;
  background-color: #eae0cf;
  margin-bottom: 2em;
}
@media (min-width: 768px) {
  .page_banquet_plan_single .courses .course {
    padding: 2em;
  }
}
.page_banquet_plan_single .courses .course.open h3 {
  margin-bottom: 0.8em;
}
.page_banquet_plan_single .courses .course.open h3::after {
  content: "ー";
}
.page_banquet_plan_single .courses .course.open .detail {
  padding: 1em;
  max-height: 1000px;
}
@media (min-width: 768px) {
  .page_banquet_plan_single .courses .course.open .detail {
    padding: 2em;
  }
}
.page_banquet_plan_single .courses .course h3 {
  margin-bottom: 0;
  transition: all 0.3s ease-out;
  position: relative;
  display: flex;
  justify-content: space-between;
  font-weight: bold;
}
.page_banquet_plan_single .courses .course h3::after {
  content: "＋";
  margin: 0 0 0 auto;
  cursor: pointer;
}
.page_banquet_plan_single .courses .course .detail {
  background-color: white;
  overflow-y: hidden;
  max-height: 0;
  padding: 0 1em;
  transition: all 0.3s ease-out;
}
@media (min-width: 768px) {
  .page_banquet_plan_single .courses .course .detail {
    padding: 0 2em;
  }
}
.page_banquet_plan_single .courses .course .detail hr {
  margin: 1em 0;
}
.page_banquet_plan_single .courses .course .detail .detail_item {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .page_banquet_plan_single .courses .course .detail .detail_item {
    flex-direction: row;
    gap: 30px;
  }
}
.page_banquet_plan_single .courses .course .detail .detail_item .title {
  width: 100px;
  padding: 0;
}
.page_banquet_plan_single .pdf {
  width: 100%;
  min-width: 300px;
  text-align: center;
  padding: 3em;
}
.page_banquet_plan_single .pdf a {
  background-color: gray;
  color: white;
  padding: 1em 3em;
}
.page_banquet_plan_single .course_note .course_note_text:not(:last-child) {
  margin-bottom: 1em;
}

.page_benkei a.benkeis {
  display: block;
  width: 100%;
}
.page_benkei a.benkeis h3 {
  width: 100%;
  text-align: center;
  margin-bottom: 15px;
}
.page_benkei a.benkeis img {
  aspect-ratio: 16/10;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 30px;
}

.page_banquet_index section.page_content ul.banquet_list li p {
  text-align: center;
  line-height: 1.6;
}
.page_banquet_index section.page_content ul.banquet_list li p.type {
  margin: 1em 0 0.5em;
}
.page_banquet_index section.page_content ul.banquet_list li p.name {
  margin-bottom: 0.75em;
  font-size: 2rem;
  font-family: "Shippori Mincho", serif;
  letter-spacing: 0.1em;
}
.page_banquet_index section.page_content ul.banquet_list li p.description {
  margin-bottom: 1em;
}
.page_banquet_index section.page_content .cigarette {
  text-align: center;
  margin: 30px 0;
}
.page_banquet_index section.page_content .banquet_index_point {
  margin-bottom: 4rem;
}
.page_banquet_index section.page_content .banquet_index_point figure {
  background-color: black;
  text-align: center;
}
.page_banquet_index section.page_content .banquet_index_point figure img {
  width: 100%;
  margin: 0 auto;
}
.page_banquet_index section.page_content .banquet_index_point .banquet_index_point_title {
  font-family: "Shippori Mincho", serif;
  margin: 1em 0 0.5em 0;
  font-size: 1.8rem;
  text-align: left;
}
@media (min-width: 768px) {
  .page_banquet_index section.page_content .banquet_index_point .banquet_index_point_title {
    text-align: center;
    font-size: 2rem;
  }
}
.page_banquet_index section.mod-banquet_plans .banquet_plans_item_wrapper:nth-of-type(n + 7) {
  display: none;
}

.page_banquet_single.en section.mainvisual_slideshow .copy {
  letter-spacing: 0.1em;
}
.page_banquet_single.en section.mainvisual_slideshow .text {
  letter-spacing: 0.06em;
}
.page_banquet_single section.page_header {
  padding-bottom: 0;
}
.page_banquet_single section.page_header .title {
  margin-bottom: 30px;
}
.page_banquet_single section.page_header .title h2 {
  font-family: "Shippori Mincho", serif;
}
.page_banquet_single section.page_header .sub_nav {
  display: flex;
  justify-content: center;
}
.page_banquet_single section.page_header .sub_nav li {
  padding: 0 10px;
  text-align: center;
  border-right: 1px solid lightgray;
}
.page_banquet_single section.page_header .sub_nav li:last-child {
  border-right: 0;
}
.page_banquet_single section.page_header .sub_nav li a {
  color: gray;
}
.page_banquet_single section.page_header .sub_nav li a.current {
  color: black;
}
.page_banquet_single section.page_header .sub_nav li a p {
  margin: 0 0 10px 0;
  line-height: 1em;
}
.page_banquet_single section.mainvisual_slideshow {
  padding-top: 0;
}
.page_banquet_single section.mainvisual_slideshow .slideshow {
  background-color: #c8c8c8;
}
.page_banquet_single section.banquet_one {
  padding-top: 40px;
  padding-bottom: 0;
}
.page_banquet_single section.banquet_one.banquet_btn {
  padding-bottom: 60px;
}
.page_banquet_single section.banquet_one .title h3 {
  font-size: 1.8rem;
  padding-bottom: 0.4em;
  letter-spacing: 0.2em;
  border-bottom: 1px solid #000000;
  cursor: pointer;
}
.page_banquet_single section.banquet_one .banquet_content {
  max-width: 960px;
  margin: 0 auto;
}
.page_banquet_single section.banquet_one .banquet_content.layout img {
  width: 100%;
}
.page_banquet_single section.banquet_one .banquet_content .banquet_content_one {
  margin-bottom: 5em;
}
.page_banquet_single section.banquet_one .banquet_content .banquet_content_one:last-child {
  margin-bottom: 0;
}
.page_banquet_single section.banquet_one .banquet_content .banquet_content_one .content_title h4 {
  font-size: 1.4rem;
  margin-bottom: 0.5em;
  position: relative;
  padding-left: 15px;
  letter-spacing: 0.15em;
}
.page_banquet_single section.banquet_one .banquet_content .banquet_content_one .content_title h4:before {
  background: #000;
  content: "";
  height: 7px;
  width: 7px;
  left: 0;
  position: absolute;
  top: 5px;
}
.page_banquet_single section.banquet_one .banquet_content .banquet_content_one table thead {
  background-color: #d5d5d5;
  text-align: center;
}
.page_banquet_single section.banquet_one .banquet_content .banquet_content_one table tbody th {
  font-weight: normal;
  background-color: #cfcfcf;
  text-align: center;
}
.page_banquet_single section.banquet_one .banquet_content .banquet_content_one table tbody td {
  text-align: center;
  vertical-align: middle;
}
.page_banquet_single section.banquet_one .banquet_content .banquet_content_one table.txtdata td {
  word-break: break-all;
}
.page_banquet_single section.banquet_one .banquet_content .banquet_content_one table.txt-nowrap {
  white-space: nowrap;
}
.page_banquet_single section.banquet_one .banquet_content .btn {
  border-radius: 0;
  padding: 7px;
}
.page_banquet_single section.banquet_one .banquet_content .btn .btn-lg {
  font-size: 1.6rem;
}
.page_banquet_single .toggle_box {
  display: none;
}
.page_banquet_single .toggle_box.open {
  display: block;
}

.page_banquet_option .content_one {
  max-width: 660px;
  margin: 0 auto;
}
.page_banquet_option .content_one table {
  margin: 0 auto;
}
@media (min-width: 992px) {
  .page_banquet_option .content_one table {
    max-width: 960px;
  }
}
.page_banquet_option .content_one table tbody td {
  text-align: end !important;
}

.page_news_index .news_list .news_list_one .news_img {
  margin-bottom: 16px;
}
.page_news_index .news_list .news_list_one .news_txt {
  margin-bottom: 0.5em;
}
.page_news_index .news_list .news_list_one .news_txt h3 {
  font-size: 1.7rem;
  line-height: 1.6;
}
.page_news_index .news_list .news_list_one .news_txt time {
  font-size: 1.4rem;
  color: #808080;
}
.page_news_index .news_list .news_list_one .category_mark p {
  font-size: 1.3rem;
}
.page_news_index .news_list .news_list_one .category_mark p span {
  background-color: #c8c8c8;
  padding: 3px 4px;
}

.page_news_single .content_one {
  max-width: 960px;
  margin: 0 auto;
}
.page_news_single .content_one .news_header {
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 1em;
  margin-bottom: 3em;
}
.page_news_single .content_one .news_header p.category {
  font-size: 1.4rem;
  color: #000000;
  margin-bottom: 1em;
}
.page_news_single .content_one .news_header p.category span {
  background-color: #c8c8c8;
  padding: 2px 5px;
}
.page_news_single .content_one .news_header h3 {
  font-size: 3.3rem;
  line-height: 1.7;
}
.page_news_single .content_one .news_mainvisual {
  margin-bottom: 40px;
}
.page_news_single .content_one .news_content h2.subtitle {
  font-size: 2rem;
  margin-bottom: 1em;
  font-weight: 700;
}
.page_news_single .content_one .news_content p.summary {
  font-size: 1.6rem;
  line-height: 1.9;
  padding: 1.5em;
  background-color: #c8c8c8;
  margin-bottom: 1.5em;
}
.page_news_single .content_one .news_content p.text {
  font-size: 1.6rem;
  line-height: 1.9;
  padding-bottom: 6em;
}
.page_news_single .content_one .news_content div.text {
  font-size: 1.6rem;
  line-height: 1.9;
  padding-bottom: 6em;
}
.page_news_single .content_one .news_content p.image {
  padding-bottom: 30px;
}
.page_news_single .content_one .news_content p.file {
  padding: 1.5em;
  background-color: #c8c8c8;
}

.page_contact .content_one {
  max-width: 960px;
  margin: 0 auto;
}
.page_contact .content_one .attention {
  margin-top: 20px;
  border: 1px solid #000000;
  padding: 10px;
}
.page_contact section.category_box {
  padding-bottom: 0;
}
.page_contact .tel_box {
  margin-bottom: 30px;
  padding: 20px;
  background-color: #c8c8c8;
}
.page_contact .tel_box p {
  font-size: 1.7rem;
  text-align: center;
  margin-bottom: 0;
}
.page_contact .tel_box dl {
  text-align: center;
}
@media (min-width: 768px) {
  .page_contact .tel_box dl {
    text-align: left;
  }
}
.page_contact .tel_box dl dt {
  float: left;
  clear: left;
  margin-right: 0.5em;
  width: 40%;
}
.page_contact .tel_box dl dd {
  font-size: 1.7rem;
  float: left;
  margin-left: 1em;
}
.page_contact .form_box {
  padding: 15px;
  background-color: #c8c8c8;
  font-size: 1.6rem;
}
@media (min-width: 768px) {
  .page_contact .form_box {
    padding: 30px;
  }
}
.page_contact .form_box .form_underline {
  border-bottom: 1px solid #ffffff;
  padding-bottom: 1.4em;
}
.page_contact .form_box input,
.page_contact .form_box select {
  font-size: 1.6rem;
}
.page_contact .form_box label span {
  background-color: #000000;
  color: #ffffff;
  font-size: 1.2rem;
  padding: 2px 5px;
}
.page_contact .form_box .cell span {
  width: 7em;
}
.page_contact .form_box a {
  color: #000000 !important;
  text-decoration: underline;
}
.page_contact .form_txt_t a {
  color: #000000;
  text-decoration: underline;
}
.page_contact .form_txt_t .faq_btn {
  padding-top: 30px;
}
.page_contact .form_txt_t .faq_btn a {
  color: #000000;
  text-decoration: none;
}
.page_contact p.form_txt span {
  background-color: #000000;
  color: #ffffff;
  font-size: 1.2rem;
  padding: 2px 5px;
}
.page_contact .form_btn .btn {
  min-width: 200px;
  padding: 7px;
  border-radius: 0;
}

.page_access .content_one {
  max-width: 960px;
  margin: 0 auto;
}

.page_standard .content_one {
  max-width: 960px;
  margin: 0 auto;
}
.page_standard .content_one .content_in {
  padding-top: 1em;
}
.page_standard .content_one .content_in .content_in_box {
  border: 1px solid #d5d5d5;
  border-radius: 10px;
  padding: 15px;
}
.page_standard .content_one .content_in .content_in_box .content_in_title {
  margin-bottom: 0.7em;
  text-align: center;
}
@media (min-width: 768px) {
  .page_standard .content_one .content_in .content_in_box .content_in_title {
    text-align: left;
  }
}
.page_standard .content_one .content_in .content_in_box .content_in_title h4 {
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  line-height: 1.7;
}

.page_facilities .content_one {
  max-width: 960px;
  margin: 0 auto;
}
.page_facilities .content_one p {
  margin-bottom: 0.5em;
}
.page_facilities .content_one table tbody {
  border-top: 1px solid #e5e5e5;
}
.page_facilities .content_one table tbody th {
  text-align: center;
}
.page_facilities .content_one table tbody td {
  text-align: left !important;
}
.page_facilities .content_one table tbody td dt {
  font-weight: normal;
  float: left;
  clear: both;
}
.page_facilities .content_one table tbody td dd {
  float: right;
  margin-left: 1em;
}
.page_facilities .content_one table.nikko tbody th {
  background-color: #ded4c3 !important;
}
.page_facilities .content_one table.porte tbody th {
  background-color: #dcbeaa !important;
}

.page_recruit #recruit_1,
.page_recruit #recruit_2,
.page_recruit #recruit_3,
.page_recruit #recruit_4 {
  padding-top: 80px;
  margin-top: -80px;
}
.page_recruit .content_one {
  max-width: 960px;
  margin: 0 auto;
}
.page_recruit .content_one.executive_message .content_title h4 {
  margin-bottom: 2em !important;
  letter-spacing: 0.15em;
}
.page_recruit .content_one ul.recruit_list {
  display: flex;
  justify-content: flex-start;
}
@media (min-width: 768px) {
  .page_recruit .content_one ul.recruit_list {
    justify-content: center;
  }
}
.page_recruit .content_one ul.recruit_list li {
  cursor: pointer;
  transition: all 0.3s ease-out;
  white-space: nowrap;
  margin-left: 15px;
  margin-bottom: 15px;
}
.page_recruit .content_one ul.recruit_list li a {
  color: gray;
}
.page_recruit .content_one ul.recruit_list li a:hover {
  opacity: 0.8;
  color: gray;
}
.page_recruit .content_one ul.recruit_list li.current a {
  color: black;
}
.page_recruit .content_one ul.recruit_list li:not(:last-child)::after {
  content: "|";
  margin-left: 15px;
  color: lightgray;
}
.page_recruit .content_one h3 {
  font-size: 1.3rem;
  margin-bottom: 2em;
}
@media (min-width: 768px) {
  .page_recruit .content_one h3 {
    font-size: 1.4rem;
  }
}
.page_recruit .content_one .recruit_occupation .recruit_one {
  margin-bottom: 42px;
}
.page_recruit .content_one .recruit_occupation .recruit_title {
  padding: 2px 5px;
}
.page_recruit .content_one .recruit_occupation .recruit_title h2 {
  font-size: 1.5rem;
  line-height: 1.7;
  margin-bottom: 0.6em;
  letter-spacing: 0.15em;
  font-weight: 700;
}
@media (min-width: 768px) {
  .page_recruit .content_one .recruit_occupation .recruit_title h2 {
    font-size: 1.6rem;
  }
}
.page_recruit .content_one .recruit_occupation table thead th {
  padding: 5px 10px;
}
.page_recruit .content_one .recruit_occupation table tbody th {
  text-align: center;
  min-width: 80px;
  width: 80px;
  vertical-align: middle;
}
@media (min-width: 768px) {
  .page_recruit .content_one .recruit_occupation table tbody th {
    min-width: 100px;
    width: 100px;
  }
}
.page_recruit .content_one .recruit_occupation table tbody td {
  text-align: left !important;
  white-space: normal;
}
.page_recruit .content_one .sub_table {
  padding-top: 4em;
}
.page_recruit .content_one .sub_table table tbody th {
  text-align: center;
  min-width: 80px;
  width: 80px;
  vertical-align: middle;
}
@media (min-width: 768px) {
  .page_recruit .content_one .sub_table table tbody th {
    min-width: 100px;
    width: 100px;
  }
}
.page_recruit .content_one .sub_table table tbody td {
  text-align: left !important;
  white-space: normal;
}
.page_recruit .content_one .sub_table .public_notice dl {
  display: flex;
  flex-wrap: wrap;
}
.page_recruit .content_one .sub_table .public_notice dl dt {
  width: 160px;
  margin: 0 0 10px 0;
  display: flex;
  align-items: left;
  border-bottom: 1px solid #e5e5e5;
  font-weight: normal;
}
.page_recruit .content_one .sub_table .public_notice dl dd {
  width: calc(100% - 160px);
  margin: 0 0 10px 0;
  border-bottom: 1px solid #e5e5e5;
}
.page_recruit .content_one .sub_table .public_notice dl dd a {
  color: #000000;
}
.page_recruit .content_one .sub_table .public_notice dl dd a:hover {
  opacity: 0.7;
}
.page_recruit .content_one .entry_btn {
  padding: 30px 0;
}
.page_recruit .content_one .entry_btn a {
  font-size: 2rem;
}
.page_recruit .content_one p.form_txt span {
  background-color: #d6bc46;
  color: #ffffff;
  padding: 1px 5px;
  font-size: 1.2rem;
}
.page_recruit .content_one .form_box {
  padding: 15px;
  background-color: #faf9f1;
}
@media (min-width: 992px) {
  .page_recruit .content_one .form_box {
    padding: 60px;
  }
}
@media (min-width: 768px) {
  .page_recruit .content_one .form_box {
    padding: 30px;
  }
}
.page_recruit .content_one .form_box .entry_box {
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 30px;
  margin-bottom: 40px;
}
.page_recruit .content_one .form_box .entry_box:last-child {
  margin-bottom: 0;
}
.page_recruit .content_one .form_box label span {
  background-color: #d6bc46;
  color: #ffffff;
  padding: 1px 5px;
  font-size: 1.2rem;
}
.page_recruit .content_one .form_box input,
.page_recruit .content_one .form_box select,
.page_recruit .content_one .form_box textarea {
  font-size: 1.6rem;
}

.page_sdgs .sdgs_main {
  padding-bottom: 0;
}
.page_sdgs .sdgs_main .sdgs_main_field {
  padding: 30px 0 0;
  color: #0087d2;
}
@media (min-width: 768px) {
  .page_sdgs .sdgs_main .sdgs_main_field {
    padding: 60px 0 0;
  }
}
.page_sdgs .sdgs_main .sdgs_main_field .sdgs_logo {
  max-width: 300px;
  margin: 0 auto;
}
.page_sdgs .sdgs_main .sdgs_main_field p {
  text-align: left;
  line-height: 1.6;
}
@media (min-width: 992px) {
  .page_sdgs .sdgs_main .sdgs_main_field p {
    text-align: center;
  }
}
.page_sdgs .sdgs_main .sdgs_main_field p br {
  display: none;
}
@media (min-width: 992px) {
  .page_sdgs .sdgs_main .sdgs_main_field p br {
    display: block;
  }
}
@media (min-width: 992px) {
  .page_sdgs .sdgs_sakura {
    max-width: 800px;
    margin: auto;
  }
}
.page_sdgs .sdgs_sakura .sdgs_sakura_field {
  background-color: #d4d4d4;
  padding: 15px;
  color: #000000;
}
@media (min-width: 768px) {
  .page_sdgs .sdgs_sakura .sdgs_sakura_field {
    padding: 30px;
  }
}
.page_sdgs .sdgs_sakura .sdgs_sakura_field .sakura_logo {
  max-width: 220px;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .page_sdgs .sdgs_sakura .sdgs_sakura_field .sakura_logo {
    max-width: 100%;
  }
}
.page_sdgs .sdgs_sakura .sdgs_sakura_field h2 {
  font-size: 1.6rem;
  margin-bottom: 1em;
  text-align: left;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .page_sdgs .sdgs_sakura .sdgs_sakura_field h2 {
    font-size: 2rem;
  }
}
.page_sdgs .sdgs_sakura .sdgs_sakura_field p {
  text-align: left;
  line-height: 1.7;
}
.page_sdgs .sdgs_sakura .sdgs_sakura_field p br.sp {
  display: none;
}
@media (min-width: 768px) {
  .page_sdgs .sdgs_sakura .sdgs_sakura_field p br.sp {
    display: block;
  }
}
.page_sdgs .page_content .title {
  text-align: center;
}
.page_sdgs .page_content .title h2 {
  font-family: "futura-pt", sans-serif;
  font-weight: 400;
  font-size: 3.3rem;
  letter-spacing: 0.12em;
}
@media (min-width: 768px) {
  .page_sdgs .page_content .title h2 {
    font-size: 4.2rem;
  }
}
.page_sdgs .page_content .title + p {
  font-size: 1.2rem;
  letter-spacing: 0.3em;
}
.page_sdgs .page_content .content_one {
  max-width: 960px;
  margin: 0 auto;
}
.page_sdgs .page_content .content_one.sdgs_add {
  max-width: 600px;
  border: 1px solid #d4d4d4;
  padding: 15px;
}
@media (min-width: 768px) {
  .page_sdgs .page_content .content_one.sdgs_add {
    padding: 30px;
  }
}
.page_sdgs .page_content .content_one .sdgs_content_one {
  margin-bottom: 30px;
}
.page_sdgs .page_content .content_one .sdgs_content_one:last-child {
  margin-bottom: 0;
}
.page_sdgs .page_content .content_one .sdgs_content_one .sdgs_title {
  background-color: #d4d4d4;
  text-align: center;
  padding: 20px 0;
  margin-bottom: 1em;
}
.page_sdgs .page_content .content_one .sdgs_content_one .sdgs_title h3 {
  font-size: 1.6rem;
  margin-bottom: 0;
}
.page_sdgs .page_content .content_one .sdgs_content_one img {
  margin-bottom: 1em;
}
.page_sdgs .page_content .content_one .sdgs_content_one p {
  margin-bottom: 1em;
}
.page_sdgs .page_content .content_one .sdgs_content_one .sdgs_icons img {
  max-height: 72px;
}
.page_sdgs .page_content .content_one .sdgs_content_one .sdgs_title_sub {
  margin-bottom: 1em;
}
.page_sdgs .page_content .content_one .sdgs_content_one .sdgs_title_sub .sdgs_title_sub_one {
  background-color: #d4d4d4;
  text-align: center;
  padding: 20px 0;
  margin-bottom: 0.5em;
}
.page_sdgs .page_content .content_one .sdgs_content_one .sdgs_title_sub .sdgs_title_sub_one:last-child {
  margin-bottom: 0;
}
.page_sdgs .page_content .content_one .sdgs_content_one .sdgs_title_sub .sdgs_title_sub_one h3 {
  font-size: 1.6rem;
  margin-bottom: 0;
}
.page_sdgs .page_content .content_one .sdgs_content_one .with_icon {
  overflow: hidden;
}
.page_sdgs .page_content .content_one .sdgs_content_one .with_icon p {
  float: none;
  width: 100%;
}
@media (min-width: 768px) {
  .page_sdgs .page_content .content_one .sdgs_content_one .with_icon p {
    float: left;
    width: 80%;
  }
}
.page_sdgs .page_content .content_one .sdgs_content_one .with_icon .sdgs_icons {
  float: left;
}
@media (min-width: 768px) {
  .page_sdgs .page_content .content_one .sdgs_content_one .with_icon .sdgs_icons {
    float: right;
    width: 72px;
  }
}

.page_oneharmony div#oneharmony_1,
.page_oneharmony div#oneharmony_2,
.page_oneharmony div#oneharmony_3 {
  padding-top: 80px;
  margin-top: -80px;
}
.page_oneharmony .content_head {
  max-width: 960px;
  margin: 0 auto;
  margin-bottom: 3em;
}
.page_oneharmony .content_head .btn_content {
  padding-top: 20px;
}
.page_oneharmony .content_head .btn_content a.btn {
  padding: 15px;
  font-size: 1.6rem;
  border-radius: 0;
}
.page_oneharmony .content_nav {
  max-width: 960px;
  margin: 0 auto;
}
.page_oneharmony .content_nav .btn_content {
  margin-bottom: 30px;
}
.page_oneharmony .content_nav .btn_content a.btn {
  padding: 15px;
  font-size: 1.6rem;
}
.page_oneharmony .content_one {
  max-width: 960px;
  margin: 0 auto;
}
.page_oneharmony .content_one .secondpage_title {
  margin-bottom: 2em !important;
}
.page_oneharmony .content_one .oh_content_box {
  margin-bottom: 5em;
}
.page_oneharmony .content_one .oh_content_box p b {
  background-color: #cfcfcf;
  padding: 0.5em;
}
.page_oneharmony .content_one .oh_content_box .content_title {
  margin-bottom: 1em;
}
.page_oneharmony .content_one .oh_content_box .oh_content_one p {
  margin-bottom: 1.5em;
}
.page_oneharmony .content_one .oh_content_box .oh_content_one blockquote {
  background-color: #cfcfcf;
  padding: 15px;
}
.page_oneharmony .content_one .oh_content_box .oh_content_one blockquote h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5em;
}
@media (min-width: 768px) {
  .page_oneharmony .content_one .oh_content_box .oh_content_one blockquote h3 {
    font-size: 1.5rem;
  }
}
.page_oneharmony .content_one .oh_content_box .oh_content_one blockquote p {
  margin-bottom: 0;
}
.page_oneharmony .content_one .oh_content_box .oh_content_one.sub_table .bgmember {
  background: linear-gradient(-45deg, #bb7505, #000000);
  color: #ffffff;
  text-align: center;
}
.page_oneharmony .content_one .oh_content_box .oh_content_one.sub_table .bgroyal {
  background: linear-gradient(-45deg, #6d893c, #000000);
  color: #ffffff;
  text-align: center;
}
.page_oneharmony .content_one .oh_content_box .oh_content_one.sub_table .bgexclusive {
  background: linear-gradient(-45deg, #746faf, #000000);
  color: #ffffff;
  text-align: center;
}
.page_oneharmony .content_one .oh_content_box .oh_content_one.sub_table .bgbeige {
  background: #cec4b3;
}
.page_oneharmony .content_one .oh_content_box .oh_content_one.sub_table .bggray {
  background: #cfcfcf;
}
.page_oneharmony .content_one .oh_content_box .oh_content_one.sub_table table.fixed {
  table-layout: auto;
}
@media (min-width: 768px) {
  .page_oneharmony .content_one .oh_content_box .oh_content_one.sub_table table.fixed {
    table-layout: fixed;
  }
}
.page_oneharmony .content_one .oh_content_box .oh_content_one.sub_table table th.title {
  width: 340px;
}
.page_oneharmony .content_one .oh_content_box .oh_content_one.sub_table table th.oneharmony_table_icons_1 {
  background-position: right 15px center;
  background-image: url(../images/oneharmony_table_icons_1.png);
}
.page_oneharmony .content_one .oh_content_box .oh_content_one.sub_table table th.oneharmony_table_icons_2 {
  background-position: right 15px center;
  background-image: url(../images/oneharmony_table_icons_2.png);
}
.page_oneharmony .content_one .oh_content_box .oh_content_one.sub_table table th.oneharmony_table_icons_3 {
  background-position: right 15px center;
  background-image: url(../images/oneharmony_table_icons_3.png);
}
.page_oneharmony .content_one .oh_content_box .oh_content_one.sub_table table a {
  color: #af7b00;
}
.page_oneharmony .content_one .oh_content_box .oh_content_one.sub_table table a:hover {
  color: #AF7B00F;
}
.page_oneharmony .content_one .oh_content_box .oh_content_one.sub_table.sp_only tbody th {
  width: 200px;
}
.page_oneharmony .content_one .oh_content_box .oh_content_one.oh_benefit .benefit_box {
  border: 1px solid lightgray;
}
.page_oneharmony .content_one .oh_content_box .oh_content_one.oh_benefit .benefit_head {
  background-color: #cec4b3;
  padding: 7px 0;
  border-top: 1px solid lightfray;
  border-right: 1px solid lightfray;
  border-left: 1px solid lightfray;
}
.page_oneharmony .content_one .oh_content_box .oh_content_one.oh_benefit .benefit_head.gray {
  background-color: #cfcfcf;
}
.page_oneharmony .content_one .oh_content_box .oh_content_one.oh_benefit .benefit_head h3 {
  text-align: center;
  font-size: 1.4rem;
}
.page_oneharmony .content_one .oh_content_box .oh_content_one.oh_benefit .benefit_one {
  padding: 15px;
}
.page_oneharmony .content_one .oh_content_box .oh_content_one.oh_benefit .benefit_one img {
  margin-bottom: 15px;
}
.page_oneharmony .content_one .oh_content_box .oh_content_one.oh_benefit .benefit_one p {
  margin-bottom: 0;
  font-size: 1.6rem;
  text-align: center;
}
.page_oneharmony .content_one .oh_content_box .oneharmony_table_icon_description {
  margin: 20px 0;
  display: flex;
  gap: 10px 25px;
  flex-wrap: wrap;
}
.page_oneharmony .content_one .oh_content_box .oneharmony_table_icon_description li {
  display: flex;
  align-items: center;
  gap: 10px;
  width: calc(50% - 20px);
  line-height: 1.2;
  font-size: 1.2rem;
}
@media (min-width: 992px) {
  .page_oneharmony .content_one .oh_content_box .oneharmony_table_icon_description li {
    width: auto;
  }
}
.page_oneharmony .content_one .oh_content_title {
  border: 1px solid #000000;
  padding: 10px;
  margin-bottom: 2em;
}
.page_oneharmony .content_one .oh_content_title h3 {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 0;
  letter-spacing: 0.15em;
}

.page_banquet_plan .content_one {
  max-width: 960px;
  margin: 0 auto;
}
.page_banquet_plan .content_one .plan_one {
  margin-bottom: 3em;
}
.page_banquet_plan .content_one .plan_one:last-child {
  margin-bottom: 0;
}
.page_banquet_plan .content_one .plan_one h3 {
  margin-bottom: 0.5em;
}
.page_banquet_plan .content_one ul.plan_list {
  margin-top: 1rem;
}
.page_banquet_plan .content_one ul.plan_list li {
  margin-bottom: 1rem;
}
.page_banquet_plan .content_one ul.plan_list li:last-child {
  margin-bottom: 0;
}

.page_banquet_merit .content_one {
  max-width: 960px;
  margin: 0 auto;
}
.page_banquet_merit .content_one .content_merit_one {
  margin-bottom: 40px;
}

.page_stay_concierge .content_one {
  max-width: 960px;
  margin: 0 auto;
}
.page_stay_concierge .content_one .concierge_txt {
  padding: 60px 0;
}
.page_stay_concierge .content_one .concierge_txt p {
  font-size: 1.6rem;
  line-height: 2;
  margin-bottom: 2em;
}
@media (min-width: 768px) {
  .page_stay_concierge .content_one .concierge_txt p {
    font-size: 2.1rem;
  }
}
.page_restaurant_anniversary .content_one {
  margin: 0 auto;
}
.page_restaurant_anniversary .anniversary_main {
  background-color: #d8cab6;
  margin-bottom: 30px;
}
.page_restaurant_anniversary .anniversary_main.flower {
  margin-bottom: 0px;
}
.page_restaurant_anniversary .anniversary_main .anniversary_head {
  padding: 30px;
}
@media (min-width: 992px) {
  .page_restaurant_anniversary .anniversary_main .anniversary_head {
    padding: 30px 30px 0;
  }
}
@media (min-width: 1200px) {
  .page_restaurant_anniversary .anniversary_main .anniversary_head {
    padding: 60px 60px 0;
  }
}
.page_restaurant_anniversary .anniversary_main .anniversary_head .anniversary_title {
  margin-bottom: 20px;
}
.page_restaurant_anniversary .anniversary_main .anniversary_head .anniversary_title h4 {
  font-size: 1.4rem;
  margin-bottom: 1em;
}
.page_restaurant_anniversary .anniversary_main .anniversary_head .anniversary_title h2 {
  font-family: "futura-pt", sans-serif;
  font-weight: 400;
  font-size: 2.8rem;
  letter-spacing: 0.12em;
}
@media (min-width: 992px) {
  .page_restaurant_anniversary .anniversary_main .anniversary_head .anniversary_title h2 {
    font-size: 3.8rem;
  }
}
.page_restaurant_anniversary .anniversary_main .cake_sub {
  padding-top: 20px;
}
.page_restaurant_anniversary .anniversary_main .flower_sub {
  padding: 15px;
}
.page_restaurant_anniversary .anniversary_main p.subtext {
  background-color: #ffffff;
  padding: 5px;
  margin-bottom: 0;
}
.page_restaurant_anniversary .anniversary_att {
  border: 1px solid #000000;
  padding: 10px 15px;
  margin-bottom: 30px;
}
.page_restaurant_anniversary .anniversary_att p {
  margin: 0;
}
.page_restaurant_anniversary .anniversary_subject {
  margin-bottom: 30px;
}
.page_restaurant_anniversary .anniversary_subject .sub_title {
  background-color: #848484;
  padding: 10px;
  margin-bottom: 10px;
}
.page_restaurant_anniversary .anniversary_subject .sub_title h3 {
  color: #ffffff;
  font-size: 1.5rem;
  margin-bottom: 0;
}
.page_restaurant_anniversary .anniversary_flower {
  background-color: #6a6060;
  padding: 30px;
}
.page_restaurant_anniversary .anniversary_flower .anniversary_flower_one {
  color: #ffffff;
  text-align: center;
}
.page_restaurant_anniversary .anniversary_flower .anniversary_flower_one img {
  margin-bottom: 20px;
}
.page_restaurant_anniversary .anniversary_flower .anniversary_flower_one h4 {
  font-size: 1.4rem;
  margin-bottom: 0.5em;
}
.page_restaurant_anniversary .anniversary_flower .anniversary_flower_one h2 {
  font-size: 2rem;
  margin-bottom: 0.3em;
}
@media (min-width: 992px) {
  .page_restaurant_anniversary .anniversary_flower .anniversary_flower_one h2 {
    font-size: 2.4rem;
  }
}
.page_restaurant_anniversary .anniversary_flower .anniversary_flower_one p.price {
  font-family: "futura-pt", sans-serif;
  font-weight: 400;
  font-size: 2.4rem;
  letter-spacing: 0.12em;
  margin-bottom: 0;
}
.page_restaurant_anniversary .anniversary_tel .sub_title {
  background-color: #848484;
  padding: 10px;
  margin-bottom: 10px;
}
.page_restaurant_anniversary .anniversary_tel .sub_title h3 {
  color: #ffffff;
  font-size: 1.5rem;
  margin-bottom: 0;
}

.page_restaurant_giftboucher .gift_head {
  margin-bottom: 30px;
}
.page_restaurant_giftboucher .gift_head h2 {
  font-size: 2.4rem;
  margin-bottom: 0.7em;
}
.page_restaurant_giftboucher .gift_banner {
  background-color: lightgray;
  padding: 15px;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .page_restaurant_giftboucher .gift_banner {
    padding: 20px;
  }
}
.page_restaurant_giftboucher .gift_banner a {
  display: block;
  width: 100%;
  height: 100%;
}
.page_restaurant_giftboucher .gift_banner a p br.sp {
  display: none;
}
@media (min-width: 768px) {
  .page_restaurant_giftboucher .gift_banner a p br.sp {
    display: block;
  }
}
.page_restaurant_giftboucher .gift_content {
  margin-bottom: 60px;
}
.page_restaurant_giftboucher .gift_content:last-child {
  margin-bottom: 0;
}
.page_restaurant_giftboucher .gift_content .gift_img {
  padding: 30px;
  background-color: #ded4c3;
  margin-bottom: 30px;
}
.page_restaurant_giftboucher .gift_content .gift_img .gift_img_one {
  text-align: center;
}
.page_restaurant_giftboucher .gift_content .gift_img .gift_img_one img {
  margin-bottom: 20px;
}
.page_restaurant_giftboucher .gift_content .gift_img .gift_img_one h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5em;
}
.page_restaurant_giftboucher .gift_content .gift_img .gift_img_one p.price {
  font-family: "futura-pt", sans-serif;
  font-weight: 400;
  font-size: 2.4rem;
  margin-bottom: 0;
  letter-spacing: 0.12em;
}
.page_restaurant_giftboucher .gift_content .giftvouncher_subject {
  margin-bottom: 30px;
}
.page_restaurant_giftboucher .gift_content .giftvouncher_subject .sub_title {
  background-color: #848484;
  padding: 10px;
  margin-bottom: 10px;
}
.page_restaurant_giftboucher .gift_content .giftvouncher_subject .sub_title h3 {
  color: #ffffff;
  font-size: 1.5rem;
  margin-bottom: 0;
}

.page_stay_faq .content_one {
  max-width: 960px;
  margin: 0 auto;
}
.page_stay_faq .stay_faq_inpagelink {
  list-ttyle-type: none;
  padding: 0;
  display: flex;
  gap: 15px;
  width: 100%;
}
.page_stay_faq .stay_faq_inpagelink li {
  width: 33.3%;
  text-align: center;
  padding: 10px 0;
  border-radius: 5px;
}
.page_stay_faq .stay_faq_inpagelink li.stay {
  border: 1px solid #969696;
}
.page_stay_faq .stay_faq_inpagelink li.stay a,
.page_stay_faq .stay_faq_inpagelink li.stay a:hover {
  color: #969696;
}
.page_stay_faq .stay_faq_inpagelink li.restaurant {
  border: 1px solid #c8b464;
}
.page_stay_faq .stay_faq_inpagelink li.restaurant a,
.page_stay_faq .stay_faq_inpagelink li.restaurant a:hover {
  color: #c8b464;
}
.page_stay_faq .stay_faq_inpagelink li.payment {
  border: 1px solid #78c8f0;
}
.page_stay_faq .stay_faq_inpagelink li.payment a,
.page_stay_faq .stay_faq_inpagelink li.payment a:hover {
  color: #78c8f0;
}
.page_stay_faq .stay_faq_inpagelink li.banquet {
  border: 1px solid #000000;
}
.page_stay_faq .stay_faq_inpagelink li.banquet a,
.page_stay_faq .stay_faq_inpagelink li.banquet a:hover {
  color: #000000;
}
.page_stay_faq .faq_one {
  padding-top: 40px;
}
.page_stay_faq .faq_one.faq_stay .faq_q_box {
  background-color: #dcdcdc;
}
.page_stay_faq .faq_one.faq_restaurant .faq_q_box {
  background-color: #ded4c3;
}
.page_stay_faq .faq_one.faq_payment .faq_q_box {
  background-color: #c8dcf0;
}
.page_stay_faq .faq_one.faq_banquet .faq_q_box {
  background-color: #666666;
  color: #ffffff;
}
.page_stay_faq .faq_one#faq_stay, .page_stay_faq .faq_one#faq_restaurant, .page_stay_faq .faq_one#faq_payment, .page_stay_faq .faq_one#faq_banquet {
  padding-top: 80px;
}
.page_stay_faq .faq_one .faq_q_box {
  background-color: #dcdcdc;
  padding: 10px 10px 5px 10px;
  margin-bottom: 10px;
}
.page_stay_faq .faq_one .faq_q_box h3 {
  font-size: 2.1rem;
  margin: 0;
}
.page_stay_faq .faq_one .faq_q_box h3 span.q_icon {
  font-family: "Josefin Sans", sans-serif !important;
  font-size: 3rem;
}

.page_about_en section.page_content .content_one,
.page_access_en section.page_content .content_one {
  max-width: 960px;
  margin: 0 auto;
}
.page_about_en section.page_content.description_table .content_one table td,
.page_access_en section.page_content.description_table .content_one table td {
  text-align: left;
}
.page_about_en section.page_content .internet_one,
.page_access_en section.page_content .internet_one {
  margin-bottom: 3em;
}
.page_about_en section.page_content .internet_one.last-child,
.page_access_en section.page_content .internet_one.last-child {
  margin-bottom: 0;
}
.page_about_en section.page_content .internet_one h4,
.page_access_en section.page_content .internet_one h4 {
  font-size: 1.6rem;
  margin-bottom: 0.5em;
}
.page_about_en section.page_content .access_head,
.page_access_en section.page_content .access_head {
  margin-bottom: 4em;
}
.page_about_en section.page_content .access_areas,
.page_access_en section.page_content .access_areas {
  display: flex;
  gap: 30px;
  flex-direction: column;
}
@media (min-width: 768px) {
  .page_about_en section.page_content .access_areas,
  .page_access_en section.page_content .access_areas {
    flex-direction: row;
  }
}
.page_about_en section.page_content .access_areas .access_area .access_area_map,
.page_access_en section.page_content .access_areas .access_area .access_area_map {
  cursor: pointer;
}
.page_about_en section.page_content .img_btm_txt,
.page_access_en section.page_content .img_btm_txt {
  font-size: 1.3rem;
  margin-top: 0.3em;
  text-align: right;
}

.page_pressrelease .content_one {
  max-width: 960px;
  margin: 0 auto;
}
.page_pressrelease h3.press_title {
  margin-bottom: 1em;
}
.page_pressrelease ul.list-news {
  list-style-type: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid #eeeeee;
}
.page_pressrelease ul.list-news li {
  display: flex;
  padding-block: 1rem;
  border-bottom: 1px solid #eeeeee;
  text-align: start;
}
.page_pressrelease ul.list-news li time {
  inline-size: 7em;
  margin-right: 2em;
  margin-bottom: 0;
}
.page_pressrelease ul.list-news li p {
  flex: 1 0;
}
.page_pressrelease ul.list-news li p a {
  text-decoration: none;
  color: black;
}

.page_houyo .page_header .message {
  margin-top: 2em;
  font-size: 1.8rem;
}
.page_houyo .page_content .inner {
  max-width: 960px;
  margin: 0 auto 30px auto;
}
.page_houyo .page_content h3 {
  margin-bottom: 1em;
}
.page_houyo .page_content h3::before {
  content: "◼︎";
}
.page_houyo .restaurant {
  background-color: #c2c2c2;
  height: 100%;
}
.page_houyo .restaurant hgroup {
  display: flex;
  justify-content: space-between;
  line-height: 1.4;
  padding: 1em;
  align-items: flex-end;
}
.page_houyo .restaurant hgroup h4 {
  font-size: 3.6rem;
  margin: 0;
}
.page_houyo .restaurant hgroup .floor {
  font-size: 2.4rem;
}
.page_houyo .restaurant hgroup .genre {
  font-size: 1.8rem;
}
.page_houyo .restaurant img {
  width: 100%;
}
.page_houyo .restaurant .data_box {
  padding: 15px 15px 0;
}
.page_houyo .restaurant .data_box p,
.page_houyo .restaurant .data_box dl {
  margin-bottom: 1em;
}
.page_houyo .restaurant .data_box dl {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.page_houyo .restaurant .data_box dl dt {
  font-weight: 400;
  width: 3.5em;
}
.page_houyo .restaurant .data_box dl dd {
  width: calc(100% - 3.5em);
}
.page_houyo .price {
  margin-bottom: 1em;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.page_houyo .price span {
  display: block;
}
.page_houyo .price .label {
  background-color: black;
  color: white;
  font-size: 1.6rem;
  padding: 1px 15px 4px 15px;
}
@media (min-width: 768px) {
  .page_houyo .price .label {
    font-size: 2.4rem;
  }
}
@media (min-width: 768px) {
  .page_houyo .price .label {
    padding: 1px 30px 4px 30px;
  }
}
.page_houyo .price .value {
  font-size: 1.4rem;
  padding: 0 10px;
  border: 0 solid black;
  border-width: 0 1px 0 0;
}
@media (min-width: 768px) {
  .page_houyo .price .value {
    font-size: 3rem;
    padding: 0 30px;
  }
}
.page_houyo .price .value:last-child {
  border-width: 0 0 0 0;
}
.page_houyo .houyo_bottom {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}
@media (min-width: 768px) {
  .page_houyo .houyo_bottom {
    flex-direction: row;
    margin: 60px 0 0 0;
  }
}
.page_houyo .houyo_bottom img {
  width: 100%;
}

.page_gallery .gallery_nav .cat_nav {
  display: block;
  width: 100%;
  padding: 5px 0;
  text-align: center;
  border: 1px solid black;
  transition: all 0.3s ease-out;
}
@media (min-width: 768px) {
  .page_gallery .gallery_nav .cat_nav {
    padding: 15px 0;
  }
}
.page_gallery .gallery_nav .cat_nav:hover {
  background-color: black;
  color: white;
}
.page_gallery .gallery_nav .cat_nav.current {
  background-color: black;
  color: white;
}
.page_gallery .gallery_nav_sub {
  width: 100%;
  padding: 30px 0 0 0;
  text-align: center;
}
.page_gallery .gallery_nav_sub select {
  -moz-appearance: menulist-button;
  -webkit-appearance: menulist-button;
  appearance: menulist-button;
  padding: 10px 5px;
  display: inline-block;
  width: 100%;
  max-width: 400px;
  border: 0px solid black;
  border-width: 0 0 1px 0;
  border-radius: 0;
}
.page_gallery .gallery_nav_sub select:hover {
  background-color: rgb(245, 245, 245);
  cursor: pointer;
}
.page_gallery .gallery_nav_sub select:focus {
  outline: 1px black solid;
}
.page_gallery .gallery_list {
  padding: 60px 0 0 0;
  position: relative;
}
.page_gallery .gallery_list h3 {
  font-size: 3rem;
  padding: 0 0 15px 0;
  border: 1px solid lightgray;
  border-width: 0 0 1px 0;
  margin-bottom: 15px;
}
.page_gallery .gallery_list .description {
  margin-bottom: 15px;
}
.page_gallery .gallery_list .gallery_item {
  display: block;
  position: relative;
  max-height: 0;
  overflow: hidden;
  margin: 0;
}
.page_gallery .gallery_list .gallery_item.show {
  max-height: 1000px;
  margin: 15px 0 0 0;
}
.page_gallery .gallery_list .gallery_item p {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.7);
  bottom: 0;
  left: 0;
  width: 100%;
  font-size: 1.2rem;
  padding: 1px;
  z-index: 2;
  color: white;
  text-align: center;
}
.page_gallery .gallery_list .gallery_item p .pc {
  display: none;
}
@media (min-width: 992px) {
  .page_gallery .gallery_list .gallery_item p .pc {
    display: inline-block;
    margin-right: 10px;
  }
}
@media (min-width: 768px) {
  .page_gallery .gallery_list .gallery_item p {
    font-size: 1.4rem;
    padding: 5px;
  }
}
.page_gallery .gallery_list .gallery_item p span {
  display: block;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .page_gallery .gallery_list .gallery_item p span {
    display: inline;
  }
}
.page_gallery .gallery_list .gallery_item img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease-out;
}
.page_gallery .gallery_list .gallery_item img:hover {
  opacity: 0.8;
}
.page_gallery .gallery_list.notAllLoaded::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(0deg, rgb(255, 255, 255) 10%, rgba(255, 255, 255, 0) 100%);
  z-index: 98;
}
.page_gallery .gallery_loadmore {
  text-align: center;
}
.page_gallery .gallery_loadmore.hide {
  display: none;
}
.page_gallery .gallery_loadmore a {
  cursor: pointer;
  text-align: center;
  padding: 15px 0;
  border: 1px solid black;
  border-width: 0 0 1px 0;
  transition: all 0.3s ease-out;
  width: 100%;
  max-width: 400px;
  display: inline-block;
}
.page_gallery .gallery_loadmore a:hover {
  background-color: black;
  color: white;
}
.page_gallery .gallery_copyright {
  margin: 30px 0 0 0;
}

.linksite header {
  position: relative;
  padding: 30px 0;
  display: block;
  height: auto;
}
.linksite header .head {
  max-width: 240px;
  margin: 0 auto;
}
.linksite header .head h1 {
  margin-bottom: 0.8em;
}
.linksite header .head h2 {
  font-size: 1.4rem;
  font-weight: normal;
  text-align: center;
  margin-bottom: 1em;
}
.linksite header .head h3 {
  font-size: 1.4rem;
  font-weight: normal;
  text-align: center;
}
.linksite main#main {
  padding-top: 0;
}
.linksite .linksite_content {
  max-width: 360px;
  margin: 0 auto;
  padding: 10px 0 10px;
}
.linksite .linksite_content .link_block {
  margin-bottom: 3em;
}
.linksite .linksite_content .link_block:last-child {
  margin-bottom: 0;
}
.linksite .linksite_content .link_block .btn {
  font-size: 1.8rem;
  font-family: "futura-pt", sans-serif;
  color: #000000;
}
.linksite .linksite_content .link_block .btn span {
  font-size: 85%;
}
.linksite .linksite_content .link_block .btn span.small {
  font-size: 75%;
}
.linksite .linksite_content .link_block .btn.btnx-gold {
  background: #d6be58;
  border: 2px solid #d6be58;
}
.linksite .linksite_content .link_block .btn.btnx-blue {
  background: #aedbf4;
  border: 2px solid #aedbf4;
}
.linksite .linksite_content .link_block .btn.btnx-en {
  background: #eae7c4;
  border: 2px solid #eae7c4;
}
.linksite footer {
  padding: 20px 0;
}
.linksite footer p {
  font-size: 1.4rem;
}
@media (min-width: 751px) {
  .linksite footer a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}

.page_30th .header_30th {
  position: fixed;
  top: 0;
  left: 0;
  background-color: transparent;
}
.page_30th .header_30th svg {
  max-width: 90%;
}
.page_30th .header_30th svg .logo_30th_main {
  fill: #fff;
  transition: all 0.3s ease-out;
}
.page_30th main {
  padding: 0;
}
.page_30th .mv_30th {
  position: fixed;
  overflow-x: hidden;
  width: 100%;
  height: 100vh;
  transition: all 1.5s ease-out;
}
.page_30th .mv_30th.light {
  opacity: 0.1;
  filter: blur(5px);
}
.page_30th .mv_30th .slideshow_30th_mv {
  position: relative;
  height: 50%;
  width: 100%;
  overflow: hidden;
}
.page_30th .mv_30th .slideshow_30th_mv:first-child .mv_30th_img {
  height: 100%;
  width: 110vw;
  max-width: 110vw;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.page_30th .mv_30th .slideshow_30th_mv:first-child .mv_30th_img.show {
  opacity: 1;
  animation: l2r 8s linear forwards;
}
@keyframes l2r {
  0% {
    left: 0;
  }
  100% {
    left: -10%;
  }
}
.page_30th .mv_30th .slideshow_30th_mv:last-child .mv_30th_img {
  height: 100%;
  width: 100vw;
  max-width: 110vw;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.2);
  opacity: 0;
}
.page_30th .mv_30th .slideshow_30th_mv:last-child .mv_30th_img.show {
  opacity: 1;
  animation: zm 8s linear forwards;
}
@keyframes zm {
  0% {
    transform: translate(-50%, -50%) scale(1.2);
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
}
.page_30th .mv_30th .slideshow_30th_mv .mv_30th_logo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.page_30th .mv_30th .slideshow_30th_mv .mv_30th_logo .inner .mv_30th_logo_parts {
  position: absolute;
  height: 100%;
  left: -1000vw;
  width: 1000vw;
  line-height: 0;
}
.page_30th .mv_30th .slideshow_30th_mv .mv_30th_logo .inner .mv_30th_logo_parts.move {
  transition: all 2s ease-in-out;
  left: 100vw !important;
}
@media (min-width: 992px) {
  .page_30th .mv_30th .slideshow_30th_mv .mv_30th_logo .inner .mv_30th_logo_parts.move {
    transition: all 2.5s ease-in-out;
  }
}
.page_30th .mv_30th .slideshow_30th_mv .mv_30th_logo .inner .mv_30th_logo_parts.mv_30th_logo_t {
  top: 0;
}
.page_30th .mv_30th .slideshow_30th_mv .mv_30th_logo .inner .mv_30th_logo_parts.mv_30th_logo_b {
  top: 0;
}
.page_30th .mv_30th .slideshow_30th_mv .mv_30th_logo .inner .mv_30th_logo_parts .mv_30th_obi {
  width: 200vw;
  height: 100%;
  background-color: #000;
  display: inline-block;
}
.page_30th .mv_30th .slideshow_30th_mv .mv_30th_logo .inner .mv_30th_logo_parts img {
  height: 100%;
  aspect-ratio: 2116/900;
  display: inline-block;
}
.page_30th section {
  position: relative;
}
.page_30th section.sec_copy_30th {
  width: 100vw;
  height: 100px;
  max-height: 100dvh;
  padding: 0;
  position: relative;
}
.page_30th section.sec_copy_30th .copy_30th {
  position: absolute;
  right: 50%;
  top: calc(75vh - 10px);
  transform: translate(50%, -50%);
  transition: all 0.3s ease-out;
}
@media (min-width: 768px) {
  .page_30th section.sec_copy_30th .copy_30th {
    right: 15%;
    top: 60vh;
    transform: translate(0, 0);
  }
}
.page_30th section.sec_copy_30th .copy_30th.hide {
  opacity: 0;
  filter: blur(5px);
  top: calc(50vh - 30px);
}
.page_30th section.sec_copy_30th .copy_30th img {
  width: 100%;
}
@media (min-width: 768px) {
  .page_30th section.sec_copy_30th .copy_30th img {
    width: 120%;
    max-width: 400px;
  }
}
.page_30th section.sec_message_30th {
  width: 100vw;
  height: calc(200vh - 100px);
  min-height: 1350px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 70vh;
}
.page_30th section.sec_message_30th .message_30th {
  text-align: center;
  line-height: 2;
  padding: 15px;
  color: #1A1311;
  opacity: 0;
}
.page_30th section.sec_message_30th .message_30th.show {
  opacity: 1;
}
.page_30th section.sec_message_30th .message_30th.show p:nth-of-type(1) {
  animation: message_fadein 1.6s 0.7s forwards;
}
.page_30th section.sec_message_30th .message_30th.show p:nth-of-type(2) {
  animation: message_fadein 1.6s 1.4s forwards;
}
.page_30th section.sec_message_30th .message_30th.show p:nth-of-type(3) {
  animation: message_fadein 1.6s 2.1s forwards;
}
.page_30th section.sec_message_30th .message_30th.show .message_30th_logo {
  animation: message_fadein 2s 3.2s forwards;
}
@keyframes message_fadein {
  100% {
    opacity: 1;
  }
}
.page_30th section.sec_message_30th .message_30th h2 {
  font-size: 1.8rem;
  margin-bottom: 2em;
  line-height: 1.8;
  letter-spacing: 0.18em;
}
@media (min-width: 768px) {
  .page_30th section.sec_message_30th .message_30th h2 {
    font-size: 2rem;
    margin-bottom: 4em;
  }
}
.page_30th section.sec_message_30th .message_30th h2 br.sp {
  display: block;
}
@media (min-width: 768px) {
  .page_30th section.sec_message_30th .message_30th h2 br.sp {
    display: none;
  }
}
.page_30th section.sec_message_30th .message_30th p {
  font-size: 1.5rem;
  line-height: 2;
  margin-bottom: 2em;
  text-align: start;
  opacity: 0.2;
  letter-spacing: 0.16em;
}
@media (min-width: 768px) {
  .page_30th section.sec_message_30th .message_30th p {
    font-size: 1.6rem;
    line-height: 2.2;
    margin-bottom: 3.5em;
    text-align: center;
  }
  .page_30th section.sec_message_30th .message_30th p:last-child {
    margin-bottom: 4.5em;
  }
}
.page_30th section.sec_message_30th .message_30th p br {
  display: none;
}
@media (min-width: 768px) {
  .page_30th section.sec_message_30th .message_30th p br {
    display: block;
  }
}
.page_30th section.sec_message_30th .message_30th .message_30th_logo {
  margin-top: 3em;
  width: 120px;
  opacity: 0.2;
}
@media (min-width: 768px) {
  .page_30th section.sec_message_30th .message_30th .message_30th_logo {
    margin-top: 1em;
    width: 140px;
  }
}
.page_30th section.sec_content30th {
  padding: 60px 0;
}
.page_30th section.sec_content30th.bg_meals {
  background: #efefef;
}
.page_30th section.sec_content30th.bg_restaurant {
  background: #000000;
}
.page_30th section.sec_content30th.bg_stay {
  background: #ffffff;
}
.page_30th section.sec_content30th.bg_wedding {
  background: #efefef;
}
.page_30th section.sec_content30th.bg_bancket {
  background: #ffffff;
}
.page_30th section.sec_content30th .btn_30th {
  max-width: 560px;
  display: block;
  width: 100%;
  margin: 30px auto;
  padding: 5px 0;
  color: #231814;
  background-color: #E9C483;
  text-align: center;
}
.page_30th section.sec_content30th .title30th {
  margin-bottom: 2em;
}
.page_30th section.sec_content30th .title30th.restaurant {
  color: #E9C483;
}
.page_30th section.sec_content30th .title30th .title_logo {
  margin-bottom: 10px;
}
.page_30th section.sec_content30th .title30th .title_logo img {
  max-width: 30px;
}
.page_30th section.sec_content30th .title30th .title_logo img.restaurant {
  border: 1px solid #E9C483;
  border-radius: 50px;
}
.page_30th section.sec_content30th .title30th h2 {
  font-family: "futura-pt", sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 4rem;
  margin-bottom: 0.2em;
}
.page_30th section.sec_content30th .title30th h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 3.2rem;
  margin-bottom: 0.3em;
}
.page_30th section.sec_content30th .title30th h3.jp {
  font-size: 3rem;
  margin-bottom: 0.5em;
}
.page_30th section.sec_content30th .title30th h3 br.sp {
  display: block;
}
@media (min-width: 768px) {
  .page_30th section.sec_content30th .title30th h3 br.sp {
    display: none;
  }
}
.page_30th section.sec_content30th .title30th h4 {
  font-family: "futura-pt", sans-serif;
  font-size: 1.8rem;
}
.page_30th section.sec_content30th .content_title {
  margin-bottom: 3em;
}
.page_30th section.sec_content30th .content_title.restaurant {
  color: #ffffff;
}
.page_30th section.sec_content30th .content_title h3 {
  font-size: 1.6rem;
  line-height: 1.7;
}
@media (min-width: 768px) {
  .page_30th section.sec_content30th .content_title h3 {
    font-size: 1.8rem;
  }
}
.page_30th section.sec_content30th .content_title h3 br.sp {
  display: block;
}
@media (min-width: 768px) {
  .page_30th section.sec_content30th .content_title h3 br.sp {
    display: none;
  }
}
.page_30th section.sec_content30th .restaurants_30th .restaurant_title {
  position: relative;
  margin-bottom: 3em;
}
.page_30th section.sec_content30th .restaurants_30th .restaurant_title h3 {
  font-size: 1.6rem;
  color: #ffffff;
  margin-bottom: 2em;
  letter-spacing: 0.2em;
  line-height: 1.7;
}
@media (min-width: 768px) {
  .page_30th section.sec_content30th .restaurants_30th .restaurant_title h3 {
    font-size: 1.8rem;
  }
}
.page_30th section.sec_content30th .restaurants_30th .restaurant_title h3 br.sp {
  display: block;
}
@media (min-width: 768px) {
  .page_30th section.sec_content30th .restaurants_30th .restaurant_title h3 br.sp {
    display: none;
  }
}
.page_30th section.sec_content30th .restaurants_30th .restaurant_title .season {
  font-family: "futura-pt", "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #E9C483;
}
@media (min-width: 992px) {
  .page_30th section.sec_content30th .restaurants_30th .restaurant_title .season {
    position: absolute;
    right: 10%;
    top: -80px;
    border: 1px solid #E9C483;
    border-radius: 100px;
    width: 110px;
    height: 110px;
    padding-top: 30px;
  }
}
.page_30th section.sec_content30th .restaurants_30th .restaurant_title .season h4 {
  font-size: 1.6rem;
  margin-bottom: 1em;
}
@media (min-width: 992px) {
  .page_30th section.sec_content30th .restaurants_30th .restaurant_title .season h4 {
    margin-bottom: 0;
  }
}
.page_30th section.sec_content30th .restaurants_30th .restaurant_title .season h5 {
  font-style: italic;
  font-size: 2.4rem;
}
.page_30th section.sec_content30th .restaurants_30th .restaurant_title .season h5 span {
  padding-top: 0.3em;
  border-top: 1px solid #E9C483;
}
@media (min-width: 992px) {
  .page_30th section.sec_content30th .restaurants_30th .restaurant_title .season h5 span {
    padding: 0;
    border: none;
  }
}
.page_30th section.sec_content30th .restaurants_30th .restaurant_30th {
  display: block;
  text-align: center;
  color: white;
  margin: 0 0 50px 0;
}
.page_30th section.sec_content30th .restaurants_30th .restaurant_30th .restaurant_30th_cover {
  width: 100%;
  aspect-ratio: 790/470;
  -o-object-fit: cover;
     object-fit: cover;
}
.page_30th section.sec_content30th .restaurants_30th .restaurant_30th .restaurant_30th_logo {
  filter: invert(100%);
  width: clamp(140px, 60%, 280px);
  margin: 5px 0 0 0;
}
.page_30th section.sec_content30th .nav_30th_bell_saison {
  padding: 0;
}
.page_30th section.copyright {
  background-color: white;
}
.page_30th section.copyright p {
  text-align: center;
}

.page_noto2024 section {
  padding: 100px 0;
}
.page_noto2024 section.page_content {
  background-image: url(../images/noto_bg.jpg);
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
}
.page_noto2024 section.page_content .title h2 {
  display: inline-block;
  font-size: 2rem;
  line-height: 1.6;
  letter-spacing: 0.4em;
  position: relative;
  width: auto;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .page_noto2024 section.page_content .title h2 {
    font-size: 3rem;
  }
}
.page_noto2024 section.page_content .title h2::before {
  content: url(../images/noto_handwriten.svg);
  position: absolute;
  top: -40px;
  left: -20px;
  width: 160px;
}
@media (min-width: 768px) {
  .page_noto2024 section.page_content .title h2::before {
    top: -40px;
    left: -80px;
    width: 160px;
  }
}
.page_noto2024 section.page_content .video_wrapper video {
  max-width: 100%;
}
.page_noto2024 section.page_content .mv_mov {
  max-width: 880px;
  margin: 0 auto;
}
.page_noto2024 section.page_content .message {
  margin: 60px 0;
  font-size: 1.6rem;
  line-height: 1.7;
  letter-spacing: 0.175em;
}
@media (min-width: 768px) {
  .page_noto2024 section.page_content .message {
    font-size: 1.8rem;
  }
}
.page_noto2024 section.page_content .scroll_wrapper .noto_scroll_list {
  width: 100%;
  height: 100%;
}
.page_noto2024 section.page_content .scroll_wrapper .noto_scroll_list li {
  filter: box-shadow(0 0 10px rgba(0, 0, 0, 0.5));
  padding: 0 5px;
}
.page_noto2024 section.page_content .scroll_wrapper .noto_scroll_list li img {
  margin-bottom: 10px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page_noto2024 section.sec-news_list .title h3 {
  font-size: 2rem;
  letter-spacing: 0.2em;
  margin-bottom: 1em;
}
@media (min-width: 768px) {
  .page_noto2024 section.sec-news_list .title h3 {
    font-size: 3rem;
  }
}
.page_noto2024 section.sec-news_list .title p {
  font-size: 1.4rem;
  letter-spacing: 0.1em;
}
@media (min-width: 768px) {
  .page_noto2024 section.sec-news_list .title p {
    font-size: 1.7rem;
  }
}
.page_noto2024 section.sec-news_list .news_list .news_list_one .news_img {
  margin-bottom: 16px;
}
.page_noto2024 section.sec-news_list .news_list .news_list_one .news_txt {
  margin-bottom: 0.5em;
}
.page_noto2024 section.sec-news_list .news_list .news_list_one .news_txt h3 {
  font-size: 1.7rem;
  line-height: 1.6;
}
.page_noto2024 section.sec-news_list .news_list .news_list_one .news_txt time {
  font-size: 1.4rem;
  color: #808080;
}
.page_noto2024 section.sec-news_list .news_list .news_list_one .category_mark p {
  font-size: 1.3rem;
}
.page_noto2024 section.sec-news_list .news_list .news_list_one .category_mark p span {
  background-color: #C8C8C8;
  padding: 3px 4px;
}
.page_noto2024 section.nav_news_list .title h3 {
  font-size: 2rem;
  letter-spacing: 0.2em;
  margin-bottom: 1em;
}
@media (min-width: 768px) {
  .page_noto2024 section.nav_news_list .title h3 {
    font-size: 3rem;
  }
}
.page_noto2024 section.nav_news_list .title p {
  letter-spacing: 0.1em;
}
.page_noto2024 section.nav_news_list .scroll_footer {
  display: none;
}

.mod-phone {
  padding: 0;
  margin-bottom: 60px;
}
.mod-phone .wrapper {
  border: 1px solid black;
  padding: 15px;
}
.mod-phone .wrapper h3 {
  font-size: 1.2rem;
  text-align: center;
}
@media (min-width: 992px) {
  .mod-phone .wrapper h3 {
    text-align: left;
  }
}
.mod-phone .wrapper p {
  text-align: center;
  margin-bottom: 0;
  font-size: 2rem;
}
.mod-phone .wrapper p.name {
  font-size: 1.4rem;
}
@media (min-width: 576px) {
  .mod-phone .wrapper p.name {
    font-size: 2rem;
  }
}
.mod-phone .wrapper p.name small {
  font-size: 1.2rem;
}
@media (min-width: 576px) {
  .mod-phone .wrapper p.name small {
    font-size: 1.4rem;
  }
}
@media (min-width: 768px) {
  .mod-phone .wrapper p.number a {
    pointer-events: none;
  }
}
.mod-phone .wrapper p.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 0;
}
.mod-phone .wrapper p.btn a {
  background-color: gray;
  color: white;
  display: inline-block;
  padding: 0.5em 3em;
}

.mod-banquet_plans .banquet_plans_item .plan_name {
  margin: 1em 0 0 0;
  font-size: 1.6rem;
}
.mod-banquet_plans .banquet_plans_item .plan_term {
  font-size: 1.3rem;
}
.mod-banquet_plans .banquet_plans_item .plan_people {
  font-size: 1.3rem;
  margin-bottom: 0.5em;
}

.mod-point {
  margin-top: 60px;
}
.mod-point .slick-items .slick-item .inner {
  padding: 0 10px;
}
.mod-point .slick-items .slick-item .inner .img {
  width: 100%;
  padding-top: 66%;
  background-size: cover;
}
.mod-point .slick-items .slick-item .inner .title {
  font-family: "Shippori Mincho", serif;
  margin: 0;
  padding: 10px 0;
  font-size: 1.8rem;
}
.mod-point .slick-items .slick-item .inner .caption {
  font-size: 1.4rem;
}
.mod-point .slick-items .slick-item .inner .btn {
  background-color: black;
  color: white;
  padding: 0.15em 1em 0.3em 1em;
  font-size: 1.3rem;
  border-radius: 0;
  margin-top: 0.7em;
}
.mod-point .slick-items button {
  z-index: 3;
}
.mod-point .slick-items button.slick-prev {
  transform: translate(40px, -80px);
}
@media (min-width: 768px) {
  .mod-point .slick-items button.slick-prev {
    transform: translate(0, 0);
  }
}
.mod-point .slick-items button.slick-next {
  transform: translate(-40px, -80px);
}
@media (min-width: 768px) {
  .mod-point .slick-items button.slick-next {
    transform: translate(0, 0);
  }
}
.mod-point .slick-items button::before {
  color: black;
}

.autoscroll_nav .autoscroll_wrapper li {
  padding: 0 1px;
}
.autoscroll_nav .autoscroll_wrapper li a img {
  width: 100%;
  aspect-ratio: 4/3;
  justify-content: center;
  -o-object-fit: cover;
     object-fit: cover;
}
.autoscroll_nav .autoscroll_wrapper li .floor {
  background-color: black;
  color: white;
  display: inline-block;
  padding: 2px 6px;
  margin: 8px 0 0 0;
  font-size: 1rem;
}
@media (min-width: 992px) {
  .autoscroll_nav .autoscroll_wrapper li .floor {
    font-size: 1.4rem;
  }
}
.autoscroll_nav .autoscroll_wrapper li .name {
  font-size: 2rem;
}
.autoscroll_nav .autoscroll_wrapper li .description {
  font-size: 1.2rem;
}
@media (min-width: 1200px) {
  .autoscroll_nav .autoscroll_wrapper li .description {
    font-size: 1.4rem;
  }
}

.nav_banquet_plan p {
  font-size: 1.2rem;
}
.nav_banquet_plan .plan_name {
  margin-top: 1em;
  font-size: 1.4rem;
}

.nav_news .wrapper {
  position: relative;
}
.nav_news .wrapper .nav_scroller {
  height: 0;
  overflow: hidden;
}
.nav_news .wrapper .nav_scroller li {
  opacity: 0;
  transition: all 1s ease-out;
}
.nav_news .wrapper .nav_scroller.current {
  height: auto;
  overflow: visible;
}
.nav_news .wrapper .nav_scroller.current li {
  opacity: 1;
}

.scroll_nav h3 + p {
  margin: 0 0 10px 0;
}
.scroll_nav ul.category {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: -15px 0 30px;
}
.scroll_nav ul.category li {
  cursor: pointer;
  color: lightgray;
  transition: all 0.3s ease-out;
  white-space: nowrap;
  margin-left: 15px;
  margin-bottom: 15px;
}
.scroll_nav ul.category li:hover {
  opacity: 0.8;
}
.scroll_nav ul.category li.current {
  color: black;
}
.scroll_nav ul.category li:not(:last-child)::after {
  content: "|";
  margin-left: 15px;
}
.scroll_nav .nav_category_wrapper {
  width: 100%;
  margin: -15px 0 30px 0;
  text-align: center;
  position: relative;
}
.scroll_nav .nav_category_wrapper::after {
  content: "▼";
  font-size: 1.2rem;
  position: absolute;
  top: 5px;
  right: 35px;
  pointer-events: none;
}
.scroll_nav .nav_category_wrapper select {
  background-color: #c8c8c8;
  color: black;
  width: calc(100% - 50px);
  margin: 0 auto;
  text-align: center;
  padding: 3px 0 5px 0;
  cursor: pointer;
}
.scroll_nav .nav_category_wrapper select:focus {
  outline: none;
}
.scroll_nav .nav_scroller {
  margin: 0;
}
.scroll_nav .nav_scroller .scroll_wrapper ul.scroll_inner {
  width: 100%;
  margin: 0 auto;
  overflow: inherit;
  position: relative;
}
.scroll_nav .nav_scroller .scroll_wrapper ul.scroll_inner button {
  top: 70px;
  position: absolute;
  z-index: 3;
}
.scroll_nav .nav_scroller .scroll_wrapper ul.scroll_inner button.slick-prev {
  left: 10px;
}
@media (min-width: 768px) {
  .scroll_nav .nav_scroller .scroll_wrapper ul.scroll_inner button.slick-prev {
    left: -30px;
  }
}
.scroll_nav .nav_scroller .scroll_wrapper ul.scroll_inner button.slick-next {
  right: 10px;
}
@media (min-width: 768px) {
  .scroll_nav .nav_scroller .scroll_wrapper ul.scroll_inner button.slick-next {
    right: -30px;
  }
}
@media (min-width: 576px) {
  .scroll_nav .nav_scroller .scroll_wrapper ul.scroll_inner button {
    top: 100px;
  }
}
@media (min-width: 768px) {
  .scroll_nav .nav_scroller .scroll_wrapper ul.scroll_inner button {
    top: 90px;
  }
}
@media (min-width: 1200px) {
  .scroll_nav .nav_scroller .scroll_wrapper ul.scroll_inner button {
    top: 110px;
  }
}
@media (min-width: 1400px) {
  .scroll_nav .nav_scroller .scroll_wrapper ul.scroll_inner button {
    top: 130px;
  }
}
.scroll_nav .nav_scroller .scroll_wrapper ul.scroll_inner button:before {
  color: black;
  display: block;
}
.scroll_nav .nav_scroller .scroll_wrapper ul.scroll_inner li {
  font-size: 1.4rem;
  padding: 0 7px;
}
.scroll_nav .nav_scroller .scroll_wrapper ul.scroll_inner li img {
  width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 0.75em;
}
.scroll_nav .nav_scroller .scroll_wrapper ul.scroll_inner li .img {
  width: 100%;
  padding-top: 75%;
  background-size: cover;
  position: relative;
}
.scroll_nav .nav_scroller .scroll_wrapper ul.scroll_inner li .img .categories {
  position: absolute;
  top: 0;
  left: 0;
  padding: 2px 4px;
  background-color: black;
  color: white;
  font-size: 1.2rem;
}
.scroll_nav .nav_scroller .scroll_wrapper ul.scroll_inner li a {
  text-decoration: none;
}
.scroll_nav .nav_scroller .scroll_wrapper ul.scroll_inner li p.title {
  margin: 10px 0 0 0;
  padding: 0;
}
.scroll_nav .nav_scroller .scroll_wrapper ul.scroll_inner li p.restaurant {
  background-color: #d6bc46;
  color: white;
  padding: 2px 5px 3px 5px;
  font-size: 1.2rem;
  display: inline-block;
}
.scroll_nav .nav_scroller .scroll_wrapper ul.scroll_inner li p.date {
  margin: 0;
  color: gray;
}
.scroll_nav .nav_scroller .scroll_wrapper ul.scroll_inner li p.category {
  margin: 0;
  text-align: right;
}
.scroll_nav .nav_scroller .scroll_wrapper ul.scroll_inner li p.category::before {
  content: "[ ";
}
.scroll_nav .nav_scroller .scroll_wrapper ul.scroll_inner li p.category::after {
  content: " ]";
}
.scroll_nav .nav_scroller .scroll_wrapper ul.scroll_inner li p.description {
  font-size: 1rem;
}
.scroll_nav .nav_scroller .scroll_wrapper ul.scroll_inner li p.price {
  font-size: 1.6rem;
  text-align: right;
  line-height: 1;
  height: 1.6rem;
  display: inline-block;
  overflow: hidden;
  width: 100%;
}
.scroll_nav .nav_scroller .scroll_wrapper ul.scroll_inner li p.price span.condition {
  font-size: 1.2rem;
}
.scroll_nav .nav_scroller .scroll_wrapper ul.scroll_inner li p.price span.price {
  font-size: 1.8rem;
}
.scroll_nav .nav_scroller .scroll_wrapper ul.scroll_inner li p.price span.price::before {
  content: "￥";
}
.scroll_nav .nav_scroller .scroll_wrapper ul.scroll_inner li p.price span.price::after {
  content: "～";
}
.scroll_nav .nav_scroller .scroll_wrapper ul.scroll_inner li .category_mark p span {
  background-color: #c8c8c8;
  padding: 1px 4px 3px 4px;
}
.scroll_nav.nav_menu_list .scroll_wrapper ul.scroll_inner li .img {
  padding-top: 75%;
  background-position: center;
}
.scroll_nav.nav_stay .scroll_wrapper ul.scroll_inner li .img {
  padding-top: 75%;
  background-position: center;
}
.scroll_nav.nav_stay .scroll_wrapper ul.scroll_inner li p.title {
  min-height: 7em;
}

.nav_wingj .title_block {
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-content: center;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .nav_wingj .title_block {
    flex-direction: row;
  }
}
.nav_wingj .title_block .title {
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
}
.nav_wingj .title_block .title img {
  max-height: 80px;
}
.nav_wingj .title_block .title_sub p {
  text-align: center;
  font-size: 1.7rem;
}
@media (min-width: 768px) {
  .nav_wingj .title_block .title_sub p {
    font-size: 2rem;
    text-align: left;
  }
}
.nav_wingj .floor {
  display: inline-block;
  background-color: #d6bc46;
  padding: 2px 5px;
  margin: 10px 0 0;
}
.nav_wingj .name {
  font-size: 1.8rem;
}
.nav_wingj .scroll_footer a {
  border: 1px solid black;
}

div.scroll_footer {
  width: 100%;
  text-align: right;
  padding-top: 15px;
  height: auto;
}
div.scroll_footer a {
  border: 1px solid lightgray;
  padding: 8px 15px;
}

.nav_restaurant {
  overflow: hidden;
}

.module_menu_list ul.nav_category {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: -15px 0px 30px;
}
.module_menu_list ul.nav_category li {
  cursor: pointer;
  color: gray;
  transition: all 0.3s ease-out;
  white-space: nowrap;
  margin-left: 15px;
  margin-bottom: 15px;
}
.module_menu_list ul.nav_category li:hover {
  opacity: 0.8;
}
.module_menu_list ul.nav_category li.current {
  color: black;
}
.module_menu_list ul.nav_category li:not(:last-child)::after {
  content: "|";
  margin-left: 15px;
}
.module_menu_list ul.parent_category {
  max-width: 100vw;
  margin: 0 0 60px 0;
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5em;
  position: relative;
}
.module_menu_list ul.parent_category li {
  cursor: pointer;
  color: gray;
}
.module_menu_list ul.parent_category li.current {
  color: black;
}
.module_menu_list .list {
  /*display: flex;
  flex-wrap: wrap;
  margin: -15px;*/
}
.module_menu_list .list .menu {
  /*width: 50%;
  @include md {
  	width: 33.3%;
  }
  @include xl {
  	width: 25%;
  }
  margin-bottom: 30px;
  padding: 15px;*/
  position: relative;
}
.module_menu_list .list .menu.hide {
  display: none;
}
.module_menu_list .list .menu .image {
  width: 100%;
  padding-top: 66.6%;
  background-size: cover;
  margin-bottom: 10px;
  position: relative;
}
.module_menu_list .list .menu .image span.categories {
  position: absolute;
  top: 0;
  left: 0;
  padding: 3px 5px;
  background-color: black;
  color: white;
  font-size: 1.1rem;
}
@media (min-width: 768px) {
  .module_menu_list .list .menu .image span.categories {
    font-size: 1.3rem;
  }
}
.module_menu_list .list .menu h4.title {
  font-size: 1.4rem;
  padding: 0;
  line-height: 1.7;
  margin-bottom: 0.6em;
}
@media (min-width: 768px) {
  .module_menu_list .list .menu h4.title {
    font-size: 1.6rem;
  }
}
.module_menu_list .list .menu p.period {
  font-size: 1.2rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 0.6em;
}
@media (min-width: 768px) {
  .module_menu_list .list .menu p.period {
    font-size: 1.3rem;
  }
}
.module_menu_list .list .menu p.price {
  font-size: 1.4rem;
  text-align: right;
  line-height: 1.6;
  margin-bottom: 0.6em;
}
.module_menu_list .list .menu .restaurant {
  background-color: #d6bc46;
  color: white;
  font-size: 1.2rem;
  padding: 2px 5px 3px 5px;
  display: inline-block;
}

.module_live_list .schedules_y {
  margin: 0 0 15px 0;
  border: 0 solid white;
  border-width: 3px 0 0 0;
}
.module_live_list .schedules_y .schedules_m {
  margin: 0;
}
.module_live_list .schedules_y .schedules_m:last-of-type .schedule:last-of-type .dateday .schedule_inner {
  border-width: 0 !important;
}
.module_live_list .schedules_y .schedules_m:last-of-type .schedule:last-of-type .performers {
  border-width: 0 !important;
}
.module_live_list .schedules_y .schedules_m .schedule.SAT .dateday {
  color: #0080c8;
}
.module_live_list .schedules_y .schedules_m .schedule.holiday .dateday, .module_live_list .schedules_y .schedules_m .schedule.SUN .dateday {
  color: #cc0000;
}
.module_live_list .schedules_y .schedules_m .schedule.SUN {
  border: 0 solid white;
  border-width: 0 0 3px 0;
  margin: -1px 0 0 0;
}
.module_live_list .schedules_y .schedules_m .schedule.SUN .dateday .schedule_inner {
  border-width: 0;
}
.module_live_list .schedules_y .schedules_m .schedule.SUN .performers {
  border-width: 0;
}
.module_live_list .schedules_y .schedules_m .schedule .dateday {
  width: 100%;
  height: 100%;
  border: 1px solid white;
  border-width: 0 1px 0 0;
}
.module_live_list .schedules_y .schedules_m .schedule .dateday .schedule_inner {
  width: calc(100% - 15px);
  height: 100%;
  border: 0px solid white;
  border-width: 0 0 1px 0;
  display: flex;
  align-items: center;
  padding: 8px 0 8px 8px;
}
.module_live_list .schedules_y .schedules_m .schedule .dateday .schedule_inner span {
  font-family: futura-pt-condensed, sans-serif;
  font-weight: book;
  display: inline-block;
}
.module_live_list .schedules_y .schedules_m .schedule .dateday .schedule_inner span.date {
  font-size: 2.6rem;
  min-width: 65px;
}
.module_live_list .schedules_y .schedules_m .schedule .dateday .schedule_inner span.day {
  font-size: 1.3rem;
}
.module_live_list .schedules_y .schedules_m .schedule .performers {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 5px 0;
  border: 0px solid white;
  border-width: 0 0 1px 0;
}
@media (min-width: 576px) {
  .module_live_list .schedules_y .schedules_m .schedule .performers {
    flex-direction: row;
    gap: 5px 20px;
    align-items: center;
    flex-wrap: wrap;
  }
}
.module_live_list .schedules_y .schedules_m .schedule .performers .performer {
  align-items: center;
  display: flex;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s ease-out;
  min-width: 160px;
}
.module_live_list .schedules_y .schedules_m .schedule .performers .performer:hover {
  opacity: 0.8;
}
.module_live_list .schedules_y .schedules_m .schedule .performers .performer .thumb {
  width: 40px;
  height: 40px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
.module_live_list .schedules_y .schedules_m .schedule .performers .performer .info p {
  margin: 0;
  line-height: 1;
}
.module_live_list .schedules_y .schedules_m .schedule .performers .performer .info p.role {
  font-family: futura-pt-condensed, sans-serif;
  font-weight: book;
  font-size: 1.3rem;
  margin-bottom: 0.3em;
}
.module_live_list .schedules_y .schedules_m .schedule .performers .performer .info p.name {
  font-size: 1.2rem;
}
.module_live_list .performer_lightboxes {
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  max-height: 100dvh;
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  z-index: 10;
  pointer-events: none;
  transition: all 0.3s ease-out;
  display: flex;
  align-items: center;
  justify-content: center;
}
.module_live_list .performer_lightboxes.show {
  opacity: 1;
  pointer-events: auto;
}
.module_live_list .performer_lightboxes .performer_lightbox {
  display: none;
  padding: 15px 15px 60px 15px;
  color: white;
  width: 90%;
  max-width: 480px;
  background-color: black;
  text-align: center;
}
.module_live_list .performer_lightboxes .performer_lightbox.current {
  display: block;
}
.module_live_list .performer_lightboxes .performer_lightbox img {
  width: 160px;
  height: 160px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  margin-bottom: 30px;
}
.module_live_list .performer_lightboxes .performer_lightbox p {
  max-width: 320px;
  margin: 0 auto;
  line-height: 1;
}
.module_live_list .performer_lightboxes .performer_lightbox p.role_key {
  width: 100%;
  text-align: left;
  font-size: 6rem;
  max-width: 450px;
  font-family: futura-pt-condensed, sans-serif;
  font-weight: book;
}
.module_live_list .performer_lightboxes .performer_lightbox p.name_main {
  font-size: 1.6rem;
  margin-bottom: 0.5em;
}
.module_live_list .performer_lightboxes .performer_lightbox p.name_sub {
  font-size: 1rem;
  margin-bottom: 2.4em;
}
.module_live_list .performer_lightboxes .performer_lightbox p.role {
  font-size: 1.2rem;
  margin-bottom: 2em;
}
.module_live_list .performer_lightboxes .performer_lightbox p.profile {
  line-height: 1.6;
}

.mod_room {
  padding-top: 30px;
}
.mod_room h3 {
  font-family: "futura-pt", sans-serif;
  font-weight: 400;
  width: 100%;
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 0.2em;
}
.mod_room h3.benkay_r {
  font-family: "Shippori Mincho", serif;
}
.mod_room p {
  font-size: 1.3rem;
  text-align: center;
  color: #666666;
}
.mod_room .img_box {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  margin-top: 1.4em;
  margin-bottom: 5px;
}
.mod_room .img_box img {
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.3s ease-out;
  opacity: 0;
}
.mod_room .img_box img.active {
  opacity: 1;
}
.mod_room ul.thumbnail {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
}
.mod_room ul.thumbnail li {
  width: calc(25% - 1.5px);
  cursor: pointer;
  transition: all 0.3s ease-out;
}
.mod_room ul.thumbnail li:hover {
  opacity: 0.7;
}
.mod_room table.size {
  white-space: nowrap;
  margin: 15px 0;
  width: 100%;
}
.mod_room table.size tr {
  color: gray;
}
.mod_room table.size tr.bdt {
  border-top: 1px solid lightgray;
}
.mod_room table.size tr th {
  border-bottom: 1px solid lightgray;
  text-align: center;
  padding: 5px 0;
}
.mod_room table.size tr td {
  text-align: center;
  border-bottom: 1px solid lightgray;
  padding: 5px 0;
}
.mod_room .btns {
  display: flex;
  gap: 10px;
}
.mod_room .btns a {
  border-radius: 5px;
  color: gray;
  border: 1px solid gray;
  padding: 5px 10px;
  text-decoration: none;
  width: calc(50% - 5px);
  text-align: center;
  cursor: pointer;
}
.mod_room .btns a.fill {
  width: 100%;
}

.special_christmas .bg_video {
  width: 100%;
  height: 100vh;
  position: fixed;
  z-index: -1;
}
.special_christmas .bg_video .video_wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.special_christmas .bg_video .video_wrapper video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
}
.special_christmas .page_header {
  color: #A88200;
  position: relative;
  z-index: 1;
}
.special_christmas section.module_menu_list ul {
  color: #ffffff;
}
.special_christmas section.module_menu_list .menu h4.title {
  color: #A88200;
}
.special_christmas section.module_menu_list .menu p.price {
  color: #000000;
}
.special_christmas section.module_menu_list .menu p.restaurant {
  background-color: #A88200 !important;
}

.special_newyear {
  background: #ffffff url("../images/special_bg/newyear_bg2.jpg") top center repeat;
}
@media (min-width: 1400px) {
  .special_newyear {
    background-size: contain;
  }
}
.special_newyear .page_header {
  color: #cc0000;
  position: relative;
  z-index: 1;
}
.special_newyear section.module_menu_list ul {
  color: #ffffff;
}
.special_newyear section.module_menu_list .menu h4.title {
  color: #cc0000 !important;
}
.special_newyear section.module_menu_list .menu p.price {
  color: #000000;
}
.special_newyear section.module_menu_list .menu p.restaurant {
  background-color: #A88200 !important;
}/*# sourceMappingURL=style.css.map */