@charset "utf-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&family=Noto+Serif+JP:wght@400;700&display=swap');

:root{
  --content-color-base: #333;
  --content-color-navy: #03334A;
  --content-color-blue: #157285;
  --content-color-orange: #FFAB48;
  --content-color-gray: #383435;
  --bg-img-setting: no-repeat center center / contain;
  --bg-cover-setting: no-repeat center top / auto;
  --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-arrow-down: url(../img/aro01.png);
  --content-arrow-right: url(../img/aro02.png);
  --content-arrow-right_over: url(../img/aro03.png);
  --content-border_s: 1px solid;
  --content-border_m: 2px 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.0;
}
.main *{
  box-sizing: border-box;
}
.inner{
  width: var(--content-width);
  margin: auto;
  position: relative
}
a{
  transition: var(--content-hover-speed);
}
.note__txt{
  font-size: 12px;
  padding-left: 1.0em;
  text-indent: -1.0em;
}
/*** MV・ナビ ***/
.title__wrapper{
  width: 100%;
  height: 460px;
  background: var(--bg-cover-setting) url("../img/pc_bg.jpg");
}
.title-logo{
  margin: auto;
  height: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.nav__wrapper{
  background: var(--content-color-navy);
}
.nav__list{
  display: flex;
  border-left: var(--content-border_s) #93a7b0;
}
.nav__list>li{
  width: calc(100% / 3);
  border-right: var(--content-border_s) #93a7b0;
}
.nav__list>li>a{
  display: block;
  padding: 16px 0 32px;
  font-size: 16px;
  font-weight: bold;
  color: #FFF;
  text-align: center;
  position: relative;
}
.nav__list>li>a::after{
  content: "";
  background: var(--bg-img-setting) var(--content-arrow-down);
  width: 19px;
  height: 24px;
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  margin: auto
}
.nav__list>li>a:hover{
  background: var(--content-color-blue);
}

/*** .main__content ***/

.main__content{
  padding-top: 60px;
  background: url("../img/pc_deco_bg_tour.png") no-repeat center top, url("../img/bg_01.png")repeat left top
}
.bodycopy{
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5;
}
.content__wrapper{
  padding: 60px 0;
}
.head-title{
  font-size: 30px;
  font-weight: bold;
  color: var(--content-color-navy);
  text-align: center;
  margin-bottom: 32px;
}

/***** おすすめツアー *****/
.tour__content+.tour__content{
  margin-top: 60px;
}
.content__wrapper.tour .head-title{
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 80px;
  margin-bottom: 16px;
}
.content__wrapper.tour .head-title::before,
.content__wrapper.tour .head-title::after{
  content: "";
  background: var(--bg-img-setting) url("../img/ico_title01.svg");
  width: 72px;
  height: 31px;
  display: block;
}
.content__wrapper.tour .head-title .title__main{
  line-height: 1.25
}
.title__sub{
  display: block;
  font-size: 20px;
  font-weight: bold;
  color: var(--content-color-orange);
}
.product-list{
  line-height: 1.4
}
.link__wrapper{
  display: flex;
  gap: 16px;
  justify-content: center;
  margin: 24px auto 0;
}
.more__link{
  width: 420px;
  max-width: 600px;
}
.more__link>a{
  display: block;
  font-size: 16px;
  font-weight: bold;
  color: var(--content-color-blue);
  text-align: center;
  border-radius: 32px;
  background: #FFF;
  position: relative;
  padding: 16px 0;
  border: var(--content-border_m);
}
.more__link>a::after{
  content: "";
  background: var(--bg-img-setting);
  background-image: var(--content-arrow-right);
  width: 12px;
  height: 17px;
  position: absolute;
  top: 0;
  right: 8px;
  bottom: 0;
  margin: auto;
}
.more__link>a:hover{
  border-color: var(--content-color-blue);
  background: var(--content-color-blue);
  color: #FFF;
}
.more__link>a:hover::after{
  background-image: var(--content-arrow-right_over) 
}
.more__link:empty{
  display: none
}

/*** 観光スポット ***/
.content__wrapper.spot{
  background: url("../img/bg_02.png") repeat
}
.spot__list{
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.spot__list>li{
  width: calc((100% - (16px * 2)) / 3);
  display: flex;
  flex-direction: column;
}
.spot__img{
  width: 100%;
  height: 210px;
  margin-bottom: 8px;
}
.spot__img>img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center
}
.spot__name{
  font-size: 16px;
  font-weight: bold;
  color: var(--content-color-navy);
  margin-bottom: 8px;
}
.spot__txt{
  line-height: 1.4;
  margin-bottom: 8px;  
}
.copyright{
  display: block;
  font-size: 12px;
}
.access__data{
  margin-top: auto;
}
.access__midashi{
  display: flex;
  gap: 8px;
  font-weight: bold;
  color: var(--content-color-navy);
  align-items: center;
  margin-bottom: 4px;
}
.access__midashi::before{
  content: "";
  background: url("../img/icon_spot.png") var(--bg-img-setting);
  width: 10px;
  height: 12px;
  display: block;
}
.access__midashi::after{
  content: "";
  background: var(--content-color-navy);
  width: 100px;
  height: 1px;
  flex-grow: 1
}
.access__txt{
  font-size: 12px
}
.content__wrapper.onsen .bodycopy{
  font-size: 16px;
  text-align: center;
  margin-bottom: 16px;
}
.content__wrapper.onsen .note__txt{
  margin-top: 16px;
  line-height: 1.2;
  padding-left: 0;
  text-indent: 0
}

.content__wrapper.search{
  background: url("../img/search_photo.jpg") no-repeat center center;
}