@charset "UTF-8";
/*============================================================
	Base
============================================================*/
html,
body {
  width: 100%;
  overflow-x: hidden;
}
@media only screen and (max-width: 767px) {
  html,
  body {
    min-height: 100vh;
  }
}

html {
  font-family: "Crimson Text", "Zen Old Mincho", serif;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  line-height: 1;
  -webkit-font-feature-settings: "palt";
     -moz-font-feature-settings: "palt";
          font-feature-settings: "palt";
  color: #222;
  word-wrap: break-word;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media only screen and (max-width: 767px) {
  html {
    font-size: 3.7333333333vw;
    -webkit-text-size-adjust: 100%;
  }
}
@media print, screen and (min-width: 768px) and (max-width: 1500px) {
  html {
    font-size: 1.0666666667vw;
  }
}
html * {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  letter-spacing: 0.05em;
}
html[lang=zh] {
  font-family: "Crimson Text", "Noto Serif SC", serif;
}
html[lang=ko] {
  font-family: "Crimson Text", "Noto Serif KR", serif;
}

body {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
}
body::before {
  position: absolute;
  content: "";
  background: url(../img/common/bg.svg) repeat center center/10rem 10.209525rem #f0ece9;
  inset: 0;
  z-index: -10;
}
body.fixed {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
}
@media only screen and (max-width: 767px) {
  body.fixed {
    height: -webkit-fill-available;
    height: 100vh;
    height: 100dvh;
    height: calc(var(--vh, 1vh) * 100);
  }
}

img {
  width: 100%;
  height: auto;
}
img[src$=".svg"] {
  max-width: 100%;
}

a,
a * {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  color: #222;
  text-decoration: none;
  outline: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

a:hover,
a:hover img {
  opacity: 0.75;
}

@media print, screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

header,
main,
section,
footer {
  width: 100%;
}

main {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 auto;
     -moz-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  min-height: 1px;
}

section {
  padding: 9.375rem 0;
}
@media only screen and (max-width: 767px) {
  section {
    padding: 5.3571428571rem 0;
  }
}

dt, strong {
  font-weight: inherit;
}

p {
  line-height: 1.8;
  text-align: justify;
}

/*============================================================
	Commmon
============================================================*/
@media only screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}

@media print, screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}

.inner {
  width: 80vw;
  max-width: 1200px;
  margin-inline: auto;
}
@media only screen and (max-width: 767px) {
  .inner {
    width: 86.6666666667%;
    max-width: 86.6666666667vw;
  }
}
.inner .container {
  width: 83.3333333333%;
  margin-inline: auto;
}
@media only screen and (max-width: 767px) {
  .inner .container {
    width: 100%;
  }
}

.notes li {
  color: #666;
  font-size: 0.875rem;
  padding-left: 1em;
  text-indent: -1em;
  line-height: 1.4;
  text-align: justify;
}
@media only screen and (max-width: 767px) {
  .notes li {
    font-size: 0.8571428571rem;
  }
}
.notes li::before {
  content: "※";
}
.notes li:not(:last-child) {
  margin-bottom: 0.5em;
}
.notes li.en {
  padding-left: 2.75em;
  text-indent: -2.75em;
}
.notes li.en::before {
  content: "Note: ";
}

/*  headings & title
-------------------------------------------------*/
.ttl {
  display: block;
  font-size: 1.5rem;
  padding-left: 1.875rem;
  margin-bottom: 3.125rem;
  color: #666;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .ttl {
    font-size: 1.0714285714rem;
    padding-left: 1.25rem;
    margin-bottom: 1.7857142857rem;
  }
}
.ttl::before {
  position: absolute;
  content: "";
  background: url(../img/common/icon_plum.svg) no-repeat left center/contain;
  width: 1.25rem;
  height: 1.25rem;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media only screen and (max-width: 767px) {
  .ttl::before {
    width: 0.8928571429rem;
    height: 0.8928571429rem;
  }
}

h2 {
  display: inline-block;
  font-size: 1.5rem;
  padding-right: 8.75rem;
  margin-bottom: 3.125rem;
  position: relative;
}
@media only screen and (max-width: 767px) {
  h2 {
    font-size: 1.2857142857rem;
    padding-right: 5.1785714286rem;
    margin-bottom: 1.7857142857rem;
    line-height: 1.4;
  }
}
h2::after {
  position: absolute;
  content: "";
  width: 7.5rem;
  height: 1px;
  right: 0;
  background: #222;
}
@media print, screen and (min-width: 768px) {
  h2::after {
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
@media only screen and (max-width: 767px) {
  h2::after {
    width: 4.4642857143rem;
    bottom: 0.75em;
  }
}

h3 {
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
  line-height: 1.4;
  padding-left: 1em;
  text-indent: -1em;
}
@media only screen and (max-width: 767px) {
  h3 {
    font-size: 1.1428571429rem;
    margin-bottom: 0.7142857143rem;
  }
}
h3::before {
  content: "■";
}

/*  links
-------------------------------------------------*/
.btn__arrow {
  display: inline-block;
  font-size: 1.125rem;
  padding-right: 2.5rem;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .btn__arrow {
    padding-right: 1.7857142857rem;
  }
}
.btn__arrow::after {
  position: absolute;
  content: "";
  width: 1.875rem;
  height: 1.875rem;
  border-radius: 50%;
  border: solid 1px #fff;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media only screen and (max-width: 767px) {
  .btn__arrow::after {
    width: 1.4285714286rem;
    height: 1.4285714286rem;
  }
}
.btn__arrow span {
  position: absolute;
  right: 0.625rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  width: 0.625rem;
  height: 100%;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .btn__arrow span {
    right: 0.4285714286rem;
    width: 0.5714285714rem;
  }
}
.btn__arrow span::before, .btn__arrow span::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 0.25rem;
  top: 0.375rem;
  right: 0.0625rem;
  -webkit-transform: skew(45deg);
          transform: skew(45deg);
  border-right: solid 1px #fff;
  border-bottom: solid 1px #fff;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
}
@media only screen and (max-width: 767px) {
  .btn__arrow span::before, .btn__arrow span::after {
    height: 0.25rem;
    top: 0.3571428571rem;
    right: 0.0357142857rem;
  }
}
.btn__arrow span::after {
  -webkit-transform: skew(45deg) translate(-100%, 0);
          transform: skew(45deg) translate(-100%, 0);
}
.btn__arrow:hover span::before {
  -webkit-animation-name: transformRightLeft;
          animation-name: transformRightLeft;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
.btn__arrow:hover span::after {
  -webkit-animation-name: transformLeftRight;
          animation-name: transformLeftRight;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

@-webkit-keyframes transformLeftRight {
  0% {
    -webkit-transform: skew(45deg) translate(-100%, 0);
            transform: skew(45deg) translate(-100%, 0);
  }
  100% {
    -webkit-transform: skew(45deg) translate(0, 0);
            transform: skew(45deg) translate(0, 0);
  }
}

@keyframes transformLeftRight {
  0% {
    -webkit-transform: skew(45deg) translate(-100%, 0);
            transform: skew(45deg) translate(-100%, 0);
  }
  100% {
    -webkit-transform: skew(45deg) translate(0, 0);
            transform: skew(45deg) translate(0, 0);
  }
}
@-webkit-keyframes transformRightLeft {
  0% {
    -webkit-transform: skew(45deg) translate(0, 0);
            transform: skew(45deg) translate(0, 0);
  }
  100% {
    -webkit-transform: skew(45deg) translate(100%, 0);
            transform: skew(45deg) translate(100%, 0);
  }
}
@keyframes transformRightLeft {
  0% {
    -webkit-transform: skew(45deg) translate(0, 0);
            transform: skew(45deg) translate(0, 0);
  }
  100% {
    -webkit-transform: skew(45deg) translate(100%, 0);
            transform: skew(45deg) translate(100%, 0);
  }
}
.reservation {
  background: #94252a;
  display: block grid;
  place-items: center;
  width: 22.5rem;
  height: 5rem;
}
@media only screen and (max-width: 767px) {
  .reservation {
    width: 17.8571428571rem;
    height: 4.2857142857rem;
  }
}
.reservation span {
  color: #fff;
  font-size: 1.875rem;
  font-weight: 500;
  padding-left: 3.125rem;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .reservation span {
    font-size: 1.6071428571rem;
    padding-left: 2.5rem;
  }
}
.reservation span::before {
  position: absolute;
  content: "";
  background: url(../img/common/icon_calendar.svg) no-repeat left center/contain;
  width: 2.5rem;
  height: 2.5rem;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media only screen and (max-width: 767px) {
  .reservation span::before {
    width: 2.1428571429rem;
    height: 2.1428571429rem;
  }
}
.reservation.fixed {
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 1000;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media print, screen and (min-width: 768px) {
  .reservation.fixed {
    width: 3.4375rem;
    height: 12.5rem;
  }
  .reservation.fixed span {
    font-size: 1.125rem;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    padding-left: unset;
    padding-top: 1.875rem;
  }
  .reservation.fixed span::before {
    width: 1.25rem;
    height: 1.25rem;
    top: 0;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
}
@media only screen and (max-width: 767px) {
  .reservation.fixed {
    width: 11.4285714286rem;
    height: 2.8571428571rem;
  }
  .reservation.fixed span {
    font-size: 1rem;
    padding-left: 1.4285714286rem;
  }
  .reservation.fixed span::before {
    width: 1.0714285714rem;
    height: 1.0714285714rem;
  }
}
.reservation.fixed.out {
  -webkit-transform: translate(100%, 0);
          transform: translate(100%, 0);
}
@media only screen and (max-width: 767px) {
  .reservation.fixed.out {
    -webkit-transform: translate(0, 105%);
            transform: translate(0, 105%);
  }
}

/*  scroll
-------------------------------------------------*/
/*  map
-------------------------------------------------*/
.gm-style-iw {
  font-family: "Crimson Text", "Zen Old Mincho", serif !important;
  padding: 36px 12px 12px 12px !important;
  position: relative;
  max-width: 80% !important;
  max-height: 500px !important;
}

.gm-style-iw-chr div {
  display: none !important;
}

.gm-ui-hover-effect {
  width: 20px !important;
  height: 20px !important;
  position: absolute !important;
  right: 10px !important;
  top: 10px !important;
}
.gm-ui-hover-effect span {
  width: 20px !important;
  height: 20px !important;
  margin: 0 !important;
}

.balloon {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.balloon strong {
  font-size: 1.125rem;
}
@media only screen and (max-width: 767px) {
  .balloon strong {
    font-size: 1rem;
  }
}
.balloon .map {
  margin-top: 0.5em;
  padding: 5px 10px 5px 22px;
  border-radius: 20px;
  background: #222;
  color: #fff;
  position: relative;
}
.balloon .map::before {
  position: absolute;
  content: "";
  width: 5px;
  height: 8px;
  background: #fff;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 10px;
}

/*============================================================
	Layout
============================================================*/
/*  header
-------------------------------------------------*/
header {
  position: relative;
}
@media only screen and (max-width: 767px) {
  header {
    padding: 1.0714285714rem;
  }
}
header .midnight {
  z-index: 1000;
  visibility: hidden;
  pointer-events: none;
}
header .midnight .midnightInner {
  padding: 1.875rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  header .midnight .midnightInner {
    padding: 1.0714285714rem;
  }
}
header .midnight .midnightInner .logo__wrap {
  z-index: 1001;
  width: 2.5rem;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  header .midnight .midnightInner .logo__wrap {
    width: 2.1428571429rem;
  }
}
header .midnight .midnightInner .logo__wrap .logo {
  pointer-events: auto;
  display: block;
}
header .midnight .midnightInner .logo__wrap .logo.white {
  -webkit-filter: invert(100%) grayscale(100%) contrast(1000%);
          filter: invert(100%) grayscale(100%) contrast(1000%);
}
header .midnight .midnightInner .lang__wrap {
  z-index: 1001;
  margin-top: 6.875rem;
}
@media only screen and (max-width: 767px) {
  header .midnight .midnightInner .lang__wrap {
    margin-top: 3.9285714286rem;
  }
}
header .midnight .midnightInner .lang__wrap .lang {
  pointer-events: auto;
  cursor: pointer;
  font-size: 1.5rem;
  display: block;
  text-align: center;
  letter-spacing: 0;
  width: 5rem;
  position: relative;
}
@media only screen and (max-width: 767px) {
  header .midnight .midnightInner .lang__wrap .lang {
    font-size: 1.2857142857rem;
    width: 2.8571428571rem;
  }
}
header .midnight .midnightInner .lang__wrap .lang::after {
  position: absolute;
  content: "";
  background: #222;
  width: 0.625rem;
  height: 0.3125rem;
  -webkit-clip-path: polygon(50% 100%, 100% 0, 0 0);
          clip-path: polygon(50% 100%, 100% 0, 0 0);
  right: 0.625rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media only screen and (max-width: 767px) {
  header .midnight .midnightInner .lang__wrap .lang::after {
    right: 0;
  }
}
header .midnight .midnightInner .lang__wrap .lang.open::after {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}
header .midnight .midnightInner .lang__wrap .lang.white {
  color: #fff;
}
header .midnight .midnightInner .lang__wrap .lang.white::after {
  background: #fff;
}
header .midnight .dark .logo {
  -webkit-filter: invert(100%) grayscale(100%) contrast(1000%);
          filter: invert(100%) grayscale(100%) contrast(1000%);
}
header .midnight .dark .lang__wrap .lang {
  color: #fff;
}
header .midnight .dark .lang__wrap .lang::after {
  background: #fff;
}
header .lang__list {
  display: none;
  width: 5rem;
  background: #fff;
  position: fixed;
  top: 11.25rem;
  right: 1.875rem;
  z-index: 1001;
}
@media only screen and (max-width: 767px) {
  header .lang__list {
    width: 3.5714285714rem;
    top: 7.1428571429rem;
    right: 0.7142857143rem;
  }
}
@media only screen and (max-width: 767px) {
  header .lang__list li:not(:last-child) {
    border-bottom: solid 1px #f2f2f2;
  }
}
header .lang__list li a {
  font-size: 1.5rem;
  display: block;
  text-align: center;
  letter-spacing: 0;
  padding: 1.25rem 0;
}
@media only screen and (max-width: 767px) {
  header .lang__list li a {
    font-size: 1.2857142857rem;
    padding: 1.0714285714rem 0;
  }
}
header .lang__list li a:hover {
  background: #f2f2f2;
}
header .hamburger {
  display: block;
  cursor: pointer;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: #222;
  position: fixed;
  z-index: 1000;
  right: 1.875rem;
  top: 1.875rem;
}
@media only screen and (max-width: 767px) {
  header .hamburger {
    width: 2.8571428571rem;
    height: 2.8571428571rem;
    right: 1.0714285714rem;
    top: 1.0714285714rem;
  }
}
header .hamburger span {
  position: absolute;
  width: 3.125rem;
  height: 0.125rem;
  background: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media only screen and (max-width: 767px) {
  header .hamburger span {
    width: 1.7857142857rem;
    height: 0.0714285714rem;
  }
}
header .hamburger span:first-child {
  top: 1.875rem;
}
@media only screen and (max-width: 767px) {
  header .hamburger span:first-child {
    top: 1.0714285714rem;
  }
}
header .hamburger span:nth-child(2) {
  width: 2.5rem;
  margin-left: 0.3125rem;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  margin-left: 0.1785714286rem;
}
@media only screen and (max-width: 767px) {
  header .hamburger span:nth-child(2) {
    width: 1.4285714286rem;
  }
}
header .hamburger span:last-child {
  bottom: 1.875rem;
}
@media only screen and (max-width: 767px) {
  header .hamburger span:last-child {
    bottom: 1.0714285714rem;
  }
}
header .hamburger.active span:first-child {
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(30deg);
          transform: translate(-50%, -50%) rotate(30deg);
}
header .hamburger.active span:nth-child(2) {
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}
header .hamburger.active span:last-child {
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-30deg);
          transform: translate(-50%, -50%) rotate(-30deg);
}

nav {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.6s ease, visibility 0.6s ease;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  position: fixed;
  background: url(../img/common/bg_bk.svg) repeat center center/2.9375rem 2.5625rem #222;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 999;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
@media print, screen and (min-width: 768px) {
  nav {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
       -moz-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    padding: 0 5.3125rem 1.875rem 1.875rem;
  }
}
@media only screen and (max-width: 767px) {
  nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-top: 10.7142857143rem;
  }
}
nav.open {
  opacity: 1;
  visibility: visible;
}
@media print, screen and (min-width: 768px) {
  nav .gnav {
    position: absolute;
    inset: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media print, screen and (min-width: 768px) {
  nav .gnav li:not(:last-child) {
    margin-right: 3.125rem;
  }
}
@media only screen and (max-width: 767px) {
  nav .gnav li:not(:last-child) {
    margin-bottom: 2.8571428571rem;
  }
}
nav .gnav li .btn__arrow {
  color: #fff;
  font-size: 1.875rem;
  padding-right: 3.75rem;
}
@media only screen and (max-width: 767px) {
  nav .gnav li .btn__arrow {
    font-size: 1.4285714286rem;
    padding-right: 2.5rem;
  }
}
nav .gnav li .btn__arrow::after {
  width: 3.125rem;
  height: 3.125rem;
}
@media only screen and (max-width: 767px) {
  nav .gnav li .btn__arrow::after {
    width: 2.1428571429rem;
    height: 2.1428571429rem;
  }
}
nav .gnav li .btn__arrow span {
  right: 1.0625rem;
  width: 1rem;
}
@media only screen and (max-width: 767px) {
  nav .gnav li .btn__arrow span {
    right: 0.6428571429rem;
    width: 0.8571428571rem;
  }
}
nav .gnav li .btn__arrow span::before, nav .gnav li .btn__arrow span::after {
  height: 0.375rem;
  right: 0.125rem;
  top: 0.625rem;
}
@media only screen and (max-width: 767px) {
  nav .gnav li .btn__arrow span::before, nav .gnav li .btn__arrow span::after {
    height: 0.2857142857rem;
    right: 0.0714285714rem;
    top: 0.5357142857rem;
  }
}
nav address {
  font-size: 1.125rem;
  line-height: 1.4;
  color: #999;
}
@media only screen and (max-width: 767px) {
  nav address {
    white-space: nowrap;
    position: absolute;
    left: 1.7857142857rem;
    bottom: 16.0714285714rem;
  }
}
nav .links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
     -moz-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media only screen and (max-width: 767px) {
  nav .links {
    position: absolute;
    right: 1.0714285714rem;
    bottom: 3.9285714286rem;
  }
}
nav .links li:not(:last-child) {
  margin-bottom: 1.875rem;
}
@media only screen and (max-width: 767px) {
  nav .links li:not(:last-child) {
    margin-bottom: 1.0714285714rem;
  }
}
nav .links li .btn__arrow {
  color: #999;
}
nav .links li .btn__arrow::after {
  border-color: #999;
}
nav .links li .btn__arrow span::before, nav .links li .btn__arrow span::after {
  border-right-color: #999;
  border-bottom-color: #999;
}

/*  Pre-check-in Info
-------------------------------------------------*/
#pre_check_in {
  background: url(../img/common/bg_bk.svg) repeat center center/2.9375rem 2.5625rem #222;
  color: #fff;
}
#pre_check_in .inner .container h2::after {
  background: #fff;
}
#pre_check_in .inner .container > ul:not(.status) {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.125rem;
  margin: 1.875rem 0;
}
@media only screen and (max-width: 767px) {
  #pre_check_in .inner .container > ul:not(.status) {
    grid-template-columns: 100%;
    gap: 1.7857142857rem;
    margin: 1.0714285714rem 0;
  }
}
#pre_check_in .inner .container > ul:not(.status) > li {
  background: url(../img/common/bg.svg) repeat center center/10rem 10.209525rem #f0ece9;
  color: #222;
  padding: 1.875rem;
}
@media only screen and (max-width: 767px) {
  #pre_check_in .inner .container > ul:not(.status) > li {
    padding: 1.0714285714rem;
  }
}
#pre_check_in .inner .container > ul:not(.status) > li h3 {
  border-bottom: solid 1px #222;
  padding-bottom: 1.25rem;
}
@media only screen and (max-width: 767px) {
  #pre_check_in .inner .container > ul:not(.status) > li h3 {
    padding-bottom: 0.7142857143rem;
  }
}
#pre_check_in .inner .container > ul:not(.status) > li > ul > li {
  padding-left: 1em;
  text-indent: -1em;
  line-height: 1.4;
}
#pre_check_in .inner .container > ul:not(.status) > li > ul > li::before {
  content: "・";
}
#pre_check_in .inner .container > ul:not(.status) > li > ul > li:not(:last-child) {
  margin-bottom: 0.625rem;
}
@media only screen and (max-width: 767px) {
  #pre_check_in .inner .container > ul:not(.status) > li > ul > li:not(:last-child) {
    margin-bottom: 0.3571428571rem;
  }
}
#pre_check_in .inner .container > ul:not(.status) > li > ul > li small {
  font-size: 0.875rem;
  color: #666;
}
@media only screen and (max-width: 767px) {
  #pre_check_in .inner .container > ul:not(.status) > li > ul > li small {
    font-size: 0.8571428571rem;
  }
}
#pre_check_in .inner .container > ul:not(.status) > li > small {
  font-size: 0.875rem;
  display: block;
  padding-left: 1em;
  text-indent: -1em;
  margin-top: 1.25rem;
}
@media only screen and (max-width: 767px) {
  #pre_check_in .inner .container > ul:not(.status) > li > small {
    font-size: 0.8571428571rem;
    margin-top: 0.7142857143rem;
    line-height: 1.4;
  }
}
#pre_check_in .inner .container > ul:not(.status) > li > small::before {
  content: "※";
}
#pre_check_in .inner .container > ul:not(.status) > li > small.en {
  padding-left: 2.75em;
  text-indent: -2.75em;
}
#pre_check_in .inner .container > ul:not(.status) > li > small.en::before {
  content: "Note: ";
}
#pre_check_in .inner .container .noise {
  border: solid 1px #fff;
  padding: 1.875rem;
  margin: 3.125rem 0;
}
@media only screen and (max-width: 767px) {
  #pre_check_in .inner .container .noise {
    padding: 1.0714285714rem;
    margin: 1.7857142857rem 0;
  }
}
#pre_check_in .inner .container .calendar {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1/1.5;
}
@media only screen and (max-width: 767px) {
  #pre_check_in .inner .container .calendar {
    aspect-ratio: 1/5.5;
  }
}
#pre_check_in .inner .container .calendar iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
}
#pre_check_in .inner .container .status {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.125rem;
}
@media only screen and (max-width: 767px) {
  #pre_check_in .inner .container .status {
    grid-template-columns: 100%;
    gap: 1.7857142857rem;
  }
}
#pre_check_in .inner .container .status .book-widget {
  line-height: 0 !important;
}
@media only screen and (max-width: 767px) {
  #pre_check_in .inner .container .status .book-widget {
    padding: 0 5px !important;
  }
}
#pre_check_in .inner .container .status .book-widget .ui-widget {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  border: none !important;
}
#pre_check_in .inner .container .status .book-widget .ui-icon-circle-triangle-w::before,
#pre_check_in .inner .container .status .book-widget .ui-icon-circle-triangle-e::before {
  color: #222 !important;
}
#pre_check_in .inner .container .status .book-form-title {
  display: none;
}

/*  footer
-------------------------------------------------*/
footer {
  padding: 3.125rem 0;
  text-align: center;
  font-size: 0.875rem;
}