@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-base: #2C2A29;
  --content-color-gold: #b9812e;
  --content-color-brown: #995b01;
  --content-color-red: #d90000;
  --content-clear-brown: rgba(153 91 1 / 80%);
  --bg-img-setting: no-repeat center center / contain;
  --bg-width-pc: max(100%, 1920px);
  --content-width: min((750vw / 7.5), 992px);
  --font-size-pc: 14px;
  --font-size-sp: calc(24vw / 7.5);
  --font-sans: 'Noto Sans JP', serif;
  --font-kinuta: kinuta-mincho-stdn, sans-serif;
  --content-font-size: min(var(--font-size-sp), var(--font-size-pc));
  --content-hover-speed: 0.3s;
  --content-arrow-right: url(/cmn/icon/icon_arrow_right_white.svg);
  --content-border-s: 1px solid;
  --content-border-m: 2px solid;
  --content-border-l: 5px solid
}

.nopc{
  display: none
}
.main{
  font-family: var(--font-sans);
  font-size: var(--content-font-size);
  color: var(--content-color-base);
  position: relative;
}
.main *{
  box-sizing: border-box;
}
.inner{
  width: var(--content-width);
  margin: auto;
}
a{
  transition: var(--content-hover-speed);
}
.is-fit{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/***** MV・ナビ *****/
.title-wrapper{
  width: 100%;
  height: 429px;
  position: relative;
}
.js-mv-list{
  width: 100%;
  height: 100%;
}
.slick-slide img{
  width: 100%;
  height: 429px;
  object-fit: cover;
}
.title-logo>img{
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto
}
.nav-wrapper{
  background: url("../img/bg_nav.jpg") repeat;
  border-bottom: var(--content-border-l) var(--content-color-gold);
}
.nav-list{
  display: flex;
  width: 992px;
  margin: auto;
  border-left: var(--content-border-s) var(--content-color-gold);
}
.nav-list>li{
  width: calc(100% / 5);
  border-right: var(--content-border-s) var(--content-color-gold);
}
.nav-list>li>a{
  display: block;
  padding: 8px 8px 24px;
  font-size: 16px;
  font-weight: bold;
  color: #FFF;
  text-align: center;
  line-height: 1.2;
  position: relative
}
.nav-list>li>a::after{
  content: "";
  background: url("../img/arrow01.svg") var(--bg-img-setting);
  width: 16px;
  height: 8.5px;
  position: absolute;
  right: 0;
  bottom: 8px;
  left: 0;
  margin: auto
}
.nav-list>li>a:hover{
  background: var(--content-color-gold)
}

.content-wrapper{
  padding: 80px 0;
  border-bottom: var(--content-border-l) var(--content-color-gold);
}
.content-wrapper .inner{
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.head-title{
  font-family: var(--font-kinuta);
  font-style: normal;
  font-weight: bold;
  text-align: center;
}
.head-title .sub{
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--content-color-red);
}
.head-title .sub::before,
.head-title .sub::after{
  content: "";
  width: 24px;
  height: 1px;
  background: var(--content-color-red);
  display: block;
}
.head-title .title{
  font-size: 48px;
}

.sub-title{
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.sub-title::before,
.sub-title::after{
  content: "";
  width: 100px;
  height: 1px;
  background: var(--content-color-base);
  display: block;
  flex-grow: 1
}

/*** イントロ ***/
.content-wrapper.intro{
  background: url("../img/bg_lead.png"), linear-gradient(to bottom, #f6c674 20%, transparent 100%);
  background-repeat: no-repeat;
}
.intro-content{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.intro-box{
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.intro-title{
  display: grid;
  text-align: center;
  font-family: var(--font-kinuta);
  font-style: normal;
  font-size: 60px;
  font-weight: bold;
  line-height: 1.2
}
.intro-title>span{
  font-size: 30px;
  color: var(--content-color-brown)
}
.intro-title::before,
.intro-title::after{
  content: "";
  background: var(--bg-img-setting);
  width: 449px;
  height: 50px;
  display: block;
}
.intro-title::before{
  background-image: url("../img/ttl_lead_top.png")
}
.intro-title::after{
  background-image: url("../img/ttl_lead_btm.png")
}

.product-content{
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.more-link{
  width: 480px;
  margin: 24px auto 0;
}
.more-link>a{
  display: block;
  background: var(--content-color-brown);
  padding: 16px;
  font-size: 16px;
  font-weight: bold;
  color: #FFF;
  text-align: center;
  position: relative
}
.more-link>a::after{
  content: "";
  background: var(--content-arrow-right) var(--bg-img-setting);
  width: 24px;
  height: 24px;
  position: absolute;
  top: 0;
  right: 8px;
  bottom: 0;
  margin: auto
}
.more-link>a:hover{
  opacity: .8
}

/*** 宿 ***/
.content-wrapper.yado{
  background-image: url("../img/bg_htl_lft.png"), url("../img/bg_htl_ryt.png"), url("../img/bg_htl.jpg");
  background-repeat: repeat-y, repeat-y, repeat;
  background-position: left top, right top, left top;
}
.yado-titlebox{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.yado-titlebox::before,
.yado-titlebox::after{
  content: "";
  background: var(--bg-img-setting);
  width: 188px;
  height: 153px;
  display: block;
}
.yado-titlebox::before{
  background-image: url("../img/ttl_hotel_lft.png")
}
.yado-titlebox::after{
  background-image: url("../img/ttl_hotel_ryt.png")
}
.bodycopy{
  text-align: center
}
.yado-list{
  display: grid;
  gap: 40px 24px;
  grid-template-columns: repeat(3, 1fr);
}
.yado-list>li{
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.yado-list>li::before{
  content: "";
  background: var(--bg-img-setting);
  width: 40px;
  height: 92px;
  position: absolute;
  top: -10px;
  left: 10px;
  z-index: 30;
}
.yado-list>li.is-nikko::before{
  background-image: url("../img/badge_nikko.png")
}
.yado-list>li.is-okunikko::before{
  background-image: url("../img/badge_nikko_oku.png")
}
.yado-list>li.is-kinugawa::before{
  background-image: url("../img/badge_kinugawa.png")
}
.yado-img{
  width: 100%;
  height: 220px;
  position: relative
}
.yado-name{
  width: 100%;
  background: rgba(153 91 1 / 80%);
  font-size: 18px;
  font-weight: bold;
  color: #FFF;
  padding: 2px 4px 2px 64px;
  position: absolute;
  top: 0;
  left: 0;
}
.yado-copy{
  font-size: 16px;
  font-weight: bold;
  color: var(--content-color-brown)
}
.more-link.yado-link{
  width: 100%;
  margin: auto;
}
.more-link.yado-link>a{
  font-size: 14px;
  padding: 8px;
}

/*** 東武 ***/
.content-wrapper.tobu{
  background-image: url("../img/bg_tobu_top.png"), url("../img/bg_tobu_btm.png"), url("../img/bg_train.jpg");
  background-repeat: no-repeat, no-repeat, repeat;
  background-position: left top, right bottom,left top;
}
.spacia-container{
  background: url("../img/spacia_x_pc.jpg") no-repeat center top;
  margin-bottom: 24px
}
.spacia-container .inner{
  display: flex;
  flex-direction: row-reverse
}
.spacia-content{
  width: 50%;
  background: linear-gradient(to bottom, rgba(153 91 1 / 5%), rgba(153 91 1 / 50%));
  padding: 24px;
}
.spacia-midashi{
  font-family: var(--font-kinuta);
  font-style: normal;
  font-size: 30px;
  font-weight: bold;
  color: var(--content-color-brown);
  text-align: center;
}
.spacia-midashi>small{
  font-size: 14px;
}
.spacia-box{
  background: #FFF;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 24px
}
.spacia-txt{
  text-align: center;
}
.spacia-item{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.seat-category{
  background: var(--content-color-brown);
  padding: 8px;
  font-weight: bold;
  color: #FFF;
  text-align: center;
  line-height: 1.2
}
.seat-img{
  width: 100%;
  height: 120px;
}
.seat-txt{
  font-size: 12px;
}
.train-list{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.train-list>li{
  position: relative;
  border: var(--content-border-m) var(--content-color-brown);
  background: #FFF;
}
.train-name{
  width: 100%;
  background: rgba(153 91 1 / 80%);
  font-family: var(--font-kinuta);
  font-style: normal;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  color: #FFF;
  padding: 4px 0 0;
  position: absolute;
  top: 0;
  left: 0;
}
.train-txt{
  padding: 8px
}

/***** 観光スポット *****/
.content-wrapper.spot{
  background-image: url("../img/bg_spot_top.png"), url("../img/bg_spot_btm.png"), url("../img/bg_spot.jpg");
  background-repeat: no-repeat, no-repeat, repeat;
  background-position: left top, right bottom,left top;
}
.spot-list{
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.spot-list>li{
  width: calc((100% - (24px * 2)) / 3);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.spot-list>li:nth-child(-n+2){
  width: calc((100% - 24px) / 2)
}
.spot-img{
  width: 100%;
  height: 180px;
}
.spot-list>li:nth-child(-n+2) .spot-img{
  height: 320px;
  position: relative
}
.spot-list>li:nth-child(-n+2) .spot-img::before{
  content: "";
  background: url(../img/badge_world_heritage.png) var(--bg-img-setting);
  width: 40px;
  height: 118px;
  position: absolute;
  top: -10px;
  left: 10px;
  z-index: 30;
}
.spot-name{
  font-size: 18px;
  font-weight: bold;
  color: var(--content-color-brown);
}
.spot-access{
  font-size: 12px;
}
.spot-access.is-none{
  display: none
}
.spot-access>span {
  font-weight: bold;
  color: var(--content-color-brown);
  display: flex;
  align-items: center;
  gap: 4px;
}
.spot-access>span::before {
  content: "";
  background: url(../img/ico_pin.svg) var(--bg-img-setting);
  width: 12px;
  height: 12px;
  display: block;
}
.spot-access>span::after {
  content: "";
  width: 100px;
  height: 1px;
  border-top: 1px dotted var(--content-color-brown);
  display: block;
  flex-grow: 1
}