/*--------------------------------------------------
	変数
--------------------------------------------------*/
/*--------------------------------------------------
	全体・汎用
--------------------------------------------------*/
.pconly {
  display: block;
}

.sponly {
  display: none;
}

/*--------------------------------------------------
	共通css上書き
--------------------------------------------------*/
#contents_area .link_howto_register a {
  font-size: 18px;
}

#contents_area .frmBox {
  width: 100%;
}

#contents_area .radiobutton {
  font-size: 21px;
}

#contents_area .radiobutton input {
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
}

/*--------------------------------------------------
	ページ固有css
--------------------------------------------------*/
.sec_prize_inner {
  padding: 20px 0 40px;
}

.sec_prize_inner .prize_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 920px;
  margin: 45px auto 0;
}

.sec_prize_inner .prize_list li {
  position: relative;
  width: 300px;
}

.sec_prize_inner .prize_list li:not(:first-of-type) {
  width: 300px;
  margin-top: 0;
  margin-left: 10px;
}

.sec_prize_inner .prize_list li img.icon_prize_a {
  position: absolute;
  top: -25px;
  right: 0;
  left: 0;
  margin: auto;
  display: block;
  width: 94px;
}

.sec_prize_inner .prize_list li img.icon_prize_etc {
  position: absolute;
  top: -25px;
  right: 0;
  left: 0;
  margin: auto;
  display: block;
  width: 86px;
}

.sec_step {
  margin-top: 30px;
}

.sec_step_ttl {
  width: 100%;
  font-size: 30px;
}

.sec_step .step_list {
  width: 930px;
  margin: 30px auto 0;
}

.sec_step .step_listItem {
  border: 5px solid #FE010F;
  border-radius: 10px;
}

.sec_step .step_listItem:not(:first-of-type) {
  margin-top: 40px;
}

.sec_step .step_listItem_head {
  padding: 4px;
  background: #FE010F;
  color: #fff;
  font-size: 26px;
}

.sec_step .step_listItem_head .txt_required {
  position: relative;
  top: -3px;
}

.sec_step .step_listItem_head .txt_empha {
  font-size: 40px;
  line-height: 1;
  vertical-align: bottom;
}

.sec_step .step_listItem_con {
  padding: 40px 20px;
}

.sec_step .step_listItem_txt {
  font-size: 24px;
}

.sec_step .step_listItem_table {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 20px auto 0;
}

.sec_step .step_listItem_table img.table_step {
  width: 456px;
  margin: 0;
}

.sec_step .step_listItem_balloon {
  width: 240px;
  margin: 0;
  margin-left: 30px;
  padding: 1em 0.5em 0.5em;
  border: 3px solid #FE010F;
  background: #fff;
  color: #333;
  font-size: 16px;
  line-height: 1.5;
}

.sec_step .step_listItem_balloon::before {
  content: "";
  position: absolute;
  top: 0;
  right: auto;
  bottom: 0;
  left: -1em;
  margin: auto;
  width: 0;
  height: 0;
  border-top: 1em solid transparent;
  border-right: 1em solid #FE010F;
  border-bottom: 1em solid transparent;
  border-left: none;
}

.sec_step .step_listItem_balloon::after {
  content: "";
  position: absolute;
  top: 0;
  right: auto;
  bottom: 0;
  left: -0.8em;
  margin: auto;
  width: 0;
  height: 0;
  border-top: 1em solid transparent;
  border-right: 1em solid #fff;
  border-bottom: 1em solid transparent;
  border-left: none;
}

.sec_step .step_listItem_balloon .txt_empha {
  color: #FE010F;
  font-size: 24px;
}

.sec_step .step_listItem .btn_modal01 {
  margin-top: 20px;
  text-align: center;
}

.sec_step .step_listItem .txt_note {
  margin-top: 1em;
  text-align: center;
  font-size: 18px;
}

.sec_step .step_listItem .frmBox_head {
  width: 90%;
  margin: 0 auto 1em;
  font-size: 21px;
  font-weight: bold;
}

#campaignYoko .innerBox .txt_small {
  font-size: 15px;
}

/*--------------------------------------------------
	ポップアップ
--------------------------------------------------*/
.modal_overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  overflow: hidden;
  overflow-y: auto;
  /* scrollにはしないことでスクロールの必要がないときはスクロールバーを表示させない */
  z-index: 6000;
}

.modal_container {
  display: table;
  width: 100%;
  height: 100%;
}

.modal_inner {
  display: table-cell;
  padding: 70px 56px 70px 40px;
  /* モーダル外側の余白 */
  vertical-align: middle;
}

.modal_contents {
  position: relative;
  width: 100%;
  max-width: 970px;
  margin: 0 auto;
  padding: 70px 40px;
  /* モーダル内側の余白 */
  background-color: #fff;
}

/*--------------------------------------------------
	ポップアップ内容
--------------------------------------------------*/
.modal_close {
  display: block;
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  background: #666;
  border-radius: 50%;
  content: "";
  cursor: pointer;
  z-index: 10;
}

.modal_close:hover {
  opacity: 0.7;
}

.modal_close::before {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3px;
  height: 70%;
  background: #fff;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
  content: "";
}

.modal_close::after {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3px;
  height: 70%;
  background: #fff;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
  content: "";
}

.modal_ttl {
  padding: 0.25em 0;
  margin-bottom: 20px;
  font-size: 2.3rem;
  font-weight: bold;
}

.modal_ttl_label {
  position: relative;
  top: -2px;
  padding: 0.25em 1em;
  margin-right: 0.5em;
  background: #FE010F;
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  vertical-align: middle;
}

.modal_list_item {
  margin-bottom: 1em;
  font-size: 1.9rem;
  font-weight: bold;
  line-height: 1.5;
  text-indent: -1.5em;
  padding-left: 1.5em;
}

.modal_list_item .modal_txt_note01 {
  font-size: 1.7rem;
  font-weight: normal;
}

.modal_list_item .modal_txt_note02 {
  display: block;
  padding-left: 1em;
  text-indent: -1em;
  font-size: 1.7rem;
  font-weight: normal;
}

#contents_area .modal_mailmaga_regi_btn {
  position: relative;
  margin: 60px auto 0;
  width: 450px;
  height: 85px;
  border-radius: 10px;
  background: #c2001b;
  cursor: pointer;
}

#contents_area .modal_mailmaga_regi_btn:hover {
  opacity: 0.8;
}

#contents_area .modal_mailmaga_regi_btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  padding-right: 30px;
  font-size: 23px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
}

#contents_area .modal_mailmaga_regi_btn a::after {
  position: absolute;
  top: 50%;
  right: 30px;
  width: 16px;
  height: 16px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  content: "";
}
/*# sourceMappingURL=style_pc.css.map */