@charset "utf-8";
/* CSS Document */

@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-orange: #F14300;
  --content-color-mican: #FF6427;
  --bg-img-setting: no-repeat center center / contain;
  --content-width-sp: calc(336vw / 3.75);
  --content-width-pc: 1104px;
  --content-width: min(var(--content-width-sp), var(--content-width-pc));
  --content-bg-width-pc: max(100%, 1920px);
  --font-size-pc: 14px;
  --font-size-sp: calc(14vw / 3.75);
  --font-sans: 'Noto Sans JP', serif;
  --font-serif: "Noto Serif JP", serif;
  --font-kinkakuji: "kinkakuji", sans-serif;
  --content-font-size: min(var(--font-size-sp), var(--font-size-pc));
  --content-arrow-down: url(../img/icon_arrow_down.svg);
  --content-arrow-right: url(../img/icon_arrow_right.svg);
  --content-hover-speed: 0.3s;
  --content-border-1: 1px solid;
  --content-border-4: 4px solid;
  --content-border-8: 8px solid;
}

.is-sp,
.is-tb{
  display: none
}
.main{
  font-family: var(--font-sans);
  font-size: var(--content-font-size);
  color: var(--content-color-base);
  line-height: 1.3;
  position: relative;
}
.main *{
  box-sizing: border-box;
}
.inner{
  width: var(--content-width);
  margin: auto;
  position: relative;
}
a{
  transition: var(--content-hover-speed);
}

.mv-wrapper{
  width: 100%;
  height: 620px;
  background: url("../img/bgpc_mv.webp") no-repeat center top / cover;
  border-bottom: var(--content-border-8) var(--content-color-base);
}
.mv-wrapper .inner{
  height: 100%;
}
.title-logo{
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center
}
.nav-wrapper{
  background: var(--content-color-navy);
}
.dep-select-nav{
  position: absolute;
  top: 0;
  right: 0;
}
.display_selected {
  width: 128px;
  background: #FFF;
  padding: 16px;
  border: var(--content-border-1);
  color: var(--content-color-base);
  text-align: center;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative
}
.display_selected::after{
  content: "";
  clip-path: polygon(100% 0, 0 0, 50% 100%);
  background: var(--content-color-base);
  width: 10px;
  height: 10px;
  position: absolute;
  top: 0;
  right: 4px;
  bottom: 0;
  margin: auto
}
.dep-select-zone {
  display: none;
  width: 128px;
  border: var(--content-border-1);
  border-top: none;
  background: #FFF;
  position: absolute;
  z-index: 50;
}
.dep-select>li {
  cursor: default;
  padding: 4px 8px;
  text-align: center;
  line-height: 1.5
}
.dep-select>li:hover, .dep-select>li.selected {
  background: var(--content-color-mican);
}

.content-wrapper{
  padding: 64px 0;
}
.title-box{
  display: grid;
  gap: 10px;
}
.title-txt{
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 8px;
}
.title-txt .sub{
  border: var(--content-border-1);
  padding: 8px 16px;
  font-size: 26px;
  text-align: center;
}
.title-txt .main{
  text-align: center;
  font-weight: 900;
  color: var(--content-color-orange);
}
.head-title#tokuten .main,
.head-title#hotel .main{
  font-size: 36px;
}
.note-txt{
  display: block;
  padding-left: 1.0em;
  text-indent: -1.0em;
  font-size: 12px;
}
.is-fit{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.is-orange{
  color: var(--content-color-orange)
}
.is-underline{
  display: inline;
  background: #FFE1D1;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.caution-box{
  display: grid;
  justify-items: flex-start;
  gap: 4px;
}
.caution-midashi{
  border: var(--content-border-1) var(--content-color-base);
  padding: 4px 8px;
  font-size: 16px;
  font-weight: bold;
}
.caution-list{
  display: grid;
  gap: 4px;
}
.caution-list>li.is-orange{
  font-weight: bold
}

/*** スタジアムシティ ***/
.content-wrapper.stadium{
  background: url("../img/bgpc_stadium.webp") center / cover;
  border-bottom: var(--content-border-8) var(--content-color-base);
}
.stadium-content{
  width: 552px;
  display: grid;
  gap: 24px;
}
.head-title#stadium{
  display: grid;
  grid-template-columns: 1fr 474px;
  position: relative
}
.head-title#stadium::before{
  content: "";
  background: url("../img/ico_new.svg") var(--bg-img-setting);
  width: 145px;
  height: 110px;
  position: absolute;
  top: 0;
  left: 0;
}
.head-title#stadium .title-box{
  grid-column: 2 / 3;
}
.head-title#stadium .main{
  font-size: 48px;
  
}
.stadium-txt{
  font-size: 16px;
  line-height: 1.8
}
.stadium-box{
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 16px;
  align-items: flex-start;
  padding: 16px;
  border: var(--content-border-1);
  background: #FFF;
}
.stadium-data{
  display: grid;
  gap: 8px;
}
.data-midashi{
  font-size: 20px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}
.data-midashi::before{
  content: "";
  background: var(--bg-img-setting) url("../img/icon_map.svg");
  width: 11px;
  height: 14px;
  display: block;
}
.data-txt{
  line-height: 1.5
}
.copyright-txt{
  text-align: right;
}

/*** スタジアムシティ特典 ***/
.content-wrapper.tokuten{
  border-bottom: var(--content-border-8) var(--content-color-base);
}
.content-wrapper.tokuten .inner{
  display: grid;
  gap: 40px;
}
.head-title#tokuten{
  display: grid;
  grid-template-columns: 1fr 608px 1fr;
  gap: 16px;
  justify-content: center;
}
.head-title#tokuten::before,
.head-title#tokuten::after{
  content: "";
  background: var(--bg-img-setting);
  width: 100%;
  height: auto;
  display: block;
}
.head-title#tokuten::before{
  background-image: url("../img/ico_activity.svg");
}
.head-title#tokuten::after{
  background-image: url("../img/ill_city.svg")
}
.tokuten-list{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: flex-start;
}
.tokuten-list>li{
  display: grid;
  gap: 16px;
}
.tokuten-img{
  border: var(--content-border-4) var(--content-color-base);
  position: relative
}
.tokuten-img::before{
  content: "";
  background: var(--bg-img-setting);
  width: 157px;
  height: 50px;
  position: absolute;
  top: -16px;
  left: 4px;
}
.tokuten-list>li:first-child .tokuten-img::before{
  background-image: url("../img/ico_num1.svg")
}
.tokuten-list>li:nth-child(2) .tokuten-img::before{
  background-image: url("../img/ico_num2.svg")
}
.tokuten-list>li:nth-child(3) .tokuten-img::before{
  background-image: url("../img/ico_num3.svg")
}
.tokuten-list>li:last-child .tokuten-img::before{
  background-image: url("../img/ico_num4.svg")
}
.tokuten-item{
  display: grid;
  gap: 8px;
}
.tokuten-midashi{
  background: var(--content-color-base);
  border-radius: 100px;
  padding: 8px 4px;
  font-family: var(--font-kinkakuji);
  font-size: 26px;
  font-weight: 700;
  color: #FFF;
  text-align: center;
  position: relative;
  margin-bottom: 20px;
}
.tokuten-midashi::before{
  content: "";
  background: url("../img/ico_kira.svg") var(--bg-img-setting);
  width: 30px;
  height: 36px;
  position: absolute;
  top: -12px;
  right: 8px;
}
.tokuten-midashi::after{
  content: "";
  background: url("../img/corner.svg") var(--bg-img-setting);
  width: 20px;
  height: 14px;
  position: absolute;
  right: 0;
  bottom: -14px;
  left: 0;
  margin: auto;
}
.tokuten-txt{
  font-size: 16px;
  font-weight: bold;
  line-height: 1.8;
  text-align: justify
}
.tokuten-list>li:nth-child(even) .tokuten-img{
  order: 2
}
.tokuten-list>li:nth-child(even) .tokuten-item{
  order: 1
}

/*** ホテル特典 ***/
.content-wrapper.hotel .inner{
  display: grid;
  gap: 40px;
}
.head-title#hotel{
  display: grid;
  grid-template-columns: auto 400px auto;
  gap: 16px;
  justify-content: center;
}
.head-title#hotel::before,
.head-title#hotel::after{
  content: "";
  background: var(--bg-img-setting);
  width: 230px;
  height: auto;
  display: block;
}
.head-title#hotel::before{
  background-image: url("../img/ico_stay.svg");
}
.head-title#hotel::after{
  background-image: url("../img/ill_hotel.svg")
}
.bodycopy{
  text-align: center
}
.hotel-list{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 24px;
  align-items: flex-start;
}
.hotel-list>li{
  display: grid;
  gap: 16px;
}
.hotel-img{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  position: relative;
}
.hotel-img::before{
  content: "";
  background: var(--bg-img-setting);
  background-image: url("../img/ico_htl_city.svg");
  width: 199px;
  height: 50px;
  position: absolute;
  top: -16px;
  left: 8px;
  z-index: 50;
}
.hotel-list>li:nth-child(3) .hotel-img::before{
  background-image: url("../img/ico_htl_iojima.svg");
  width: 179px;
}
.hotel-list>li:last-child .hotel-img::before{
  background-image: url("../img/ico_htl_goto.svg");
  width: 159px;
}
.hotel-img>li{
  border: var(--content-border-4) var(--content-color-base);
  position: relative;
}
.hotel-img>li:first-child{
  border-right: none
}
.hotel-item{
  display: grid;
  gap: 8px;
}
.hotel-name{
  font-size: 26px;
  text-align: center;
}
.benefit-box{
  border: var(--content-border-1) var(--content-color-base);
  padding: 16px;
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 16px;
  align-items: flex-start
}
.benefit-item{
  display: grid;
  gap: 8px;
}
.benefit-midashi{
  width: 132px;
  margin: auto;
  background: var(--content-color-base);
  border-radius: 100px;
  font-family: var(--font-kinkakuji);
  font-size: 26px;
  font-weight: 700;
  color: #FFF;
  text-align: center;
  position: relative;
}
.benefit-midashi::before{
  content: "";
  background: url("../img/ico_kira.svg") var(--bg-img-setting);
  width: 20px;
  height: 26px;
  position: absolute;
  top: -8px;
  right: 16px;
}
.benefit-txt{
  font-size: 20px;
  font-weight: bold;
  line-height: 1.8
}

/*** ツアー・クーポン ***/
.content-wrapper.tour{
  background: #F5F7FA;
  padding-top: 0;
  display: grid;
  gap: 64px;
}
.head-title#tour{
  background: var(--content-color-base);
  padding: 16px 0;
}
.head-title#tour>span{
  display: block;
  width: 600px;
  margin: auto;
  font-family: var(--font-kinkakuji);
  font-size: 50px;
  font-weight: 700;
  color: #FFF;
  text-align: center;
  position: relative
}
.head-title#tour>span::before{
  content: "";
  background: url("../img/ico_new.svg") var(--bg-img-setting);
  width: 148px;
  height: 112px;
  position: absolute;
  top: -16px;
  left: 0
}
.content-wrapper.tour .inner{
  display: grid;
  gap: 64px;
}
.promo-content{
  background: var(--content-color-mican);
  padding: 24px;
  display: grid;
  gap: 16px;
}
.promo-midashi{
  font-size: 26px;
  font-weight: bold;
  text-align: center;
}
.promo-midashi>small{
  display: block;
  font-size: 18px;
}
.promo-box{
  display: grid;
  gap: 16px;
}
.promo-list{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.promo-list>li{
  background: #FFF;
  border: var(--content-border-1) var(--content-color-base);
  padding: 8px;
  border-radius: 6px;
}
.promo-condition,
.promo-price{
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}
.promo-price>em{
  font-size: 40px;
}
.code-txt{
  background: #FFE1D1;
  padding: 4px;
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  position: relative;
}
.code-txt::after{
  content: "";
  background: url(/cmn/icon2/content_copy.svg) var(--bg-img-setting);
  width: 20px;
  height: 20px;
  position: absolute;
  top: 4px;
  right: 4px;
}
.msgBoard{
  display: none;
  text-align: center;
}
.promo-box .note-txt>a{
  text-decoration: underline
}

.sub-title{
  font-size: 32px;
  text-align: center;
  margin-bottom: 24px
}
.area00{
  display: none
}
.product-content+.product-content{
  margin-top: 64px;
}
.product-list.card-style{
  font-family: var(--font-sans)!important
}
.more-link{
  width: 600px;
  margin: 24px auto 0
}
.more-link>a{
  display: block;
  background: #FFF;
  border: var(--content-border-1);
  border-radius: 100px;
  font-size: 24px;
  text-align: center;
  line-height: 1.0;
  padding: 24px 0;
  position: relative
}
.more-link>a::after{
  content: "";
  background: var(--bg-img-setting) url("../img/arrow_btn.svg");
  width: 30px;
  height: 10px;
  position: absolute;
  top: 0;
  right: 24px;
  bottom: 0;
  margin: auto
}
.more-link>a:hover{
  background: var(--content-color-mican);
}

/*** 観光スポット ***/
.content-wrapper.foot{
  display: grid;
  gap: 64px;
}
.head-title#spot{
  margin-bottom: 20px;
}
.head-title#spot .sub{
  border: none;
  padding: none;
  font-size: 18px;
}
.head-title#spot .main{
  font-size: 32px;
  font-weight: normal;
  color: var(--content-clor-base);
}
.spot-list{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  align-items: flex-start
}
.spot-list>li{
  display: grid;
  gap: 10px;
}
.spot-img{
  width: 100%;
  height: 184px;
  border-radius: 4px;
  overflow: hidden
}
.spot-item{
  display: contents
}
.spot-name{
  font-size: 16px;
  font-weight: bold;
  color: var(--content-color-orange);
}
.spot-txt{
  line-height: 1.5
}
.copyright{
  display: block;
  font-size: 12px;
  margin-top: 8px;
}

@media (768px <= width <= 1104px){
  .head-title#stadium .main{
    font-size: 40px
  }
  .head-title#tokuten .main,
  .head-title#hotel .main{
    font-size: 32px;
  }
}