@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-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((335vw / 3.75), 1104px);
  --font-size-pc: 14px;
  --font-size-sp: calc(14vw / 3.75);
  --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
}

.nosp{
  display: none
}
.main{
  font-family: var(--font-sans);
  font-size: var(--content-font-size);
  color: var(--content-color-base);
  position: relative;
}
.main *{
  box-sizing: border-box;
}
.inner{
  width: var(--content-width);
  margin: auto;
}
a{
  transition: var(--content-hover-speed);
}

/***** MV・ナビ *****/
.title-wrapper {
  width: 100%;
  height: calc(410vw / 3.75);
  background: url("../img/bg_spmv.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: calc(100vw / 3.75);
  height: 100%;
  font-weight: bold;
  text-align: center;
  line-height: 2.04;
  color: #FFF;
  position: relative;
  cursor: pointer;
  padding: calc(8vw / 3.75);
}
.display_selected::after {
  content: "";
  background: url("../img/arrow01.svg") var(--bg-img-setting);
  width: calc(12vw / 3.75);
  height: calc(10vw / 3.75);
  position: absolute;
  top: 0;
  right: calc(4vw / 3.75);
  bottom: 0;
  margin: auto;
}
.dep-select-zone {
  display: none;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  transition: all .5s;
  z-index: 100;
  background: rgba(0 0 0 / 80%);
  padding: calc(100vw / 7.5) calc(80vw / 7.5);
}
.dep-select li {
  cursor: default;
  padding: calc(20vw / 7.5);
  font-size: calc(30vw / 7.5);
  font-weight: bold;
  color: #FFF;
  text-align: center;
}
.dep-select li:hover, .dep-select li.selected {
  background: #FFF;
  color: #000;
}
.close-button{
  margin: calc(40vw / 7.5) auto;
  width: 5em;
  padding: calc(10vw / 7.5);
  border: var(--content-border_s);
  font-size: calc(30vw / 7.5);
  font-weight: bold;
  color: #FFF;
  text-align: center;
}

.nav-wrapper{
  width: 100%;
  background-color: var(--content-color-sky);
  box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
}
.nav-wrapper.is-fix{
  position: fixed;
  top: 0;
  z-index: 50
}
.navigation-list{
  width: 100vw;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  padding: 0 calc(8vw / 3.75)
}
.navigation-list>li{
  width: calc(100% / 4);
  padding: calc(8vw / 3.75) 0;
}
.navigation-list>li:nth-child(-n+4){
  border-bottom: var(--content-border-s) #C0C5CC;
}

.navigation-list>li>a{
  display: flex;
  flex-direction: column;
  gap: calc(4vw / 3.75);
  align-items: center;
  font-weight: bold;
  text-align: center;
  border-right: var(--content-border-s) #C0C5CC;
}
.navigation-list>li>a>span{
  letter-spacing: -0.12em;
}
.navigation-list>li:nth-child(4n)>a{
  border-right: none;
}
.navigation-list>li>a:hover{
  color: var(--content-color-blue);
}
.navigation-list>li>a::before{
  content: "";
  background: var(--bg-img-setting);
  width: calc(16vw / 3.75);
  height: calc(16vw / 3.75);
  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: calc(40vw / 3.75) 0;
}
.content-wrapper.bg-blue{
  background-color: var(--content-color-sky)
}
.content-wrapper>.inner{
  display: flex;
  flex-direction: column;
  gap: calc(40vw / 3.75);
}
.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: calc(25vw / 3.75);
  height: calc(25vw / 3.75);
  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: calc(24vw / 3.75);
  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(auto-fit, minmax(320px, 1fr));
  gap: calc(24vw / 3.75)
}
.hotel-item{
  display: grid;
  gap: calc(16vw / 3.75);
  grid-template-columns: none;
  grid-template-rows: subgrid;
  grid-row: span 4;
}
.hotel-name{
  font-size: calc(16vw / 3.75);
  font-weight: bold;
}
.hotel-location{
  font-size:  calc(12vw / 3.75);
  color: var(--content-color-gray);
  display: flex;
  align-items: center;
  gap: calc(4vw / 3.75);
}
.hotel-location::before{
  content: "";
  background: var(--bg-img-setting) url("../img/pin.svg");
  width: calc(16vw / 3.75);
  height: calc(16vw / 3.75);
  display: block;
}
.img-content{
  width: 100%;
  height: calc(224vw / 3.75);
}
.img-content>img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hotel-item .hotel-txt{
  font-size: calc(16vw / 3.75);
  line-height: 1.8;
}
.hotel-award{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: calc(14vw / 3.75);
  font-weight: bold;
  color: var(--content-color-blue);
}
.hotel-award::before{
  content: "HISホテルアワード";
  font-size: calc(12vw / 3.75);
  color: #FFF;
  background: var(--content-color-blue);
  padding: 0 calc(4vw / 3.75);
  display: block;
}
.product-link{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(10vw / 3.75);
  padding-bottom: calc(24vw / 3.75);
  margin-top: auto;
}
.product-link>li{
  width: calc(255vw / 3.75);
  height: calc(44vw / 3.75);
}
.product-link>li>a{
  width: 100%;
  height: 100%;
  background: var(--content-color-blue);
  padding: 0 calc(24vw / 3.75) 0 calc(16vw / 3.75);
  border-radius: 6px;
  display: flex;
  gap: calc(4vw / 3.75);
  align-items: center;
  text-decoration: none;
  position: relative
}
.product-link>li>a>span{
  flex: 1;
  display: block;
  font-size: calc(16vw / 3.75);
  font-weight: bold;
  line-height: 1.0;
  color: #FFF;
  text-align: center;
}
.product-link>li>a::before{
  content: "";
  background: var(--bg-img-setting);
  width: calc(24vw / 3.75);
  height: calc(24vw / 3.75);
  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")
}

/* ランキング */
.ranking .hotel-titlebox{
  display: flex;
  gap: calc(10vw / 7.5);
}
.ranking .hotel-titlebox::before{
  content: "";
  background: var(--bg-img-setting);
  width: calc(54vw / 3.75);
  height: calc(69vw / 3.75);
  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: calc(10vw /3.75)
}
.theme-title{
  font-size: calc(20vw /3.75);
  font-weight: bold;
  display: flex;
  gap: calc(4vw /3.75);
  align-items: center;
  justify-content: center;
}
.theme-title::before{
  content: "";
  background: var(--bg-img-setting);
  width: calc(25vw /3.75);
  height: calc(25vw /3.75);
  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#girls::before{
  background-image: url("../img/num_03.svg")
}
.theme-title#pool::before{
  background-image: url("../img/num_04.svg")
}
.theme-title#villa::before{
  background-image: url("../img/num_05.svg")
}
.theme-title#food::before{
  background-image: url("../img/num_06.svg")
}
.theme-title#spa::before{
  background-image: url("../img/num_07.svg")
}
.hotel-content.theme .hotel-list{
  grid-template-columns: repeat(3, minmax(296px, 1fr));
  gap: calc(24vw / 3.75);
  overflow-x: scroll 
}

.hotel-content.theme .hotel-list .img-content{
  width: 100%;
  height: calc(198vw / 3.75)
}

/** ラウンジ **/
.content-wrapper.lounge .inner{
  gap: calc(20vw /3.75);
}
.flex-layout.lounge{
  background: var(--content-color-sky);
  padding: calc(20vw /3.75);
  display: flex;
  flex-direction: column;
  gap: calc(20vw /3.75);
}
.flex-layout.lounge .img-content{
  width: 100%;
  height: calc(194vw / 3.75);
}
.flex-layout.lounge .item-content{
  display: flex;
  flex-direction: column;
  gap: calc(8vw /3.75);
}
.item-midashi{
  font-size: calc(16vw /3.75);
  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: calc(16vw /3.75);
  font-weight: bold;
  color: var(--content-color-blue);
  text-align: center;
  line-height: 1.3;
  padding: calc(8vw / 3.75);
  position: relative
}
.link-button>a::after{
  content: "";
  background: var(--bg-img-setting) url("../img/arrow02.svg");
  width: calc(16vw /3.75);
  height: calc(16vw /3.75);
  position: absolute;
  top: 0;
  right: calc(16vw /3.75);
  bottom: 0;
  margin: auto
}

/** FAQ **/
.faq-list{
  display: flex;
  flex-direction: column;
  gap: calc(20vw /3.75);
}
.faq-content{
  display: flex;
  flex-direction: column;
  gap: calc(8vw /3.75);
}
.faq-question{
  font-size: calc(16vw /3.75);
  font-weight: bold;
  display: flex;
  gap: calc(8vw /3.75);
}
.faq-question::before{
  content: "Q";
  color: var(--content-color-blue)
}
.faq-answer{
  background: #FFF;
  padding: calc(16vw /3.75);
}

/** フッター **/
.content-wrapper.footer{
  padding-top: 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.search-container{
  background: url("../img/bg_search.jpg") no-repeat center / cover;
  padding: calc(20vw /3.75) 0 calc(40vw /3.75);
  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{
  width: 100vw;
  display: flex;
  flex-direction: column;
  gap: calc(16vw /3.75);
  position: relative;
  z-index: 30
}
.search-container .inner .head-title>span{
  font-family: var(--font-sans);
  font-size: calc(18vw /3.75);
  color: #FFF
}

/** 特集バナー **/
.top-bnr{
  margin: 0 auto calc(16vw / 3.75);
  text-align: center
}
.bnr-list{
  display: flex;
  flex-wrap: wrap;
  gap: calc(20vw / 3.75);
  justify-content: center;
}
.tokushu-bnr{
  width: calc((100% - (20vw / 3.75)) / 2)
}
.tokushu-bnr>a>img{
  border-radius: 8px
}
div[class*="-bnr"]>a{
  display: block;
}