@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: #3399ff;
  --content-color-green: #40bb0e;
  --content-color-d_green: #1a5b00;
  --content-color-red: #c94937;
  --content-color-orange: #e95432;
  --content-color-navy: #104081;
  --content-color-base: #333;
  --bg-img-setting: no-repeat center center / 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);
  --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/navi_arrow.png);
  --content-arrow-right_w: url(../img/btn_arrow01.png);
  --content-arrow-right_g: url(../img/btn_arrow02.png);
  --content-border_s: 1px solid;
  --content-border_m: 3px solid;
  --content-border_l: 4px solid;
}

.nopc{
  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.jpg") no-repeat center top;
  width: 100%;
  height: 460px;
  position: relative
}
.title-logo{
  text-align: center;
}
.nav__wrapper {
  width: 100%;
  background: var(--content-color-green);
  border-bottom: var(--content-color-d_green) var(--content-border_m);
}
.nav__list{
  width: var(--content-width);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-left: var(--content-border_s) #86cb1b;
}
.nav__list>li {
  border-right: var(--content-border_s) #86cb1b;
  display: flex;
  flex-direction: column;  
}
.nav__list>li>a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
  padding: 8px 0 16px;
  font-size: min(16px, (12vw / 7.68));
  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: 14px;
  height: 10px;
  position: absolute;
  bottom: 4px;
  right: 0;
  left: 0;
  margin: auto
}
.nav__list>li>a:hover{
  background: var(--content-color-d_green)
}

@media (768px <= width <= 1024px){
  .nav__list{
    width: 100vw;
    border-left: none
  }
}

.content__wrapper{
  width: 100%;
  padding: 80px 0
}
.head-title{
  text-align: center;
  margin-bottom: 30px;
  display: flex;
  gap: 20px;
  justify-content: center;
}
.head-title>span{
  font-size: 36px;
  font-weight: bold;
  color: var(--content-color-gold);
  text-align: center;
}
.head-title>span>small{
  font-size: 80%;
}
.txt__green{
  color: var(--content-color-green)
}
.head-title#tour::before,
.head-title#spot::before,
.head-title#tour::after,
.head-title#spot::after,
.head-title#sake::before,
.head-title#sake::after,
.head-title#act::before,
.head-title#act::after{
  content: "";
  background: var(--bg-img-setting);
  display: block;
}
.head-title#tour::before,
.head-title#spot::before{
  background-image: url("../img/ttl_left.png");
  width: 92px;
  height: 44px;
}
.head-title#tour::after,
.head-title#spot::after{
  background-image: url("../img/ttl_right.png");
  width: 92px;
  height: 44px;
}
.head-title#sake::before,
.head-title#act::before{
  background-image: url("../img/ttl_active_left.png");
  width: 137px;
  height: 43px;
}
.head-title#sake::after,
.head-title#act::after{
  background-image: url("../img/ttl_active_right.png");
  width: 137px;
  height: 43px;
}
.act__content+.act__content{
  margin-top: 60px;
}
.sub-title{
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}
.bodycopy{
  font-size: 16px;
  text-align: center;
  margin-bottom: 20px;
  line-height: calc(26 / 16);
}
.link__button{
  width: 496px;
  margin: 32px auto 0;
}
.link__button>a{
  display: block;
  border-radius: 6px;
  background: var(--content-color-green);
  box-shadow: var(--content-shadow);
  padding: 16px 0;
  font-size: 16px;
  font-weight: bold;
  color: #FFF;
  text-align: center;
  position: relative
}
.link__button>a::after{
  content: "";
  background: var(--content-arrow-right_w) var(--bg-img-setting);
  width: 10px;
  height: 14px;
  position: absolute;
  top: 0;
  right: 10px;
  bottom: 0;
  margin: auto
}
.link__button>a:hover{
  background-color: var(--content-color-d_green)
}
.link__button>a:empty{
  display: none
}
.flexbox{
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.flexbox>li{
  width: calc((100% - (20px * 2)) / 3);
  display: flex;
  flex-direction: column;
  background: #FFF;
}
.flex__img{
  width: 100%;
  height: 225px;
  position: relative
}
.flex__img>img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center
}
.flex__item{
  padding: 20px 8px 16px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.flex__title{
  font-size: 20px;
  font-weight:  bold;
  margin-bottom: 10px;
}
.flex__title small{
  font-size: 16px;
}
.flex__sub{
  display: block;
  font-size: 16px;
  line-height: calc(24 / 16)
}
.flex__txt{
  line-height: calc(22 / 14)
}
.flex__data{
  margin-top: 8px;
  display: block;
  font-size: 12px;
  line-height: 1.2;
}  
.copyright{
  margin-top: 8px;
  font-size: 12px;
  text-align: right
}

/*** tour ***/
.content__wrapper.tour{
  background: url("../img/pattern01.png") repeat
}
.tab__list{
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: repeat(2, minmax(auto, 460px));
  gap: 24px;
  justify-content: center;
  align-items: center;
}
.tab__list>li{
  background: #999;
  box-shadow: var(--content-shadow);
  padding: 16px 0;
  font-size: 18px;
  font-weight: bold;
  color: #FFF;
  text-align: center;
  border-radius: 6px;
}
.tab__list>li.is-current{
  background: var(--content-color-green);
  padding: 24px 0;
}
.product__area{
  display: none
}
.product__area.is-active{
  display: block
}
.product-list{
  line-height: 1.4
}

/*** 食パラダイス ***/
.content__wrapper.food{
  background: #ffe9c8;
}
.head-title#food>img{
  width: 528px;
}
.bodycopy>a{
  text-decoration: underline;
  color: var(--content-color-red)
}
.content__wrapper.food .flex__title{
  color: var(--content-color-red)
}
.content__wrapper.food .flex__data{
  font-weight: bold;
}

/*** 蟹取県 ***/
.content__wrapper.kani{
  background: #e6d995
}
.head-title#kani{
  gap: 0;
}
.head-title#kani>span {
  font-family: var(--font-serif);
  font-size: 48px;
  color: #FFF;
  letter-spacing: calc(180em / 1000)
}
.txt__orange{
  font-size: 48px;
  color: var(--content-color-orange)
}
.content__wrapper.kani .sub-title{
  color: var(--content-color-orange);
  margin-bottom: 16px;
}
.content__wrapper.kani .flex__title{
  color: var(--content-color-orange);
}
.content__wrapper.kani .link__button>a{
  background: var(--content-color-orange);
}
.content__wrapper.kani .link__button>a:hover{
  background: var(--content-color-red)
}
.best__list{
  display: flex;
  gap: 16px;
  margin-bottom: 60px;
}
.best__list>li{
  width: calc((100% - (16px * 4)) / 5);
  height: 209px;
  background: url("../img/frame.svg") no-repeat center top / 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.best__txt{
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: bold;
  line-height: calc(28 / 24)
}
.best__txt small{
  display: block;
  font-size: 18px;
}
.best__num{
  font-size: 34px;
  color: var(--content-color-orange)
}

@media (768px <= width <= 1024px){
  .best__list{
    display: flex;
    flex-wrap: wrap;
    gap: calc(10vw / 7.5);
    justify-content: center;
    margin-bottom: calc(60vw / 7.5);
  }
  .best__list>li{
    width: calc((100% - ((10vw / 7.5) * 2)) / 3);
    height: calc(261vw / 7.5);
    background: url("../img/frame.svg") no-repeat center top / 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .best__txt{
    font-family: var(--font-serif);
    font-size: calc(30vw / 7.5);
    font-weight: bold;
    line-height: calc(35 / 30)
  }
  .best__txt small{
    display: block;
    font-size: calc(24vw / 7.5);
  }
  .best__num{
    font-size: calc(42vw / 7.5);
    color: var(--content-color-orange)
  }
}

.cpn-bnr{
  margin: 40px auto 0;
}
.cpn-bnr>a{
  display: block;
  text-align: center;
}
.cpn-bnr>a:hover{
  opacity: .8
}

/*** 酒 ***/
.content__wrapper.sake{
  background: #c6e3f7;
}
.head-title#sake>span{
  font-size: 40px;
  color: var(--content-color-navy);
}
.content__wrapper.sake .flexbox{
  gap: 10px;
}
.content__wrapper.sake .flexbox>li{
  width: calc((100% - (10px * 3)) /4)
}
.content__wrapper.sake .flex__img{
  height: 171px;
}
.content__wrapper.sake .flex__title,
.content__wrapper.sake .flex__sub{
  color: var(--content-color-navy);
}

@media (768px <= width <= 1024px){
  .head-title#sake>span{
    line-height: 1.25
  }
  .head-title#sake>span>small{
    display: block;
  }
}

/*** アクティビティ ***/
.content__wrapper.act{
  background: #dffbd4;
}
.head-title#act>span{
  font-size: 40px;
  color: var(--content-color-d_green);
}
.content__wrapper.act .sub-title{
  color: var(--content-color-green);
}
.content__wrapper.act .flex__title,
.content__wrapper.act .flex__sub{
  color: var(--content-color-green)
}

/*** 星取県 ***/
.content__wrapper.star{
  background: url("../img/star_bg.jpg") no-repeat center top / cover;
  padding-top: 100px
}
.content__wrapper.star .sub-title,
.content__wrapper.star .flex__title{
  color: var(--content-color-blue)
}
.content__wrapper.star .bodycopy{
  color: #FFF;
}

/*** 観光スポット ***/
.content__wrapper.spot{
  background-image: url("../img/pattern02.png")
}
.content__wrapper.spot .sub-title{
  color: var(--content-color-gold)
}
.onsen .flexbox>li{
  width: calc((100% - 20px) / 2);
}
.onsen .flexbox>li .flex__img{
  width: 486px;
  height: 340px;
}
.content__wrapper.spot .flex__title,
.content__wrapper.spot .flex__sub{
  color: var(--content-color-green)
}
.onsen .flex__note,
.other .flex__note{
  display: none
}
.tourist .flex__txt{
  flex-grow: 1
}
.tourist .flex__data{
  font-weight: bold;
  padding-left: 1.0em;
  text-indent: -1.0em;
}
.tourist .flex__note{
  margin-top: 8px;
  font-size: 12px;
  min-height: 54px;
  line-height: 1.2
}
.tourist .flex__note>span{
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: bold;
  color: var(--content-color-gold);
  margin-bottom: 4px;
}
.tourist .flex__note>span::before{
  content: "";
  background: url("../img/icon_spot.png") var(--bg-img-setting);
  width: 10px;
  height: 14px;
  display: block;
}
.tourist .flex__note>span::after{
  content: "";
  display: block;
  width: 100px;
  height: 1px;
  border-top: 2px dotted;
  flex-grow: 1;
}
.other .flex__txt{
  margin-bottom: 16px;
}
.flex__link{
  width: 100%;
  margin-top: auto;
}
.flex__link>a{
  display: block;
  background: var(--content-color-green);
  box-shadow: var(--content-shadow);
  padding: 12px 0;
  color: #FFF;
  text-align: center;
  border-radius: 6px;
  position: relative
}
.flex__link>a::after{
  content: "";
  background: var(--content-arrow-right_w) var(--bg-img-setting);
  width: 6px;
  height: 8px;
  position: absolute;
  top: 0;
  right: 10px;
  bottom: 0;
  margin: auto
}
.flex__link>a:hover{
  background-color: var(--content-color-d_green)
}
.flex__link>a:empty{
  display: none
}

/*** 検索モジュール ***/
.content__wrapper.search{
  background: url("../img/search_photo.jpg") repeat-y center center / cover;
}