@charset "utf-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Open+Sans:ital,wght@0,700;1,700&display=swap');

:root{
  --content-color-base: #333;
  --content-color-blue: #10069f;
  --content-color-ovs: #11a4f7;
  --content-color-dom: #0abe01;
  --content-color-yellow: #ffe600;
  --content-color-red: #e50012;
  --content-color-gray: #F2F2F2;
  --bg-img-setting: no-repeat center center / contain;
  --bg-width-pc: max(100%, 1920px);
  --content-width: min((710vw / 7.5), 992px);
  --font-size-pc: 14px;
  --font-size-sp: calc(24vw / 7.5);
  --font-sans: "Noto Sans JP", 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_black.svg);
  --content-img-copy: url(/cmn/icon/icon_copy.svg);
  --content-border_s: 2px solid;
  --content-border_l: 6px solid;
  --content-border_dash: 4px dashed;
}

.nopc{
  display: none
}
.main{
  font-family: var(--font-sans);
  font-size: var(--content-font-size);
  font-weight: 400;
  color: var(--content-color-base);
  position: relative;
  line-height: calc(20 / 14);
}
.main *{
  box-sizing: border-box;
}
.inner{
  width: var(--content-width);
  margin: auto;
}
a{
  transition: var(--content-hover-speed);
}

.mv__wrapper{
  width: 100%;
  height: 280px;
  background: url("../img/mv_photo.jpg") no-repeat center top;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.title-logo{
  text-align: center
}
.bodycopy{
  width: 100%;
  background: var(--content-color-blue);
  padding: 10px 0;
  font-size: 16px;
  color: #FFF;
  text-align: center;
}
.main__content{
  padding: 50px 0
}
.select__nav{
  display: flex;
  gap: 40px;
  margin: 0 auto 80px;
}
.select__nav>li{
  width: calc((100% - 40px) / 2);
  border-radius: 6px;
  text-align: center;
  background: var(--content-color-dom);
}
.select__nav>li:last-child{
  background: var(--content-color-ovs)
}
.select__nav>li>a{
  display: block;
  font-size: 30px;
  font-weight: bold;
  color: #FFF;
  line-height: 1.0;
  padding: 14px 0 18px;
}
.content__wrapper.is-ovs{
  border-color: var(--content-color-ovs);
}
.content__wrapper+.content__wrapper{
  margin-top: 100px
}
.head-title{
  font-size: 36px;
  font-weight: bold;
  color: #FFF;
  text-align: center;
  line-height: 1.0;
  padding: 4px 0 8px;
  background: var(--content-color-dom);
}
.content__wrapper.is-ovs .head-title{
  background: var(--content-color-ovs);
}
.item__content{
  background: #FFF;
  padding: 16px;
  border: var(--content-border_l) var(--content-color-dom);
  border-top: none
}
.coupon__title{
  margin-bottom: 24px;
  padding-bottom: 8px;
  text-align: center;
  border-bottom: var(--content-border_dash) var(--content-color-dom);
}
.content__wrapper.is-ovs .item__content,
.content__wrapper.is-ovs .coupon__title{
  border-color: var(--content-color-ovs);
}
.coupon__midashi>span{
  font-size: 42px;
  font-weight: bold;
  color: #3f2401;
  background: linear-gradient(transparent 70%, var(--content-color-yellow) 70%);
}
.coupon__period{
  font-size: 24px;
  font-weight: bold;
  color: var(--content-color-red);
  margin-top: 8px
}
.copy__txt{
  font-size: 18px;
  font-weight: bold;
  text-align: center
}

/*** クーポン ***/
.coupon__list{
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 24px auto
}
.coupon__list>li{
  width: calc((100% - 20px) / 2);
  border-radius: 6px;
  background: var(--content-color-red);
  padding: 10px;
  color: #FFF;
  position: relative;
  display: flex;
  flex-direction: column;
}
.coupon__condition{
  font-size: 16px;
  text-align: center;
}
.coupon__price{
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: -0.05em;
  line-height: 1.0;
  text-align: center;
  padding-bottom: 16px;
}
.coupon__price>em{
  font-size: 64px;
  font-weight: bold;    
}
.coupon__code{
  font-size: 28px;
  font-weight: bold;
  color: var(--content-color-base);
  text-align: center;
  background: var(--content-color-gray);
  padding: 5px 30px 5px 5px;
  cursor: pointer;
  position: relative;
  overflow-wrap: anywhere;
}
.coupon__code::after {
  content: "";
  background: var(--content-img-copy) var(--bg-img-setting);
  width: 24px;
  height: 24px;
  position: absolute;
  top: 3px;
  right: 3px;
}
.msgBoard{
  width: 100%;
  display: none;
  text-align: center;
}

.notice__box{
  background: var(--content-color-gray);
  padding: 16px;
}
.notice__list>li{
  font-size: 16px
}
.notice__list>li+li{
  margin-top: 8px;
}
.notice__midashi{
  font-size: 16px;
  font-weight: bold;
  display: flex;
  gap: 8px;
  align-items: center;
  line-height: 1.0;
  margin-bottom: 4px;
}
.notice__midashi::before{
  content: "";
  display: block;
  width: 4px;
  height: 20px;
  background: var(--content-color-base);
}
.note__txt{
  display: block;
  font-size: 12px;
  padding-left: 1.0em;
  text-indent: -1.0em;
}
.caution__list>li{
  font-size: 12px;
  padding-left: 1.0em;
  text-indent: -1.0em;
}
.caution__list>li:last-child{
  font-weight: bold;
  color: var(--content-color-red)
}
.link__button{
  width: 800px;
  margin: 16px auto 0;
}
.link__button>a{
  display: block;
  background: var(--content-color-yellow);
  border-radius: 100px;
  box-shadow: 0px 3px 0px 0px rgb(0 0 0 / 23%);
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  padding: 10px 40px;
  position: relative;
}
.link__button>a::after{
  content: "";
  background: var(--content-arrow-right) var(--bg-img-setting);
  width: 36px;
  height: 36px;
  position: absolute;
  top: 0;
  right: 8px;
  bottom: 0;
  margin: auto;
}