@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 / 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/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;
}

.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{
  position: relative
}
.title__wrapper .inner{
  width: 100vw
}
.nav__wrapper {
  width: 100%;
  background: var(--content-color-green);
  border-bottom: var(--content-color-d_green) var(--content-border_m);
}
.nav__list{
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}
.nav__list>li {
  display: flex;
  flex-direction: column;
  grid-column: span 2;
}
.nav__list>li:nth-child(n+4){
  grid-column: span 3;
}
.nav__list>li:not(:nth-child(3n)){
  border-right: var(--content-border_s) #86cb1b;
}
.nav__list>li:nth-child(-n+3){
  border-bottom: var(--content-border_s) #86cb1b; 
}

.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(24vw / 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(14vw / 7.5);
  height: calc(10vw / 7.5);
  position: absolute;
  bottom: calc(8vw / 7.5);
  right: 0;
  left: 0;
  margin: auto
}
.nav__list>li>a:hover{
  background: var(--content-color-d_green)
}

.content__wrapper{
  width: 100%;
  padding: calc(80vw / 7.5) 0
}
.head-title{
  text-align: center;
  margin-bottom: calc(40vw / 7.5);
  display: flex;
  gap: calc(14vw / 7.5);
  justify-content: space-between;
  align-items: center
}
.head-title>span{
  display: block;
  font-size: calc(46vw / 7.5);
  font-weight: bold;
  color: var(--content-color-gold);
  text-align: center;
  line-height: calc(60 / 46)
}
.head-title>span>small{
  font-size: 60%;
}
.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: calc(138vw / 7.5);
  height: calc(66vw / 7.5);
}
.head-title#tour::after,
.head-title#spot::after{
  background-image: url("../img/ttl_right.png");
  width: calc(138vw / 7.5);
  height: calc(66vw / 7.5);
}
.head-title#sake::before,
.head-title#act::before{
  background-image: url("../img/ttl_active_left.png");
  width: calc(170vw / 7.5);
  height: calc(54vw / 7.5);
}
.head-title#sake::after,
.head-title#act::after{
  background-image: url("../img/ttl_active_right.png");
  width: calc(170vw / 7.5);
  height: calc(54vw / 7.5);
}
.act__content+.act__content{
  margin-top: calc(60vw / 7.5);
}
.sub-title{
  font-size: calc(42vw / 7.5);
  font-weight: bold;
  text-align: center;
  margin-bottom: calc(24vw / 7.5);
  line-height: calc(52 / 42)
}
.bodycopy{
  font-size: calc(28vw / 7.5);
  text-align: center;
  margin-bottom: calc(24vw / 7.5);
  line-height: calc(42 / 28);
}
.link__button{
  width: 100%;
  margin: calc(32vw / 7.5) auto 0;
}
.link__button>a{
  display: block;
  border-radius: calc(20vw / 7.5);
  background-color: var(--content-color-green);
  box-shadow: var(--content-shadow);
  padding: calc(32vw / 7.5) 0;
  font-size: calc(32vw / 7.5);
  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: calc(22vw / 7.5);
  height: calc(25vw / 7.5);
  position: absolute;
  top: 0;
  right: calc(22vw / 7.5);
  bottom: 0;
  margin: auto
}
.link__button>a:empty{
  display: none
}
.flexbox{
  display: flex;
  flex-wrap: wrap;
  gap: calc(20vw / 7.5);
}
.flexbox>li{
  width: calc((100% - (20vw / 7.5)) / 2);
  display: flex;
  flex-direction: column;
  background: #FFF;
}
.flex__img{
  position: relative
}
.flex__img>img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center
}
.flex__item{
  padding: calc(20vw / 7.5) calc(8vw / 7.5);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.flex__title{
  font-size: calc(36vw / 7.5);
  font-weight:  bold;
  margin-bottom: calc(16vw / 7.5);
  line-height: calc(48 / 36)
}
.flex__title small{
  font-size: calc(28vw / 7.5)
}
.flex__sub{
  display: block;
  font-size: calc(28vw / 7.5);
  line-height: calc(42 / 28)
}
.flex__txt{
  line-height: calc(36 / 24)
}
.flex__data{
  margin-top: calc(8vw / 7.5);
  display: block;
  font-size: calc(20vw / 7.5);
  line-height: 1.2;
}
.copyright{
  margin-top: calc(10vw / 7.5);
  font-size: calc(20vw / 7.5);
  text-align: right
}

/*** tour ***/
.content__wrapper.tour{
  background: url("../img/pattern01.png") repeat
}
.tab__list{
  margin: 0 auto calc(40vw / 7.5);
  display: flex;
  gap: calc(30vw / 7.5);
  align-items: center;
}
.tab__list>li{
  width: calc((100% - (30vw / 7.5)) / 2);
  background: #999;
  box-shadow: var(--content-shadow);
  padding: calc(40vw / 7.5) 0;
  font-size: calc(32vw / 7.5);
  font-weight: bold;
  color: #FFF;
  text-align: center;
  border-radius: calc(20vw / 7.5);
}
.tab__list>li.is-current{
  background: var(--content-color-green);
  padding: calc(48vw / 7.5) 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{
  justify-content: center;
}
.head-title#food>img{
  width: calc(606vw / 7.5);
}
.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;
  justify-content: center
}
.head-title#kani>span {
  font-family: var(--font-serif);
  font-size: calc(68vw / 7.5);
  color: #FFF;
  letter-spacing: calc(180em / 1000)
}
.txt__orange{
  font-size: calc(68vw / 7.5);
  color: var(--content-color-orange)
}
.content__wrapper.kani .sub-title{
  color: var(--content-color-orange);
}
.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;
  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: calc(48vw / 7.5) auto 0;
}
.cpn-bnr>a{
  display: block;
  text-align: center;
}

/*** 酒 ***/
.content__wrapper.sake{
  background: #c6e3f7;
}
.head-title#sake>span{
  color: var(--content-color-navy);
}
.content__wrapper.sake .flex__title,
.content__wrapper.sake .flex__sub{
  color: var(--content-color-navy);
}

/*** アクティビティ ***/
.content__wrapper.act{
  background: #dffbd4;
}
.head-title#act>span{
  color: var(--content-color-d_green);
}
.head-title#act>span>small{
  font-size: 80%
}
.content__wrapper.act .sub-title{
  color: var(--content-color-green);
}
.act__list.flexbox{
  flex-wrap: nowrap;
  overflow: scroll;
  gap: calc(20vw / 7.5);
}
.act__list.flexbox>li{
  flex: 0 0 85%;
}
.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: calc(70vw / 7.5);
}
.content__wrapper.star .sub-title,
.content__wrapper.star .flex__title{
  color: var(--content-color-blue)
}
.content__wrapper.star .bodycopy{
  color: #FFF;
}
.star__list.flexbox{
  overflow: scroll;
  gap: calc(30vw / 7.5);
}
.star__list.flexbox>li{
  flex: 0 0 85%;
}

/*** 観光スポット ***/
.content__wrapper.spot{
  background-image: url("../img/pattern02.png")
}
.content__wrapper.spot .sub-title{
  color: var(--content-color-gold)
}
.content__wrapper.spot .flex__title,
.content__wrapper.spot .flex__sub{
  color: var(--content-color-green)
}
.onsen .flex__note,
.other .flex__note,
.onsen .flex__link{
  display: none
}
.onsen .flexbox{
  gap: calc(20vw / 7.5);
}
.onsen .flexbox>li{
  width: 100%
}
.onsen .flexbox>li .flex__img{
  width: 100%;
  height: calc(337vw / 7.5);
}
.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: calc(8vw / 7.5);
  font-size: calc(22vw / 7.5);
  line-height: 1.25
}
.tourist .flex__note>span{
  display: flex;
  align-items: center;
  gap: calc(8vw / 7.5);
  font-weight: bold;
  color: var(--content-color-gold);
  margin-bottom: calc(8vw / 7.5);
}
.tourist .flex__note>span::before{
  content: "";
  background: url("../img/icon_spot.png") var(--bg-img-setting);
  width: calc(19vw / 7.5);
  height: calc(30vw / 7.5);
  display: block
}
.tourist .flex__note>span::after{
  content: "";
  display: block;
  width: 10vw;
  height: 1px;
  border-top: 2px dotted;
  flex-grow: 1;
}
.other .flexbox{
  flex-wrap: nowrap;
  overflow: scroll;
  gap: calc(20vw / 7.5);
}
.other .flexbox>li{
  flex: 0 0 85%;
}
.other .flex__txt{
  margin-bottom: calc(24vw / 7.5);
}
.flex__link{
  width: 100%;
  margin-top: auto;
}
.flex__link>a{
  display: block;
  background: var(--content-color-green);
  box-shadow: var(--content-shadow);
  padding: calc(20vw / 7.5) 0;
  font-size: calc(26vw / 7.5);
  color: #FFF;
  text-align: center;
  border-radius: calc(10vw / 7.5);
  position: relative
}
.flex__link>a::after{
  content: "";
  background: var(--content-arrow-right_w) var(--bg-img-setting);
  width: calc(18vw / 7.5);
  height: calc(21vw / 7.5);
  position: absolute;
  top: 0;
  right: calc(20vw / 7.5);
  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;
}
.content__wrapper.search .inner{
  width: 100vw
}