@charset "utf-8";

/* -----------------------------------
   Campaign common
------------------------------------ */
.newCampaign .benefitWrap,
#fiveFeatures .fiveFeaturesHead,
#fiveFeatures .ff-accordion,
#threeSteps{
  width:min(94%, var(--max-content));
  margin-inline:auto;
}

.secFeatures{
  background:rgba(255,255,255,.3);
}

#mainHead{
  width:100%;
  margin:0;
  padding:0;
  background:transparent;
}

.jqcardImage{
  width:min(100%, var(--max-content));
  margin-inline:auto;
}

.jqcardImage img{
  display:block;
  width:100%;
  height:auto;
}

/* -----------------------------------
   Upper campaign
------------------------------------ */
.newCampaign{
  padding:44px 0 24px;
  background:url("../img/jq_spr_bg.jpg") repeat top center;
  background-size:100% auto;
}

.newCampaign .benefitWrap{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:0;
}

.newCampaign .benefitBox,
.newCampaign .plusIcon{
  flex:0 0 auto;
}

.newCampaign .benefitBox img,
.newCampaign .plusIcon img,
.newCampaign .totalWrap img,
.newCampaign .pointNumber img{
  display:block;
  width:auto;
  max-width:100%;
  height:auto;
}

/* -----------------------------------
   10,000 白発光
------------------------------------ */
@keyframes pointGlowWhite{
  0%{
    filter:drop-shadow(0 0 0 rgba(255,255,255,0));
  }

  50%{
    filter:
      drop-shadow(0 0 10px rgba(255,255,0,.12))
      drop-shadow(0 0 20px rgba(255,255,255,.8))
      drop-shadow(0 0 30px rgba(255,255,255,.7));
  }

  100%{
    filter:drop-shadow(0 0 0 rgba(255,255,255,0));
  }
}

/* -----------------------------------
   Hero layout : 10,000ポイント + 期間
------------------------------------ */
.newCampaign .campaignHero{
  width:min(94%, var(--max-content));
  margin:40px auto 0;

  display:flex;
  flex-direction:column;

  align-items:center;
  justify-content:center;

  gap:24px;
}

.newCampaign .campaignHero .totalWrap{
  width:auto;
  margin:0;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:18px;
  animation:pointGlowWhite 3s ease-in-out infinite;
}

.newCampaign .totalLabel{
  display:flex;
  align-items:center;
  justify-content:center;
}

.newCampaign .totalLabel img{
  display:block;
}

.newCampaign .pointNumber{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:20px;
  flex-wrap:nowrap;
}

.newCampaign .pointNumber img{
  display:block;
}

.newCampaign .campaignHero .campaignPeriodBox{
  width:min(100%, 470px);
  background:rgba(255,255,255,.88);
  border-radius:20px;
  padding:20px 24px;
  box-shadow:0 8px 20px rgba(0,0,0,.08);
}

.newCampaign .campaignHero .campaignPeriodBox__title{
  margin:0 0 14px;
  text-align:center;
  color:#e6005c;
  font-size:18px;
  font-weight:900;
  line-height:1.4;
}

.newCampaign .campaignHero .campaignPeriodRow{
  display:grid;
  grid-template-columns:84px 1fr;
  gap:14px;
  align-items:center;
  padding:10px 0;
}

.newCampaign .campaignHero .campaignPeriodRow + .campaignPeriodRow{
  border-top:1px dashed #f2c8d3;
}

.newCampaign .campaignHero .periodLabel{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:36px;
  padding:6px 14px;
  border-radius:999px;
  background:linear-gradient(90deg,#ee86a7,#e6005c);
  color:#fff;
  font-size:15px;
  font-weight:700;
  line-height:1.2;
}

.newCampaign .campaignHero .periodDate{
  display:block;
  color:#333;
  font-size:16px;
  font-weight:700;
  line-height:1.7;
  word-break:keep-all;
  overflow-wrap:anywhere;
}

/* ボタンとの余白 */
.newCampaign .btnArea{
  text-align:center;
  margin-top:30px;
}

/* -----------------------------------
   5 features section
------------------------------------ */
#fiveFeatures{
  padding:28px 0 72px;
  background:url("../img/jq_spr_bg.jpg") repeat top center;
  background-size:100% auto;
}

.fiveFeaturesHead{
  width:94%;
  max-width:1063px;
  margin:0 auto;
  padding:0;
  text-align:center;
}

.fiveFeaturesHead img{
  display:block;
  width:100%;
  height:auto;
}

.featureBar{
  width:min(100%, var(--max-content));
  margin:0 auto;
  background:linear-gradient(90deg,#ee86a7,#e6005c);
  color:#fff;
  text-align:center;
  font-weight:900;
  font-size:26px;
  letter-spacing:.05em;
  padding:12px 20px;
}

.featureBar span{
  font-size:1.1em;
}

/* -----------------------------------
   Accordion
------------------------------------ */
.ff-accordion{
  width:94%;
  max-width:1063px;
  margin:0 auto;
  border-radius:0;
  box-shadow:0 8px 24px rgba(0,0,0,.08);
  overflow:hidden;
}

.ff-item + .ff-item{
  border-top:2px dotted #ff6b95;
}

.ff-toggle{
  width:100%;
  border:0;
  background:#fff;
  padding:26px 40px;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  text-align:left;
}

.ff-ico{
  width:140px;
  flex:0 0 140px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.ff-ico img{
  width:auto;
  max-width:112px;
  height:auto;
}

.ff-mark{
  width:44px;
  flex:0 0 44px;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
}

.ff-mark img{
  display:block;
  width:30px;
  height:auto;
}

.ff-mark .ff-minus{
  display:none;
}

.ff-toggle[aria-expanded="true"] .ff-plus{
  display:none;
}

.ff-toggle[aria-expanded="true"] .ff-minus{
  display:block;
}

.ff-panel{
  overflow:hidden;
  height:0;
  transition:height .28s ease;
  background:#fff;
}

.ff-panel[hidden]{
  display:block !important;
}

.ff-panel.is-open{
  background:#fff5f7;
  border-top:1px solid #f2d3db;
}

.ff-panelInner{
  display:flex;
  flex-direction:column;
  padding:32px 24px 32px;
}

.ff-title{
  flex:1 1 auto;
  color:#000;
  font-size:24px;
  font-weight:900;
  line-height:1.45;
  letter-spacing:.01em;
  text-align:center;
}

.ff-title em{
  color:var(--pink-strong);
  font-style:normal;
  font-weight:900;
}

/* -----------------------------------
   Feature content blocks
------------------------------------ */
.featureDetail{
  display:flex !important;
  justify-content:space-around;
  align-items:stretch;
  gap:24px;
}

.featureBox{
  flex:1 1 0;
  display:flex;
  flex-direction:column;
  justify-content:center;
  text-align:center;
  background:#fff;
  border:1px solid #ee86a7;
  border-radius:12px;
  padding:18px 14px;
}

.featureDetailImg{
  min-height:118px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:10px;
}

.featureDetailImg img{
  width:auto;
  max-width:100%;
  height:auto;
}

.featurePlain{
  flex:1 1 0;
  text-align:center;
}

.featurePlain img{
  display:block;
  width:90%;
  height:auto;
  margin:0 auto;
}

.txtFeature{
  margin-top:0;
  line-height:1.6;
  color:#FF0353;
  font-size:1.125rem;
  font-weight:700;
}

.nmFootnote,
.exchangeNote,
.feature5Footnote{
  font-size:.8rem;
  line-height:1.5;
}

.nmFootnote{
  margin-top:20px;
  font-size:14px;
  line-height:1.7;
  text-align:left;
}

#ff-panel-2 .featureDetail img{
  width:auto;
  max-width:120px;
}

/* -----------------------------------
   Feature 4
------------------------------------ */
.feature4Row{
  display:flex !important;
  justify-content:center !important;
  gap:20px;
}

.feature4Col{
  display:flex;
  flex-direction:column;
  align-items:center;
  width:auto;
}

.feature4Img{
  width:auto;
  height:220px;
  object-fit:contain;
}

.feature4Red{
  margin-top:10px;
  color:#FF0353;
  font-weight:900;
  font-size:14px;
  text-align:center;
}

.feature4Red--black{
  color:#333;
}

.feature4SpPair{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:14px;
}

.feature4SpImg{
  width:46%;
  height:auto;
}

/* -----------------------------------
   Feature 5
------------------------------------ */
.feature5Icons{
  display:flex !important;
  justify-content:center;
  gap:20px;
  max-width:1000px;
  margin:0 auto;
}

.feature5Icon{
  flex:1 1 0;
  max-width:300px;
  min-height:250px;
  padding:4em 4em;
  background:#fff;
  border:1px solid #D38AC1;
  border-radius:12px;
  color:#FF0353;
  font-weight:700;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
}

.feature5Icon img{
  width:auto;
  height:80px;
  margin:0 auto 1em;
}

.feature5Icon-txt{
  width:300px;
  font-size:1rem;
  line-height:1.55;
  padding:0;
  margin-top:10px;
}

.feature5Footnote{
  width:100%;
  margin:1em auto 0;
  color:#000;
  background:rgba(255,255,255,.85);
  padding:.9em 1em;
  border-radius:8px;
}

/* -----------------------------------
   Feature 3 notice
------------------------------------ */
.couponNotice{
  color:#ff0000;
  font-size:1.4rem;
  font-weight:900;
  text-align:center;
  padding:0 15px;
  margin-bottom:20px;
  line-height:1.6;
}

/* -----------------------------------
   3 steps
------------------------------------ */
#threeSteps{
  margin:4em auto 4em;
  background:#fff;
  border-radius:12px;
  padding:2rem;
  box-shadow:var(--shadow-soft);
}

.threeStepsHead{
  text-align:center;
  margin:0 0 1.25rem;
  line-height:1.8;
}

.threeStepsHead picture,
.threeStepsHead img{
  display:block;
  width:100%;
  height:auto;
}

.threeStepsHead > div{
  margin-top:.6rem;
  font-weight:900;
  font-size:1.6rem;
  color:#e60012;
  text-align:center;
}

.threeStepsHead .large{
  font-size:90px;
  font-weight:900;
  color:#e60012;
  display:inline-block;
  line-height:1;
  margin:0 8px;
}

.wrapThreeStep{
  display:flex;
  justify-content:space-evenly;
  gap:1.2rem;
}

.wrapThreeStep > div{
  flex:1 1 0;
  text-align:center;
}

.easySteps{
  margin-top:.6em;
  margin-bottom:1.5em;
  background:#fff;
  border-radius:8px;
}

/* -----------------------------------
   Buttons
------------------------------------ */
.btn_reg{
  display:flex;
  justify-content:center;
}

.btn_reg a{
  display:inline-block;
  width:min(100%, 560px);
  padding:0;
  border-radius:999px;
  transition:
    transform .2s ease,
    box-shadow .2s ease,
    opacity .2s ease;
  box-shadow:0 10px 24px rgba(230,0,92,.18);
}

.btn_reg a:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 30px rgba(230,0,92,.24);
  opacity:.96;
}

.btn_reg a:active{
  transform:translateY(0);
  box-shadow:0 6px 14px rgba(230,0,92,.18);
}

.btn_reg img{
  display:block;
  width:100%;
  max-width:560px;
  height:auto;
}

.btnArea .nmFootnote{
  margin-top:12px;
  font-size:13px;
  line-height:1.7;
  text-align:center;
}

/* -----------------------------------
   Responsive
------------------------------------ */
@media screen and (max-width:1023px){
  .newCampaign .benefitWrap{
    flex-wrap:wrap;
  }

  .newCampaign .campaignHero{
    gap:24px;
  }

  .newCampaign .campaignHero .campaignPeriodBox{
    width:min(100%, 420px);
  }

  .newCampaign .campaignHero .periodDate{
    font-size:15px;
  }
}

@media screen and (max-width:767px){
  .newCampaign{
    padding:24px 0 20px;
  }

  .newCampaign .benefitWrap{
    flex-direction:column !important;
    gap:12px;
  }

  .newCampaign .benefitBox img{
    width:100% !important;
    margin:0 auto;
  }

  .newCampaign .plusIcon img{
    width:44px;
    height:auto;
  }

  .newCampaign .campaignHero{
    margin-top:18px;
    flex-direction:column;
    gap:18px;
  }

  .newCampaign .campaignHero .totalWrap{
    flex-direction:column !important;
    align-items:center;
    gap:12px;
    margin-top:0;
  }

  .newCampaign .campaignHero .pointNumber{
    flex-direction:column;
    align-items:center;
    gap:10px;
  }

  .newCampaign .campaignHero .pointNumber img:first-child{
    width:80vw;
    max-width:none;
    transform:scale(1.05);
  }

  .newCampaign .campaignHero .pointNumber img:last-child{
    width:120px;
  }

  .newCampaign .campaignHero .campaignPeriodBox{
    width:100%;
    max-width:92%;
    padding:16px 14px;
    border-radius:16px;
  }

  .newCampaign .campaignHero .campaignPeriodBox__title{
    margin-bottom:10px;
    font-size:16px;
  }

  .newCampaign .campaignHero .campaignPeriodRow{
    grid-template-columns:1fr;
    gap:8px;
    text-align:center;
  }

  .newCampaign .campaignHero .periodLabel{
    width:72px;
    margin:0 auto;
    min-height:32px;
    font-size:13px;
  }

  .newCampaign .campaignHero .periodDate{
    font-size:14px;
    line-height:1.6;
  }

  .fiveFeaturesHead{
    width:min(94%, var(--max-content));
    margin-inline:auto;
  }

  .fiveFeaturesHead img{
    width:100%;
  }

  .featureBar{
    font-size:18px;
    padding:10px 16px;
    margin-bottom:0;
  }

  .ff-toggle{
    flex-direction:column;
    padding:18px 12px;
    gap:8px;
    text-align:center;
  }

  .ff-ico,
  .ff-mark{
    width:100%;
    flex:0 0 auto;
    justify-content:center;
  }

  .ff-mark{
    margin-top:4px;
  }

  .ff-mark img{
    width:26px;
  }

  .ff-title{
    font-size:18px;
    line-height:1.5;
    text-align:center;
  }

  .ff-title em{
    display:block;
    margin-top:4px;
    text-align:center;
    font-size:19px;
  }

  .ff-panelInner{
    padding:14px 14px 22px;
  }

  .featureDetail{
    flex-direction:column !important;
    align-items:stretch;
    gap:16px;
  }

  .featureBox{
    padding:14px 10px;
  }

  .featureDetailImg{
    min-height:auto;
    margin-bottom:6px;
  }

  .txtFeature{
    font-size:15px;
    line-height:1.5;
  }

  .feature4Row{
    display:none !important;
  }

  .feature4Sp{
    display:block !important;
  }

  .feature4SpPair{
    display:flex;
    justify-content:center;
    gap:10px;
  }

  .feature4SpImg{
    height:120px;
    width:auto;
  }

  .feature4Red{
    margin-top:10px;
    margin-bottom:16px;
    padding-bottom:12px;
    border-bottom:1px dashed #ff9bb5;
  }

  .exchangeNote--sp{
    display:block;
    margin-top:8px;
    font-size:12px;
    line-height:1.6;
    color:#000;
  }

  .feature5Icons{
    flex-direction:column !important;
    align-items:center;
    gap:15px;
  }

  .feature5Icon{
    width:100%;
    max-width:320px;
    min-height:auto;
    padding:24px 16px;
  }

  .feature5Icon img{
    height:64px;
    margin-bottom:10px;
  }

  .feature5Icon-txt{
    width:auto;
    max-width:100%;
    margin-top:8px;
    font-size:15px;
    line-height:1.6;
  }

  .feature5Footnote{
    font-size:12px;
    line-height:1.7;
    padding:12px;
  }

  .couponNotice{
    font-size:14px;
    line-height:1.7;
    padding:0 8px;
    margin-bottom:14px;
  }

  .featurePlain img{
    width:100%;
  }

  #threeSteps{
    padding:16px 12px;
    margin-bottom:2em;
  }

  .threeStepsHead > div{
    font-size:22px;
  }

  .threeStepsHead .large{
    font-size:52px;
    line-height:1;
  }

  .wrapThreeStep{
    flex-direction:column;
    align-items:center;
    gap:14px;
  }

  .wrapThreeStep > div{
    width:100%;
  }

  .wrapThreeStep > div > img,
  .easySteps img{
    display:block;
    width:100%;
    height:auto;
  }

  .btnArea{
    margin-top:28px;
  }

  .btn_reg a{
    width:min(92%, 560px);
  }

  .btn_reg img{
    width:100%;
    margin:0 auto;
  }

  .btnArea .nmFootnote{
    font-size:12px;
    line-height:1.7;
  }
}