/* mainContents */
.lp-mainContents {
  font-family: YakuHanJPs, notoSansJP, Noto Sans JP, メイリオ, ヒラギノ角ゴ Pro W3, ＭＳ Ｐゴシック, sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  color: #333;
}

.lp-mainContents * {
  box-sizing: border-box;
}

@media screen and (max-width: 500px) {
  .lp-mainContents {
    font-size: 3.66vw;
  }
}

@media screen and (max-width: 767.98px) {
  .lp-mainContents {
    padding-top: 84px;
  }
}

@media screen and (min-width: 768px) {
  .lp-mainContents {
    margin: 0 auto;
    padding-top: 140px;
    width: 750px;
  }
}

/* common */
.cmn_inner {
  width: calc(100% * 690/750);
  margin: 0 auto;
}

@media only screen and (min-width: 768px),
print {
  .common_inner {
    padding: 0 30px;
  }
}

.cp_alert {
  color: #C70014;
  font-size: 1.3rem;
  font-weight: bold;
  margin: 25px auto 30px;
  padding: 15px;
  border: solid 1px #df6177;
  border-radius: 5px;
  background-color: #fcf0f2;
  box-sizing: border-box;
  max-width: 750px;
  width: 96vw;
  text-align: center;
}

.lp-text-link {
  text-decoration: underline;
  color: #333;
}

.lp-text-link:hover {
  text-decoration: none;
}

.kome {
  text-align: left;
  text-indent: -1em;
  padding-left: 1em;
}

.kome::before {
  content: "※";
}

@media screen and (max-width: 500px) {
  .lp-text-link {
    font-size: 3.66vw;
  }

  .kome {
    font-size: 3.66vw;
  }
}

/* google fonts */
.m-plus-rounded-1c-bold {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-style: normal;
}

/* btn */
.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 630px;
  height: 16.5vw;
  max-height: 120px;
  margin: 0 auto;
  padding: 3% 2% 2%;
  border-radius: 100px;
  background-color: #7A1B3E;
  box-shadow: 0 6px 0 #540019;
}

.btn_inner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.btn_text-box {
  text-align: center;
  line-height: 1.1;
}

.btn_text {
  font-size: 6vw;
  color: #fff;
}

.btn_text_02 {
  font-size: 4vw;
  color: #fff;
}

.btn_arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 6vw;
  height: 6vw;
  background: #fff;
  border-radius: 100px;
  transform: translateX(2.13vw);
}

.btn_arrow::after {
  display: flex;
  content: "";
  width: 6vw;
  height: 6vw;
  background: url(../img/icon_arrow_02.png) no-repeat;
  background-size: contain;
}

@media screen and (min-width: 751px) {
  .btn_text {
    font-size: 42px;
  }

  .btn_text_02 {
    font-size: 30px;
  }

  .btn_arrow {
    width: 45px;
    height: 45px;
    transform: translateX(30px);
  }

  .btn_arrow::after {
    width: 45px;
    height: 45px;
  }
}

/* entry_btn */
.entry_img_wrap .optconfm {
  display: none;
}

.entry {
  background-color: #CC0033;
}

.entry.not_checked {
  pointer-events: none !important;
  background-color: #CACACA;
}

.entry_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 630px;
  height: 16.5vw;
  max-height: 120px;
  margin: 0 auto;
  padding: 5%;
  border-radius: 100px;
}

.entry_btn_float {
  padding: 3% 5% 2%;
}

.entry_btn_inner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.entry_btn_text-box {
  width: 79%;
  text-align: center;
  line-height: 1.2;
}

.entry_btn_text {
  font-size: 5.6vw;
  color: #fff;
}

.entry_btn_text_02 {
  font-size: 4vw;
  color: #fff;
}

.entry_btn_arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 6vw;
  height: 6vw;
  background: #fff;
  border-radius: 100px;
  transform: translateX(4vw);
}

.entry_btn_arrow::after {
  display: flex;
  content: "";
  width: 6vw;
  height: 6vw;
  background: url(../img/icon_arrow_01.png) no-repeat;
  background-size: contain;
}

.entry.not_checked .entry_btn_arrow::after {
  background: url(../img/icon_arrow_01_off.png) no-repeat;
  background-size: contain;
}

@media screen and (min-width: 751px) {
  .entry_btn_text {
    font-size: 42px;
  }

  .entry_btn_text_02 {
    font-size: 30px;
  }

  .entry_btn_arrow {
    width: 45px;
    height: 45px;
    transform: translateX(30px);
  }

  .entry_btn_arrow::after {
    width: 45px;
    height: 45px;
  }
}

.hekomu {
  animation: hekomu 4s infinite;
  box-shadow: 0 6px 0 rgb(139, 7, 47, 1);
}

@keyframes hekomu {
  0% {
    box-shadow: 0 6px 0 rgb(139, 7, 47, 1);
    top: 0px;
  }

  5% {
    box-shadow: 0 0 0 rgb(139, 7, 47, 1);
    top: 3px;
  }

  10% {
    box-shadow: 0 6px 0 rgb(139, 7, 47, 1);
    top: 0px;
  }
}

.not_checked.hekomu {
  animation: none;
  box-shadow: 0 6px 0 #A6A6A6;
}

.entry_btn_note {
  display: flex;
  justify-content: center;
  margin: 5.2% auto 0;
}

.entry_btn_check_txt {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 3%;
  font-size: 3.2vw;
}

.checkmark_01 {
  width: 3.466666vw;
  height: 3.466666vw;
  max-width: 24px;
  max-height: 24px;
  margin-right: 10px;
  vertical-align: middle;
  display: inline-block;
  border: 2px solid black;
  box-sizing: border-box;
  border-radius: 5px;
}

.entry_img_wrap input:checked~label .checkmark_01 {
  background: url(../img/icon_checked_01.png);
  background-repeat: no-repeat;
  background-position: center;
}

@media screen and (max-width: 767px) {
  .checkmark_01 {
    padding: 10px;
  }
}

@media screen and (min-width: 751px) {
  .entry_btn_check_txt {
    font-size: 16px;
  }
}

/* top_entry */
.top_entry {
  padding: 4.67% 0;
  background: #fff;
}

/* nav */
.nav {
  padding: 6% 0 8%;
  background: #fff;
}

.nav_inner {
  padding: 4% 5%;
  border: solid 2px #a9a9a9;
  border-radius: 20px;
}

.nav_item {
  display: flex;
  align-items: center;
  font-size: 4vw;
  font-weight: bold;
}

.nav_item::before {
  content: "";
  position: relative;
  display: inline-block;
  width: 5vw;
  height: 5vw;
  margin-right: 1vw;
  background: url(../img/icon_arrow_03.png) no-repeat;
  background-size: contain;
}

.nav_link {
  padding: 2% 0;
  color: #333;
  text-decoration: underline;
}

.nav_link:hover {
  text-decoration: none;
}

@media screen and (min-width: 751px) {
  .nav_item {
    font-size: 30px;
  }

  .nav_item::before {
    width: 37px;
    height: 37px;
    margin-right: 15px;
  }
}

/* detail */
.detail {
  background-color: #F6A120;
  background-image: url(../img/bg_detail.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top 9% center;
}

.detail_ttl {
  background: #641737;
}

.detail_ttl-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2.5%;
  color: #fff;
  font-size: 6vw;
}

.detail_inner {
  padding: 6% 0 8%;
}

.detail_lead {
  padding: 5%;
  border-radius: 20px;
  background: #fff;
}

.detail_lead-ttl {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 6vw;
  color: #FF732A;
  font-weight: bold;
}

.detail_lead-ttl-deco {
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 0;
}

.detail_lead-text {
  margin: 4% 0;
  font-weight: bold;
  font-size: 3.66vw;
}

.detail_anchor {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 5% 0 5%;
  text-align: center;
}

.detail_anchor_text {
  font-weight: bold;
  font-size: 3.1vw;
  text-align: center;
}

.detail_anchor_arrow {
  margin-left: 1vw;
  width: 5%;
}

.detail_btn-wrap {
  margin-top: 9%;
}

.detail_btn-wrap+.detail_btn-wrap {
  margin: 6% 0 4%;
}

@media screen and (min-width: 751px) {
  .detail_ttl-inner {
    font-size: 45px;
  }

  .detail_lead {
    padding: 30px;
  }

  .detail_lead-ttl {
    font-size: 40px;
  }

  .detail_lead-ttl-deco::before {
    width: 45px;
    height: 45px;
  }

  .detail_lead-ttl-deco::after {
    width: 45px;
    height: 45px;
  }

  .detail_lead-text {
    margin: 25px 0;
    font-size: 20px;
  }

  .detail_anchor_text {
    font-size: 23px;
  }

  .detail_anchor_arrow {
    width: 28px;
  }
}

/* appdl */
.appdl {
  background: #fff;
}

.appdl_inner {
  padding: 10% 0;
}

.appdl-body {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.appdl-btn {
  display: block;
  margin-top: 3%;
  width: calc(100% * 498 / 690);
}

/* rule */
.rule {
  background: #fff;
}

.rule_inner {
  padding: 0 0 8% 0;
}

.rule_notesWrap img {
  width: 100%;
}

.rule_notesBtnWrap {
  position: relative;
}

.rule_notesBtn {
  display: table;
  width: 100%;
}

.rule_notesFlame {
  display: none;
  border-left: 3px solid #D00E31;
  border-right: 3px solid #D00E31;
  border-bottom: 3px solid #D00E31;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  border-radius: 0 0 3px 3px;
  -webkit-border-radius: 0 0 3px 3px;
}

.rule_lead {
  padding: 20px 20px 0;
  font-size: 16px;
}

.rule__ttl {
  padding: 30px 0 0px;
  margin-bottom: 15px;
  border-bottom: 2px solid #D00E31;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  color: #D00E31;
}

.rule_notesWrap {
  padding: 0 20px 20px 20px;
  margin: -1px 0 0;
  font-size: 16px;
}

.rule_notesList li:last-child {
  margin: 0;
}

.rule_notesSubttl {
  margin-top: 20px;
  text-decoration: underline;
  margin-bottom: 10px;
}

.notesIndent {
  text-indent: -1em;
  padding-left: 1em;
}

@media print,
screen and (max-width: 767px) {
  .rule_lead {
    font-size: 14px;
  }

  .rule_notesWrap {
    font-size: 14px;
  }

  .rule__ttl {
    font-size: 16px;
  }
}

@media only screen and (max-width:480px) {
  .rule_notesWrap {
    padding: 10px;
  }
}

/*--ie11にてサイズ調整200918--*/
@media all and (-ms-high-contrast: none) {

  *::-ms-backdrop,
  .rule_notesBtn img {
    /* IE11 にのみ */
    width: 100%;
  }

  /* IE10 以降*/
  .rule_notesBtn img {
    width: 100%;
  }
}

.camp_code {
  margin-top: 4%;
  text-align: right;
  font-size: 1.5rem;
}

.tm_inner {
  padding-bottom: 15%;
}

.tm_wrap {
  font-size: 1.3rem;
}

/*fixedBtnArea*/
.fixedBtnArea.on {
  display: none !important;
}

.fixedBtnArea {
  width: 100%;
  position: fixed;
  z-index: 100;
  bottom: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.9);
}

.fixedBtnArea_container {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
}

.fixedBtnArea_inner {
  margin: 0 auto;
  padding: 20px 0;
  width: calc(100% * 690 / 750);
}

.fixedBtnArea .entry_img_wrap {
  display: block;
}

.fixedBtnArea .btn a {
  width: 670px;
  height: 80px;
  margin: 0 auto;
  position: absolute;
  top: 47%;
  left: 50%;
  color: #fff;
  font-weight: bold;
  text-align: center;
  font-size: 34px;
  line-height: 74px;
  background: #cd0134;
  box-shadow: 0 10px #8c0023;
  border-radius: 20px;
  transform: translate(-50%, -50%);
  text-decoration: none;
}

.fixedBtnArea .btn.before a {
  background: #bbb;
  box-shadow: 0 10px #999;
  cursor: default;
}

.fixedBtnArea .btn.before a:hover {
  opacity: 1;
}

.fixedBtn_close {
  position: absolute;
  top: 12px;
  right: 10px;
  display: block;
  width: 2.666666vw;
  height: 2.666666vw;
  max-width: 15px;
  max-height: 15px;
  background: url(../img/close_btn.png) center/cover;
}

.fixedBtnArea_kome {
  font-size: 1.8rem;
  text-align: center;
  margin: 16px 0;
}


@media print,
screen and (max-width: 767px) {
  .fixedBtnArea_inner {
    padding: 5% 0;
  }

  .fixedBtn_close:before,
  .fixedBtn_close:after {
    height: 2px;
  }
}

@media print,
screen and (max-width: 750px) {
  .fixedBtnArea_kome {
    font-size: 3.66vw;
  }
}

/* dh-conponent 調整 */
@media screen and (max-width: 767.98px) {
  .backToTop {
    transform: translateY(-20px);
  }
}

@media screen and (max-width: 767px) {
  .backToTop__button {
    margin-bottom: 0;
  }
}

/* 汎用 */
.ml_1em {
  margin-left: 1em;
}

/* コンテンツ */

.comment_wrap {
  font-size: 24px;
}

.detail_ttl-inner::before {
  content: '';
  display: block;
  background-image: url(../img/cpn_ttl_left.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 9.87vw;
  height: 11.6vw;
  max-width: 74px;
  max-height: 87px;
  margin-right: 60px;
}

.detail_ttl-inner::after {
  content: '';
  display: block;
  background-image: url(../img/cpn_ttl_right.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 10.13vw;
  height: 12.53vw;
  max-width: 76px;
  max-height: 94px;
  margin-left: 58px;
}

.detail_lead-ttl-deco::before {
  content: '';
  display: block;
  background-image: url(../img/deco_txt_left.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 3.33vw;
  height: 6vw;
  max-width: 25px;
  max-height: 45px;
  margin-right: 16px;
  background-position: bottom;
}

.detail_lead-ttl-deco::after {
  content: '';
  display: block;
  background-image: url(../img/deco_txt_right.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 3.33vw;
  height: 6vw;
  max-width: 25px;
  max-height: 45px;
  margin-left: 16px;
  background-position: bottom;
}

.detail_inner .img_wrap._01 {
  width: 70.93vw;
  max-width: 532px;
  margin: 40px auto 0;
}

.entry_btn_note {
  font-size: 24px;
}

.detail {
  background-position: top 120px center;
}

.detail_lead {
  padding: 50px 30px;
}

.detail_lead-text {
  margin: 53px 0 21px;
  font-size: 30px;
  line-height: 1.8;
  text-align: center;
}

.detail_lead-text .detail_red {
  color: #CC0033;
  font-size: 36px;
}

.detail_lead-text .detail_small {
  font-size: 20px;
}

.detail_inner .img_wrap._02 {
  width: 98.53vw;
  max-width: 739px;
  margin: 0 auto;
  transform: translate(-7%, 0);
}

.detail_lead .text_wrap {
  margin-top: 42px;
}

.detail_lead .text_wrap .ttl {
  width: 100%;
  padding: 12px 40px;
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  background-image: url(../img/detail_lead_ttl_bg.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.detail_lead .detail_list_01 {
  margin-top: 30px;
}

.detail_lead .detail_list_01 li {
  text-indent: -1.2em;
  padding-left: 1.2em;
  font-size: 32px;
  font-weight: 700;
}

.detail_lead .detail_list_01 li .text_small {
  font-size: 28px;
}

.detail_lead .detail_list_02 {
  margin-top: 32px;
}

.detail_lead .detail_list_02 li {
  font-size: 24px;
}

.detail_lead .detail_list_02 li a {
  color: #333333;
  text-decoration: underline;
}

.detail_note {
  margin-top: 25px;
}

.btn_text {
  font-size: 40px;
}

.text_link {
  display: block;
  margin: 60px 0 30px;
  text-align: center;
}

.text_link a {
  color: #333333;
  font-size: 32px;
  font-weight: 700;
  text-decoration: underline;
}

.rule {
  padding-top: 75px;
}

.pc_only {
  display: block !important;
}

.detail .detail_note .kome {
  font-size: 18px;
}

@media screen and (max-width: 767px) {
  .comment_wrap {
    font-size: 3.2vw;
  }

  .detail {
    background-position: top 16vw center;
  }

  .detail_ttl-inner::before {
    margin-right: 8vw;
  }

  .detail_ttl-inner::after {
    margin-left: 7.73vw;
  }

  .detail_lead-ttl-deco::before {
    margin-right: 2.13vw;
  }

  .detail_lead-ttl-deco::after {
    margin-left: 2.13vw;
  }

  .detail_inner .img_wrap._01 {
    margin-top: 5.33vw auto 0;
  }

  .entry_btn_note {
    font-size: 3.2vw;
  }

  .detail_lead {
    padding: 6.67vw 4vw;
  }

  .detail_lead-text {
    margin: 7.07vw 0 2.8vw;
  }

  .detail_lead-text {
    font-size: 4vw;
  }

  .detail_lead-text .detail_red {
    font-size: 4.8vw;
  }

  .detail_lead-text .detail_small {
    font-size: 2.67vw;
  }

  .detail_lead .text_wrap {
    margin-top: 5.6vw;
  }

  .detail_lead .text_wrap .ttl {
    padding: 1.6vw 5.33vw;
    font-size: 5.33vw;
  }

  .detail_lead .detail_list_01 {
    margin-top: 4vw;
  }

  .detail_lead .detail_list_01 li {
    font-size: 3.9vw;
  }

  .detail_lead .detail_list_01 li .text_small {
    font-size: 3vw;
  }

  .detail_lead .detail_list_02 {
    margin-top: 4.27vw;
  }

  .detail_lead .detail_list_02 li {
    font-size: 3.2vw;
  }

  .detail_note {
    margin-top: 3.33vw;
  }

  .btn_text {
    font-size: 5.33vw;
  }

  .text_link {
    margin: 8vw 0 4vw;
  }

  .text_link a {
    font-size: 4.27vw;
  }

  .rule {
    padding-top: 10vw;
  }

  .pc_only {
    display: none !important;
  }

  .detail .detail_note .kome {
    font-size: 3.125vw;
  }
}

/* キャンペーン終了 */
.cp_alert {
  color: #C70014;
  font-size: 1.3rem;
  font-weight: bold;
  margin: 25px auto 30px;
  padding: 15px;
  border: solid 1px #df6177;
  border-radius: 5px;
  background-color: #fcf0f2;
  box-sizing: border-box;
  max-width: 750px;
  width: 96vw;
  text-align: center;
}

@media screen and (min-width: 751px) {
  .cp_alert {
      font-size: 16px;
  }
}