@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@400;500;700&family=Noto+Sans+JP:wght@100..900&display=swap');

/* CSS Document */
:root {
  --content-color-base: #2C2A29;
  --content-color-camel: #8F7314;
  --content-color-camel60: #C7A739;
  --content-color-blue: #3064D5;
  --content-color-sky: #F5F7FA;
  --content-color-red: #CF3700;
  --content-color-gray: #697180;
  --bg-img-setting: no-repeat center center / contain;
  --bg-width-pc: max(100%, 1920px);
  --content-width: min((710vw / 7.5), 1104px);
  --font-size-pc: 14px;
  --font-size-sp: calc(24vw / 7.5);
  --font-sans: 'Noto Sans JP', serif;
  --font-mplus: "M PLUS Rounded 1c", sans-serif;
  --content-font-size: min(var(--font-size-sp), var(--font-size-pc));
  --content-hover-speed: 0.3s;
  --content-border-s: 1px solid;
}

.nopc {
  display: none
}

body {
    container-type: normal
}

.main {
  font-family: var(--font-sans);
  font-size: var(--content-font-size);
  color: var(--content-color-base);
  position: relative;
}

.main * {
  box-sizing: border-box;
}

img{
  max-width: 100%;
}

.inner {
  width: var(--content-width);
  margin: auto;
}

a {
  transition: var(--content-hover-speed);
  color: var(--content-color-base);
}

/***** MV・ナビ *****/
.title-wrapper {
  width: 100%;
  height: 350px;
  background: url("../img/bg_pcmv.jpg") no-repeat top center / cover;
}

.title-wrapper>.inner {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative
}

.dep-select-nav {
  position: absolute;
  top: 0;
  right: 0;
}

.display_selected {
  background: var(--content-color-camel);
  width: 128px;
  height: 100%;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  line-height: 2.04;
  color: #FFF;
  position: relative;
  cursor: pointer;
  padding: 8px;
}

.display_selected::after {
  content: "";
  background: url("../img/arrow01.svg") var(--bg-img-setting);
  width: 12px;
  height: 12px;
  position: absolute;
  top: 0;
  right: 4px;
  bottom: 0;
  margin: auto;
}

.dep-select-zone {
  display: none;
  width: 128px;
  position: absolute;
  z-index: 30;
  border: 1px solid var(--content-color-camel);
  border-top: none;
  background: #FFF;
  line-height: 1.5
}

.dep-select>li {
  cursor: default;
  padding: 4px 8px;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
}

.dep-select li:hover,
.dep-select li.selected {
  background: var(--content-color-camel);
  color: #FFF;
}

.close-button {
  display: none
}

.nav-wrapper {
  width: 100%;
  background-color: var(--content-color-sky);
  padding: 16px 0;
  box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
}

.nav-wrapper.is-fix {
  position: fixed;
  top: 0;
  z-index: 50
}

.navigation-list {
  display: flex;
  justify-content: center;
  gap: 0 20px;
  /* justify-content: space-between; */
  margin: auto;
  width: var(--content-width);
  font-size: min((16vw / 7.5), 14px);
}

.navigation-list>li {
  border-right: var(--content-border-s) #C0C5CC;
  padding-right: 20px;
}

.navigation-list>li+li {
  position: relative;
}

.navigation-list>li:last-child {
  border-right: none;
  padding-right: 0
}

.navigation-list>li>a {
  display: flex;
  gap: 8px;
  align-items: center;
  flex: 1;
  font-weight: bold;
  height: 100%;
  text-decoration: none;
}

.navigation-list>li>a>span {
  display: block;
}

.is-ipad .navigation-list>li>a {
  flex-direction: column;
}

@media screen and (min-width: 768px) and (max-width: 1104px) {
  .is-ipad .navigation-list>li>a {
    flex-direction: column;
    width: 100%;
  }

  .navigation-list {
    gap: 0 10px;
  }

  .navigation-list>li {
    padding-right: 10px;
  }

  .navigation-list .br-tb {
    display: none;
  }
}

.navigation-list>li>a:hover {
  color: var(--content-color-blue);
}

.navigation-list>li>a::before {
  content: "";
  background: var(--bg-img-setting);
  width: 20px;
  height: 20px;
  display: block;
}

.navigation-list>li>a.crown::before {
  background-image: url("../img/crown.svg")
}

.navigation-list>li>a.counter_1::before {
  background-image: url("../img/num_01.svg")
}

.navigation-list>li>a.counter_2::before {
  background-image: url("../img/num_02.svg")
}

.navigation-list>li>a.counter_3::before {
  background-image: url("../img/num_03.svg")
}

.navigation-list>li>a.counter_4::before {
  background-image: url("../img/num_04.svg")
}

.navigation-list>li>a.counter_5::before {
  background-image: url("../img/num_05.svg")
}

.navigation-list>li>a.counter_6::before {
  background-image: url("../img/num_06.svg")
}

.navigation-list>li>a.counter_7::before {
  background-image: url("../img/num_07.svg")
}


/***** メインコンテンツ *****/
.main-container {
  position: relative;
}

.content-wrapper {
  width: 100%;
  padding: 48px 0;
}

.content-wrapper.bg-blue {
  background-color: var(--content-color-sky)
}

.content-wrapper>.inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.head-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: center;
}

.head-title#rank::before,
.head-title#theme::before {
  content: "";
  background: var(--bg-img-setting);
  width: 40px;
  height: 40px;
  display: block;
}

.head-title#rank::before {
  background-image: url("../img/crown.svg")
}

.head-title#theme::before {
  background-image: url("../img/hotel.svg")
}

.head-title>span {
  font-family: var(--font-mplus);
  font-size: 32px;
  font-weight: 500;
}

.is-camel {
  color: var(--content-color-camel);
}

.is-blue {
  color: var(--content-color-blue);
}

.is-red {
  font-weight: bold;
  color: var(--content-color-red);
}

/** ホテルリスト **/
.hotel-list {
  display: grid;
  grid-template-columns: repeat(3, calc((100% - (24px * 2)) / 3));
  gap: 24px;
}

.hotel-item {
  display: grid;
  gap: 10px;
  grid-template-columns: 100%;
  grid-template-rows: subgrid;
  grid-row: span 4;
}

.hotel-name {
  font-size: 20px;
  font-weight: bold;
}

.hotel-location {
  font-size: 12px;
  color: var(--content-color-gray);
  display: flex;
  align-items: center;
  gap: 4px
}

.hotel-location::before {
  content: "";
  background: var(--bg-img-setting) url("../img/pin.svg");
  width: 16px;
  height: 16px;
  display: block;
}

.hotel-item .hotel-txt {
  font-size: 16px;
  line-height: 1.8;
}

.hotel-award {
  display: flex;
  gap: 4px;
  align-items: center;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: bold;
  color: var(--content-color-blue);
}

.hotel-award::before {
  content: "HISホテルアワード";
  color: #FFF;
  background: var(--content-color-blue);
  padding: 0 4px;
  display: block;
}

@media screen and (min-width: 768px) and (max-width: 1104px) {
  .hotel-award {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}

.product-link {
  width: 100%;
  display: flex;
  gap: 4px;
  padding-bottom: 48px;
  margin-top: auto;
}

.product-link>li {
  width: calc((100% - (4px * 2)) / 3);
  /* flex-grow: 1; */
  display: flex;
  flex-direction: column;
}

.product-link>li>a {
  background: var(--content-color-blue);
  padding: 8px 20px 8px 8px;
  border-radius: 6px;
  flex-grow: 1;
  display: flex;
  gap: 4px;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  position: relative
}

.product-link>li>a:hover {
  opacity: .8
}

.product-link>li>a>span {
  min-width: 60px;
  display: block;
  font-size: 12px;
  color: #FFF;
  text-align: center;
}

.product-link>li>a::before {
  content: "";
  background: var(--bg-img-setting);
  width: 20px;
  height: 20px;
  display: block;
}

.product-link .is-hotel>a::before {
  background-image: url("../img/ico_hotel.svg")
}

.product-link .is-dp>a::before {
  background-image: url("../img/ico_dp.svg")
}

.product-link .is-tour>a::before {
  background-image: url("../img/ico_tour.svg")
}

.product-link>li.is-hide {
  display: none !important;
}

/* ランキング */
.ranking .hotel-titlebox {
  display: flex;
  gap: 10px;
}

.ranking .hotel-titlebox::before {
  content: "";
  background: var(--bg-img-setting);
  width: 72px;
  height: 92px;
  display: block;
  flex-shrink: 0;
}

.ranking .no1 .hotel-titlebox::before {
  background-image: url("../img/rank_1st.svg")
}

.ranking .no2 .hotel-titlebox::before {
  background-image: url("../img/rank_2nd.svg")
}

.ranking .no3 .hotel-titlebox::before {
  background-image: url("../img/rank_3rd.svg")
}

.ranking .no4 .hotel-titlebox::before {
  background-image: url("../img/rank_4th.svg")
}

.ranking .no5 .hotel-titlebox::before {
  background-image: url("../img/rank_5th.svg")
}

.ranking .product-link>li>a {
  background: var(--content-color-camel);
}

/* テーマ */
.theme-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.theme-title {
  font-size: 26px;
  font-weight: bold;
  display: flex;
  gap: 4px;
  align-items: center;
  justify-content: center;
}

.theme-title::before {
  content: "";
  background: var(--bg-img-setting);
  width: 40px;
  height: 40px;
  display: block;
}

.theme-title#family::before {
  background-image: url("../img/num_01.svg")
}

.theme-title#couple::before {
  background-image: url("../img/num_02.svg")
}

.theme-title#resort::before {
  background-image: url("../img/num_03.svg")
}

.theme-title#price::before {
  background-image: url("../img/num_04.svg")
}

.theme-title#bath::before {
  background-image: url("../img/num_05.svg")
}

.theme-title#walk::before {
  background-image: url("../img/num_06.svg")
}



/** ラウンジ **/
.content-wrapper.lounge .inner {
  gap: 24px;
}

.flex-layout.lounge {
  background: var(--content-color-sky);
  padding: 24px;
  display: flex;
  gap: 24px;
  align-items: flex-start
}

.flex-layout.lounge .img-content {
  width: 434px;
  height: 287px;
}

.flex-layout.lounge .img-content>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flex-layout.lounge .item-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.item-midashi {
  font-size: 20px;
  font-weight: bold;
  color: var(--content-color-blue);
  line-height: 1.3
}

.link-button {
  width: 100%;
}

.link-button>a {
  display: block;
  border: var(--content-border-s) #C0C5CC;
  border-radius: 100px;
  background: #FFF;
  font-size: 16px;
  font-weight: bold;
  color: var(--content-color-blue);
  text-align: center;
  line-height: 44px;
  position: relative
}

.link-button>a::after {
  content: "";
  background: var(--bg-img-setting) url("../img/arrow02.svg");
  width: 16px;
  height: 21px;
  position: absolute;
  top: 0;
  right: 16px;
  bottom: 0;
  margin: auto
}

.link-button>a:hover {
  opacity: .8
}

@media screen and (min-width: 768px) and (max-width: 1104px) {
  .flex-layout.lounge .img-content {
    flex: 1;
    height: auto;
  }

  .flex-layout.lounge .item-content {
    width: 440px !important;
    flex-grow: 0;
    flex-shrink: 1;
    flex-basis: auto
  }
}

/** FAQ **/
.content-wrapper.myBlockFaq {
  padding: 16px 0 48px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.faq-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-question {
  font-size: 16px;
  font-weight: bold;
  display: flex;
  gap: 8px;
}

.faq-question::before {
  content: "Q";
  color: var(--content-color-blue)
}

.faq-answer {
  background: #FFF;
  padding: 16px;
}

.faq-answer a{
  color: var(--content-color-blue);
}

/** フッター **/
.content-wrapper.footer {
  padding-top: 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.search-container .inner .head-title>span {
  font-family: var(--font-sans);
  font-size: 26px;
  color: #FFF
}
.search-container {
  background: url("../img/bg_search.jpg") no-repeat center / cover;
  padding: 40px 0;
  position: relative
}
.search-container::before {
  content: "";
  background: rgba(0 0 0 / 50%);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1
}
.search-container>.inner {
  position: relative;
  z-index: 30
}

@media (768px <= width <= 1024px){
  .rn-searchMod__navListItem{
    margin-bottom: 0
  }
}

/** 特集バナー **/
.top-bnr {
  margin: auto;
  text-align: center
}

.bnr-list {
  display: flex;
  gap: 24px;
  justify-content: center;
}

.tokushu-bnr {
  max-width: 200px;
}

.tokushu-bnr>a>img {
  border-radius: 8px
}

div[class*="-bnr"]>a {
  display: block;
}

div[class*="-bnr"]>a:hover {
  opacity: .8
}


.breadcrumb {
  max-width: 100%;
}

.pc-only{
  display: block!important;
}
.page-top-button::after {
    content: "";
    background: url(/cmn/icon/icon_arrow_top_white.svg) no-repeat center / contain;
    width: 24px;
    height: 24px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}
@media screen and (max-width: 1024px){
    .product-link>li>a {
        padding: 8px 11px 8px 8px;
        gap: 0px;
    }
        .product-link>li>a>span {
        min-width: 55px;
    }
    .navigation-list li:nth-child(4){
      min-width: 96px;
    }
    .navigation-list li:nth-child(5){
      min-width: 70px;
    }
    .navigation-list li:nth-child(6){
      min-width: 70px;
    }
    .navigation-list li:nth-child(7){
      max-width: 130px;
    }
    .navigation-list li:nth-child(7) br{
      display: none !important;
    }
}

@media screen and (max-width: 820px){
    .product-link>li>a {
        padding: 8px 0px 8px 8px;
        gap: 0px;
    }
}