@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&display=swap');

/* CSS Document */
:root{
  --content-color-blue: #234a9e;
  --content-color-pink: #e5004f;
  --content-color-yellow: #ffe500;
  --content-color-sky: #0082ba;
  --content-color-gray: #808080;
  --content-color-lgray: #cccccc;
  --content-color-cream: #fffadb;
  --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);
  --content-font-size: min(var(--font-size-sp), var(--font-size-pc));
  --font-sans: 'Noto Sans JP', sans-serif;
  --content-hover-speed: 0.3s;
  --content-box-shadow: calc(4vw / 7.5) calc(4vw / 7.5) 0 rgba(0 0 0 / 20%); 
  --content-arrow-right: url(../img/arrow_b.svg);
  --content-arrow-right_w: url(/cmn/icon/icon_arrow_right_white.svg);
  --content-arrow-down: url(/cmn/icon/icon_arrow_down_white.svg);
}

.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;
  position: relative;
}
a{
  transition: var(--content-hover-speed);
}
.is-fit{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.is-bold{
  font-weight: bold;
}
.note-list>li,
.note-txt{
  display: block;
  font-size: calc(10vw / 3.75);
  padding-left: 1.0em;
  text-indent: -1.0em;
  line-height: 1.5
}
.is-pink{
  color: var(--content-color-pink);
}

/*** MV ***/
.title-wrapper>.inner{
  width: 100vw
}
.dep-select-nav{
  width: 100%;
  padding: calc(8vw / 3.75) 0;
  background: var(--content-color-blue);
  position: relative;
}
.display_selected {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: calc(16vw / 3.75);
  font-weight: bold;
  text-align: center;
  color: #FFF;
  position: relative;
  cursor: pointer;
}
.display_selected::before{
  content: "出発地";
  display: inline-block;
  font-size: calc(14vw / 3.75);
  margin-right: calc(8vw / 3.75)
}
.display_selected::after {
  content: "";
  background: var(--bg-img-setting) var(--content-arrow-down);
  width: calc(24vw / 3.75);
  height: calc(24vw / 3.75);
  position: absolute;
  top: 0;
  right: calc(8vw / 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;
}
.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__content ***/
.content-wrapper{
  padding: calc(48vw / 3.75) 0;
  background: var(--content-color-cream);
}
.head-title{
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: calc(24vw / 3.75);
  margin: 0 calc(50% - 50vw);
}
.title-txt{
  font-size: calc(28vw / 3.75);
  font-weight: 900;
  text-align: center;
  line-height: 1.2;
}
.title-txt>small{
  display: block;
  font-size: calc(18vw / 3.75);
  font-weight: bold;
}
.head-title::before,
.head-title::after{
  content: "";
  display: inline-block;
  width: calc(20vw / 3.75);
  height: calc(4vw / 3.75);
  background-color: var(--content-color-gray);
  flex-grow: 1
}

/*** product ***/
.content-wrapper.product .head-title{
  margin-bottom:  calc(16vw / 3.75)
}
.area00{
  display: none
}
.item-label::before{
  content: "";
  background: var(--bg-img-setting);
  width: 100px;
  height: 28px;
  position: absolute;
  top: 0;
  left: 0;
}
.item-label.okinawa::before{
  background-image: url("../img/badge_oka.png");  
}
.item-label.island::before{
  background-image: url("../img/badge_okar.png");  
}
.item-label.hokkaido::before{
  background-image: url("../img/badge_hok.png");  
}
.item-label.kyushu::before{
  background-image: url("../img/badge_kyu.png");  
}
.item-label.chugoku::before{
  background-image: url("../img/badge_chu.png");  
}
.item-label.shikoku::before{
  background-image: url("../img/badge_shikoku.png");  
}
.more-link{
  width: 100%;
  margin: calc(24vw / 3.75) auto 0;
}
.more-link>a{
  display: block;
  background: var(--content-color-blue);
  color: #FFF;
  text-align: center;
  padding: calc(16vw / 3.75) 0;
  border-radius: 16px;
  box-shadow: var(--content-box-shadow);
  position: relative
}
.more-link>a::after{
  content: "";
  background: var(--content-arrow-right_w) var(--bg-img-setting);
  width: calc(24vw / 3.75);
  height: calc(24vw / 3.75);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

/*** tokuten ***/
.content-wrapper.tokuten{
  background: #FFF;
}
.content-wrapper.tokuten .inner{
  width: 100vw;
  display: grid;
  gap: calc(40vw / 3.75);
}
.title-box{
  display: grid;
  gap: calc(8vw / 3.75)
}
.bodycopy{
  font-weight: bold;
  text-align: center;  
}
.tokuten-content{
  display: grid;
  gap: calc(16vw / 3.75);
}
.coupon-box{
  width: 100vw;
  padding: calc(20vw / 3.75);
  position: relative;
  border-top: 5px dashed var(--content-color-lgray);
  border-bottom: 5px dashed var(--content-color-lgray);
  display: grid;
  gap: calc(8vw / 3.75);
}
.coupon-box::before{
  content: "";
  background: url("../img/ico_tokuten01.jpg") var(--bg-img-setting);
  width: calc(100vw / 3.75);
  height: calc(39vw / 3.75);
  position: absolute;
  top: calc(-24vw / 3.75);
  left: calc(10vw / 3.75);
}
.coupon-title{
  font-size: calc(28vw / 3.75);
  font-weight: 900;
  color: var(--content-color-blue);
  text-align: center;
  line-height: 1.2;
}
.coupon-title>small{
  display: block;
  font-size: calc(16vw / 3.75);
}
.coupon-txt{
  font-weight: bold;
  text-align: center;
}
.coupon-midashi{
  text-align: center;
}
.coupon-midashi>span{
  width: 100%;
  display: flex;
  gap: calc(4vw / 3.75);
  font-size: calc(18vw / 3.75);
  font-weight: bold;
  justify-content: center;
}
.coupon-midashi>span::before,
.coupon-midashi>span::after{
  content: "/";
  display: inline-block;
}
.coupon-midashi>span::before{
  transform: scaleX(-1);
}
.coupon-tab{
  display: grid;
  gap: calc(8vw / 3.75)
}
.coupon-tab>li>a{
  display: block;
  background: var(--content-color-yellow);
  border-radius: calc(20vw / 7.5);
  box-shadow: var(--content-box-shadow);
  padding: calc(8vw / 3.75);
  font-size: calc(14vw / 3.75);
  font-weight: bold;
  text-align: center;
  line-height: 1.2;
  flex-shrink: 0;
  position: relative
}
.coupon-tab>li>a::after{
  content: "";
  background: var(--content-arrow-right) var(--bg-img-setting);
  width: calc(13vw / 7.5);
  height: calc(22vw / 7.5);
  position: absolute;
  top: 0;
  right: 0.5em;
  bottom: 0;
  margin: auto;
}
.tokuten-list>li{
  border-bottom: 2px dashed var(--content-color-lgray);
  padding: calc(8vw / 3.75); 
  display: grid;
  grid-template-columns: calc(100vw / 3.75) 1fr;
  gap: calc(4vw / 3.75);
  align-items: center;
}
.tokuten-list>li::before{
  content: "";
  background: var(--bg-img-setting);
  width: calc(100vw / 3.75);
  height: calc(39vw / 3.75);
}
.tokuten-list>li:first-child::before{
  background-image: url("../img/ico_tokuten02.jpg")
}
.tokuten-list>li:nth-child(2)::before{
  background-image: url("../img/ico_tokuten03.jpg")
}
.tokuten-list.oka>li:first-child::before{
  background-image: url("../img/ico_ico_point01.jpg")
}
.tokuten-list.oka>li:nth-child(2)::before{
  background-image: url("../img/ico_ico_point02.jpg")
}
.tokuten-list.oka>li:nth-child(3)::before{
  background-image: url("../img/ico_ico_point03.jpg")
}

.tokuten-item{
  display: grid;
  gap: calc(4vw / 3.75);
  align-items: center;
  padding-right: calc(12vw / 3.75)
}
.tokuten-list>li .tokuten-midashi{
  font-size: calc(18vw / 3.75);
  font-weight: bold;
  color: var(--content-color-blue);
}
.tokuten-list>li .tokuten-midashi>small{
  font-size: calc(14vw / 3.75);
}
.tokuten-list>li .tokuten-txt{
  font-weight: bold;
}

/* okinawa */
.sub-title>span{
  display: flex;
  gap: calc(4vw / 3.75);
  justify-content: center;
  align-items: center;
  font-size: calc(20vw / 3.75);
  font-weight: 900;
  color: var(--content-color-sky);
  text-align: center;
  line-height: 1.2;
  position: relative;
}
.sub-title>span::before,
.sub-title>span::after{
  content: "";
  background: url("../img/ico_ttl_sq.svg") var(--bg-img-setting);
  width: calc(106vw / 7.5);
  height: calc(44vw / 7.5);
  display: block;
}

.cafe-list{
  grid-column: 1 / 3;
  display: grid;
  gap: calc(16vw / 3.75)
}
.cafe-img{
  width: 100%;
  height: calc(160vw / 3.75);
  margin-bottom: calc(4vw / 3.75)
}
.cafe-name{
  font-size: calc(16vw / 3.75);
  font-weight: bold;
  color: var(--content-color-sky);
}
.cafe-data>li{
  font-size: calc(12vw / 3.75)
}

/*** notice ***/
.notice-box{
  width: var(--content-width);
  margin: auto;
  display: none
}
.notice-inbox{
  display: grid;
  gap: calc(8vw / 3.75);
}
.notice-title{
  font-weight: bold;
  text-align: center;
  margin-bottom: calc(8vw / 3.75)
}
.notice-data{
  display: grid;
  gap: calc(4vw / 3.75);
}
.notice-midashi{
  font-weight: bold;
}
.accordion-button {
  width: calc(200vw / 3.75);
  margin: auto;
  border-radius: 32px;
  border: 1px solid;
  background: #FFF;
  padding: calc(8vw / 3.75);
  text-align: center;
  color: var(--content-color-gray);
}
.accordion-button>span{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: calc(8vw / 3.75);
  line-height: 1.0
}
.accordion-button>span::before {
  content: "";
  background: var(--bg-img-setting);
  background-image: url(../img/ico_open.svg);
  width: calc(12vw / 3.75);
  height: calc(12vw / 3.75);
  display: block
}
.accordion-button.is-open>span::before {
  background-image: url(../img/ico_close.svg);
}