@charset "UTF-8";
body {
  color: #333333;
}

img {
  width: 100%;
  height: auto;
}

.inner {
  margin: 0 auto;
  max-width: 540px;
}

.indent {
  text-indent: -1em;
  padding-left: 1em;
}

.link {
  color: #0072BF;
  text-decoration: underline;
}
.link:hover {
  text-decoration: none;
}

.kv {
  width: 100%;
  background-color: #F53900;
}
.kv_inner {
  margin: 0 auto;
  width: 100%;
  max-width: 760px;
}

.fv_inner {
  margin: 0 auto 40px;
  max-width: 720px;
  display: flex;
  flex-direction: column;
}
.fv_term {
  position: relative;
  display: inline-block;
  margin: 16px auto 0;
  border: #F53900 1px solid;
  border-radius: 4px;
  padding: 8px;
  color: #F53900;
  line-height: 1.4;
}
.fv_term::after {
  content: "要エントリー";
  background-color: #F53900;
  border-radius: 2px;
  font-size: 12px;
  color: white;
  padding: 2px 4px;
  position: absolute;
  top: 4px;
  right: 8px;
}
.fv_term_box + .fv_term_box {
  margin-top: 16px;
}
.fv_term_head {
  font-size: 14px;
  font-weight: bold;
}
.fv_term_term {
  font-size: 11px;
}
.fv_term_term span {
  font-size: 15px;
  font-weight: bold;
}
.fv_note {
  margin-top: 16px;
  padding: 16px 16px;
  border-top: 1px dashed #BFBFBF;
  color: #676767;
}
.fv_note_link {
  margin-top: 16px;
  text-align: center;
}
.fv_note_link a {
  cursor: pointer;
}

.step {
  padding: 40px 16px;
  background-color: #FFEBDA;
}
.step h2 {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  color: #F53900;
}
.step_img {
  margin-top: 24px;
}
.step_box {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 24px;
  padding: 24px;
  background-color: white;
  border-radius: 12px;
}
.step_box_inner {
  margin: 0 auto;
  max-width: 320px;
}
.step_box_num {
  margin: 0 auto;
  width: 64px;
}
.step_box_head {
  margin-top: 24px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
}
.step_box_head span {
  color: #F53900;
}
.step_box_img {
  margin-top: 24px;
}
.step_box_term {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin: 16px auto 0;
  border-radius: 12px;
  padding: 12px;
  text-align: center;
  line-height: 1.4;
}
.step_box_term-head {
  font-size: 16px;
  font-weight: bold;
}
.step_box_term-term {
  margin-top: 4px;
  display: block;
  font-size: 11px;
  text-align: left;
}
.step_box_term-term span {
  font-size: 15px;
  font-weight: bold;
}
.step_box_term.step2 {
  background-color: #D9F8D9;
}
.step_box_term.step2 .step_box_term-head {
  display: flex;
  color: #009500;
}
.step_box_term.step2 .step_box_term-head::before {
  content: "";
  background-image: url("../img/icon_wakaba.svg");
  background-repeat: no-repeat;
  display: inline-block;
  width: 18px;
  height: 24px;
  margin-right: 8px;
}
.step_box_term.step3 {
  background-color: #FFF2F9;
}
.step_box_term.step3 .step_box_term-head {
  display: flex;
  color: #ff008c;
}
.step_box_term.step3 .step_box_term-head::before {
  content: "";
  background-image: url("../img/icon_check.svg");
  background-repeat: no-repeat;
  display: inline-block;
  width: 22px;
  height: 22px;
  margin-right: 8px;
}
.step_box_accordion {
  position: relative;
  margin-top: 24px;
  padding: 16px;
  border: 4px solid #F53900;
  border-radius: 8px;
}
.step_box_accordion::before {
  content: "";
  pointer-events: none;
  background-color: white;
  display: block;
  position: absolute;
  width: 12px;
  height: 2px;
  top: 27px;
  right: 22px;
}
.step_box_accordion::after {
  content: "";
  pointer-events: none;
  background-color: white;
  display: block;
  position: absolute;
  width: 12px;
  height: 2px;
  top: 27px;
  right: 22px;
  transform: rotate(90deg);
  transition: 0.3s;
}
.step_box_accordion[open]::after {
  content: "";
  pointer-events: none;
  background-color: white;
  display: block;
  position: absolute;
  width: 12px;
  height: 2px;
  top: 27px;
  right: 22px;
  transform: rotate(0deg);
  transition: 0.3s;
}
.step_box_accordion-head {
  display: flex;
  font-size: 16px;
  font-weight: bold;
  list-style: none;
}
.step_box_accordion-head span {
  color: #F53900;
}
.step_box_accordion-head::before {
  content: "";
  background-image: url("../img/icon_p.svg");
  background-repeat: no-repeat;
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: 8px;
}
.step_box_accordion-head::after {
  content: "";
  display: inline-block;
  background-color: #ff008c;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin-left: auto;
}
.step_box_accordion-content {
  padding: 0 8px;
}
.step_box_accordion-content p {
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 600;
}
.step_box_accordion-content:first-of-type {
  margin-top: 24px;
}
.step_box_accordion-content:not(:last-of-type)::after {
  content: "";
  background-image: url("../img/icon_arrow.svg");
  background-repeat: no-repeat;
  width: 50px;
  height: 20px;
  display: block;
  margin: 24px auto;
}
.step_box_note {
  margin-top: 24px;
  color: #676767;
}
.step_box_note p {
  margin-top: 8px;
}
.step_cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #F53900;
  font-weight: bold;
}
.step_cta p {
  text-align: center;
  font-size: 16px;
}
.step_cta a {
  margin-top: 8px;
  max-width: 248px;
  font-size: 14px !important;
  padding: 8px 24px;
}

.mission {
  padding: 40px 16px;
}
.mission_box {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 16px;
  padding: 24px 16px 40px;
  background-color: #FFEBDA;
  text-align: center;
}
.mission_box_inner {
  margin: 0 auto;
  max-width: 320px;
}
.mission_box h2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 26px;
  font-weight: 800;
  color: #F53900;
  line-height: 1.4;
}
.mission_box h2::before {
  content: "";
  background-image: url("../img/icon_p.svg");
  background-size: contain;
  background-repeat: no-repeat;
  width: 64px;
  height: 64px;
  display: block;
}
.mission_box h2::after {
  content: "";
  background-image: url("../img/icon_dots.svg");
  width: 136px;
  height: 8px;
  display: block;
  margin-top: 12px;
}
.mission_box p {
  margin: 24px 0;
  font-size: 16px;
}
.mission_box p span {
  color: #F53900;
  font-weight: bold;
}
.mission_note {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.mission_note a {
  margin: 24px auto;
  padding: 10px 24px;
  font-size: 16px;
  max-width: 280px;
}
.mission_note p {
  color: #676767;
}

.terms__inner {
  margin: 0 auto;
  padding: 40px 16px;
  max-width: 540px;
}
.terms__close {
  margin-bottom: 32px;
}
.terms__head {
  margin-bottom: 16px;
  font-size: 26px;
  font-weight: bold;
  text-align: center;
}
.terms__title {
  border: solid 1px #dddddd;
  border-bottom: none;
  padding: 16px;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.4;
  background-color: #e9e9e9;
}
.terms__detail {
  background-color: white;
  border: solid 1px #dddddd;
  line-height: 1.6;
}
.terms__detail-head {
  background-color: #F7F8FB;
  border-bottom: solid 1px #dddddd;
  padding: 16px;
  font-size: 16px;
  font-weight: bold;
}
.terms__detail-desc {
  padding: 16px;
  font-size: 14px;
}
.terms__detail-desc:not(:last-of-type) {
  border-bottom: solid 1px #dddddd;
}
.terms__detail-subhead {
  margin-bottom: 8px;
  padding-bottom: 8px;
  font-weight: bold;
  border-bottom: 1px solid #dddddd;
}
.terms__detail-subhead:not(:first-of-type) {
  margin-top: 16px;
}
.terms__detail-note span {
  font-weight: bold;
}
* + .terms__detail-note {
  margin-top: 12px;
}

/* 追従エントリーボタン */
.floating {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 51;
}
.floating_overlay {
  background: rgba(0, 0, 0, 0.5);
}
.floating_close {
  display: block;
  position: absolute;
  right: 0;
  margin-left: auto;
  padding: 8px;
  padding-right: 16px;
  color: white;
  font-size: 20px;
}
.floating_inner {
  width: 500px;
  margin: 0 auto;
  padding: 16px 0 8px;
}
.floating_text {
  color: white;
  text-align: center;
}
@media screen and (max-width: 767.9px) {
  .floating_inner {
    width: 100%;
    padding: 8px 16px;
  }
  .floating_close {
    padding: 0 4px 4px;
  }
}
.floating .InfoText {
  filter: brightness(2000) !important;
}
.floating .CampaignButton {
  margin: 0 !important;
}

.js-floating.js-close {
  display: none;
}

.main-container {
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
}

.lp-wrap {
  color: #333333;
  padding-bottom: 180px;
  font-family: "Rakuten Sans JP2", "Noto Sans JP", sans-serif !important;
}
@media screen and (max-width: 767.9px) {
  .lp-wrap {
    padding-bottom: 120px;
  }
}

.to-top-btn {
  position: static !important;
  display: block !important;
  margin-bottom: 16px;
  margin-left: auto;
  margin-right: 16px;
}
/* note */
.note {
  margin-top: 72px;
}
.note_inner {
  margin: 0 auto;
  max-width: 600px;
  padding: 0 4rem;
  font-size: 1.6rem;
  color: #000033;
}
.note_inner_link {
  margin: 16px 0 0;
  text-align: center;
}

/* 同時開催中のキャンペーンボタン部分 */
.other_campaign {
  max-width: 600px;
  margin: 72px auto;
  padding: 0 24px;
}
.other_campaign_btn {
  display: block;
  font-size: 15px;
  text-align: center;
  color: #3B3BA3;
  border: 2px solid #3B3BA3;
  padding: 12px 24px;
  border-radius: 100vh;
  position: relative;
}
.other_campaign_btn::after {
  content: "";
  width: 10px;
  height: 10px;
  border-top: solid 2px #3B3BA3;
  border-right: solid 2px #3B3BA3;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 16px;
  margin: auto;
  transform: rotate(45deg);
}
@media screen and (max-width: 767.9px) {
  .other_campaign_btn {
    font-size: 15px;
    padding: 9px 0;
  }
}

/* popask */
.popask {
  margin-top: 54px;
}
.popask #rexSurveyEmbedded:empty {
  margin-top: -54px;
}

.c-navy {
  color: #232361 !important;
}

.c-magenta {
  color: #ff008c !important;
}

.c-crimsonRed {
  color: #bf0000 !important;
}

.c-red {
  color: #FF383C !important;
}

.ta-c {
  text-align: center !important;
}

.ta-l {
  text-align: left !important;
}

.fw-b {
  font-weight: bold !important;
}

.fw-n {
  font-weight: normal !important;
}

.indent {
  padding-left: 1em;
  text-indent: -1em;
}

.fs-10px {
  font-size: 10px !important;
}

.fs-11px {
  font-size: 11px !important;
}

.fs-12px {
  font-size: 12px !important;
}

.fs-13px {
  font-size: 13px !important;
}

.fs-14px {
  font-size: 14px !important;
}

.fs-15px {
  font-size: 15px !important;
}

.mt-0px {
  margin-top: 0px !important;
}

.mt-8px {
  margin-top: 8px !important;
}

.mt-16px {
  margin-top: 16px !important;
}

.mt-24px {
  margin-top: 24px !important;
}

.mt-32px {
  margin-top: 32px !important;
}

.mt-40px {
  margin-top: 40px !important;
}

.btn--whiteMain, .btn--magenta {
  max-width: 480px;
  width: 100%;
  display: inline-block;
  padding: 16px 24px;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  border-radius: 100px;
  transition: 0.3s;
}
@media screen and (max-width: 767.9px) {
  .btn--whiteMain, .btn--magenta {
    font-size: 18px;
  }
}
.btn--whiteMain:hover, .btn--magenta:hover {
  transition: 0.3s;
}
.close-cp .btn--whiteMain, .close-cp .btn--magenta {
  display: none;
}

.btn--magenta {
  color: white !important;
  background-color: #ff008c;
}
.btn--magenta:hover {
  background-color: #cc0070;
}
.btn--whiteMain {
  color: #F53900 !important;
  border: 2px solid #F53900;
  background-color: white;
}

/* キャンペーン終了関係 */
.close-text {
  display: none;
  color: #ff008c;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
}
@media screen and (max-width: 767.9px) {
  .close-text {
    font-size: 20px;
  }
}

.close-cp .cta-contents {
  display: none !important;
}
.close-cp .close-text {
  display: block !important;
}
.close-cp .to-top-btn {
  bottom: 2.4rem;
}
@media screen and (max-width: 767.9px) {
  .close-cp .to-top-btn {
    bottom: 7rem;
  }
}

/* エントリーボタン */
#rex-ceb-01 .RexButton-message,
#rex-ceb-01 .InfoText-message,
#rex-ceb-02 .RexButton-message,
#rex-ceb-02 .InfoText-message {
  font-family: "Rakuten Sans JP2", "Noto Sans JP", sans-serif !important;
}
#rex-ceb-01 .RexButton,
#rex-ceb-02 .RexButton {
  padding: 16px 24px;
}
#rex-ceb-01 .RexButton-message,
#rex-ceb-02 .RexButton-message {
  font-size: 20px;
  font-weight: bold;
}

.Permission_checkbox__2N5q8:checked + .Permission_icon__uXZyD.Permission_pink__iP8j3 {
  background-color: #ff008c !important;
  border-color: #ff008c !important;
}

.CampaignEntryButton_campaignButton__n6hK5 .CampaignEntryButton_rexButton__VH0Gh.CampaignEntryButton_pink__l1dkv:not(.CampaignEntryButton_disabled__sUJ\+L):active, .CampaignEntryButton_campaignButton__n6hK5 .CampaignEntryButton_rexButton__VH0Gh.CampaignEntryButton_pink__l1dkv:not(.CampaignEntryButton_disabled__sUJ\+L):focus, .CampaignEntryButton_campaignButton__n6hK5 .CampaignEntryButton_rexButton__VH0Gh.CampaignEntryButton_pink__l1dkv:not(.CampaignEntryButton_disabled__sUJ\+L):hover {
  background-color: #cc0070 !important;
  border-color: #cc0070 !important;
}

.CampaignEntryButton_campaignButton__n6hK5 .CampaignEntryButton_rexButton__VH0Gh.CampaignEntryButton_pink__l1dkv {
  background-color: #ff008c !important;
  border-color: #ff008c !important;
}

.Permission_checkbox__2N5q8:checked + .Permission_icon__uXZyD.Permission_pink__iP8j3 {
  background-color: #ff008c !important;
  border-color: #ff008c !important;
}

.CampaignEntryButton_campaignButton__n6hK5 .CampaignEntryButton_rexButton__VH0Gh.CampaignEntryButton_pink__l1dkv {
  background-color: #ff008c !important;
  border-color: #ff008c !important;
}

.CampaignEntryButton_campaignButton__n6hK5 .CampaignEntryButton_rexButton__VH0Gh:not(.CampaignEntryButton_in_process__jBkv\+, .CampaignEntryButton_loading__lYu0i, .CampaignEntryButton_success__GLKNB).CampaignEntryButton_disabled__sUJ\+L {
  background-color: #dfdfdf !important;
  border-color: #dfdfdf !important;
}