@charset "UTF-8";
/* Scss Document */
/* CSS Document */
/*------------------------------mixin bg------------------------------*/
/*------------------------------mixin flex------------------------------*/
html {
  scroll-behavior: smooth;
  font-size: 0.694444444vw;
  font-feature-settings: "palt";
}
@media only screen and (max-width: 768px) {
  html {
    font-size: 2.56vw;
  }
}

.pc-only {
  display: none;
}
@media only screen and (min-width: 769px) {
  .pc-only {
    display: block;
  }
}

.sp-only {
  display: block;
}
@media only screen and (min-width: 769px) {
  .sp-only {
    display: none;
  }
}

.note_wrap {
  padding-left: 1rem;
}
.note_wrap .note {
  font-size: 1rem;
  position: relative;
  color: #888;
  font-weight: 400;
}
.note_wrap .note::before {
  content: "※";
  position: absolute;
  left: 0;
  top: 0;
  transform: translateX(-100%);
}

.accordion {
  cursor: pointer;
  position: relative;
}
.accordion::before {
  content: "";
  background: url("../images/icon_down_1.svg") no-repeat center/contain;
  width: 4.427vw;
  height: 4.427vw;
  position: absolute;
  right: 4.167vw;
  top: 50%;
  transform: translate3d(0, -50%, 0);
  transition: 0.4s;
}
@media only screen and (min-width: 769px) {
  .accordion::before {
    width: 1.563vw;
    height: 1.563vw;
    right: 1.563vw;
  }
}
.accordion.show::before {
  transform: translate3d(0, -50%, 0) scale3d(-1, -1, -1);
}

/*------------------------------FV------------------------------*/
.campaign_fv {
  background: url(../images/newyear/sakura_top.webp) no-repeat, url(../images/newyear/sakura_middle.webp) no-repeat, url(../images/newyear/sakura_middle.webp) no-repeat, url(../images/newyear/sakura_bottom.webp) no-repeat, linear-gradient(180deg, #58CDEE 0%, #ABE0EB 100%);
  background-size: 25rem 12.1rem, 100% 15.2rem, 100% 15.2rem, 35rem 15.7rem, 100%;
  background-position: top -2.5rem left -3rem, top -4.5rem center, top 35.8rem center, bottom -3.5rem left 14rem, center;
}
@media only screen and (min-width: 769px) {
  .campaign_fv {
    background: url(../images/newyear/sakura_top.webp) no-repeat, url(../images/newyear/sakura_middle.webp) no-repeat, url(../images/newyear/sakura_middle.webp) no-repeat, url(../images/newyear/sakura_bottom.webp) no-repeat, linear-gradient(180deg, #58CDEE 0%, #ABE0EB 100%);
    background-size: 70rem 34rem, 100rem 39.1rem, 100rem 39.1rem, 90rem 40.4rem, 100%;
    background-position: top -2.5rem left -17rem, top -5.4rem right, top 20.8rem left -13.4rem, bottom -19.8rem right -14rem, center;
  }
}

#campaign_fv {
  padding: 4.2rem 0 7.5rem;
  margin-top: 4.5rem;
  position: relative;
  overflow: hidden;
}
@media only screen and (min-width: 769px) {
  #campaign_fv {
    padding: 5.7rem 0;
    margin-top: 7rem;
  }
}
#campaign_fv::before {
  content: "";
  width: 58rem;
  height: 31rem;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 11.5rem;
  transform: translateX(-50%);
  display: block;
  background: #fff;
}
@media only screen and (min-width: 769px) {
  #campaign_fv::before {
    width: 65.2rem;
    height: 36rem;
    top: 13rem;
  }
}
#campaign_fv::after {
  content: "";
  display: block;
  border: #FFCE7B solid 2px;
  width: 56.4rem;
  height: 30.2rem;
  position: absolute;
  left: 50%;
  top: 11.9rem;
  border-radius: 50%;
  transform: translateX(-50%);
}
@media only screen and (min-width: 769px) {
  #campaign_fv::after {
    width: 63.6rem;
    height: 35.2rem;
    top: 13.5rem;
  }
}
#campaign_fv h1 {
  position: relative;
  z-index: 3;
}
#campaign_fv h1 picture {
  display: block;
  width: 34rem;
  margin: 0 auto;
}
@media only screen and (min-width: 769px) {
  #campaign_fv h1 picture {
    width: 38rem;
  }
}
#campaign_fv .ribbon {
  color: #fff;
  font-weight: bold;
  font-size: 1.6rem;
  text-align: center;
  line-height: 1.2;
  position: relative;
  z-index: 2;
  margin-top: -1rem;
}
#campaign_fv .ribbon .ff_barlow {
  font-size: 2.5rem;
}
#campaign_fv .ribbon .yellow {
  color: #FFCE7B;
}
#campaign_fv .ribbon::before {
  content: "";
  background: url(../images/newyear/ribbon.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 32.6rem;
  height: 7rem;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
#campaign_fv .bottom_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  align-items: flex-end;
  gap: 1rem;
  margin-top: 1.5rem;
}
#campaign_fv .bottom_wrap .bubble {
  background: #FFDA9D;
  text-align: center;
  line-height: 1.2;
  font-weight: bold;
  padding: 1rem 0.5rem;
  border-radius: 0.5rem;
  position: relative;
  font-size: 1.3rem;
}
#campaign_fv .bottom_wrap .bubble::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 98%;
  margin-top: -0.9rem;
  border: 0.9rem solid transparent;
  border-left: 0.9rem solid #FFDA9D;
}
#campaign_fv .bottom_wrap .price_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  align-items: flex-end;
  gap: 0.7rem;
  color: #F61C93;
  font-weight: bold;
  position: relative;
  line-height: 1;
}
#campaign_fv .bottom_wrap .price_wrap .month, #campaign_fv .bottom_wrap .price_wrap .yen {
  font-size: 2.2rem;
}
#campaign_fv .bottom_wrap .price_wrap .month {
  writing-mode: vertical-rl;
}
#campaign_fv .bottom_wrap .price_wrap .big {
  font-size: 6rem;
  line-height: 1;
  transform: translateY(15%);
  font-weight: 700;
}
#campaign_fv .bottom_wrap .price_wrap .non-tax {
  position: absolute;
  font-size: 1rem;
  font-weight: normal;
  right: 1.9rem;
  top: 2.5rem;
}
#campaign_fv .cv-btn {
  position: relative;
  z-index: 5;
  margin: 3rem 4rem 0;
}
@media only screen and (min-width: 769px) {
  #campaign_fv .cv-btn {
    margin: 2rem auto 0;
  }
}
@media only screen and (min-width: 769px) {
  #campaign_fv .cv-btn a {
    width: 31rem;
    height: 7rem;
    font-size: 1.8rem;
    min-height: 7rem;
  }
}

/*------------------------------キャンペーン詳細------------------------------*/
#campaign_datail {
  font-weight: 400;
  background: url(../images/newyear/campaign_datail_back.webp) no-repeat top left/1000%;
  padding: 6rem 3rem;
  position: relative;
  overflow: hidden;
}
@media only screen and (min-width: 769px) {
  #campaign_datail {
    padding: 10rem 36rem 13.4rem;
    background: url(../images/newyear/campaign_datail_back.webp) no-repeat top left/300%;
  }
}
#campaign_datail h2 figure {
  width: 27.4rem;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
@media only screen and (min-width: 769px) {
  #campaign_datail h2 figure {
    width: 62%;
  }
}
#campaign_datail h2 figure::before {
  content: "";
  background: url(../images/newyear/campaign_section-title_flower.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 6.3rem;
  height: 6.1rem;
  position: absolute;
  left: -3rem;
  top: -3rem;
  transform: rotate(-17deg);
  z-index: -1;
}
@media only screen and (min-width: 769px) {
  #campaign_datail h2 figure::before {
    width: 9.6rem;
    height: 9.4rem;
    top: -3rem;
    left: -7.2rem;
  }
}
#campaign_datail .term {
  color: #fff;
  background: #F61C93;
  position: relative;
  font-size: 1.6rem;
  text-align: center;
  line-height: 3rem;
  height: 3rem;
  width: 33rem;
  margin: 0 auto;
  clip-path: polygon(0 0, 100% 0, calc(100% - 0.5em) 50%, 100% 100%, 0 100%, 0.5em 50%);
}
@media only screen and (min-width: 769px) {
  #campaign_datail .term {
    width: 42.8rem;
    height: 4.4rem;
    line-height: 4.4rem;
    font-size: 1.6rem;
    clip-path: polygon(0 0, 100% 0, calc(100% - 0.8em) 50%, 100% 100%, 0 100%, 0.8em 50%);
  }
}
#campaign_datail .term .ff_barlow {
  font-weight: 500;
}
@media only screen and (min-width: 769px) {
  #campaign_datail .term .ff_barlow {
    font-size: 2.4rem;
  }
}
#campaign_datail .term .big {
  font-size: 2.4rem;
}
@media only screen and (min-width: 769px) {
  #campaign_datail .term .big {
    font-size: 3.6rem;
  }
}
#campaign_datail .card {
  margin: 0 auto;
  margin-top: 4.5rem;
  background-image: url(../images/newyear/card_bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 33rem;
  height: 22.2rem;
  padding: 2.5rem 2.5rem 0;
  text-align: center;
  position: relative;
  box-shadow: 0 0.4rem 0.4rem rgba(0, 0, 0, 0.07);
  z-index: 2;
}
@supports (background-image: url(../images/newyear/card_bg.webp)) {
  #campaign_datail .card {
    background-image: url(../images/newyear/card_bg.webp);
  }
}
@media only screen and (min-width: 769px) {
  #campaign_datail .card {
    margin-top: 6.2rem;
    width: 61.6rem;
    height: 30.8rem;
    background-image: url(../images/newyear/card_bg_pc.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    padding: 4.3rem 5rem 0;
  }
  @supports (background-image: url(../images/newyear/card_bg_pc.webp)) {
    #campaign_datail .card {
      background-image: url(../images/newyear/card_bg_pc.webp);
    }
  }
}
#campaign_datail .card .bubble_wrap {
  position: absolute;
  left: 50%;
  top: -2rem;
  transform: translateX(-50%);
}
@media only screen and (min-width: 769px) {
  #campaign_datail .card .bubble_wrap {
    top: -2.2rem;
  }
}
#campaign_datail .card .bubble_wrap p {
  background: #FF7AB2;
  text-align: center;
  display: inline-block;
  color: #fff;
  font-weight: bold;
  font-size: 1.2rem;
  line-height: 1;
  padding: 1rem 2rem;
  position: relative;
}
@media only screen and (min-width: 769px) {
  #campaign_datail .card .bubble_wrap p {
    font-size: 1.6rem;
  }
}
#campaign_datail .card .bubble_wrap p::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -0.6rem;
  border: 0.6rem solid transparent;
  border-top: 0.6rem solid #FF7AB2;
}
#campaign_datail .card .top {
  font-weight: bold;
  font-size: 1.6rem;
}
@media only screen and (min-width: 769px) {
  #campaign_datail .card .top {
    font-size-adjust: 2.2rem;
  }
}
#campaign_datail .card .red {
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  align-items: flex-end;
  line-height: 1;
  font-size: 2rem;
  color: #F61C93;
  margin-top: -1rem;
}
@media only screen and (min-width: 769px) {
  #campaign_datail .card .red {
    font-size: 3.2rem;
  }
}
#campaign_datail .card .red .max {
  writing-mode: vertical-rl;
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: 0em;
}
@media only screen and (min-width: 769px) {
  #campaign_datail .card .red .max {
    writing-mode: unset;
    font-size: 3.2rem;
  }
}
#campaign_datail .card .red .ff_barlow {
  font-size: 5.2rem;
  transform: translateY(10%);
  font-weight: 700;
}
@media only screen and (min-width: 769px) {
  #campaign_datail .card .red .ff_barlow {
    font-size: 8.6rem;
  }
}
#campaign_datail .card .logo_wrap {
  background: #fff;
  padding: 0.5rem 1rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: space-between;
  margin-top: 1rem;
}
@media only screen and (min-width: 769px) {
  #campaign_datail .card .logo_wrap {
    width: 44.5rem;
    margin: 0 auto;
    margin-top: 2rem;
    padding: 1rem 4rem;
  }
}
#campaign_datail .card .logo_wrap figure {
  display: flex;
  align-items: center;
  justify-content: center;
}
#campaign_datail .card .logo_wrap figure:nth-child(1) {
  width: 4.4rem;
}
@media only screen and (min-width: 769px) {
  #campaign_datail .card .logo_wrap figure:nth-child(1) {
    width: 6.5rem;
  }
}
#campaign_datail .card .logo_wrap figure:nth-child(2) {
  width: 4rem;
}
@media only screen and (min-width: 769px) {
  #campaign_datail .card .logo_wrap figure:nth-child(2) {
    width: 5.9rem;
  }
}
#campaign_datail .card .logo_wrap figure:nth-child(3) {
  width: 2.8rem;
}
@media only screen and (min-width: 769px) {
  #campaign_datail .card .logo_wrap figure:nth-child(3) {
    width: 4.2rem;
  }
}
#campaign_datail .card .logo_wrap figure:nth-child(4) {
  width: 3.6rem;
}
@media only screen and (min-width: 769px) {
  #campaign_datail .card .logo_wrap figure:nth-child(4) {
    width: 5.3rem;
  }
}
#campaign_datail .card .logo_wrap figure:nth-child(5) {
  width: 6.3rem;
}
@media only screen and (min-width: 769px) {
  #campaign_datail .card .logo_wrap figure:nth-child(5) {
    width: 9.3rem;
  }
}
#campaign_datail .card .note_wrap {
  display: inline-block;
  margin-top: 1rem;
}
#campaign_datail .accordion_wrap {
  margin-top: 3rem;
  position: relative;
  z-index: 2;
}
#campaign_datail .accordion_wrap .accordion {
  text-align: center;
  background: #333;
  font-size: 1.4rem;
  font-weight: bold;
  height: 4rem;
  position: relative;
  color: #fff;
  line-height: 4rem;
  cursor: pointer;
}
#campaign_datail .accordion_wrap .box {
  display: none;
  background: #fff;
  padding: 2.5rem 2rem;
}
@media only screen and (min-width: 769px) {
  #campaign_datail .accordion_wrap .box {
    padding: 4rem 10rem;
  }
}
#campaign_datail .accordion_wrap .box h4 {
  text-align: center;
  color: #F61C93;
  font-size: 2rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  padding: 2.4rem 0 1.4rem;
}
@media only screen and (min-width: 769px) {
  #campaign_datail .accordion_wrap .box h4 {
    font-size: 2.4rem;
    padding: 3.1rem 0 1.5rem;
  }
}
#campaign_datail .accordion_wrap .box h4:not(:first-child) {
  margin-top: 2.5rem;
}
@media only screen and (min-width: 769px) {
  #campaign_datail .accordion_wrap .box h4:not(:first-child) {
    margin-top: 3rem;
  }
}
#campaign_datail .accordion_wrap .box h4::before {
  content: "";
  background: url(../images/newyear/campaign_detail_h4_sp.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 29rem;
  height: 6rem;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
@media only screen and (min-width: 769px) {
  #campaign_datail .accordion_wrap .box h4::before {
    background: url(../images/newyear/campaign_detail_h4_pc.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 52rem;
    height: 7.2rem;
  }
}
@media only screen and (min-width: 769px) {
  #campaign_datail .accordion_wrap .box .note_wrap {
    text-align: center;
    line-height: 1;
  }
  #campaign_datail .accordion_wrap .box .note_wrap .note {
    display: inline-block;
  }
}
#campaign_datail .accordion_wrap .box .present_list {
  margin-top: 1.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: space-between;
}
@media only screen and (min-width: 769px) {
  #campaign_datail .accordion_wrap .box .present_list {
    margin-top: 2.5rem;
    justify-content: center;
    gap: 2.8rem;
  }
}
#campaign_datail .accordion_wrap .box .present_list li {
  width: 9.2rem;
  height: 9.2rem;
  border-radius: 999px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #F61C93;
  border: 1px solid #FFCE7B;
  position: relative;
}
@media only screen and (min-width: 769px) {
  #campaign_datail .accordion_wrap .box .present_list li {
    width: 13.2rem;
    height: 13.2rem;
  }
}
#campaign_datail .accordion_wrap .box .present_list li:nth-child(2) {
  background: #AA005D;
}
#campaign_datail .accordion_wrap .box .present_list li:nth-child(3) {
  background: #74003F;
}
#campaign_datail .accordion_wrap .box .present_list li p {
  font-weight: bold;
  font-size: 1.4rem;
  color: #fff;
  line-height: 1;
}
@media only screen and (min-width: 769px) {
  #campaign_datail .accordion_wrap .box .present_list li p {
    font-size: 2rem;
  }
}
#campaign_datail .accordion_wrap .box .present_list li p .ff_barlow {
  font-size: 2.4rem;
}
@media only screen and (min-width: 769px) {
  #campaign_datail .accordion_wrap .box .present_list li p .ff_barlow {
    font-size: 3.4rem;
  }
}
#campaign_datail .accordion_wrap .box .present_list li::before {
  content: "";
  background: url(../images/newyear/badge_1st.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 3.5rem;
  height: 3.5rem;
  position: absolute;
  left: -0.6rem;
  top: -0.6rem;
}
@media only screen and (min-width: 769px) {
  #campaign_datail .accordion_wrap .box .present_list li::before {
    width: 5rem;
    height: 5rem;
    left: -0.8rem;
    top: -1rem;
  }
}
#campaign_datail .accordion_wrap .box .present_list li:nth-child(2)::before {
  background: url(../images/newyear/badge_2nd.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
#campaign_datail .accordion_wrap .box .present_list li:nth-child(3)::before {
  background: url(../images/newyear/badge_3rd.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
#campaign_datail .accordion_wrap .box .detail_term {
  margin-top: 1rem;
  text-align: center;
  font-size: 1.4rem;
  line-height: 1;
}
@media only screen and (min-width: 769px) {
  #campaign_datail .accordion_wrap .box .detail_term {
    margin-top: 1rem;
    font-size: 1.6rem;
  }
}
#campaign_datail .accordion_wrap .box .detail_term .extension {
  font-weight: 600;
  margin-bottom: 0.5em;
  display: inline-block;
}
#campaign_datail .accordion_wrap .box .detail_term .before_period {
  display: inline-block;
  position: relative;
  color: #999;
}
@media only screen and (min-width: 769px) {
  #campaign_datail .accordion_wrap .box .detail_term .before_period {
    margin-right: 0.5em;
  }
}
#campaign_datail .accordion_wrap .box .detail_term .before_period::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  transform: rotate(-5deg) translateY(-50%);
  top: 50%;
  left: 0;
  background: #ff0000;
}
#campaign_datail .accordion_wrap .box .detail_term .ff_barlow {
  font-weight: 500;
  font-size: 1.6rem;
}
@media only screen and (min-width: 769px) {
  #campaign_datail .accordion_wrap .box .detail_term .ff_barlow {
    font-size: 2.1rem;
  }
}
#campaign_datail .accordion_wrap .box .detail_term .big {
  font-size: 2.4rem;
}
@media only screen and (min-width: 769px) {
  #campaign_datail .accordion_wrap .box .detail_term .big {
    font-size: 3.2rem;
  }
}
#campaign_datail .accordion_wrap .box .how-to-entry {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4.2rem;
  margin-top: 1rem;
}
@media only screen and (min-width: 769px) {
  #campaign_datail .accordion_wrap .box .how-to-entry {
    gap: 5.2rem;
  }
}
#campaign_datail .accordion_wrap .box .how-to-entry li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
#campaign_datail .accordion_wrap .box .how-to-entry li figure {
  width: 10.6rem;
}
@media only screen and (min-width: 769px) {
  #campaign_datail .accordion_wrap .box .how-to-entry li figure {
    width: 12.3rem;
  }
}
#campaign_datail .accordion_wrap .box .how-to-entry li p {
  font-size: 1.4rem;
  text-align: center;
  font-weight: bold;
  line-height: 1.3;
}
#campaign_datail .accordion_wrap .box .how-to-entry li:first-child {
  position: relative;
}
#campaign_datail .accordion_wrap .box .how-to-entry li:first-child::before {
  content: "▶︎";
  font-size: 1.6rem;
  color: #F61C93;
  position: absolute;
  right: -2.2rem;
  top: 4.4rem;
}
@media only screen and (min-width: 769px) {
  #campaign_datail .accordion_wrap .box .how-to-entry li:first-child::before {
    right: -3rem;
  }
}
#campaign_datail .accordion_wrap .box .body_text {
  margin-top: 1.5rem;
  font-size: 1.4rem;
  line-height: 1.6;
}
@media only screen and (min-width: 769px) {
  #campaign_datail .accordion_wrap .box .body_text {
    text-align: center;
  }
}
#campaign_datail .accordion_wrap .box .body_wrap {
  margin-top: 1rem;
}
#campaign_datail .accordion_wrap .box .body_wrap .flex_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
@media only screen and (min-width: 769px) {
  #campaign_datail .accordion_wrap .box .body_wrap .flex_wrap {
    gap: 1.5rem;
  }
}
#campaign_datail .accordion_wrap .box .body_wrap .flex_wrap figure {
  width: 10.6rem;
}
@media only screen and (min-width: 769px) {
  #campaign_datail .accordion_wrap .box .body_wrap .flex_wrap figure {
    width: 12.3rem;
  }
}
#campaign_datail .accordion_wrap .box .body_wrap .flex_wrap .text_wrap {
  flex: 1;
}
@media only screen and (min-width: 769px) {
  #campaign_datail .accordion_wrap .box .body_wrap .flex_wrap .text_wrap {
    flex: inherit;
  }
}
#campaign_datail .accordion_wrap .box .body_wrap .flex_wrap .text_wrap .body_text {
  margin-top: 0;
  font-size: 1.4rem;
  line-height: 1.6;
}
@media only screen and (min-width: 769px) {
  #campaign_datail .accordion_wrap .box .body_wrap .flex_wrap .text_wrap .body_text {
    display: inline-block;
  }
}
#campaign_datail .accordion_wrap .box .body_wrap .flex_wrap .text_wrap .body_text .bold {
  white-space: nowrap;
}
#campaign_datail .accordion_wrap .box .body_wrap .receive_term {
  text-align: center;
  margin-top: 0.5rem;
  font-weight: bold;
  font-size: 1.4rem;
}
#campaign_datail .accordion_wrap .box .mt2 {
  margin-top: 1rem;
}
#campaign_datail .accordion_wrap .box .accordion_wrap {
  margin-top: 2rem;
}
#campaign_datail .accordion_wrap .box .accordion_wrap .accordion {
  font-size: 1.2rem;
}
#campaign_datail .accordion_wrap .box .accordion_wrap .box {
  padding: 1.5rem 0 0;
}
#campaign_datail .accordion_wrap .box .accordion_wrap .box .accordion_top {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
#campaign_datail .accordion_wrap .box .accordion_wrap .box .accordion_top figure {
  width: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
#campaign_datail .accordion_wrap .box .accordion_wrap .box .accordion_top p {
  display: inline-block;
  font-weight: bold;
  color: #F61C93;
  font-size: 1.4rem;
}
#campaign_datail .accordion_wrap .box .accordion_wrap .box .accordion_top.invalid {
  margin-top: 2rem;
}
#campaign_datail .accordion_wrap .box .accordion_wrap .box .accordion_top.invalid p {
  color: #888;
}
#campaign_datail .accordion_wrap .box .accordion_wrap .box .body_text {
  margin-top: 0;
  font-size: 1.2rem;
  line-height: 1.8;
}
@media only screen and (min-width: 769px) {
  #campaign_datail .accordion_wrap .box .accordion_wrap .box .body_text {
    text-align: left;
  }
}
#campaign_datail .accordion_wrap .box .accordion_wrap .box .body_text a {
  text-decoration: underline;
}
#campaign_datail .accordion_wrap .mt-2 {
  margin-top: 1rem;
}

#news_wrap {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 998;
  width: 100%;
  overflow: hidden;
  height: 2.5rem;
  background: #f5f5f5;
  line-height: 2.5rem;
}
#news_wrap .news_inner {
  display: flex;
  white-space: nowrap;
  animation: scroll 18s linear infinite;
}
@media only screen and (min-width: 769px) {
  #news_wrap .news_inner {
    animation: none;
    justify-content: center;
  }
}
#news_wrap .news_inner p {
  display: inline-block;
  margin: 0;
  padding-right: 1rem;
  font-size: 1rem;
}
#news_wrap .news_inner p .red {
  color: #CA3828;
}
@media only screen and (min-width: 769px) {
  #news_wrap .news_inner p.sp-only {
    display: none;
  }
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-200%);
  }
}
.header {
  background: #fff;
}/*# sourceMappingURL=campaign.css.map */