@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap');

/* CSS Document */
:root{
  --content-color-gold: #a2814c;
  --content-color-blue: #2b96a8;
  --content-color-orange: #f55030;
  --content-color-brown: #961F07;
  --content-color-base: #000;
  --bg-img-setting: no-repeat center center / contain;
  --bg-width-pc: max(100%, 1920px);
  --content-width: min((710vw / 7.5), 992px);
  --font-size-pc: 14px;
  --font-size-sp: calc(24vw / 7.5);
  --content-font-size: min(var(--font-size-sp), var(--font-size-pc));
  --font-sans: 'Noto Sans JP', sans-serif;
  --font-serif: "Noto Serif JP", serif;
  --content-hover-speed: 0.3s;
  --content-shadow: 0 3px 0 0 rgba(0 0 0 / 20%);
  --content-arrow-down: url(../img/arrow_down.png);
  --content-arrow-up: url(../img/arrow_up.png);
  --content-arrow-right: url(../img/btn_arrow.png);
  --content-border_s: 1px solid;
  --content-border_m: 3px solid;
  --content-border_l: 4px solid;
}

.nosp{
  display: none
}
.main{
  font-family: var(--font-sans);
  font-size: var(--content-font-size);
  font-weight: 400;
  position: relative;
  color: var(--content-color-base);
  line-height: 1.0
}
.main *{
  box-sizing: border-box;
}
.inner{
  width: var(--content-width);
  margin: auto;
}
a{
  transition: var(--content-hover-speed);
}

.title__wrapper{
  background: url("../img/mv_bg_sp.jpg") no-repeat center top / 100vw auto;
  width: 100%;
  height: calc(750vw / 7.5);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.title-logo{
  width: 80vw;
  margin: auto;
  text-align: center;
}
.nav__wrapper {
  width: 100%;
  background: var(--content-color-brown);
}
.nav__list{
  width: 100vw;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
}
.nav__list>li {
  width: calc(100% / 2);
  display: flex;
  flex-direction: column;  
}
.nav__list>li:nth-child(odd){
  border-right: var(--content-border_s) #FFF;
}
.nav__list>li:nth-child(-n+2){
  border-bottom: var(--content-border_s) #FFF;
}
.nav__list>li>a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
  padding: calc(24vw / 7.5) 0 calc(32vw / 7.5);
  font-size: calc(26vw / 7.5);
  font-weight: bold;
  color: #FFF;
  text-align: center;
  line-height: 1.25;
  position: relative
}
.nav__list>li>a::after {
  content: "";
  background: var(--content-arrow-down) var(--bg-img-setting);
  width: calc(21vw / 7.5);
  height: calc(15vw / 7.5);
  position: absolute;
  bottom: calc(8vw / 7.5);
  right: 0;
  left: 0;
  margin: auto
}
.nav__list>li>a:hover{
  background: var(--content-color-orange)
}

.main__content{
  background: #FDF4D2;
  padding-top: calc(80vw / 7.5);
}
.bodycopy__wrapper{
  background: url("../img/intro_bg.png") no-repeat center bottom / calc(491vw / 7.5) auto;
}
.bodycopy{
  padding-bottom: calc(100vw / 7.5);
  font-size: calc(28vw / 7.5);
  font-weight: bold;
  line-height: 1.5;
}

.content__wrapper{
  width: 100%;
  padding: calc(80vw / 7.5) 0
}
.head-title{
  text-align: center;
  margin-bottom: calc(32vw / 7.5);
  display: flex;
  gap: calc(12vw / 7.5);
  justify-content: space-between;
  align-items: center;
}
.head-title>span{
  font-size: calc(48vw / 7.5);
  font-weight: bold;
  color: var(--content-color-brown);
  text-align: center;
  line-height: 1.2
}
.head-title::before,
.head-title::after{
  content: "";
  background: var(--bg-img-setting);
  width: calc(100vw / 7.5);
  height: calc(80vw / 7.5);
  display: block;
}
.head-title::before{
  background-image: url("../img/ico_title01.png");
}
.head-title::after{
  background-image: url("../img/ico_title02.png");
}
.sub-title{
  font-size: calc(40vw / 7.5);
  font-weight: bold;
  color: var(--content-color-orange);
  text-align: center;
  margin-bottom: calc(24vw / 7.5);
}
.item__link{
  margin: auto;
}
.item__link>a{
  display: block;
  border-radius: calc(6vw / 7.5);;
  background: var(--content-color-orange);
  box-shadow: var(--content-shadow);
  padding: calc(24vw / 7.5) calc(16vw / 7.5);
  font-size: calc(26vw / 7.5);
  font-weight: bold;
  color: #FFF;
  text-align: center;
  position: relative
}
.item__link>a::after{
  content: "";
  background: var(--content-arrow-right) var(--bg-img-setting);
  width: calc(24vw / 7.5);
  height: calc(28vw / 7.5);
  position: absolute;
  top: 0;
  right: calc(16vw / 7.5);
  bottom: 0;
  margin: auto;
}
.item__link>a:hover{
  background: var(--content-color-brown)
}

/*** tour ***/
.product__content+.product__content{
  margin-top: calc(80vw / 7.5)
}
.product-list{
  line-height: 1.4
}
.content__wrapper.tour .item__link,
.content__wrapper.hotel .item__link{
  width: 90vw;
  margin-top: calc(32vw / 7.5);
}

/*** おすすめホテル・観光スポット ***/
.spot__content+.spot__content{
  margin-top: calc(60vw / 7.5);
}
.flex__list{
  display: flex;
  flex-wrap: wrap;
  gap: calc(24vw / 7.5) calc(16vw / 7.5);
}
.flex__list>li{
  width: calc((100% - (16vw / 7.5)) / 2);
  display: flex;
  flex-direction: column;
  background: #FFF;
}
.item__img{
  width: 100%;
  height: calc(280vw / 7.5);
  position: relative;
}
.item__img>img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center
}
.spot__label{
  display: inline-block;
  background: #029659;
  font-weight: bold;
  color: #FFF;
  position: absolute;
  top: calc(16vw / 7.5);
  left: 0;
  padding: calc(8vw / 7.5);
}
.spot__label:empty{
  display: none
}
.item__box{
  padding: calc(16vw / 7.5);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.item__name{
  font-size: calc(32vw / 7.5);
  font-weight:  bold;
  color: var(--content-color-brown);
  margin-bottom: calc(8vw / 7.5);
}
.item__txt{
  line-height: 1.4;
  margin-bottom: calc(8vw / 7.5);;
}
.access__data{
  margin-top: auto;
  display: block;
  font-size: calc(20vw / 7.5);;
  line-height: 1.2;
}
.access__midashi{
  font-weight: bold;
  color: var(--content-color-orange);
  display: flex;
  gap: calc(16vw / 7.5);;
  align-items: center;
  margin-bottom: calc(8vw / 7.5);
}
.access__midashi::before{
  content: "";
  background: url("../img/icon_spot.png") var(--bg-img-setting);
  width: calc(20vw / 7.5);;
  height: calc(28vw / 7.5);;
  display: block;
}
.access__midashi::after {
  content: "";
  display: block;
  width: calc(30vw / 7.5);
  height: 1px;
  border-top: 2px dotted;
  flex-grow: 1;
}
.access__txt{
  line-height: 1.2
}
.copyright{
  display: block;
  font-size: calc(20vw / 7.5);;
  color: #666;
  margin-top: calc(8vw / 7.5);;
}


/*** ホテル ***/
.flex__list.hotel{
  flex-direction: column;
  margin-bottom: calc(32vw / 7.5);
}
.flex__list.hotel>li{
  width: 100%;
  display: flex;
  flex-direction: row;
}
.flex__list.hotel>li .item__img{
  width: 32vw;
  height: auto;
}
.flex__list.hotel>li .item__img>img{
  object-position: right
}
.flex__list.hotel>li .item__box{
  flex: 1;
  padding: calc(16vw / 7.5)
}
.catch__copy{
  display: block;
  font-size: calc(24vw / 7.5);
  line-height: 1.6
}
.flex__list.hotel>li .item__name{
  font-size: calc(30vw / 7.5)
}

/*** 観光スポット・グルメ ***/
.flex__list.food>li{
  width: calc((100% - ((16vw / 7.5) * 2)) / 3);
  background: none
}
.flex__list.food .item__img{
  width: 100%;
  height: auto;
  margin-bottom: calc(16vw / 7.5)
}

/*** 周辺の観光スポット ***/
.flex__list.around{
  overflow: scroll;
  flex-wrap: nowrap;
}
.flex__list.around>li{
  flex: 0 0 85%;
}
.flex__list.around .item__img{
  height: calc(360vw / 7.5)
}
.content__wrapper.around .item__link{
  width: 100%;
}

.content__wrapper.foot{
  background: #FFF;
  padding: calc(48vw / 7.5) 0
}