/* ------------------------------------------------------------------
宿一覧
------------------------------------------------------------------ */
.hotels_page.toppage_hotels {
  padding: 0px 0;
}

/* ------------------------------------------------------------------
宿詳細
------------------------------------------------------------------ */
.mv_hotel_logo {
  width: 300px !important;
}

@keyframes zoom {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.8);
  }
}

.swiper-slide-active .swiper-slide-img,
.swiper-slide-duplicate-active .swiper-slide-img,
.swiper-slide-prev .swiper-slide-img {
  animation: zoom 12s linear;
}

.slide-img img {
  display: block;
}

.swiper-slide-img {
  width: 100%;
  height: 100vh;
  /* 画面の高さ100% */
  overflow: hidden;
}

.swiper-slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* 画像の比率を保ったまま領域を埋める */
  overflow: hidden;
}

.swiper5 .swiper-wrapper {
  overflow: hidden;
}

.head__hotels_btn, .head__hotels_btn:active, .head__hotels_btn.active {
  outline: 0;
  background-color: #1466dd;
  color: #fff;
  z-index: 999;
}

.head__hotels_btn:hover {
  background-color: #0352f6;
  color: #fff;
}

@media(min-width:768px) {}

@media(min-width:1024px) {}

@media(min-width:1280px) {}

@media only screen and (max-width: 1023px) {
  .mv_hotel_logo {
    width: 200px !important;
  }

  .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* 画像の比率を保ったまま領域を埋める */
  }
}

/* ------------------------------------------------------------------
宿詳細ページ_メニュー
------------------------------------------------------------------ */
.hotels_page_container {
  position: relative;
}

.js-location-nav {
  width: 100%;
  padding: 4em 0;
}

/* 追従の指定 */
.js-location-nav ul {
  display: flex;
  justify-content: center;
  position: sticky;
  top: 0;
}

.js-location-nav ul li {}

.js-location-nav ul li a {
  display: block;
  color: #000;
  text-transform: uppercase;
  text-decoration: none;
  padding: 20px 40px;
}

/* カレント表示の指定 */
.is-current {
  color: #fff;
  background: #000;
}

@media only screen and (max-width: 1023px) {
  .js-location-nav ul {
    flex-wrap: wrap;
  }

  .js-location-nav ul li a {
    padding: 20px;
  }
}

/* ------------------------------------------------------------------
宿詳細ページ_各見出し inner
------------------------------------------------------------------ */
.hotels_page_container .topTitle {
  text-align: left;
}

.hotels_page_container .topTitle .title_en {
  text-transform: capitalize;
}

.hotels_page_container .topTitle .title_ja {
  margin-bottom: 1em;
  font-size: 1.8rem;
  padding-left: .5em;
  position: relative;
}

.hotels_page_container .topTitle .title_ja::after {
  position: absolute;
  content: "";
  top: 50%;
  width: 100px;
  height: 1px;
  background-color: #000;
  margin-left: .5em;
}

@media (min-width: 1024px) {
  .hotels_page_container .inner {
    max-width: 80%;
  }

  .hotels_page_container .topTitle .title_en {
    font-size: 6.8rem;
  }
}

@media (min-width: 1280px) {
  .hotels_page_container .topTitle .title_en {
    font-size: 9.6rem;
  }
}

@media only screen and (max-width: 1023px) {
  .hotels_page_container .topTitle .title_ja {
    font-size: 1.6rem;
  }

  .hotels_page_container .topTitle .title_en {
    font-size: 4.6rem;
  }
}

/* ------------------------------------------------------------------
トップページ_クチコミ
------------------------------------------------------------------ */
.hotels_review {
  padding: 4em 0 8em;
}

.hotels_review_list .tag__list {
  justify-content: space-between;
  margin-bottom: 2em;
}

.hotels_review_list .tag__list .tag_number {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
}

.hotels_review_list .tag__list .tag_btn {
  color: #808080;
}

.hotels_page_container .card02 .swiper-button-next:after, .hotels_page_container .card02 .swiper-button-prev:after {
  display: block;
  content: "";
  width: 40px;
  height: 40px;
  background: url(../img/hotels/arrow_simple.svg) no-repeat 0 0;
  background-size: 40px 40px;
  transition: .5s;
}

.hotels_page_container .card02 .swiper-button-prev, .hotels_page_container .card02 .swiper-button-next {
  width: 100px;
  height: 100px;
}

.hotels_review .swiper-controller {
  margin-bottom: 40px;
}

@media(min-width:1024px) {
  .hotels_review .topTitle {
    margin-bottom: 0;
  }
}

@media only screen and (max-width: 1023px) {
  .hotels_review {
    padding: 2em 0 6em;
  }

  .hotels_page_container .topTitle .title_ja {
    padding-left: .2em;
  }

  .hotels_review .tag__list .tag_number {
    font-size: 1.8rem;
  }
}

/* ------------------------------------------------------------------
トップページ_宿の詳細
------------------------------------------------------------------ */
.hotels_about {
  padding: 4em 0 8em;
}

.hotels_about_title {
  font-family: "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  padding: 5em 0 10em;
  text-align: center;
  margin-bottom: 0;
  font-size: 2.2rem;
}

.hotels_about ul li {
  margin-bottom: 5em;
}

.hotels_about ul li:last-child {
  margin-bottom: 0em;
}

.hotels_about .left, .hotels_about .right {
  width: 50%;
}

.hotels_about .right {
  position: relative;
}

.hotels_about .right p {
  margin-bottom: 0;
}

.hotels_about .right .text_area {
  position: absolute;
  display: inline-block;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 100%;
  margin: 0 auto;
}

.hotels_about ul li:nth-child(even) .left {
  order: 2;
}

.hotels_about ul li:nth-child(even) .right {
  order: 1;
}

@media only screen and (max-width: 1023px) {
  .hotels_about_title {
    font-size: 1.9rem;
  }

  .hotels_about .c-flex {
    display: flex;
    flex-wrap: wrap;
  }

  .hotels_about .left .image-wrap {
    padding-top: 100%;
  }

  .hotels_about .right .text_area {
    width: 90%;
  }
}

/* ------------------------------------------------------------------
トップページ_Local Experience
------------------------------------------------------------------ */
.hotels_Local_Experience {
  padding: 8em 0 8em;
  background: #f7f3ed;
}

.hotels_Local_Experience ul li {
  margin-bottom: 5em;
}

.hotels_Local_Experience ul li:last-child {
  margin-bottom: 0em;
}

.hotels_Local_Experience .left, .hotels_Local_Experience .right {
  width: 50%;
}

.hotels_Local_Experience .right {
  position: relative;
}

.hotels_Local_Experience .right p {
  margin-bottom: 0;
}

.hotels_Local_Experience .right .text_area {
  position: absolute;
  display: inline-block;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1;
}

.hotels_Local_Experience ul li:nth-child(odd) .left {
  order: 2;
}

.hotels_Local_Experience ul li:nth-child(odd) .right {
  order: 1;
}

.hotels_Local_Experience .right .text_area {
  width: 100%;
  margin: 0 auto;
}

@media only screen and (max-width: 1023px) {
  .hotels_Local_Experience_title {
    font-size: 1.9rem;
  }

  .hotels_Local_Experience .c-flex {
    display: flex;
    flex-wrap: wrap;
  }

  .hotels_Local_Experience .left .image-wrap {
    padding-top: 100%;
  }

  .hotels_Local_Experience .right .text_area {
    width: 90%;
  }
}

/* ------------------------------------------------------------------
トップページ_Gallery 写真
------------------------------------------------------------------ */
.hotels_Gallery {
  padding: 8em 0 0em;
}

.madori h4 {
  font-size: 2.0rem;
}

.photo__gallery .image-wrap {
  padding-top: 100%;
}

@media(min-width:1024px) {
  .madori .left {
    width: 20%;
  }

  .madori .right {
    width: 80%;
  }
}

@media only screen and (max-width: 1023px) {
  .madori h4 {
    font-size: 1.6rem;
  }
}

/* ------------------------------------------------------------------
トップページ_Access
------------------------------------------------------------------ */
.hotels_Access {
  padding: 8em 0 8em;
}

.hotels_Access .acf-map {
  margin: 0;
}

.hotels_Access h4 {
  font-family: "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  font-weight: 500;
  font-size: 2.2rem;
}

.Access_info {
  margin: 50px 0;
  padding-bottom: 50px;
  border-bottom: solid 1px;
  justify-content: center;
  align-items: center;
}

.Access_info h4 {
  text-align: center;
  margin-bottom: 0;
}

.Access_info div {
  margin-bottom: 0;
}

.info_btn {
  width: 250px;
  letter-spacing: .04em;
  font-family: "Futura Std", sans-serif;
}

.info_btn::before {
  display: block;
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  right: 30px;
  top: 50%;
  background: url(../img/hotels/pin.svg) no-repeat 0 0;
  background-size: 20px 20px;
  margin-top: -10px;
}

ul.Access_info_list li {
  margin-bottom: 4em;
}

ul.Access_info_list li:last-child {
  margin-bottom: 0;
}

@media(min-width:1024px) {
  .Access_info div {
    width: 30%;
  }

  .youtube_wrapper {
    width: 60%;
  }
}

@media only screen and (max-width: 1023px) {
  .hotels_Access {
    padding: 8em 0 0em;
  }

  .Access_info h4 {
    margin-bottom: 1em;
    font-size: 1.4rem;
  }
}

/* ------------------------------------------------------------------
トップページ_Facility
------------------------------------------------------------------ */
.hotels_Facility {
  padding: 8em 0 8em;
}

.Facility_wrapper {
  border-bottom: solid 1px;
  padding-bottom: 4em;
  margin-bottom: 4em;
}

.Facility_wrapper:first-child {
  padding-top: 0em;
}

.Facility_wrapper:last-child {
  margin-bottom: 0em;
}

.hotels_Facility h4 {
  font-family: "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  font-weight: 500;
  font-size: 2.2rem;
  margin-bottom: 0em;
}

.hotels_Facility h4 .sub_en {
  display: inline-block;
  font-family: "Futura Std", sans-serif;
  font-size: 1.5rem;
  padding-left: 1em;
}

ul.facility__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

ul.facility__list li {
  position: relative;
  width: 45%;
  padding-left: 1.5em;
  margin-bottom: 1em;
}

ul.facility__list li::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

ul.facility__list li.maru {}

ul.facility__list li.batsu {
  color: #989898;
}

ul.facility__list li.maru::before {
  content: "○";
}

ul.facility__list li.batsu::before {
  content: "×";
}

@media(min-width:1024px) {
  .Facility_title {
    width: 30%;
  }

  .Facility_main {
    width: 70%;
  }
}

@media only screen and (max-width: 1023px) {
  .hotels_Facility {
    padding: 8em 0 0em;
  }

  .Facility_title {
    margin-bottom: 1em;
  }

  .hotels_Facility h4 {
    font-size: 2.0rem;
  }

  .hotels_Facility h4 .sub_en {
    font-size: 1.3rem;
  }
}

/* ------------------------------------------------------------------
予約
------------------------------------------------------------------ */
.hotels_yoyaku {
  padding: 0em 0 8em;
}

.hotels_yoyaku_wrapper {
  position: relative;
}

.hotels_yoyaku_mv-box {
  display: block;
  overflow: hidden;
  width: 100%;
  height: 40vh;
  transition-property: opacity;
  transition-duration: 0.5s;
}

.hotels_yoyaku_mv-box:hover {
  opacity: 0.7;
}

.hotels_yoyaku_mv-box img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.hotels_yoyaku_wrapper .text-box p {
  font-family: "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  font-weight: 500;
  font-size: 2.8rem;
  color: #fff;
  margin-bottom: 0;
  z-index: 999;
}

.hotels_yoyaku_wrapper .text-box p span {
  position: relative;
  display: inline-block;
  font-family: "Futura Std", sans-serif;
  font-size: 1.5rem;
  padding: 0 4em 0 2em;
  border-bottom: solid 1px;
}

.hotels_yoyaku_wrapper .text-box p span::before {
  display: block;
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  right: 10px;
  top: 50%;
  margin-top: -10px;
  background: url(../img/arrow_right_white.svg) no-repeat 0 0;
  background-size: 20px 20px;
  transition: right .3s;
}

@media only screen and (max-width: 1023px) {
  .hotels_yoyaku {
    padding: 8em 0 0em;
  }

  .hotels_yoyaku_wrapper .text-box p {
    font-size: 2.2rem;
  }
}

/* ------------------------------------------------------------------
周辺の宿
------------------------------------------------------------------ */
.hotels_syuuhen {
  padding: 8em 0 8em;
}

.hotels_syuuhen h3 {
  text-align: center;
  font-family: "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  font-weight: 500;
  font-size: 2.8rem;
  margin-bottom: 4em;
}

ul.syuuhen_list li {
  transition-property: opacity;
  transition-duration: 0.5s;
}

ul.syuuhen_list li:hover {
  opacity: 0.7;
}

ul.syuuhen_list li a {
  color: #000;
}

ul.syuuhen_list li .image-wrap {
  padding-top: 100%;
}

ul.syuuhen_list li .hotels_syuuhen_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin: 1em 0;
}

ul.syuuhen_list li .hotels_syuuhen_box .left {
  width: 20%;
}

ul.syuuhen_list li .hotels_syuuhen_box .right {
  width: 75%;
}

ul.syuuhen_list li .hotels_syuuhen_box p {
  font-size: 1.4rem;
  margin-bottom: 0;
  line-height: 1.6;
}

ul.syuuhen_list li h4 {
  font-weight: 400;
  font-size: 1.4rem;
  margin-bottom: 0;
}

@media only screen and (max-width: 1023px) {
  .hotels_syuuhen {
    padding: 8em 0 8em;
  }

  ul.syuuhen_list li {
    margin-bottom: 8%;
  }

  ul.syuuhen_list li .hotels_syuuhen_box {
    margin: .5em 0;
  }
}

@media only screen and (max-width: 1023px) {
  .hotels_syuuhen h3 {
    font-size: 2.2rem;
  }
}

/* ------------------------------------------------------------------
アコーディオン
------------------------------------------------------------------ */
.accordion-title {
  cursor: pointer;
  padding: 1em 0;
  margin-bottom: 0;
  font-size: 1.6rem;
  color: #666666;
}

.accordion-content {
  display: none;
  padding: 3em 0;
}

.accordion-content p {
  position: relative;
  margin-bottom: 0;
  font-size: 1.3rem;
}

/* ------------------------------------------------------------------
メディア掲載
------------------------------------------------------------------ */
.hotels_page_container .toppage_media .topTitle{
  text-align: center;
}

/* ------------------------------------------------------------------
タブ
------------------------------------------------------------------ */
.tab-menu {
  --tag-item-checked-color: #fff;
  --tab-menu-item-height: 50px;
  display: flex;
  flex-wrap: wrap;
}

.tab-menu>input {
  display: none;
}

.tab-menu .tab-menu-item {
  margin: 3em 0;
  align-items: center;
  border-bottom: none;
  display: flex;
  flex: 1;
  height: var(--tab-menu-item-height);
  justify-content: center;
  order: -1;
}

.tab-menu>input:checked+.tab-menu-item {
  background-color: var(--tag-item-checked-color);
  border-color: var(--tag-item-checked-color);
  background-color: var(--tag-item-checked-color);
  color: #000;
  border-bottom: solid 1px #000;
}

.tab-menu .tab-menu-contents {
  width: 100%;
  height: 0px;
  opacity: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.tab-menu>input:checked+.tab-menu-item+.tab-menu-contents {
  border-top: 3px solid var(--tag-item-checked-color);
  height: auto;
  opacity: 1;
  transition: opacity 0.5s;
}

@media only screen and (max-width: 1023px) {
  .tab-menu .tab-menu-item {
    margin: 1em 0;
    flex: none;
    width: 33.33333%;
    text-align: center;
  }
}
