body {
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: unset;
  -ms-scroll-snap-type: y mandatory;
      scroll-snap-type: y mandatory;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}
h1,
h2,
h3,
h4,
h5,
th {
  font-weight: normal;
}
@media screen and (max-width: 960px) {
  .no-sm {
    display: none !important;
  }
}
@media screen and (min-width: 961px) {
  .no-lg {
    display: none !important;
  }
}
@media screen and (min-width: 961px) {
  .sm-only {
    display: none !important;
  }
}
@media screen and (max-width: 960px) {
  .lg-only {
    display: none !important;
  }
}
body {
  font-family: adobe-caslon-pro, yu-mincho-pr6, sans-serif;
  font-weight: 400;
  font-style: normal;
  overflow-scrolling: touch;
}
/* ::-webkit-scrollbar {
  display: none;
  -webkit-appearance: none;
} */
a {
  color: #000000;
  text-decoration: none;
}
.global-header {
  z-index: 3;
}
.document-wrapper {
  position: relative;
}
.document-wrapper.loading {
  max-height: 100vh;
  overflow: hidden;
}
main {
  display: block;
  z-index: 1;
  position: relative;
  background-color: #ffffff;
  transition-property: opacity, background-color;
  transition-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition-duration: 1s;
  overflow: hidden;
}
main[data-bg="plaisance"] {
  background-color: #f1f3f4;
}
main[data-bg="about"] {
  background-color: #fdfafb;
}
main[data-bg="atami"] {
  background-color: #f0f3fa;
}
main[data-bg="sengokuhara"] {
  background-color: #f0f6ed;
}
main[data-bg="ginoza"] {
  background-color: #edf7f5;
}
main[data-bg="kyoto"] {
  background-color: #ecf6fc;
}
@media screen and (max-width: 960px) {
  main {
    padding-top: 98.33333333px;
  }
}
@media screen and (min-width: 961px) {
  main {
    padding-top: 100px;
  }
}
@media screen and (max-width: 960px) {
  header.global-header.sm-only {
    height: 85px;
    width: 100%;
    position: fixed;
    z-index: 3;
    top: 0;
    left: 0;
    transition-property: opacity, -webkit-transform;
    transition-property: opacity, transform;
    transition-property: opacity, transform, -webkit-transform;
    transition-duration: 0.3s;
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  header.global-header.sm-only.hidden {
    opacity: 0;
    pointer-events: none;
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  header.global-header.sm-only[data-focused-section="plaisance"] .indicator {
    background-color: #f1f3f4;
    color: #84764a;
    border-bottom-color: #dbd6c9;
  }
  header.global-header.sm-only[data-focused-section="kashikojima"] .indicator {
    background-color: #683467;
    color: #ffffff;
    border-bottom-color: transparent;
  }
  header.global-header.sm-only[data-focused-section="atami"] .indicator {
    background-color: #683467;
    color: #ffffff;
    border-bottom-color: transparent;
  }
  header.global-header.sm-only[data-focused-section="sengokuhara"] .indicator {
    background-color: #683467;
    color: #ffffff;
    border-bottom-color: transparent;
  }
  header.global-header.sm-only[data-focused-section="ginoza"] .indicator {
    background-color: #683467;
    color: #ffffff;
    border-bottom-color: transparent;
  }
  header.global-header.sm-only[data-focused-section="kyoto"] .indicator {
    background-color: #683467;
    color: #ffffff;
    border-bottom-color: transparent;
  }
  header.global-header.sm-only[data-focused-section="sakurai"] .indicator {
    background-color: #683467;
    color: #ffffff;
    border-bottom-color: transparent;
  }
  header.global-header.sm-only.no-indicator .indicator {
    opacity: 0;
  }
  header.global-header.sm-only.nav-open .row .btn:before {
    -webkit-transform: rotate(135deg) scale(0.9, 1.1);
            transform: rotate(135deg) scale(0.9, 1.1);
  }
  header.global-header.sm-only.nav-open .row .btn:after {
    -webkit-transform: rotate(-135deg) scale(0.9, 1.1);
            transform: rotate(-135deg) scale(0.9, 1.1);
  }
  header.global-header.sm-only .row {
    position: relative;
    z-index: 2;
    padding-left: 4.26666667vw;
    padding-right: 4.26666667vw;
    background-color: #fff;
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #dbd6c9;
  }
  header.global-header.sm-only .row .logo {
    width: 360px;
    height: 90px;
    display: block;
    background-image: url("../images/top/sm/logo_sm.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
  }
  header.global-header.sm-only .row .btn {
    width: 37px;
    height: 37px;
    display: block;
    position: relative;
  }
  header.global-header.sm-only .row .btn:before,
  header.global-header.sm-only .row .btn:after {
    content: "";
    display: block;
    width: 37px;
    height: 1px;
    background-color: #683467;
    position: absolute;
    left: 0;
    top: 18px;
    transition-duration: 0.3s;
    transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
  }
  header.global-header.sm-only .row .btn:before {
    -webkit-transform: translateY(-3px);
            transform: translateY(-3px);
  }
  header.global-header.sm-only .row .btn:after {
    -webkit-transform: translateY(3px);
            transform: translateY(3px);
  }
  header.global-header.sm-only .indicator {
    background-color: #683467;
    color: #ffffff;
    border-bottom: 1px solid transparent;
    box-sizing: border-box;
    height: 25px;
    font-size: 12px;
    text-align: center;
    line-height: 32px;
    letter-spacing: 0.05em;
    transition-property: opacity, background-color;
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    transition-duration: 0.3s, 1s;
  }
  header.global-header.sm-only nav {
    display: none;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    box-sizing: border-box;
    padding-top: 60px;
  }
  header.global-header.sm-only nav .inner {
    width: 100%;
    height: 100%;
    position: relative;
  }
  header.global-header.sm-only nav .bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: block;
    background-color: #ffffff;
    -webkit-transform-origin: center top;
            transform-origin: center top;
  }
  header.global-header.sm-only nav .links {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: block;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  header.global-header.sm-only nav .links ul li {
    position: relative;
    font-size: 15px;
    height: 70px;
  }
  header.global-header.sm-only nav .links ul li:before {
    content: "";
    display: block;
    width: 50%;
    height: 100%;
    z-index: 1;
    position: absolute;
    top: 0;
    right: 0;
    background-image: url("../images/svg/arrow_black-1577349653303.svg");
    background-repeat: no-repeat;
    background-size: 6px 10px;
    background-position: left 90px top 46%;
  }
  header.global-header.sm-only nav .links ul a {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  header.global-header.sm-only nav .links .lang {
    display: none;
    font-size: 10px;
    text-align: center;
    margin-top: 50px;
    margin-bottom: 40px;
    color: #666666;
  }
  header.global-header.sm-only nav .links .lang span {
    display: inline-block;
    margin: 0 5px;
  }
  header.global-header.sm-only nav .links .lang a {
    color: #666666;
  }
  header.global-header.sm-only nav .links .lang a.active {
    color: #000000;
  }
  header.global-header.sm-only nav .reservation,
  header.global-header.sm-only nav .hotels {
    -webkit-transform-origin: top left;
            transform-origin: top left;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: block;
    background-color: #ffffff;
    box-sizing: border-box;
    padding-left: 4.26666667vw;
    padding-right: 4.26666667vw;
  }
  header.global-header.sm-only nav .reservation h2,
  header.global-header.sm-only nav .hotels h2,
  header.global-header.sm-only nav .reservation h3,
  header.global-header.sm-only nav .hotels h3 {
    border-bottom: 1px solid #dbd6c9;
    color: #84764a;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    line-height: 1;
  }
  header.global-header.sm-only nav .reservation h2,
  header.global-header.sm-only nav .hotels h2 {
    height: 60px;
    font-size: 15px;
    letter-spacing: 0.15em;
    padding-top: 6px;
  }
  header.global-header.sm-only nav .reservation h3,
  header.global-header.sm-only nav .hotels h3 {
    padding-top: 3px;
    height: 30px;
    font-size: 12px;
    letter-spacing: 0.1em;
  }
  header.global-header.sm-only nav .reservation li,
  header.global-header.sm-only nav .hotels li {
    height: 55px;
    border-bottom: 1px solid #dbd6c9;
    background-image: url("");
    background-repeat: no-repeat;
    background-position: right 12px top 50%;
    background-size: 16px 16px;
  }
  header.global-header.sm-only nav .reservation li a,
  header.global-header.sm-only nav .hotels li a {
    display: block;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    padding-top: 15px;
    padding-left: 10px;
  }
  header.global-header.sm-only nav .reservation li a > span,
  header.global-header.sm-only nav .hotels li a > span {
    display: block;
    font-size: 11px;
    line-height: 16px;
  }
  header.global-header.sm-only nav .reservation li a > span > span,
  header.global-header.sm-only nav .hotels li a > span > span {
    display: inline-block;
    margin-left: 5px;
  }
  header.global-header.sm-only nav .hotels ul li {
    background-image: none;
  }
  header.detail-links {
    z-index: 2;
    background-color: red;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10.66666667vw;
    display: flex;
    flex-direction: row;
    transition-duration: 0.6s;
    transition-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition-property: opacity, -webkit-transform;
    transition-property: transform, opacity;
    transition-property: transform, opacity, -webkit-transform;
  }
  header.detail-links.hidden {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
    pointer-events: none;
  }
  header.detail-links a {
    width: 50%;
    height: 100%;
    background-image: url("../images/phone_sm.png");
	background-size:  cover;
    color: #ffffff;
    font-size: 3.2vw;
    display: flex;
    border: 1px solid transparent;
    transition-duration: 0.2s;
    transition-property: background-color, border-color;
    transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  header.detail-links a span {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    letter-spacing: 0.1em;
    position: relative;
    margin-top: 0.66666667vw;
  }
  header.detail-links a i {
    height: 10.66666667vw;
    width: 10.66666667vw;
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  header.detail-links a i:after {
    content: "";
    width: 12px;
    height: 12px;
    display: block;
    background-image: url("");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
    left: 3px;
  }
  header.detail-links[data-hotel=kashikojima] a:first-child {
    background-image: url("../images/instagram_sm.png");
	background-size:  cover;
  }
  header.detail-links[data-hotel=atami] a:first-child {
    background-image: url("../images/instagram_sm.png");
	background-size:  cover;
  }
  header.detail-links[data-hotel=sengokuhara] a:first-child {
    background-image: url("../images/instagram_sm.png");
	background-size:  cover;
  }
  header.detail-links[data-hotel=ginoza] a:first-child {
    background-image: url("../images/instagram_sm.png");
	background-size:  cover;
  }
  header.detail-links[data-hotel=kyoto] a:first-child {
    background-image: url("../images/instagram_sm.png");
	background-size:  cover;
  }
  header.detail-links[data-hotel=miyota] a:first-child {
    background-image: url("../images/instagram_sm.png");
	background-size:  cover;
  }
  header.detail-links[data-hotel=sakurai] a:first-child {
    background-image: url("../images/instagram_sm.png");
	background-size:  cover;
  }
  .icon-blank {
    position: relative;
  }
  .icon-blank:after {
    content: "";
    width: 12px;
    height: 12px;
    display: block;
    background-image: url("");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    height: 4.26666667vw;
    width: 4.26666667vw;
    position: absolute;
    right: 1.33333333vw;
    opacity: 0.7;
  }
  footer.global-footer {
    background-color: #333333;
    color: #dddddd;
    padding-left: 4vw;
    padding-right: 4vw;
  }
  footer.global-footer a {
    color: #dddddd;
    text-decoration: none;
  }
  footer.global-footer .to-top {
    color: #9d8f70;
    height: 18.66666667vw;
    width: 32vw;
    font-size: 2.4vw;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 8vw;
    letter-spacing: 0.2em;
    text-align: center;
  }
  footer.global-footer .to-top i {
    position: relative;
    display: block;
    height: 12.8vw;
    width: 1px;
    background-color: #84764a;
    margin: 0 auto 8px;
  }
  footer.global-footer .to-top i span {
    position: absolute;
    left: -1px;
    top: 0;
    content: "";
    display: block;
    width: 3px;
    height: 100%;
    background-color: #84764a;
    -webkit-transform: scaleY(0.5);
            transform: scaleY(0.5);
  }
  footer.global-footer .links .col h3 {
    color: #9d8f70;
    border-top: 1px solid #505050;
    font-size: 3.33333333vw;
    letter-spacing: 0.1em;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    height: 16vw;
    padding-top: 1.33333333vw;
  }
  footer.global-footer .links .col li {
    border-top: 1px solid #505050;
    position: relative;
  }
  footer.global-footer .links .col a {
    display: flex;
    box-sizing: border-box;
    height: 16vw;
    padding-left: 4vw;
    padding-top: 1.33333333vw;
    flex-direction: column;
    justify-content: center;
    font-size: 2.93333333vw;
    line-height: 4.26666667vw;
    letter-spacing: 0.05em;
    position: relative;
  }
  footer.global-footer .links .col a:after {
    content: "";
    width: 12px;
    height: 12px;
    display: block;
    background-image: url("");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    height: 4.26666667vw;
    width: 4.26666667vw;
    position: absolute;
    right: 1.33333333vw;
    opacity: 0.7;
  }
  footer.global-footer .links .col a > span {
    display: block;
  }
  footer.global-footer .links .col a > span > span {
    display: inline-block;
    margin-left: 1.33333333vw;
  }
  footer.global-footer .links .info .banners a {
    border-top: 1px solid #505050;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    height: 16vw;
    padding-left: 4vw;
    padding-top: 1.33333333vw;
    position: relative;
  }
  footer.global-footer .links .info .banners a:after {
    content: "";
    width: 12px;
    height: 12px;
    display: block;
    background-image: url("");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    height: 4.26666667vw;
    width: 4.26666667vw;
    position: absolute;
    right: 1.33333333vw;
    opacity: 0.7;
  }
  footer.global-footer .links .info .banners .members {
    font-size: 2.93333333vw;
    letter-spacing: 0.1em;
  }
  footer.global-footer .links .info .banners .global:before {
    content: "";
    width: 12px;
    height: 12px;
    display: block;
    background-image: url("");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    height: 5.33333333vw;
    width: 24.66666667vw;
    opacity: 0.9;
  }
  footer.global-footer .links .info .privacy {
    font-size: 12px;
    text-decoration: underline;
  }
  footer.global-footer hr {
    border: none;
    border-top: 1px solid #505050;
    margin: 0;
  }
  footer.global-footer .extra {
    margin: 0 auto;
  }
  footer.global-footer .extra .col {
    display: flex;
    flex-direction: column-reverse;
  }
  footer.global-footer .extra .col + .col {
    border-top: 1px solid #505050;
  }
  footer.global-footer .extra .fb {
    width: 36px;
    height: 36px;
    display: block;
    background-image: url("");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    margin-left: auto;
    margin-right: auto;
    margin-top: 7.33333333vw;
    margin-bottom: 7.33333333vw;
  }
  footer.global-footer .extra .lang {
    display: none;
    font-size: 2.66666667vw;
    text-align: center;
    letter-spacing: 0.1em;
    padding-top: 4px;
    margin-top: 7.33333333vw;
  }
  footer.global-footer .extra .lang a.active {
    color: #ffffff;
  }
  footer.global-footer .extra .lang span {
    margin: 0 5px;
  }
  footer.global-footer .extra .privacy {
    text-align: center;
    font-size: 2.66666667vw;
    margin-top: 9.33333333vw;
    margin-bottom: 10.66666667vw;
  }
  footer.global-footer .extra .privacy a {
    text-decoration: underline;
  }
  footer.global-footer .extra .copyright {
    text-align: center;
    font-size: 2.4vw;
    margin-bottom: 7.33333333vw;
  }
}
@media screen and (min-width: 961px) {
  .global-header.lg-only {
    position: fixed;
    z-index: 3;
    top: 0;
    left: 0;
    transition-property: opacity, -webkit-transform;
    transition-property: opacity, transform;
    transition-property: opacity, transform, -webkit-transform;
    transition-duration: 0.3s;
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    width: 100%;
    height: 100px;
    margin-bottom: 100px;
  }
  .global-header.lg-only.hidden {
    opacity: 0;
    pointer-events: none;
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  .global-header.lg-only .logo a {
    width: 240px;
    height: 90px;
    display: block;
    background-image: url("../images/top/sm/logo_sm.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
  }
  .global-header.lg-only.concept nav {
    background-color: transparent;
  }
  .global-header.lg-only[data-focused-section="plaisance"] .indicator {
    background-color: #f1f3f4;
    color: #84764a;
    border-bottom-color: #dbd6c9;
  }
  .global-header.lg-only[data-focused-section="kashikojima"] .indicator {
    background-color: #683467;
    color: #ffffff;
    border-bottom-color: transparent;
  }
  .global-header.lg-only[data-focused-section="atami"] .indicator {
    background-color: #a2b4df;
    color: #ffffff;
    border-bottom-color: transparent;
  }
  .global-header.lg-only[data-focused-section="sengokuhara"] .indicator {
    background-color: #a6c6a5;
    color: #ffffff;
    border-bottom-color: transparent;
  }
  .global-header.lg-only[data-focused-section="ginoza"] .indicator {
    background-color: #8fc4c7;
    color: #ffffff;
    border-bottom-color: transparent;
  }
  .global-header.lg-only[data-focused-section="kyoto"] .indicator {
    background-color: #8dbcd9;
    color: #ffffff;
    border-bottom-color: transparent;
  }
  .global-header.lg-only.no-indicator .indicator {
    opacity: 0;
  }
  .global-header.lg-only nav {
    height: 80px;
    background-color: #ffffff;
    border-bottom: 1px solid #dbd6c9;
    box-sizing: border-box;
    font-size: 13px;
    transition-property: opacity, background-color;
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    transition-duration: 0.3s, 1s;
  }
  .global-header.lg-only nav ul.links {
    display: flex;
    padding-left: 8vw;
    justify-content: space-between;
    height: 100%;
  }
  .global-header.lg-only nav ul.links li {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .global-header.lg-only nav ul.links li.reservation {
    border-left: 1px solid #dbd6c9;
    background-color: #683467;
  }
  .global-header.lg-only nav ul.links li.reservation a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 0 9vw;
    color: #ffffff;
    transition-property: background-color, color;
    transition-duration: 0.3s;
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  .global-header.lg-only nav ul.links li.reservation a:hover {
    background-color: #565656;
    color: #9d8f70;
  }
  .global-header.lg-only nav ul.links li.reservation a span:before {
    display: none;
  }
  .global-header.lg-only nav ul.links span {
    position: relative;
    top: 5px;
    letter-spacing: 0.1em;
  }
  .global-header.lg-only nav ul.links span:before {
    content: "";
    display: inline-block;
    background-color: #000000;
    width: 0;
    height: 1px;
    position: absolute;
    left: auto;
    right: 0;
    bottom: 4px;
    transition-duration: 0.2s;
    transition-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  }
  .global-header.lg-only nav ul.links a:hover span:before {
    left: 0;
    right: auto;
    width: 100%;
  }
  .global-header.lg-only .indicator {
    height: 25px;
    background-color: #84764a;
    box-sizing: border-box;
    color: #ffffff;
    text-align: center;
    line-height: 30px;
    border-bottom: 1px solid transparent;
    font-size: 12px;
    letter-spacing: 0.1em;
    transition-property: opacity, background-color;
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    transition-duration: 0.3s, 1s;
  }
  .global-header.lg-only div.reservation,
  .global-header.lg-only div.hotels {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    width: 450px;
  }
  .global-header.lg-only div.reservation .bg,
  .global-header.lg-only div.hotels .bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: block;
    background-color: rgba(77, 77, 77, 0.95);
    -webkit-transform-origin: top center;
            transform-origin: top center;
  }
  .global-header.lg-only div.reservation .contents,
  .global-header.lg-only div.hotels .contents {
    -webkit-transform-origin: top center;
            transform-origin: top center;
    position: relative;
  }
  .global-header.lg-only div.reservation h2,
  .global-header.lg-only div.hotels h2,
  .global-header.lg-only div.reservation h3,
  .global-header.lg-only div.hotels h3 {
    color: #9d8f70;
    box-sizing: border-box;
    border-bottom: 1px solid rgba(132, 118, 74, 0.6);
    text-align: center;
    letter-spacing: 0.1em;
  }
  .global-header.lg-only div.reservation h2,
  .global-header.lg-only div.hotels h2 {
    height: 80px;
    font-size: 13px;
    line-height: 80px;
    padding-top: 3px;
    background-color: #565656;
  }
  .global-header.lg-only div.reservation h2 + h3,
  .global-header.lg-only div.hotels h2 + h3 {
    background-color: #565656;
  }
  .global-header.lg-only div.reservation h3,
  .global-header.lg-only div.hotels h3 {
    height: 25px;
    line-height: 25px;
    font-size: 12px;
    padding-top: 2px;
  }
  .global-header.lg-only div.reservation li,
  .global-header.lg-only div.hotels li {
    position: relative;
    height: 60px;
    box-sizing: border-box;
    border-bottom: 1px solid rgba(132, 118, 74, 0.6);
  }
  .global-header.lg-only div.reservation li:after,
  .global-header.lg-only div.hotels li:after {
    content: '';
    width: 12px;
    height: 12px;
    display: block;
    background-image: url("");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    position: absolute;
    top: 28px;
    right: 25px;
    opacity: 0.8;
  }
  .global-header.lg-only div.reservation a,
  .global-header.lg-only div.hotels a {
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    display: block;
    padding-top: 15px;
    padding-left: 25px;
    color: #dddddd;
  }
  .global-header.lg-only div.reservation a:hover span,
  .global-header.lg-only div.hotels a:hover span {
    text-decoration: underline;
  }
  .global-header.lg-only div.reservation a > span,
  .global-header.lg-only div.hotels a > span {
    letter-spacing: 0.05em;
    display: block;
    font-size: 12px;
    line-height: 18px;
  }
  .global-header.lg-only div.reservation a > span > span,
  .global-header.lg-only div.hotels a > span > span {
    font-size: 15px;
    display: inline-block;
    margin-left: 10px;
  }
  .global-header.lg-only div.hotels {
    display: none;
    right: auto;
    left: 12vw;
    border-left: 1px solid #dbd6c9;
    border-right: 1px solid #dbd6c9;
  }
  .global-header.lg-only div.hotels .bg {
    background-color: #ffffff;
  }
  .global-header.lg-only div.hotels h2,
  .global-header.lg-only div.hotels h2 + h3 {
    background-color: #ffffff;
  }
  .global-header.lg-only div.hotels li:after {
    background-image: none;
  }
  .global-header.lg-only div.hotels a {
    color: #000000;
  }
  header.detail-links {
    z-index: 2;
    position: fixed;
    top: 0;
    display: none;
  }

  footer.global-footer {
    background-color: #333333;
    color: #dddddd;
  }
  footer.global-footer a {
    color: #dddddd;
    text-decoration: none;
  }
  footer.global-footer .to-top {
    cursor: pointer;
    color: #9d8f70;
    width: 120px;
    height: 70px;
    display: block;
    margin: 0 auto 50px;
    font-size: 12px;
    letter-spacing: 0.2em;
    text-align: center;
  }
  footer.global-footer .to-top i {
    display: block;
    height: 45px;
    width: 1px;
    position: relative;
    background-color: #84764a;
    margin: 0 auto 8px;
  }
  footer.global-footer .to-top i span {
    position: absolute;
    left: -1px;
    top: 0;
    content: "";
    display: block;
    width: 3px;
    height: 100%;
    background-color: #84764a;
    -webkit-transform: scaleY(0.5);
            transform: scaleY(0.5);
  }
  footer.global-footer .links {
    width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
  }
  footer.global-footer .links .col h3 {
    color: #9d8f70;
    font-size: 15px;
    letter-spacing: 0.1em;
    margin-bottom: 40px;
  }
  footer.global-footer .links .col li {
    padding-left: 25px;
    position: relative;
  }
  footer.global-footer .links .col li:before {
    content: "";
    position: absolute;
    left: 3px;
    top: 5px;
    width: 16px;
    height: 1px;
    display: block;
    background-color: rgba(221, 221, 221, 0.5);
  }
  footer.global-footer .links .col a {
    display: block;
    margin-top: 30px;
  }
  footer.global-footer .links .col a:hover span {
    text-decoration: underline;
  }
  footer.global-footer .links .col a > span {
    letter-spacing: 0.05em;
    display: block;
    font-size: 12px;
    line-height: 18px;
  }
  footer.global-footer .links .col a > span > span {
    font-size: 15px;
    display: inline-block;
    margin-left: 10px;
  }
  footer.global-footer .links .info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
  }
  footer.global-footer .links .info .banners {
    padding-top: 40px;
    width: 200px;
  }
  footer.global-footer .links .info .banners a {
    width: 200px;
    height: 50px;
    display: block;
    margin-bottom: 30px;
    transition-property: opacity;
    transition-duration: 0.3s;
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  footer.global-footer .links .info .banners a:hover {
    opacity: 0.7;
  }
  footer.global-footer .links .info .banners .members {
    text-indent: -9999px;
    background-image: url("");
  }
  footer.global-footer .links .info .banners .global {
    background-image: url("");
  }
  footer.global-footer .links .info .privacy {
    font-size: 12px;
    text-decoration: underline;
  }
  footer.global-footer hr {
    border: none;
    border-top: 1px solid #505050;
    margin: 30px 0 0;
  }
  footer.global-footer .extra {
    width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
  }
  footer.global-footer .extra .col {
    display: flex;
    align-items: center;
  }
  footer.global-footer .extra .col:first-child {
    margin-left: -40px;
  }
  footer.global-footer .extra .fb {
    width: 32px;
    height: 32px;
    display: block;
    background-image: url("");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    margin-right: 50px;
  }
  footer.global-footer .extra .lang {
    display: none;
    font-size: 12px;
    letter-spacing: 0.1em;
    padding-top: 4px;
  }
  footer.global-footer .extra .lang a.active {
    color: #ffffff;
    text-decoration: underline;
  }
  footer.global-footer .extra .lang a:hover {
    text-decoration: underline;
  }
  footer.global-footer .extra .lang span {
    margin: 0 5px;
  }
  footer.global-footer .extra .copyright {
    margin-right: -40px;
    padding-top: 4px;
    font-size: 11px;
  }
}
.loader.stay svg {
  -webkit-filter: blur(0px);
          filter: blur(0px);
  -webkit-animation-name: loader-out;
          animation-name: loader-out;
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-property: opacity;
  transition-duration: 1200ms;
  transition-delay: 500ms;
}
.loader.stay .bg {
  opacity: 1;
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition-property: opacity;
  transition-duration: 1000ms;
  transition-delay: 1500ms;
}
.loader.stay.hide svg {
  opacity: 0;
}
.loader.stay.hide .bg {
  opacity: 0;
}
*[data-js-target="topVisual"] .images li.show-from {
  opacity: 0;
  -webkit-transform: scale(1.07);
          transform: scale(1.07);
}
*[data-js-target="topVisual"] .images li.show-from figure {
  -webkit-filter: brightness(0.5) saturate(0);
          filter: brightness(0.5) saturate(0);
}
*[data-js-target="topVisual"] .images li.show-from:before {
  -webkit-filter: brightness(0.5) saturate(0);
          filter: brightness(0.5) saturate(0);
}
*[data-js-target="topVisual"] .images li.show-to {
  opacity: 1;
  transform: none;
  /* autoprefixer: off */
  transition-timing-function: cubic-bezier(0.028, 0.768, 0.712, 0.917), linear;
  transition-property: opacity, transform;
  transition-duration: 2000ms, 8000ms;
}
*[data-js-target="topVisual"] .images li.show-to figure {
  -webkit-filter: brightness(1);
          filter: brightness(1);
}
*[data-js-target="topVisual"] .images li.show-to:before {
  -webkit-filter: brightness(1);
          filter: brightness(1);
}
*[data-js-target="topVisual"] .images li.show-to figure,
*[data-js-target="topVisual"] .images li.show-to:before {
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition-property: -webkit-filter;
  transition-property: filter;
  transition-property: filter, -webkit-filter;
  transition-duration: 2000ms;
}
*[data-js-target="topVisual"] .text li span.show-from {
  opacity: 0;
  -webkit-filter: blur(32px);
          filter: blur(32px);
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  transition-duration: 1s;
  transition-property: opacity, -webkit-transform, -webkit-filter;
  transition-property: opacity, transform, filter;
  transition-property: opacity, transform, filter, -webkit-transform, -webkit-filter;
  transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media screen and (max-width: 960px) {
  *[data-js-target="topVisual"] .text li span.show-from {
    -webkit-transform: translateY(-3px);
            transform: translateY(-3px);
  }
}
*[data-js-target="topVisual"] .text li span.show-to {
  opacity: 1;
  -webkit-filter: blur(0px);
          filter: blur(0px);
  -webkit-transform: none;
          transform: none;
  transition-duration: 1s;
  transition-property: opacity, -webkit-transform, -webkit-filter;
  transition-property: opacity, transform, filter;
  transition-property: opacity, transform, filter, -webkit-transform, -webkit-filter;
  transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}
*[data-js-target="topVisual"] .text li span.hide-from {
  opacity: 1;
}
*[data-js-target="topVisual"] .text li span.hide-to {
  opacity: 0;
  transition-duration: 0.3s;
  transition-property: opacity, -webkit-transform, -webkit-filter;
  transition-property: opacity, transform, filter;
  transition-property: opacity, transform, filter, -webkit-transform, -webkit-filter;
  transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}
*[data-js-target="topVisual"] .controller li span.deactive {
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}
*[data-js-target="topVisual"] .controller li span.show-from {
  -webkit-transform-origin: top left;
          transform-origin: top left;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}
*[data-js-target="topVisual"] .controller li span.show-to {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  transition-duration: 6000ms;
  transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}
*[data-js-target="topVisual"] .controller li span.hide-from {
  -webkit-transform-origin: top right;
          transform-origin: top right;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
*[data-js-target="topVisual"] .controller li span.hide-to {
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  transition-duration: 2000ms;
  transition-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
*[data-js-target="topVisual"] .scroll-down i span.start-from {
  -webkit-transform-origin: top left;
          transform-origin: top left;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
}
*[data-js-target="topVisual"] .scroll-down i span.start-to {
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  transition-duration: 1s;
  transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}
*[data-js-target="topVisual"] .scroll-down i span.end-from {
  -webkit-transform-origin: bottom left;
          transform-origin: bottom left;
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
}
*[data-js-target="topVisual"] .scroll-down i span.end-to {
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  transition-duration: 0.7s;
  transition-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.scroll {
	font-size: 2em;
	line-height: 1.5em
}
@media screen and (max-width: 960px) {
.scroll {
	font-size: 1.2em;
}
}
*[data-js-target="hotel"] .controller li span.deactive {
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}
*[data-js-target="hotel"] .controller li span.show-from {
  -webkit-transform-origin: top left;
          transform-origin: top left;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}
*[data-js-target="hotel"] .controller li span.show-to {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  transition-duration: 8000ms;
  transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}
*[data-js-target="hotel"] .controller li span.hide-from {
  -webkit-transform-origin: top right;
          transform-origin: top right;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
*[data-js-target="hotel"] .controller li span.hide-to {
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  transition-duration: 2000ms;
  transition-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
footer.global-footer .to-top i span.start-from {
  -webkit-transform-origin: bottom left;
          transform-origin: bottom left;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
}
footer.global-footer .to-top i span.start-to {
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  transition-duration: 1s;
  transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}
footer.global-footer .to-top i span.end-from {
  -webkit-transform-origin: top left;
          transform-origin: top left;
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
}
footer.global-footer .to-top i span.end-to {
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  transition-duration: 0.7s;
  transition-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
