@charset "utf-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap');
:root{
  --content-color-red: #ce0845;
  --content-color-pink: #e37395;
  --content-color-blue: #0e7fb7;
  --content-color-beige: #be8349;
  --content-color-orange: #e3c289;
  --bg-img-setting: no-repeat center center / contain;
  --bg-cover-setting: no-repeat center top / cover;
  --bg-width-pc: max(100%, 1920px);
  --content-width: min((710vw / 7.5), 992px);
  --font-size-pc: 14px;
  --font-size-sp: calc(24vw / 7.5);
  --font-sans: "Noto Sans JP", sans-serif;
  --font-serif: "Noto Serif JP", serif;
  --content-font-size: min(var(--font-size-sp), var(--font-size-pc));
  --content-hover-speed: 0.3s;
  --content-shadow: 0 0 4px 2px rgba(0 0 0 / 20%);
  --content-arrow-right: url("../img/arrow02.png");
  --content-arrow-down: url("../img/arrow.png");
  --content-border_s: 1px solid;
  --content-border_m: 2px solid;
  --content-border_l: 4px solid;
}

.nopc{
  display: none
}
.main{
  font-family: var(--font-sans);
  font-size: var(--content-font-size);
  font-weight: 400;
  color: var(--content-color-base);
  position: relative;
  line-height: 1.5
}
.main *{
  box-sizing: border-box;
}
.inner{
  width: var(--content-width);
  margin: auto;
}
a{
  transition: var(--content-hover-speed);
}

/*** MV ナビ ***/
.title-wrapper{
  width: 100%;
  height: 500px;
  background: url("../img/pc_main.jpg")no-repeat center top / cover;
  position: relative;
}
.bodycopy{
  width: 992px;
  background: rgba(255 255 255 / 75%);
  text-align: center;
  padding: 16px;
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  margin: auto
}
.nav-wrapper{
  background: var(--content-color-beige);
}
.nav-list{
  width: 992px;
  display: flex;
  margin: auto;
  border-left: var(--content-border_s) #FFF;
}
.nav-list>li{
  width: calc(100% / 4);
  border-right: var(--content-border_s) #FFF;
}
.nav-list>li>a{
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  font-size: 16px;
  font-weight: bold;
  color: #FFF;
  text-align: center;
  padding: 8px 8px 24px;
  position: relative
}
.nav-list>li>a::after{
  content: "";
  background: var(--bg-img-setting) var(--content-arrow-down);
  width: 16px;
  height: 11px;
  position: absolute;
  right: 0;
  bottom: 8px;
  left: 0;
  margin: auto;
}
.nav-list>li>a:hover{
  background-color: var(--content-color-orange);
}

/*** メインコンテンツ ***/
.content-wrapper{
  padding: 50px 0;
}
.head-title{
  font-size: 38px;
  font-weight: 900;
  text-align: center;
  position: relative;
  padding-top: 70px;
  margin-bottom: 32px;
}
.head-title::before{
  content: "";
  background: var(--bg-img-setting);
  width: 189px;
  height: 70px;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  margin: auto;
}
#pickup .head-title::before{
  background-image: url("../img/badge_special.png");
}
.head-title#leisure::before{
  background-image: url("../img/badge_park.png");
}
.head-title#theme::before{
  background-image: url("../img/badge_theme.png");
}
#pref .head-title::before{
  background-image: url("../img/badge_prefectures.png");
}
#article .head-title::before{
  background-image: url("../img/badge_article.png");
}
.red-txt{
  color: var(--content-color-red);
  font-size: inherit;
  font-weight: inherit
}
.blue-txt{
  color: var(--content-color-blue);
  font-size: inherit;
  font-weight: inherit
}

/*** 施策バナー ***/
.bnr-wrapper{
  display: flex;
  margin: 0 auto 48px;
  text-align: center;
  gap: 16px;
}
.bnr-wrapper>li{
  width: calc((100% - 16px) / 2);
  flex-grow: 1;
}
.bnr-wrapper>li>a{
  display: block;
}
.bnr-wrapper>li>a:hover{
  opacity: .8
}

/*** 商品 ***/
.title-notice{
  display: flex;
  gap: 4px;
  justify-content: center;
  align-items: center;
  margin-bottom: 16px;
}
.title-notice>span{
  font-size: 18px;
  font-weight: bold;
}
.title-notice::before{
  content: "人気の温泉宿";
  background-color: var(--content-color-red);
  padding: 3px;
  font-weight: bold;
  color: #FFF;
  display: block;
}
.area-tab{
  display: flex;
  gap: 10px;
  margin-bottom: 40px;
  align-items: center;
}
.area-tab>li{
  width: calc((100% - (10px * 7) / 8));
  background: var(--content-color-pink);
  font-size: 16px;
  color: #FFF;
  text-align: center;
  padding: 16px 6px;
  box-shadow: var(--shadow-box);
  border-radius: 6px;
}
.area-tab>li:hover{
  background-color: var(--content-color-red);
}
.area-tab>li.nav_on{
  background-color: var(--content-color-red);
  padding: 24px 6px;
  position: relative
}
.area-tab>li.nav_on::after{
  content: "";
  clip-path: polygon(100% 0, 0 0, 50% 50%);
  width: 24px;
  height: 24px;
  background: var(--content-color-red);
  position: absolute;
  right: 0;
  bottom: -24px;
  left: 0;
  margin: auto
}
.area00{
  display: none
}
.sub-title{
  text-align: center;
  font-size: 30px;
  font-weight: 900;
  margin-bottom: 10px;
}
.js-dep-name{
  font-size: inherit;
}
.sub-title::after{
  content: "おすすめプラン";
  color: var(--content-color-red);
}
.product-list.card-style>li:nth-child(-n+3){
  width: calc((100% - (10px * 2)) / 3);
}
.port-type::after{
  content: "】"
}
.item-label.label::after{
  content: "人気の温泉宿";
  background-color: var(--content-color-red);
  font-size: 12px;
  font-weight: bold;
  color: #FFF;
}
.item-txt__title{
  font-size: 15px;
}
.item-txt__point{
  font-size: 12px;
}
.dep-date,
.item-txt__note{
  font-size: 11px!important
}
.more-link{
  width: 600px;
  margin: 24px auto 0;
}
.more-link>a{
  display: block;
  background: var(--content-color-beige);
  font-size: 16px;
  font-weight: bold;
  color: #FFF;
  text-align: center;
  padding: 16px;
  border-radius: 6px;
  box-shadow: var(--shadow-box);
  position: relative
}
.more-link>a::after{
  content: "";
  background: var(--bg-img-setting) var(--content-arrow-right);
  width: 12px;
  height: 16px;
  position: absolute;
  top: 0;
  right: 16px;
  bottom: 0;
  margin: auto;
}
.more-link>a:hover{
  background: var(--content-color-orange)
}

/*** 特集バナー ***/
.bnr__content+.bnr__content{
  margin-top: 60px;
}
.theme-list{
  display: flex;
  gap: 20px;
}
.theme-list>li{
  width: calc((100% - (20px * 4)) / 5)
}
.theme-list>li>a{
  display: block;
}
.theme-list>li>a:hover{
  opacity: .8
}

/*** 都道府県 ***/
.area-list+.area-list{
  margin-top: 40px
}
.area-list>li{
  position: relative;
  padding-left: 140px;
  background: no-repeat left top / 120px 80px;
}
.pref-list{
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.pref-list>li{
  width: calc((100% - (20px * 5)) / 6);
}
.pref-list>li>a{
  display: block;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  transition: 0.3s
}
.pref-list>li>a::before{
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(transparent 0, rgba(0 0 0 / 50%) 90%);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.pref-list>li>a:hover::before{
  background: linear-gradient(transparent 0, rgba(0 0 0 / 60%) 0);
}
.pref-name{
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  color: #FFF;
}

/*** おすすめ記事 ***/
.article-list{
  display: flex;
  gap: 20px;
}
.article-list>li{
  width: calc((100% - (20px * 3)) / 4);
  padding-bottom: 24px;
  position: relative
}
.article-list>li::after{
  content: "";
  width: 16px;
  height: 16px;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  background: var(--content-color-blue);
  position: absolute;
  right: 0;
  bottom: 0;
}
.article-list>li>a{
  display: block;
}
.article-list>li>a:hover{
  opacity: .8
}
.article-img{
  width: 100%;
  height: 160px;
  margin-bottom: 8px;
}
.article-img>img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

#search{
  background: url("../img/bg_seach.jpg") repeat
}