@charset "UTF-8";
.make_list_buttons {
  display: grid;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 7px;
  width: 320px;
  margin: 0 auto;
}
.make_list_buttons.col1 {
  /* "grid_col": "col1" */
  grid-template-columns: 1fr;
  gap: 10px;
}
.make_list_buttons.col1 label {
  min-height: 70px;
}
.make_list_buttons.col1 label:before {
  /* iconの位置 */
  height: 50px;
  width: 50px;
  top: 50%;
  left: 90%;
}
.make_list_buttons.col1 p {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 0;
  border: 1px solid #555;
  border-radius: 4px;
}
.make_list_buttons.col2 {
  /* "grid_col": "col2" */
  grid-template-columns: 1fr 1fr;
}
.make_list_buttons.col2 label {
  min-height: 120px;
}
.make_list_buttons.col2 label:before {
  /* iconの位置 */
  height: 70px;
  width: 70px;
  top: 35%;
  left: 50%;
}
.make_list_buttons.col2 label:last-child:nth-child(odd) {
  /* 最後の子要素が奇数の場合の設定 */
  grid-column: 1/3;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 90px;
}
.make_list_buttons.col2 label:last-child:nth-child(odd):before {
  height: 50px;
  width: 50px;
  top: 50%;
  left: 20%;
}
.make_list_buttons.col2 label:last-child:nth-child(odd) p {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 0;
}
.make_list_buttons.col2 p {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 0.6em;
  border: 2px solid #555;
  border-radius: 4px;
}
.make_list_buttons.col2.step1 label:before {
  /* step1 icon 個別設定 */
  height: 80px;
  width: 100px;
}
.make_list_buttons label {
  position: relative;
}
.make_list_buttons label:before {
  content: "";
  display: block;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: url("") center/contain no-repeat;
}
.make_list_buttons label.noIcon:before {
  display: none;
}
.make_list_buttons label p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  width: 100%;
  line-height: 1.5;
  font-size: 13px;
  text-align: center;
}
.make_list_buttons label input:checked + p {
  background-color: #ff7d7d;
  border-color: #ff7d7d;
  color: #fff;
  top: -1px;
  border: 0;
}

section.sectionPop {
  /* "section_mode": "sectionPop" */
  display: none;
  margin: 0;
}
section.sectionPop .top_img {
  width: 100%;
  /*画像にグラデーション処理*/
  position: relative;
  overflow: hidden;
}
section.sectionPop .top_img::before {
  /*画像にグラデーション処理*/
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(#ffffff), color-stop(50%, transparent), to(rgba(0, 0, 0, 0.1)));
  background: linear-gradient(0deg, #ffffff, transparent 50%, rgba(0, 0, 0, 0.1) 100%);
}
section.sectionPop .top_img img {
  width: 100%;
}
section.sectionPop .wrapper {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99;
  background-color: rgba(155, 155, 155, 0.8);
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100vh;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 0;
}
section.sectionPop .content {
  width: 80%;
  min-width: 320px;
  height: 29vh;
  min-height: 240px;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: auto;
  padding: 5%;
  gap: 21.3px;
  border-radius: 4px;
}
section.sectionPop .content h3.formHead {
  margin: 0;
  font-size: 18px;
}
@media (min-width: 601px) {
  section.sectionPop .content h3.formHead {
    font-size: 20px;
  }
}
section.sectionPop .content h3.formHead::before {
  content: "";
}
section.sectionPop .content .make_list_buttons {
  width: 100%;
  gap: 10px;
}
section.sectionPop .content .make_list_buttons label {
  border-radius: 4px;
  -webkit-box-shadow: 2px 2px 6px -2px rgba(0, 0, 0, 0.5);
          box-shadow: 2px 2px 6px -2px rgba(0, 0, 0, 0.5);
  width: 100%;
  color: #FFFFFF;
  white-space: nowrap;
}
section.sectionPop .content .make_list_buttons label:nth-child(1) {
  background: rgba(255, 76, 12, 0.7);
  border-bottom: 3px solid #e54114;
}
section.sectionPop .content .make_list_buttons label:nth-child(2) {
  background: rgba(60, 179, 113, 0.9);
  border-bottom: 3px solid #19864a;
}
section.sectionPop .content .make_list_buttons label p {
  font-size: 4vw;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
  border: none;
}
@media screen and (max-width: 400px) {
  section.sectionPop .content .make_list_buttons label p {
    font-size: 16px;
  }
}
@media screen and (min-width: 601px) {
  section.sectionPop .content .make_list_buttons label p {
    font-size: 24px;
  }
}
section.sectionPop .content .make_list_buttons label input:checked + p {
  background-color: transparent;
  border-color: transparent;
  color: #fff;
  top: 0;
  border: 0;
}

#sec3 label.error {
  display: none !important;
}

.make_list_buttons.step1 label:nth-child(1):before {
  background-image: url(/images/high_class/lp02/lists/ico01_1.png); 
} 
.make_list_buttons.step1 label:nth-child(2):before {
  background-image: url(/images/high_class/lp02/lists/ico01_2.png); 
} 
.make_list_buttons.step1 label:nth-child(3):before {
  background-image: url(/images/high_class/lp02/lists/ico01_3.png); 
} 
.make_list_buttons.step1 label:nth-child(4):before {
  background-image: url(/images/high_class/lp02/lists/ico01_4.png); 
} 
.make_list_buttons.step1 label:nth-child(5):before {
  background-image: url(/images/high_class/lp02/lists/ico01_5.png); 
} 
.make_list_buttons.step1 label:nth-child(6):before {
  background-image: url(/images/high_class/lp02/lists/ico01_6.png); 
} 
.make_list_buttons.step1 label:nth-child(7):before {
  background-image: url(/images/high_class/lp02/lists/ico01_7.png); 
} 
.make_list_buttons.step1 label:nth-child(8):before {
  background-image: url(/images/high_class/lp02/lists/ico01_8.png); 
} 

/* STEP2：アイコン削除 */
/* .make_list_buttons.step2_1 label:nth-child(1):before {
  background-image: url(/images/high_class/lp02/lists/ico02_1.png);
} 
.make_list_buttons.step2_1 label:nth-child(2):before {
  background-image: url(/images/high_class/lp02/lists/ico02_2.png);
} 
.make_list_buttons.step2_1 label:nth-child(3):before {
  background-image: url(/images/high_class/lp02/lists/ico02_3.png);
} 
.make_list_buttons.step2_1 label:nth-child(4):before {
  background-image: url(/images/high_class/lp02/lists/ico02_4.png);
}
.make_list_buttons.step2_2 label:nth-child(1):before {
  background-image: url(/images/high_class/lp02/lists/ico03_1.png); 
} 
.make_list_buttons.step2_2 label:nth-child(2):before {
  background-image: url(/images/high_class/lp02/lists/ico03_2.png); 
} 
.make_list_buttons.step2_2 label:nth-child(3):before {
  background-image: url(/images/high_class/lp02/lists/ico03_3.png); 
} 
.make_list_buttons.step2_2 label:nth-child(4):before {
  background-image: url(/images/high_class/lp02/lists/ico03_4.png); 
} 
.make_list_buttons.step2_2 label:nth-child(5):before {
  background-image: url(/images/high_class/lp02/lists/ico03_5.png); 
}  */

.make_list_buttons_step2 {
  display: grid;
  gap: 7px;
}
.make_list_buttons_step2.col2 {
  grid-template-columns: 1fr 1fr;
}
.make_list_buttons_step2.col2 label {
  min-height: 60px;
}
.make_list_buttons_step2.col2 label:last-child:nth-child(odd) {
  /* 最後の子要素が奇数の場合の設定 */
  grid-column: 1/3;
}
.make_list_buttons_step2.col2 p {
  justify-content: center;
  padding-bottom: 0em;
  border: 2px solid #555;
  border-radius: 12px;
  align-items: center;
  font-size: 16px;
}
.make_list_buttons_step2 label p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  width: 100%;
  align-items: center;
  font-size: 13px;
  text-align: center;
}
.make_list_buttons_step2 label input:checked + p {
  background-color: #ff7d7d;
  border-color: #ff7d7d;
  color: #fff;
  top: -1px;
  border: 0;
}

/* LP改修施策④STEP0：バナークリエイティブ実装 */
section.sectionPop .top_img::before {
    display: none;
}

.questionnaire {
    color: #238FE8;
    font-size: clamp(14px, 4.6vw, 20px);
    text-align: center;
    font-weight: bold;
    line-height: 1.4;
    margin-top: 3vh !important;

}
section.sectionPop .content {
  height: 40vh;
}
/* 画面幅が380px以上のときに適用 */
@media (min-width: 380px) {
    .questionnaire {
      font-size: clamp(14px, 4.3vw, 20px);
    }
}
@media (min-height: 701px) {
  section.sectionPop .content {
    height: 35vh;
  }
}
/* LP改修施策④STEP0：バナークリエイティブ実装 */