@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');

/* CSS Document */
:root{
  --content-color-base: #000;
  --content-color-green: #20A800;
  --content-color-yellow: #FFFF00;
  --content-color-gray: #E9ECF2;
  --content-clear-green: rgba(32 168 0 / 10%);
  --bg-img-setting: no-repeat center center / contain;
  --bg-width-pc: max(100%, 1920px);
  --content-width: min((335vw / 3.75), 1104px);
  --font-size-pc: 14px;
  --font-size-sp: calc(24vw / 7.5);
  --font-sans: 'Noto Sans JP', serif;
  --content-font-size: min(var(--font-size-sp), var(--font-size-pc));
  --content-hover-speed: 0.3s;
  --content-arrow-right: url(/cmn/icon2/chevron_right.svg);
  --content-border-s: 1px solid;
  --content-border-l: 4px 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);
}
.note-txt{
  display: block;
  padding-left: 1.0em;
  text-indent: -1.0em;
}
.is-fit{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.is-green{
  color: var(--content-color-green);
}
.copyright{
  font-size: 12px;
  margin-top: 16px;
}

/***** MV・ナビ *****/
.mv-wrapper {
  width: 100%;
  height: 525px;
  background: url("../img/bg_pcmv.webp") no-repeat top center / cover;
}
.mv-wrapper>.inner{
  height: 100%;
  display: grid;
  gap: 24px;
  grid-template-columns: calc((100% - (541px + 24px))) 541px;
  align-items: center;
  position: relative
}
.catch-img{
  padding-left: 24px;
}
.title-wrapper{
  display: flex;
  flex-direction: column;
  gap: 16px
}
.bodycopy{
  font-size: 26px;
  font-weight: bold;
  line-height: 1.8
}
.bodycopy .yellow-line{
  display: inline;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  background: var(--content-color-yellow);
}

@media (768px <= width <= 1024px){
  .mv-wrapper {
    width: 100%;
    height: auto;
    background: url("../img/bg_spmv.webp") no-repeat top center / cover;
  }
  .mv-wrapper>.inner{
    width: 100vw;
    grid-auto-flow: column;
    padding: 20px 48px;
    grid-template-columns: auto;
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    align-items: center;
  }
  .catch-img{
    padding-left: 0;
    text-align: center;
  }
  .catch-img>img{
    width: max(670px, 100%);
  }
  .title-wrapper{
    width: max(670px, 100%);
    margin: auto
  }
  .main-title>img{
    width: max(670px, 100%);
  }
}

.nav-wrapper{
  width: 100%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
}
.navigation-list{
  width: var(--content-width);
  padding: 16px 20px;
  margin: auto;
  display: flex;
  justify-content: center;
  gap: 16px
}
.navigation-list>li{
  padding-right: 17px;
  position: relative
}
.navigation-list>li::after{
  content: "";
  width: 1px;
  height: 100%;
  background-color: #c0c5cc;
  position: absolute;
  top: 0;
  right: 1px;
  bottom: 0;
}
.navigation-list>li>a{
  font-weight: bold;
}
.navigation-list>li>a:hover{
  text-decoration: underline;
}

/***** メインコンテンツ *****/
.main-content{
  position: relative;
  padding-top: 96px;
  display: flex;
  flex-direction: column;
  gap: 96px;
}
.content-wrapper{
  width: 100%;
}
.content-wrapper>.inner{
  display: flex;
  flex-direction: column;
  gap: 80px
}
.title-container{
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: center;
}
.head-title{
  font-size: 60px;
  font-weight: 900;
  line-height: 1.0
}
.head-title>small{
  font-size: 30px;
}
@media (768px <= width <= 1024px){
  .head-title{
    font-size: 50px;
  }
}

.head-title+.note-txt{
  font-size: 20px;
  font-weight: bold
}
.product-container{
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.title-content{
  display: flex;
  gap: 24px;
}
.limite-box{
  width: 272px;
  display: grid;
  grid-template-rows: auto;
  font-weight: 900;
}
.limite-box>span{
  display: flex;
  justify-content: center;
  align-items: center;
}
.limite-date{
  border: var(--content-border-l) #000;
  border-bottom: none;
  font-size: 42px;
  color: var(--content-color-green);
  background: #FFF;
}
.limite-txt{
  background: #000;
  font-size: 30px;
  color: #FFF;
}
.title-box{
  flex: 1;
}
.product-midashi{
  font-size: 42px;
  font-weight: 900;
}
.limite-days{
  font-size: 30px;
  font-weight: bold;
}
.tour-content{
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.area-tab{
  display: grid;
  grid-template-columns: repeat(7, calc(100% / 7));
}
.area-tab>li{
  border-bottom: var(--content-border-l) var(--content-color-gray);
  padding-bottom: 24px;
  font-size: 16px;
  text-align: center;
  cursor: pointer
}
.area-tab>li.is-current{
  font-weight: bold;
  color: var(--content-color-green);
  border-bottom-color: var(--content-color-green);
}
.area-select{
  display: none;
}
.area-select.is-active{
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.area-midashi{
  font-size: 42px;
  font-weight: 900;
  text-align: center;
}
.product-link-button{
  width: min(600px, 100%);
  margin: auto
}
.product-link-button>a{
  display: block;
  background: var(--content-color-green);
  border-radius: 100px;
  box-shadow: 2px 2px 0 0 rgba(0 0 0 / 25%);
  font-size: 24px;
  font-weight: bold;
  color: #FFF;
  text-align: center;
  padding: 16px;
  line-height: 1.0;
  position: relative
}
.product-link-button>a::after{
  content: "";
  width: 24px;
  height: 24px;
  display: block;
  background-color: #FFF;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  -webkit-mask-image: var(--content-arrow-right);
  mask-image: var(--content-arrow-right);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  margin: auto
}
.product-link-button>a:hover{
  opacity: .8
}


/*** いつまで？ ***/
.product-link-list{
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
}
.product-link-list>li{
  display: grid;
  grid-template-rows: auto;
  gap: 12px;
}
.product-limite-txt{
  font-size: 30px;
  font-weight: 900;
  text-align: center;
}

.limite-data-content{
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.limite-data-midashi{
  font-size: 30px;
  font-weight: 900;
  text-align: center;
}
.limite-data-list{
  display: grid;
  grid-auto-flow: column;
  grid-template-columns: repeat(2, calc((100% - 24px) / 2));
  grid-template-rows: repeat(5, auto);
  gap: 16px 24px;
  
}
.limite-data-list>li{
  display: flex;
  gap: 24px;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: var(--content-border-s) #C0C5CC;
}
.list-product{
  width: 252px;
  font-size: 18px;
  font-weight: bold
}
.list-date{
  flex: 1;
  font-size: 16px;
}

@media (768px <= width <= 1024px){
  .product-link-list{
    grid-auto-flow: column;
    grid-template-columns: auto;
    grid-template-rows: repeat(3, 1fr);
  }
  .list-product{
    width: 12em;
    font-size: 16px;
    font-weight: bold
  }
}

/** フッター **/
.content-wrapper.footer{
  background: url("../img/bg_search.webp") no-repeat center / cover;
  padding: 40px 0;
  position: relative
}
.content-wrapper.footer::after{
  content: "";
  background: rgba(0 0 0 / 50%);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1
}
.content-wrapper.footer>.inner{
  width: min(992px, (100% - 40px));
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  z-index: 30
}
.content-wrapper.footer .head-title{
  font-size: 26px;
  color: #FFF;
  text-align: center;
}