@charset "utf-8";
/* CSS Document */

/* === Popup ベース === */
.popup {
  position: fixed;
  inset: 0;                  /* top/left/right/bottom を一括 */
  display: flex;             /* ★ 中央寄せの土台 */
  align-items: center;       /* ★ 縦中央 */
  justify-content: center;   /* ★ 横中央 */
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: .6s;
}
.popup.is-show {
  opacity: 1;
  visibility: visible;
}
.popup-inner {
  position: relative;                /* ×ボタンの基準にする */
  width: min(96%, 700px);            /* clampの代わりに扱い易い指定へ */
  max-width: 700px;
  z-index: 2000010020;
}
.popup-inner img {
  width: 100%;
}
.close-btn {
  position: absolute;
  right: 0;
  top: 0;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  cursor: pointer;
}
/*.close-btn i { font-size: 20px; color: #333; }*/

.black-background {
  position: absolute;
  inset: 0;
  background-color: rgba(0,0,0,.7);
  cursor: pointer;
  z-index: 2000010010;
}

/*************************************/
/* btn Close */
a .js-close-btn2in {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  width: 32px;
  height: 32px;
  line-height: 1.3;
  border-radius: 2px;
  font-weight: bold;
  margin: auto;
  font-size: 24px;
  position: absolute;
  top: -38px;
  right: 9px;
  text-align: center;
  background-color: #EA5404;
}

.wrap_entry { position: relative; }
.close_btn-n {
  position: absolute;
  top: 0; right: -2em;
  font-size: 15px;
  color: #FFF; opacity: .6;
}

/* PC 共通 */
.logo { 
  margin: 20px auto 0; 
}
@media (max-width:767px) {
  .logo {
    margin: 0 auto;
  }
}
.logo img { 
  max-width: 500px; 
  margin: 0 auto 20px; 
}
.small-text { 
  font-size: 2.6rem; 
}
.cta_text { 
  color: #000; 
  font-size: 2.6rem; 
  font-weight: bold;
  line-height: 1.4;
}
/* クーポン日付行 */
.coupon-line {
    text-align: center;
    color: #000;
    font-size: 2.3rem;
    letter-spacing: .03em;
    font-weight: bold;
    line-height: 1;
    margin: 10px auto 20px;
    background: #ffe500;
    padding: 12px 0 10px;
    max-width: 500px;
    position: relative;
}
@media (max-width: 767px){
  .coupon-line{
    font-size: 1.6rem;      /* SPで少し小さめに */
    letter-spacing: .02em;
    padding: 9px 0 8px;
    margin: 8px auto 6px;
    max-width: 310px;
  }
}
/* 下向き三角（中央） */
.coupon-line::after{
  content:"";
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  bottom:-10px;
  width:0;height:0;
  border-left:10px solid transparent;
  border-right:10px solid transparent;
  border-top:14px solid #ffe500;
}
@media (max-width:767px) {
  .coupon-line::after{
    bottom: -8px;
    border-top:13px solid #ffe500;
  }
}
#today-date{
  color: red;              /* 日付は少し濃く */
  font-weight: 700;         /* きもち強調 */
  padding: 0 .2em;          /* 前後に余白 */
}


/* ================= PC ================= */
@media screen and (min-width:768px){
  .entry_content {
    text-align: center;
    width: 700px;
    background-color: rgba(255,255,255,1);
    margin: 0 auto;
    border-radius: 4px;
    padding: 1em .5em 2em;
    min-height: 320px;
    height: auto;
  }
  .entry_content h1 {
    font-size: 1.8em;
    letter-spacing: 0.05em;
    font-weight: normal;
    line-height: 1.1;
  }
  .entry_content > p {
    font-size: 15px;
    line-height: 1.5;
    margin: .5em 63px .6em;
    text-align: justify;
  }

  ul.button_area {
    display: flex;
    justify-content: center;
    align-items: flex-end;
  }
  ul.button_area li { align-self: flex-start; }
  ul.button_area li p{
    margin: 1em auto 1em;
    padding: 0 .5em;
    width: 100%;
    text-align: center;
    line-height: 1.5;
    font-size: 15px;
  }
  ul.button_area li span {
    display: block;
    font-size: 12px;
    line-height: 1;
  }

  .button_enter,
  a.button_enter {
    width: 100%;
    font-size: 1.4rem;
    font-weight: normal;
    line-height: 1.5;
    position: relative;
    display: inline-block;
    padding: .8em 1em .7em;
    cursor: pointer;
    user-select: none;
    transition: all 0.1s;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    letter-spacing: 0.1em;
    color: #fff;
    border-radius: 5px;
  }
@media screen and (max-width: 767px) {
    .button_enter, a.button_enter {
        min-width: 7.3em;
        width: 100%;
        font-size: 1.3em;
        /* font-weight: bold; */
        line-height: 1.5;
        position: relative;
        display: inline-block;
        padding: .6em .4em .5em;
        cursor: pointer;
        user-select: none;
        transition: all 0.1s;
        text-align: center;
        vertical-align: middle;
        text-decoration: none;
        letter-spacing: 0.1em;
        color: #FFF;
        border-radius: 4px;
        margin: .2em auto;
        font-weight: normal;
    }
}
  /* color */
  a.button--sitecolor {
    color: #fff;
    font-size: 20px;
    background-color: #EA5404;
    border-bottom: 3px solid #B94000;
  }
  a.button--sitecolor:hover {
    color: #fff;
    background-color: #EA5404;
    border-bottom: 2px solid #B94000;
    opacity: .8;
    transform: translateY(1%);
  }
}

/* ================= SP ================= */
@media (max-width:767px) {
  .logo img { max-width: 310px; margin: 10px 0; }
  .entry_content {
    text-align: center;
    width: 96%;
    background-color: rgba(255,255,255,1);
    margin: 0 auto;
    border-radius: 4px;
    padding: 20px;
    height: auto;
  }
  .entry_content h1 {
    font-size: 1.8em;
    font-weight: normal;
    line-height: 1.4;
    margin: .6em 0 0;
    padding: 0;
  }
  .entry_content > p {
    font-size: .9em;
    line-height: 1.6;
    margin: .5em .8em .3em;
    text-align: justify;
  }
  ul.button_area {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    flex-direction: column;
  }
  ul.button_area li {
    padding: 0;
    align-self: flex-start;
    flex-basis: 100%;
    width: 100%;
  }
  .button_area li p{
    margin: 1em auto .5em !important;
    padding: 0 !important;
    text-align: center !important;
    line-height: 1.5 !important;
    font-size: 1.0em !important;
  }
  ul.button_area li span {
    display: block;
    font-size: 10px;
    line-height: 1;
    letter-spacing: normal;
  }

  .button_enter,
  a.button_enter {
    min-width: 7.3em;
    width: 100%;
    font-size: 1em;
    line-height: 1.5;
    position: relative;
    display: inline-block;
    padding: .6em .4em .5em;
    cursor: pointer;
    user-select: none;
    transition: all 0.1s;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    letter-spacing: 0.1em;
    color: #FFF;
    border-radius: 4px;
    margin: .2em auto;
    font-weight: normal;
  }
  a.button--sitecolor {
    color: #fff;
    background-color: #EA5404;
    border-bottom: 3px solid #B94000;
  }
  a.button--sitecolor:hover {
    color: #fff;
    background-color: #EA5404;
    border-bottom: 2px solid #B94000;
    opacity: .8;
    transform: translateY(1%);
  }

  /* 表示切替 */
  .button_item {
    text-align: center;
    width: 100%;
    max-width: 310px;
    margin: 0 auto;
  }
  .button_item a.button_enter {
    display: block;
    max-width: 310px;
    margin: 0 auto;
  }
  .button_item p {
    margin: 0 auto .5em;
  }
  .cta_text {
    color: #000;
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 1.4;
  }
  .small-text { font-size: 1.7rem; }

  /* PC/SP 切り替え */
  .pcOnly { display: none !important; }
  .spOnly { display: block !important; }
}

/* 共通 */
.button_area {
  display: flex;
  justify-content: center;
}
.button_item {
  text-align: center;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}
.button_item {
  margin: 0 auto;
  font-weight: 600;
  font-size: 2rem;
  line-height: 1.6;
}
@media (max-width:767px) {
  .button_item {
    margin: 0 auto;
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 1.5;
  }
}

/* PC 初期値（SPで上書き） */
.pcOnly { display: block !important; }
.spOnly { display: none !important; }

@media screen and (max-width: 767px) {
  .pcOnly { display: none !important; }
  .spOnly { display: block !important; }
}
