@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: #2C2A29;
  --content-color-navy: #004F8B;
  --content-color-blue: #006BBD;
  --content-color-red: #AB000B;
  --content-color-yellow: #FFCC00;
  --content-color-cream: #FBF9EF;
  --bg-img-setting: no-repeat center center / contain;
  --content-width-sp: calc(335vw / 3.75);
  --content-width-pc: 1104px;
  --content-width: min(var(--content-width-sp), var(--content-width-pc));
  --content-width-tab: min(calc(100% - (96vw / 7.68)), 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;
  --content-font-size: min(var(--font-size-sp), var(--font-size-pc));
  --content-arrow-right: url(/cmn/icon2/chevron_right.svg);
  --content-hover-speed: 0.3s;
  --content-border-1: 1px solid;
  --content-border-2: 2px solid;
  --content-border-3: 3px solid;
}

.nosp,
.is-pc,
.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;
}
a{
  transition: var(--content-hover-speed);
}

/***** MV・ナビ *****/
.mv-wrapper{
  width: 100%;
}
.mv-wrapper .inner{
  width: 100vw;
}
.main-title{
  text-align: center
}
.display_selected {
  width: 100vw;
  height: 100%;
  background: var(--content-color-red);
  font-size: calc(16vw / 3.75);
  font-weight: bold;
  color: #FFF;
  text-align: center;
  padding: calc(16vw / 3.75) 0;
  cursor: pointer;
  position: relative;
}
.display_selected::after{
  content: "";
  background-color: #FFF;
  -webkit-mask: url("/cmn/icon2/expand_more.svg") no-repeat center / contain;
  mask: url("/cmn/icon2/expand_more.svg") no-repeat center / contain;
  width: calc(24vw / 3.75);
  height: calc(24vw / 3.75);
  position: absolute;
  top: 0;
  right: calc(20vw / 3.75);
  bottom: 0;
  margin: auto
}
.dep-select-zone {
  display: none;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  transition: all .5s;
  z-index: 100;
  background: rgba(0 0 0 / 80%);
  padding: calc(100vw / 7.5) calc(80vw / 7.5);
}
.dep-select>li {
  cursor: default;
  padding: calc(20vw / 7.5);
  font-size: calc(30vw / 7.5);
  font-weight: bold;
  color: #FFF;
  text-align: center;
}
.dep-select>li:hover, 
.dep-select li.selected {
  background: #FFF;
  color: #000;
}
.close-button{
  margin: calc(40vw / 7.5) auto;
  width: 5em;
  padding: calc(10vw / 7.5);
  border: var(--content-border_s);
  font-size: calc(30vw / 7.5);
  font-weight: bold;
  color: #FFF;
  text-align: center;
}

/***** メインコンテンツ *****/
.main-container{
  position: relative;
  background: var(--content-color-cream);
}
.content-wrapper{
  width: 100%;
  padding: calc(20vw / 3.75) 0;
}
.content-wrapper .inner{
  display: grid;
  gap: calc(40vw / 3.75)
}
.lead-copy{
  font-size: 20px;
  font-weight: bold;
  text-align: center
}
.note-list>li,
.note-txt{
  display: block;
  padding-left: 1.0em;
  text-indent: -1.0em;
  font-size: 12px;
}
.is-fit{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*** 特典 ***/
.tokuten-content{
  display: grid;
  gap: 40px;
}
.title-wrapper{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.title-wrapper::before,
.title-wrapper::after{
  content: "";
  background: var(--bg-img-setting);
  display: block;
}
.title-wrapper::before{
  background-image: url("../img/enjoy.png");
  width: calc(140vw / 3.75);
  height: calc(110vw / 3.75);
  order: 1
}
.title-wrapper::after{
  background-image: url("../img/map.png");
  width: calc(114vw / 3.75);
  height: calc(124vw / 3.75);
  order: 2
}
.head-title{
  width: 100%;
  order: 3;
  font-size: calc(32vw / 3.75);
  font-weight: 900;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.head-title>span{
  display: inline-block;
  color: var(--content-color-red);
  background: linear-gradient(to bottom, transparent 70%, var(--content-color-yellow) 70%);
}
.tokuten-list{
  display: grid;
  gap: calc(20vw / 3.75);
  align-items: flex-start
}
.tokuten-list>li{
  display: grid;
  gap: calc(20vw / 3.75);
}
.tokuten-area{
  background: var(--content-color-yellow);
  border: var(--content-border-3);
  padding: calc(8vw / 3.75);
  font-size: 24px;
  font-weight: 900;
  text-align: center;
  line-height: 1.0
}
.area-tokuten{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: calc(20vw / 3.75);
}
.area-tokuten>li{
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: 0;
}
.tokuten-img{
  width: 100%;
  height: 88px;
}
.tokuten-name{
  background: var(--content-color-red);
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  color: #FFF;
  padding: calc(8vw / 3.75) 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*** 割引クーポン ***/
.coupon-content{
  background: var(--content-color-blue);
  padding: calc(24vw / 3.75)  calc(10vw / 3.75);
  border-radius: 8px;
}
.coupon-content .head-title{
  font-size: 24px;
  color: #FFF;
  text-align: center;
  margin-bottom: 16px;
}
.coupon-content .head-title>small{
  display: block;
  font-size: 14px;
}
.coupon-leadcopy{
  font-size: 18px;
  font-weight: 900;
  color: #FFF;
  text-align: center
}
.coupon-content .note-txt>a{
  color: #FFF;
  text-decoration: underline
}
.coupon-list{
  display: grid;
  gap: 16px;
  padding: 16px 0
}
.coupon-list>li{
  background: #FFF;
  display: grid;
  gap: 8px;
  padding: 16px 8px;
  text-align: center;
  order: 2;
}
.coupon-name{
  font-size: 24px;
  font-weight: 900;
  color: var(--content-color-blue);
  text-align: center;
}
.coupon-term{
  display: block;
  font-size: 14px;
  color: var(--content-color-base);
  margin-top: 8px;
}
.coupon-code{
  display: none;
}
.soon-txt{
  font-size: 16px;
  font-weight: bold;
  color: #697180;
}
 /** 有効クーポン **/
.coupon-list>li.is-valid{
  order: 1;
}
.coupon-list>li.is-valid .coupon-name{
  font-size: 28px;
}
.coupon-list>li.is-valid .coupon-term{
  font-size: 16px;
}
.coupon-list>li.is-valid .coupon-code{
  display: block;
}
.coupon-list>li.is-valid .code-txt{
  background: #E9ECF2;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 0;
  position: relative
}
.code-txt::after{
  content: "";
  background: var(--bg-img-setting) url(/cmn/icon/icon_copy.svg);
  width: 24px;
  height: 24px;
  position: absolute;
  top: 3px;
  right: 3px;
}
.msgBoard{
  font-size: 14px;
  display: none;
}
.coupon-list>li.is-valid .soon-txt{
  display: none
}

/** 終了クーポン  **/
.coupon-list>li.is-end{
  position: relative
}
.coupon-list>li.is-end::before{
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0 0 0 / 50%);
  position: absolute;
  top: 0;
  left: 0;
}

/*** JAL特典 ***/
.jal-content{
  display: grid;
  border-radius: 8px;
  background: #FFF;
}
.jal-midashi{
  background: var(--content-color-red);
  font-size: 24px;
  font-weight: 900;
  color: #FFF;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 16px;
  border-radius: 8px 8px 0 0;
}
.jal-tokuten{
  font-size: 16px;
  font-weight: 900;
  text-align: center;
  padding: 16px
}

/*** ツアー ***/
.area00{
  display: none;
}
.product-content{
  display: grid;
  gap: 24px
}
.campaign-product{
  display: grid;
  gap: 16px;
}
.item-label.true::after{
  content: "";
  background: var(--bg-img-setting) url("../img/product_label_coupon.png");
}
.more-link{
  width: 100%;
  margin: auto;
}
.more-link>a{
  display: block;
  border-radius: 100px;
  background: var(--content-color-red);
  padding: 12px 0;
  font-size: 16px;
  font-weight: bold;
  color: #FFF;
  text-align: center;
  position: relative
}
.more-link>a::after{
  content: "";
  width: 24px;
  height: 24px;
  display: block;
  background-color: #FFF;
  -webkit-mask: var(--content-arrow-right) no-repeat center / contain;
  mask: var(--content-arrow-right) no-repeat center / contain;
  position: absolute;
  top: 0;
  right: 4px;
  bottom: 0;
  margin: auto;
}

/*** フッター ***/
.content-wrapper.foot{
  padding: 40px 0;
  background: #FFF;
}
.content-wrapper.foot .inner{
  gap: 16px;
}
.sub-title{
  font-size: 24px;
  font-weight: 900;
  text-align: center;
}
