@charset "UTF-8";
html {
  font-size: 1px;
  overflow-x: hidden;
}
html.lock {
  overflow-y: hidden;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-style: normal;
  line-height: 1.6;
  max-width: 100vw;
  min-height: 100vh;
  color: #333;
  font-size: 16rem;
  overflow: hidden;
  letter-spacing: 0.05em;
}

select,
input,
textarea,
button {
  font: inherit;
}

img,
svg {
  max-width: 100%;
  vertical-align: bottom;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-text-decoration: underline transparent;
          text-decoration: underline transparent;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}
a.tel_link {
  pointer-events: none;
}

main {
  display: block;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.inner {
  width: 1200rem;
  margin-left: auto;
  margin-right: auto;
}

.s_inner {
  width: 820rem;
  margin-left: auto;
  margin-right: auto;
}

.mt_l {
  margin-top: 100rem;
}

.mt_m {
  margin-top: 60rem;
}

.mt_s {
  margin-top: 20rem;
}

.fz_l {
  font-size: 1.2em;
}

.fz_s {
  font-size: 0.8em;
}

.ta_center {
  text-align: center;
}

.notes {
  font-size: 12rem;
}

.fwb {
  font-weight: bold;
}

.font_pop {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 400;
}

.font_san {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Noto Sans JP", "メイリオ", Meiryo, "sans-serif", sans-serif;
}

.c_red {
  color: #df1616;
}

.fadein {
  opacity: 0;
  -webkit-transform: translateY(30rem);
          transform: translateY(30rem);
  -webkit-transition: opacity 1s ease-in-out, -webkit-transform 1s ease-out;
  transition: opacity 1s ease-in-out, -webkit-transform 1s ease-out;
  transition: transform 1s ease-out, opacity 1s ease-in-out;
  transition: transform 1s ease-out, opacity 1s ease-in-out, -webkit-transform 1s ease-out;
}
.fadein.fadein02 {
  overflow: hidden;
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  line-height: 1.2;
}
.fadein.fadein02 span {
  opacity: 0;
  display: block;
  -webkit-transform: translateY(60rem);
          transform: translateY(60rem);
  -webkit-transition: opacity 1s ease-in-out, -webkit-transform 1s ease-out;
  transition: opacity 1s ease-in-out, -webkit-transform 1s ease-out;
  transition: transform 1s ease-out, opacity 1s ease-in-out;
  transition: transform 1s ease-out, opacity 1s ease-in-out, -webkit-transform 1s ease-out;
}
.fadein.on {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.fadein.on.fadein02 span {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.fadein.delay01 {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.fadein.delay02 {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}
.fadein.delay03 {
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}

.swiper_area {
  position: relative;
}
.swiper_area .swiper-pagination .swiper-pagination-bullet {
  width: 11rem;
  height: 11rem;
  margin: 0 15rem;
  opacity: 1;
  background-color: #C1C1C1;
}
.swiper_area .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #D1B26E;
}
.swiper_area .swiper-button-prev,
.swiper_area .swiper-button-next {
  width: 64rem;
  height: 64rem;
  background: url(/assets/img/ico_swiper_arrow.svg) no-repeat center;
  background-size: contain;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.swiper_area .swiper-button-prev::after,
.swiper_area .swiper-button-next::after {
  content: none;
}
.swiper_area .swiper-button-prev:hover,
.swiper_area .swiper-button-next:hover {
  opacity: 0.8;
}

.common_btn a {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 15rem;
  width: 290rem;
  height: 46rem;
  color: #333;
  border: 1px solid #333;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.common_btn a::after {
  content: "";
  display: block;
  position: absolute;
  width: 18rem;
  height: 5rem;
  border-right: 1px solid #333;
  border-bottom: 1px solid #333;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  right: 19rem;
  top: 50%;
  -webkit-transform: translateY(-50%) skew(45deg);
          transform: translateY(-50%) skew(45deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.common_btn a:hover {
  background-color: #71193B;
  color: #fff;
  border-color: #71193B;
}
.common_btn a:hover::after {
  border-color: #fff;
}
.common_btn.white a {
  color: #fff;
  border-color: #fff;
}
.common_btn.white a::after {
  border-color: #fff;
}
.common_btn.white a:hover {
  border-color: #71193B;
}
.common_btn.white_bg a {
  color: #4B5D55;
  background-color: #fff;
}
.common_btn.white_bg a::after {
  border-color: #4B5D55;
}
.common_btn.white_bg a:hover {
  background-color: #71193B;
  color: #fff;
}
.common_btn.white_bg a:hover::after {
  border-color: #fff;
}

.common_ttl {
  text-align: center;
  font-size: 48rem;
  letter-spacing: 0.2em;
  line-height: 1.5;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
}
header .header_catch {
  padding-top: 2px;
  text-align: center;
  background-color: #6E6750;
  line-height: 1;
  font-size: 8rem;
  height: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
header .header_catch.catch_out {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}
header .header_catch img {
  width: 240px;
}
header .header_left {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: absolute;
  top: 60rem;
  left: 30rem;
  display: none;
}
header .header_left .logo_wrap {
  width: 40rem;
}
header .header_left .logo_wrap svg {
  width: 100%;
}
header .header_right {
  position: absolute;
  top: 60rem;
  right: 0;
  padding-right: 42rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 70rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
header .header_right .common_btn.reserve a {
  font-size: 21rem;
  width: 220rem;
  height: 58rem;
}
header .header_right .common_btn.reserve a::after {
  width: 26rem;
  right: 18rem;
}
header .header_right .common_btn.reserve.teaser a {
  width: 470rem;
  line-height: 1.4;
  font-size: 18rem;
}
header .header_right .lang_change {
  letter-spacing: 1rem;
  color: #fff;
}
header .header_right .lang_change a {
  color: inherit;
}
header .header_right .lang_change .select_lang_btn {
  padding-right: 25rem;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  cursor: pointer;
}
header .header_right .lang_change .select_lang_btn svg {
  height: auto;
  width: 23rem;
}
header .header_right .lang_change .select_lang_btn::after {
  content: "";
  display: block;
  position: absolute;
}
header .header_right .lang_change .select_lang_btn::after {
  top: 50%;
  right: 0;
  width: 10rem;
  height: 10rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-bottom: 1px solid #fff;
  border-left: 1px solid #fff;
  -webkit-transform: translateY(-35%) rotate(-45deg);
          transform: translateY(-35%) rotate(-45deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
header .header_right .lang_change .select_lang_btn.is_on::after {
  -webkit-transform: translateY(-35%) rotate(135deg);
          transform: translateY(-35%) rotate(135deg);
}
header .header_right .lang_change .select_lang_list {
  position: absolute;
  top: 60rem;
  right: 0;
  display: none;
}
header .header_right .lang_change .select_lang_list ul li + li {
  border-top: 1px solid #555;
}
header .header_right .lang_change .select_lang_list ul li a {
  background-color: rgba(51, 51, 51, 0.6);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 122rem;
  height: 54rem;
}
header .header_right .lang_change .select_lang_list ul li a:hover {
  color: #000;
  background-color: #fff;
}
header::after {
  content: "";
  display: block;
  background-color: transparent;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(20%, rgba(0, 0, 0, 0.2901960784)), to(rgba(242, 41, 91, 0)));
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.2901960784) 20%, rgba(242, 41, 91, 0) 100%);
  width: 100%;
  height: 130rem;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
header.bg_on .header_left {
  top: 20rem;
}
header.bg_on .header_left .logo_wrap svg path {
  fill: #fff;
}
header.bg_on .header_right {
  top: 20rem;
}
header.bg_on::after {
  opacity: 1;
}

.mv {
  position: relative;
}
.mv .img_wrap {
  position: relative;
}
.mv .img_wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.mv .img_wrap::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(25, 25, 25, 0.5);
  position: absolute;
  top: 0;
  left: 0;
}
.mv .txt_wrap {
  position: absolute;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
}
.mv .txt_wrap .logo {
  margin-left: auto;
  margin-right: auto;
  width: 375rem;
  opacity: 0;
  -webkit-animation: mv_fadein 0.8s ease forwards;
          animation: mv_fadein 0.8s ease forwards;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.mv .txt_wrap .hotel_name {
  margin-top: 40rem;
  letter-spacing: 0.12em;
  opacity: 0;
  -webkit-animation: mv_fadein 0.8s ease forwards;
          animation: mv_fadein 0.8s ease forwards;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.mv .txt_wrap .ttl {
  margin-top: 50rem;
  font-size: 45rem;
  letter-spacing: 0.24em;
  opacity: 0;
  -webkit-animation: mv_fadein 0.8s ease forwards;
          animation: mv_fadein 0.8s ease forwards;
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

.news_top {
  position: fixed;
  bottom: 50rem;
  right: 0;
  padding: 0 22rem;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  z-index: 100;
  -webkit-transition: 0.8s;
  transition: 0.8s;
  pointer-events: none;
  opacity: 0;
}
.news_top .content_inner {
  position: relative;
  width: 475rem;
  max-height: 260rem;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.82);
  padding: 30rem 30rem 0;
  border-bottom: 40rem solid transparent;
  color: #fff;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.news_top .content_inner::-webkit-scrollbar {
  display: none;
}
.news_top .content_inner .close {
  position: absolute;
  top: 25rem;
  right: 25rem;
  width: 15rem;
  cursor: pointer;
}
.news_top .content_inner .ttl {
  font-size: 21rem;
}
.news_top .content_inner .news_wrap {
  margin-top: 16rem;
}
.news_top .content_inner .news_wrap ul li time {
  font-size: 14rem;
}
.news_top .content_inner .news_wrap ul li span {
  color: #fff;
  line-height: 1.5;
}
.news_top .content_inner .news_wrap ul li + li {
  margin-top: 12rem;
  padding-top: 15rem;
  border-top: 1px solid #515152;
}
.news_top.on {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  pointer-events: all;
  opacity: 1;
}

.essential_top {
  margin-top: 190rem;
  padding-bottom: 190rem;
  position: relative;
  z-index: 1;
}
.essential_top::after {
  content: "";
  display: block;
  width: 100%;
  height: 750rem;
  background-color: #FBF7EE;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.essential_top .content_inner .ttl {
  font-size: 45rem;
  text-align: center;
}
.essential_top .content_inner .lead {
  font-size: 21rem;
  line-height: 2.2;
  margin-top: 45rem;
  text-align: center;
}
.essential_top .content_inner .slide_anim {
  overflow: hidden;
  margin-top: 82rem;
  position: relative;
  z-index: 1;
  width: 2008rem;
  margin-left: -128rem;
}
.essential_top .content_inner .slide_anim ul.infinity_slide {
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  z-index: -1;
  -webkit-animation: infinity_slide 50s linear both infinite;
          animation: infinity_slide 50s linear both infinite;
}
.essential_top .content_inner .slide_anim ul.infinity_slide li {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-right: 52rem;
}
.essential_top .content_inner .slide_anim ul.infinity_slide.is_stop {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
.essential_top .content_inner .detail_wrap {
  margin-top: 114rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 133rem;
}
.essential_top .content_inner .detail_wrap .logo {
  width: 265rem;
}
.essential_top .content_inner .detail_wrap .txt {
  line-height: 2.3;
  width: 644rem;
  letter-spacing: 0.1em;
}

.room_top {
  padding-top: 220rem;
  padding-bottom: 156rem;
  background-color: #4B5D55;
}
.room_top .common_ttl {
  color: #fff;
}
.room_top .swiper_area {
  margin-top: 50rem;
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 3756rem;
}
.room_top .swiper_area .swiper .swiper-wrapper .swiper-slide {
  padding-left: 26rem;
  padding-right: 26rem;
}
.room_top .swiper_area .swiper .swiper-wrapper .swiper-slide .ph {
  height: 780rem;
}
.room_top .swiper_area .swiper .swiper-wrapper .swiper-slide .ph img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.room_top .swiper_area .swiper .swiper-wrapper .swiper-slide .ph_notes {
  color: #fff;
  text-align: right;
  margin-top: 6rem;
  font-size: 14rem;
}
.room_top .swiper_area .swiper .swiper-wrapper .swiper-slide .detail_area {
  margin-top: 175rem;
}
.room_top .swiper_area .swiper .swiper-wrapper .swiper-slide .detail_area .room_name {
  color: #fff;
  font-size: 40rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  line-height: 1.5;
  letter-spacing: 0.01em;
}
.room_top .swiper_area .swiper .swiper-wrapper .swiper-slide .detail_area .room_name::after {
  width: 80rem;
  height: 1px;
  background-color: #fff;
  position: absolute;
  bottom: -10rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.room_top .swiper_area .swiper .swiper-wrapper .swiper-slide .detail_area .table_wrap {
  margin-top: 98rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.room_top .swiper_area .swiper .swiper-wrapper .swiper-slide .detail_area .table_wrap table {
  width: 480rem;
}
.room_top .swiper_area .swiper .swiper-wrapper .swiper-slide .detail_area .table_wrap table tr th,
.room_top .swiper_area .swiper .swiper-wrapper .swiper-slide .detail_area .table_wrap table tr td {
  border-bottom: 1px solid #C1C1C1;
  padding: 16rem;
  vertical-align: middle;
}
.room_top .swiper_area .swiper .swiper-wrapper .swiper-slide .detail_area .table_wrap table tr th {
  background-color: #778881;
  text-align: center;
  color: #fff;
  width: 40%;
}
.room_top .swiper_area .swiper .swiper-wrapper .swiper-slide .detail_area .table_wrap table tr td {
  padding: 0 27rem;
  background-color: #E4E7E5;
}
.room_top .swiper_area .swiper .swiper-wrapper .swiper-slide .detail_area .amenity_wrap {
  width: 960rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 60rem;
}
.room_top .swiper_area .swiper .swiper-wrapper .swiper-slide .detail_area .amenity_wrap .amenity_ttl {
  background-color: #778881;
  text-align: center;
  color: #fff;
  height: 40rem;
  line-height: 40rem;
}
.room_top .swiper_area .swiper .swiper-wrapper .swiper-slide .detail_area .amenity_wrap .contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15rem;
  color: #fff;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 40rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.room_top .swiper_area .swiper .swiper-wrapper .swiper-slide .detail_area .amenity_wrap .contents li {
  width: calc(25% - 15rem);
}
.room_top .swiper_area .swiper .swiper-wrapper .swiper-slide .detail_area .common_btn {
  margin-top: 120rem;
}
.room_top .swiper_area .swiper .swiper-wrapper .swiper-slide .detail_area .common_btn a {
  font-size: 20rem;
  width: 520rem;
  height: 74rem;
  text-align: center;
  line-height: 1.5;
}
.room_top .swiper_area .swiper .swiper-wrapper .swiper-slide .detail_area .common_btn .special_offer {
  color: #fff;
  font-size: 28rem;
  display: block;
  padding-bottom: 18rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.room_top .swiper_area .swiper .swiper-wrapper .swiper-slide .detail_area .common_btn .special_offer::before, .room_top .swiper_area .swiper .swiper-wrapper .swiper-slide .detail_area .common_btn .special_offer::after {
  content: "";
  width: 60rem;
  height: 2rem;
  background-color: #fff;
  display: block;
  position: absolute;
  top: 23rem;
}
.room_top .swiper_area .swiper .swiper-wrapper .swiper-slide .detail_area .common_btn .special_offer::before {
  left: -85rem;
}
.room_top .swiper_area .swiper .swiper-wrapper .swiper-slide .detail_area .common_btn .special_offer::after {
  right: -85rem;
}
.room_top .swiper_area .swiper-pagination {
  bottom: auto;
  top: 820rem;
}
.room_top .swiper_area .swiper-button-prev,
.room_top .swiper_area .swiper-button-next {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  margin-left: -600rem;
  margin-top: -370rem;
}
.room_top .swiper_area .swiper-button-next {
  -webkit-transform: translateX(-50%) rotate(180deg);
          transform: translateX(-50%) rotate(180deg);
  margin-left: 600rem;
}

.info_access_top {
  margin-top: 245rem;
}
.info_access_top .info_area .content_wrap {
  margin-top: 175rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.info_access_top .info_area .content_wrap .img_box {
  width: 400rem;
  height: 520rem;
}
.info_access_top .info_area .content_wrap .img_box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.info_access_top .info_area .content_wrap .txt_box {
  width: 630rem;
  padding-top: 54rem;
}
.info_access_top .info_area .content_wrap .txt_box .name {
  font-size: 28rem;
  letter-spacing: 0.15em;
}
.info_access_top .info_area .content_wrap .txt_box .desc {
  line-height: 2.3;
  margin-top: 44rem;
}
.info_access_top .info_area .content_wrap .txt_box .walk_time {
  margin-top: 55rem;
  letter-spacing: 0.02em;
}
.info_access_top .info_area .content_wrap .txt_box .common_btn {
  margin-top: 42rem;
}
.info_access_top .info_area .content_wrap .txt_box .common_btn a {
  margin-left: 0;
}
.info_access_top .info_area .content_wrap.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.info_access_top .info_area .content_wrap + .content_wrap {
  margin-top: 40rem;
}
.info_access_top .access_area {
  margin-top: 250rem;
  padding-top: 160rem;
  background-color: #FBF7EE;
}
.info_access_top .access_area .content_wrap {
  position: relative;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
}
.info_access_top .access_area .content_wrap .map_wrap {
  width: 68.3333333333%;
  height: 580rem;
}
.info_access_top .access_area .content_wrap .map_wrap iframe {
  width: 100%;
  height: 100%;
}
.info_access_top .access_area .content_wrap .txt_box {
  z-index: 1;
  position: absolute;
  width: 36.9791666667%;
  min-height: 440rem;
  background-color: #fff;
  bottom: 0;
  right: 0;
  padding: 112rem 40rem 85rem 60rem;
}
.info_access_top .access_area .content_wrap .txt_box .address {
  letter-spacing: 0.1em;
  padding-left: 24rem;
  border-left: 1px solid #6C3400;
  line-height: 2.6;
}
.info_access_top .access_area .content_wrap .txt_box .common_btn {
  margin-top: 65rem;
}
.info_access_top .access_area .content_wrap .txt_box .common_btn a {
  margin-left: 0;
}

.to_top {
  position: fixed;
  z-index: 999;
  right: 30rem;
  bottom: 70rem;
  display: none;
}
.to_top img {
  width: 70rem;
}

footer .this_hotel {
  padding: 60rem 0 25rem;
  background: #FBF7EE;
  text-align: center;
}
footer .this_hotel .content_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 2;
}
footer .this_hotel .content_wrap .logo_wrap {
  text-align: right;
  padding-right: 116rem;
}
footer .this_hotel .content_wrap .logo_wrap img {
  width: 265rem;
}
footer .this_hotel .content_wrap .text {
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30rem;
}
footer .this_hotel .content_wrap .text h3 {
  font-size: 22rem;
}
footer .this_hotel .content_wrap .text h3 span.sub_tit {
  font-size: 21rem;
  display: block;
  line-height: 1.8;
}
footer .this_hotel .content_wrap .text h3 span.sub_tit + .sub_tit {
  margin-top: 10rem;
  font-size: 14rem;
}
footer .this_hotel .content_wrap .text h3 span.h_name {
  margin-top: 15rem;
  font-size: 21rem;
  display: block;
}
footer .this_hotel .content_wrap .text p {
  font-size: 14rem;
  letter-spacing: 0.1em;
  line-height: 1.6;
}
footer .this_hotel .content_wrap .text p a {
  text-decoration: underline;
}
footer .this_hotel .content_wrap .text p a:hover {
  -webkit-text-decoration: underline transparent;
          text-decoration: underline transparent;
}
footer .this_hotel .content_wrap .text p a.tel {
  text-decoration: none;
}
footer .this_hotel .content_wrap .text p.reserve_text {
  display: inline-block;
}
footer .this_hotel .content_wrap .text p.reserve_text span {
  display: block;
  text-align: left;
  margin-left: 93rem;
}
footer .this_hotel .content_wrap .text .nav_sns {
  margin-top: 25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 30rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
footer .this_hotel .content_wrap .text .nav_sns li:first-child a {
  width: 32rem;
}
footer .this_hotel .content_wrap .text .nav_sns li a {
  width: 30rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
footer .this_hotel .content_wrap .text .nav_sns li a img {
  width: 100%;
}
footer .this_hotel .content_wrap .text .footer_contact {
  margin-top: 25rem;
}
footer .this_hotel .content_wrap .text .footer_contact li {
  margin-top: 10rem;
}
footer .this_hotel .content_wrap .text .footer_contact li a {
  background-color: #6C3400;
  color: #fff;
  width: 280rem;
  padding: 3rem 15rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 13rem;
  position: relative;
  opacity: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
footer .this_hotel .content_wrap .text .footer_contact li a:hover {
  opacity: 0.8;
}
footer .this_hotel .content_wrap .text .footer_contact li a::before {
  border-right: 1px solid #fff;
  border-top: 1px solid #fff;
  bottom: 0;
  content: "";
  height: 6px;
  margin: auto;
  position: absolute;
  right: 1em;
  top: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: ease-in-out 400ms;
  transition: ease-in-out 400ms;
  width: 6px;
}
footer .this_hotel .content_wrap .text .footer_contact li a span {
  font-size: 11rem;
}
footer .this_hotel .content_wrap .text .footer_contact li:first-child {
  margin-top: 0;
}
footer .this_hotel .content_wrap .text .footer_contact.en li a {
  width: 410rem;
  min-width: 340px;
  gap: 0 8rem;
  display: block;
}
footer .this_hotel .content_wrap .text .footer_contact.en li a span {
  display: block;
}
footer .this_hotel .other_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  font-size: 14rem;
  margin-top: 60rem;
}
footer .this_hotel .other_nav li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
footer .this_hotel .other_nav li a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
footer .this_hotel .other_nav li a::after {
  content: "|";
  margin: 0 1em;
}
footer .this_hotel .other_nav li a:hover {
  text-decoration: underline;
}
footer .this_hotel .other_nav li:last-child a::after {
  content: none;
}
footer .hotel_list_area {
  padding: 50rem 30rem;
  background: #3C3D3C;
  color: #fff;
}
footer .hotel_list_area .hotel_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
footer .hotel_list_area .hotel_list .left {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: right;
  padding-right: 130rem;
}
footer .hotel_list_area .hotel_list .left img {
  width: 150rem;
}
footer .hotel_list_area .hotel_list .right {
  font-size: 14rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
footer .hotel_list_area .hotel_list .right .to_hospitalities img {
  width: 380rem;
}
footer .hotel_list_area .hotel_list .right .to_hospitalities span {
  display: block;
}
footer .hotel_list_area .hotel_list .right .to_hospitalities span.en {
  font-size: 26rem;
}
footer .hotel_list_area .hotel_list .right .to_hospitalities span.jp {
  font-size: 18rem;
}
footer .hotel_list_area .hotel_list .right .glist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 30rem;
  font-size: 13rem;
}
footer .hotel_list_area .hotel_list .right .glist ul + ul {
  margin-left: 80rem;
}
footer .hotel_list_area .hotel_list .right .glist ul li + li {
  margin-top: 10rem;
}
footer .hotel_list_area .hotel_list .right .glist ul li a:hover {
  text-decoration: underline;
}
footer .hotel_list_area .hotel_list .right .glist ul li.ohama {
  margin-top: 40rem;
}
footer .hotel_list_area .hotel_list .right .glist ul li.ohama span {
  font-size: 0.8em;
}
footer .hotel_list_area .grp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-top: 1px solid #6d6d6d;
  margin-top: 50rem;
  padding-top: 40rem;
}
footer .hotel_list_area .grp ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  list-style: none;
  padding: 0;
  gap: 0 45rem;
}
footer .hotel_list_area .grp ul li.ginza img {
  width: 39rem;
}
footer .hotel_list_area .grp ul li.asakusa img {
  width: 75rem;
}
footer .hotel_list_area .grp ul li.onetokyo img {
  width: 43rem;
}
footer .hotel_list_area .grp ul li.tsuki img {
  width: 81rem;
}
footer .hotel_list_area .grp ul li.imaiso img {
  width: 64rem;
}
footer .hotel_list_area .grp ul li.shijo img {
  width: 39rem;
}
footer .hotel_list_area .grp ul li.karasuma img {
  width: 64rem;
}
footer .hotel_list_area .grp ul li.sakai img {
  width: 89rem;
}
footer .hotel_list_area .grp ul li.moriguti img {
  width: 63rem;
}
footer .hotel_list_area .grp ul li.namba img {
  width: 75rem;
}
footer .hotel_list_area .grp ul li.fukuoka img {
  width: 63rem;
}
footer .hotel_list_area .grp ul li.ohama {
  position: relative;
  padding-left: 40rem;
  text-align: center;
}
footer .hotel_list_area .grp ul li.ohama::before {
  position: absolute;
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  background-color: #fff;
}
footer .hotel_list_area .grp ul li.ohama img {
  width: 80rem;
}
footer .hotel_list_area .grp ul li.ohama p {
  margin-top: 10rem;
  font-size: 10rem;
}
footer .hotel_list_area .comp_list {
  margin-top: 50rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14rem;
}
footer .hotel_list_area .comp_list li {
  margin-right: 1em;
  padding-right: 1em;
  border-right: 1px solid;
}
footer .hotel_list_area .comp_list li:last-child {
  margin-right: 0;
  padding-right: 0;
  border-right: none;
}
footer .hotel_list_area .copy {
  margin-top: 20rem;
  font-size: 12rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0 5rem;
}
footer .hotel_list_area .copy small {
  font-size: 20rem;
  line-height: 1;
  display: block;
}
footer .hotel_list_area .copy span {
  display: block;
}
footer .hotel_type_wrap .logo_ah {
  width: 150rem;
  margin-left: auto;
  margin-right: auto;
}
footer .hotel_type_wrap dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40rem;
  margin-top: 40rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
footer .hotel_type_wrap dl .hotel_type {
  position: relative;
  height: 260rem;
}
footer .hotel_type_wrap dl .hotel_type dt {
  font-weight: bold;
  padding-bottom: 10rem;
  border-bottom: 1px solid #fff;
  font-size: 15rem;
  width: 260rem;
}
footer .hotel_type_wrap dl .hotel_type dd {
  font-size: 14rem;
  margin-top: 10rem;
  margin-left: 0;
}
footer .hotel_type_wrap dl .hotel_type dd span {
  display: block;
  font-size: 0.8em;
}
footer .hotel_type_wrap dl .hotel_type .logo_wrap {
  position: absolute;
  top: 180rem;
  left: 0;
}
footer .hotel_type_wrap dl .hotel_type .logo_wrap ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  gap: 20rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
footer .hotel_type_wrap dl .hotel_type .logo_wrap ul.jp_lmtls {
  gap: 30rem;
}
footer .hotel_type_wrap dl .hotel_type .logo_wrap ul li.sakai {
  width: 113rem;
}
footer .hotel_type_wrap dl .hotel_type .logo_wrap ul li.moriguti {
  width: 78rem;
}
footer .hotel_type_wrap dl .hotel_type .logo_wrap ul li.ginza {
  width: 50rem;
}
footer .hotel_type_wrap dl .hotel_type .logo_wrap ul li.shijo {
  width: 50rem;
}
footer .hotel_type_wrap dl .hotel_type .logo_wrap ul li.karasuma {
  width: 83rem;
}
footer .hotel_type_wrap dl .hotel_type .logo_wrap ul li.asakusa {
  width: 90rem;
}
footer .hotel_type_wrap dl .hotel_type .logo_wrap ul li.kyotonijo {
  width: 90rem;
}
footer .hotel_type_wrap dl .hotel_type .logo_wrap ul li.namba {
  width: 90rem;
}
footer .hotel_type_wrap dl .hotel_type .logo_wrap ul li.onetokyo {
  width: 53rem;
}
footer .hotel_type_wrap dl .hotel_type .logo_wrap ul li.tsuki {
  width: 91rem;
}
footer .hotel_type_wrap dl .hotel_type .logo_wrap ul li.ohama {
  width: 90rem;
}

.non_mv {
  padding-top: 190rem;
}
.non_mv header .header_left {
  display: block;
}
.non_mv header:not(.bg_on) .header_right .common_btn.reserve.teaser a:not(:hover) {
  border-color: #333;
  color: #333;
}
.non_mv header:not(.bg_on) .header_right .common_btn.reserve.teaser a:not(:hover)::after {
  border-color: #333;
}
.non_mv header:not(.bg_on) .header_right .lang_change .select_lang_btn::after {
  border-color: #333;
}
.non_mv header:not(.bg_on) .header_right .lang_change .select_lang_btn svg path {
  fill: #333;
}
.non_mv footer {
  margin-top: 160rem;
}

@media screen and (min-width: 681px) {
  .sp_block {
    display: none !important;
  }
}
@media screen and (max-width: 1279px) {
  html {
    font-size: 0.0781860829vw;
  }
}
@media screen and (max-width: 680px) {
  .sp_none {
    display: none !important;
  }
  html {
    font-size: 0.2666666667vw;
  }
  body {
    line-height: 1.6;
    font-size: 13rem;
  }
  img {
    width: 100%;
  }
  .inner {
    width: 335rem;
  }
  .s_inner {
    width: 335rem;
  }
  .mt_l {
    margin-top: 80rem;
  }
  .mt_m {
    margin-top: 40rem;
  }
  .mt_s {
    margin-top: 16rem;
  }
  .notes {
    font-size: 10rem;
  }
  .swiper_area .swiper-pagination .swiper-pagination-bullet {
    width: 8rem;
    height: 8rem;
    margin: 0 6rem;
  }
  .swiper_area .swiper-button-prev,
  .swiper_area .swiper-button-next {
    width: 40rem;
    margin-left: -160rem;
  }
  .swiper_area .swiper-button-next {
    margin-left: 160rem;
  }
  .common_ttl {
    font-size: 26rem;
  }
  .common_btn a {
    width: 290rem;
    height: 45rem;
    font-size: 14rem;
  }
  header .header_catch {
    font-size: 1rem;
  }
  header .header_catch img {
    width: 230px;
  }
  header .header_left {
    top: calc(32px + 10rem);
    left: 12rem;
  }
  header .header_left .logo_wrap {
    width: 30rem;
  }
  header .header_right {
    top: calc(32px + 14rem);
    padding-right: 20rem;
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }
  header .header_right.catch_out {
    top: 14rem;
  }
  header .header_right .common_btn.reserve {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
  }
  header .header_right .common_btn.reserve a {
    width: 100%;
    background-color: #71193B;
    font-size: 16rem;
    font-weight: 400;
    height: 50rem;
    border-color: #71193B;
  }
  header .header_right .common_btn.reserve a::after {
    right: 35rem;
  }
  header .header_right .common_btn.reserve.teaser a {
    width: 100%;
    line-height: 1.4;
    font-size: 14rem;
    text-align: center;
  }
  header .header_right .common_btn.reserve.teaser a::after {
    right: 15rem;
    width: 20rem;
  }
  header .header_right .lang_change .select_lang_btn {
    padding-left: 0;
    padding-right: 0;
    overflow: hidden;
  }
  header .header_right .lang_change .select_lang_btn svg {
    width: 26rem;
  }
  header .header_right .lang_change .select_lang_btn::after {
    display: none;
  }
  header .header_right .lang_change .select_lang_list {
    top: 40rem;
  }
  header .header_right .lang_change .select_lang_list ul li a {
    width: 200rem;
    height: 50rem;
  }
  header.bg_on .header_left {
    top: 12rem;
  }
  header.bg_on::after {
    height: 72rem;
  }
  .mv .img_wrap {
    height: 650rem;
  }
  .mv .txt_wrap .logo {
    width: 195rem;
  }
  .mv .txt_wrap .ttl {
    font-size: 26rem;
  }
  .news_top {
    width: 100%;
    bottom: 85rem;
  }
  .news_top .content_inner {
    max-height: 205rem;
    width: 100%;
    padding: 20rem 20rem 0;
    border-bottom-width: 25rem;
  }
  .news_top .content_inner .ttl {
    margin-top: 0rem;
    font-size: 16rem;
  }
  .essential_top {
    margin-top: 100rem;
    padding-bottom: 100rem;
  }
  .essential_top::after {
    height: 588rem;
  }
  .essential_top .content_inner .ttl {
    font-size: 30rem;
  }
  .essential_top .content_inner .lead {
    font-size: 16rem;
    line-height: 2;
    margin-top: 15rem;
  }
  .essential_top .content_inner .slide_anim {
    width: 360rem;
    margin-left: 0;
  }
  .essential_top .content_inner .slide_anim ul.infinity_slide li {
    width: 215rem;
    padding-right: 25rem;
  }
  .essential_top .content_inner .detail_wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30rem;
    margin-top: 56rem;
  }
  .essential_top .content_inner .detail_wrap .logo {
    width: 145rem;
    margin-left: auto;
    margin-right: auto;
  }
  .essential_top .content_inner .detail_wrap .txt {
    width: 100%;
    line-height: 2;
  }
  .room_top {
    padding-top: 100rem;
    padding-bottom: 100rem;
  }
  .room_top .swiper_area {
    width: 100%;
    margin-top: 25rem;
  }
  .room_top .swiper_area .swiper .swiper-wrapper .swiper-slide .ph {
    height: 250rem;
  }
  .room_top .swiper_area .swiper .swiper-wrapper .swiper-slide .ph_notes {
    font-size: 12rem;
  }
  .room_top .swiper_area .swiper .swiper-wrapper .swiper-slide .detail_area {
    margin-top: 55rem;
  }
  .room_top .swiper_area .swiper .swiper-wrapper .swiper-slide .detail_area .room_name {
    font-size: 22rem;
  }
  .room_top .swiper_area .swiper .swiper-wrapper .swiper-slide .detail_area .table_wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 40rem;
  }
  .room_top .swiper_area .swiper .swiper-wrapper .swiper-slide .detail_area .table_wrap table {
    width: 100%;
  }
  .room_top .swiper_area .swiper .swiper-wrapper .swiper-slide .detail_area .table_wrap table tr th,
  .room_top .swiper_area .swiper .swiper-wrapper .swiper-slide .detail_area .table_wrap table tr td {
    padding: 10rem;
  }
  .room_top .swiper_area .swiper .swiper-wrapper .swiper-slide .detail_area .table_wrap table tr th {
    width: 42%;
  }
  .room_top .swiper_area .swiper .swiper-wrapper .swiper-slide .detail_area .amenity_wrap {
    width: 100%;
    margin-top: 30rem;
  }
  .room_top .swiper_area .swiper .swiper-wrapper .swiper-slide .detail_area .amenity_wrap .amenity_ttl {
    height: 35rem;
    line-height: 35rem;
  }
  .room_top .swiper_area .swiper .swiper-wrapper .swiper-slide .detail_area .amenity_wrap .contents {
    gap: 10rem;
    margin-top: 20rem;
  }
  .room_top .swiper_area .swiper .swiper-wrapper .swiper-slide .detail_area .amenity_wrap .contents li {
    width: calc(50% - 10rem);
  }
  .room_top .swiper_area .swiper .swiper-wrapper .swiper-slide .detail_area .common_btn {
    margin-top: 40rem;
  }
  .room_top .swiper_area .swiper .swiper-wrapper .swiper-slide .detail_area .common_btn a {
    width: 100%;
    height: 60rem;
    font-size: 14rem;
  }
  .room_top .swiper_area .swiper .swiper-wrapper .swiper-slide .detail_area .common_btn a::after {
    display: none;
  }
  .room_top .swiper_area .swiper .swiper-wrapper .swiper-slide .detail_area .common_btn .special_offer {
    font-size: 20rem;
    padding-bottom: 5rem;
  }
  .room_top .swiper_area .swiper .swiper-wrapper .swiper-slide .detail_area .common_btn .special_offer::before, .room_top .swiper_area .swiper .swiper-wrapper .swiper-slide .detail_area .common_btn .special_offer::after {
    width: 40rem;
    height: 1rem;
    top: 15rem;
  }
  .room_top .swiper_area .swiper .swiper-wrapper .swiper-slide .detail_area .common_btn .special_offer::before {
    left: -55rem;
  }
  .room_top .swiper_area .swiper .swiper-wrapper .swiper-slide .detail_area .common_btn .special_offer::after {
    right: -55rem;
  }
  .room_top .swiper_area .swiper-pagination {
    top: 278rem;
  }
  .room_top .swiper_area .swiper-button-prev,
  .room_top .swiper_area .swiper-button-next {
    margin-left: -162rem;
    margin-top: -410rem;
  }
  .room_top .swiper_area .swiper-button-next {
    margin-left: 162rem;
  }
  .info_access_top {
    margin-top: 100rem;
  }
  .info_access_top .info_area .content_wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    margin-top: 40rem;
  }
  .info_access_top .info_area .content_wrap .txt_box {
    width: 100%;
    padding-top: 20rem;
  }
  .info_access_top .info_area .content_wrap .txt_box .name {
    font-size: 18rem;
  }
  .info_access_top .info_area .content_wrap .txt_box .desc {
    margin-top: 8rem;
    line-height: 1.8;
  }
  .info_access_top .info_area .content_wrap .txt_box .walk_time {
    margin-top: 22rem;
  }
  .info_access_top .info_area .content_wrap .txt_box .common_btn {
    margin-top: 30rem;
  }
  .info_access_top .info_area .content_wrap .txt_box .common_btn a {
    margin-left: auto;
    margin-right: auto;
  }
  .info_access_top .info_area .content_wrap .img_box {
    width: 100%;
    height: 260rem;
    margin-left: auto;
    margin-right: auto;
  }
  .info_access_top .info_area .content_wrap.reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .info_access_top .info_area .content_wrap + .content_wrap {
    margin-top: 80rem;
  }
  .info_access_top .access_area {
    margin-top: 100rem;
    padding-top: 70rem;
  }
  .info_access_top .access_area .content_wrap {
    width: 100%;
  }
  .info_access_top .access_area .content_wrap .map_wrap {
    width: 100%;
    height: 400rem;
    margin-left: 0;
  }
  .info_access_top .access_area .content_wrap .txt_box {
    position: relative;
    width: 90%;
    min-height: auto;
    left: 50%;
    right: auto;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    margin-top: -70rem;
    padding: 30rem 24rem 40rem;
  }
  .info_access_top .access_area .content_wrap .txt_box .common_btn {
    margin-top: 30rem;
  }
  .info_access_top .access_area .content_wrap .txt_box .common_btn a {
    width: 100%;
  }
  .to_top {
    right: 16rem;
    bottom: 60rem;
  }
  .to_top img {
    width: 40rem;
  }
  footer .this_hotel {
    padding: 30rem 0 25rem;
  }
  footer .this_hotel .content_wrap {
    display: block;
    line-height: 2;
  }
  footer .this_hotel .content_wrap .logo_wrap {
    width: auto;
    text-align: center;
    padding-right: 0;
  }
  footer .this_hotel .content_wrap .logo_wrap img {
    width: 128rem;
  }
  footer .this_hotel .content_wrap .text {
    width: auto;
    text-align: center;
    padding-left: 0;
    margin-top: 30rem;
    display: block;
  }
  footer .this_hotel .content_wrap .text h3 {
    margin-top: 14rem;
  }
  footer .this_hotel .content_wrap .text h3 span {
    display: block;
  }
  footer .this_hotel .content_wrap .text h3 span.sub_tit {
    font-size: 16rem;
  }
  footer .this_hotel .content_wrap .text h3 span.sub_tit + .sub_tit {
    font-size: 13rem;
  }
  footer .this_hotel .content_wrap .text h3 span.h_name {
    margin-top: 14rem;
    line-height: 1.4;
    font-size: 16rem;
  }
  footer .this_hotel .content_wrap .text p {
    line-height: 1.6;
    font-size: 13rem;
    letter-spacing: 0.1em;
    margin-top: 20rem;
    text-align: center;
    padding: 0 15rem;
  }
  footer .this_hotel .content_wrap .text p.reserve_text {
    display: block;
  }
  footer .this_hotel .content_wrap .text p.reserve_text span {
    margin-left: 0;
  }
  footer .this_hotel .content_wrap .text .nav_sns {
    padding: 0 15rem;
    gap: 0 30rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 24rem;
  }
  footer .this_hotel .content_wrap .text .nav_sns li:first-child a {
    width: 24rem;
  }
  footer .this_hotel .content_wrap .text .nav_sns li a {
    width: 24rem;
  }
  footer .this_hotel .content_wrap .text .footer_contact {
    margin-top: 24rem;
  }
  footer .this_hotel .content_wrap .text .footer_contact li a {
    width: 250rem;
    padding: 0 15rem;
    font-size: 13rem;
    margin-left: auto;
    margin-right: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    line-height: 1.4;
    height: 48rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  footer .this_hotel .content_wrap .text .footer_contact li a span {
    display: block;
  }
  footer .this_hotel .content_wrap .text .footer_contact.en li a {
    width: 235rem;
    min-width: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  footer .this_hotel .other_nav {
    width: 330rem;
    margin-left: auto;
    margin-right: auto;
    font-size: 12rem;
    margin-top: 35rem;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  footer .hotel_list_area {
    padding: 40rem 0 80rem;
  }
  footer .hotel_list_area .hotel_list {
    display: block;
  }
  footer .hotel_list_area .hotel_list .left {
    width: auto;
    text-align: center;
    padding-right: 0;
  }
  footer .hotel_list_area .hotel_list .left img {
    width: 120rem;
  }
  footer .hotel_list_area .hotel_list .right {
    margin-top: 35rem;
    font-size: 13rem;
    width: auto;
    padding-left: 0;
    text-align: center;
  }
  footer .hotel_list_area .hotel_list .right .to_hospitalities span.en {
    font-size: 14rem;
    letter-spacing: 2rem;
  }
  footer .hotel_list_area .hotel_list .right .to_hospitalities span.jp {
    font-size: 14rem;
    margin-top: 15rem;
  }
  footer .hotel_list_area .hotel_list .right .glist {
    display: block;
    margin-top: 40rem;
  }
  footer .hotel_list_area .hotel_list .right .glist ul + ul {
    margin-left: 0rem;
    margin-top: 12rem;
  }
  footer .hotel_list_area .hotel_list .right .glist ul li + li {
    margin-top: 10rem;
  }
  footer .hotel_list_area .hotel_list .right .glist ul li.ohama {
    position: relative;
  }
  footer .hotel_list_area .hotel_list .right .glist ul li.ohama::before {
    position: absolute;
    content: "";
    display: block;
    width: 250rem;
    height: 1px;
    top: -20rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    background-color: #fff;
  }
  footer .hotel_list_area .comp_list {
    margin-top: 38rem;
    font-size: 13rem;
  }
  footer .hotel_list_area .copy {
    margin-top: 10rem;
    font-size: 12rem;
  }
  footer .hotel_type_wrap .logo_ah {
    width: 120rem;
    margin-left: auto;
    margin-right: auto;
  }
  footer .hotel_type_wrap dl {
    display: block;
    margin-top: 30rem;
    text-align: center;
  }
  footer .hotel_type_wrap dl .hotel_type {
    height: auto;
  }
  footer .hotel_type_wrap dl .hotel_type dt {
    font-size: 12rem;
    width: 60%;
    margin-left: auto;
    margin-right: auto;
  }
  footer .hotel_type_wrap dl .hotel_type dd {
    font-size: 14rem;
  }
  footer .hotel_type_wrap dl .hotel_type .logo_wrap {
    display: none;
  }
  footer .hotel_type_wrap dl .hotel_type + .hotel_type {
    margin-top: 30rem;
  }
  .non_mv {
    padding-top: 100rem;
  }
  .non_mv footer {
    margin-top: 100rem;
  }
}
@-webkit-keyframes mv_fadein {
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes mv_fadein {
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes infinity_slide {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@keyframes infinity_slide {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}/*# sourceMappingURL=style.css.map */