@charset "UTF-8";
.make_list_buttons {
  display: grid;
  justify-content: space-between;
  gap: 10px;
  max-width: 480px;
  margin-right: auto;
  margin-left: 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 {
  align-items: center;
  justify-content: center;
  padding-bottom: 0;
  border: 1px solid #555;
  border-radius: 4px;
  font-size: 16px;
}
.make_list_buttons.col2 {
  /* "grid_col": "col2" */
  grid-template-columns: 1fr 1fr;
}
.make_list_buttons.col2 label {
  height: 104px;
}
.make_list_buttons.col2 label.noIcon {
  font-size: 14px;
  min-height: 3.5rem;
  height: 3.5rem;
}
@media (max-height: 700px) {
  .make_list_buttons.col2 label.noIcon {
    min-height: 3rem;
    height: 3rem;
  }
}
.make_list_buttons.col2 label.noIcon p {
  align-items: center;
  padding-bottom: 0;
  font-size: inherit;
}
.make_list_buttons.col2 label.noIcon:last-child:nth-child(odd) {
  min-height: 3.5rem;
  height: 3.5rem;
}
.make_list_buttons.col2 label.noIcon:last-child:nth-child(odd) p {
  min-height: 3.5rem;
  height: 3.5rem;
}
.make_list_buttons.col2 label:before {
  /* iconの位置 */
  height: 50px;
  width: 100%;
  top: 40%;
  left: 50%;
}
.make_list_buttons.col2 label:last-child:nth-child(odd) {
  /* 最後の子要素が奇数の場合の設定 */
  grid-column: 1/3;
  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 {
  align-items: center;
  padding-bottom: 0;
}
.make_list_buttons.col2 p {
  align-items: end;
  justify-content: center;
  padding-bottom: 0.6em;
  border: 2px solid #555;
  border-radius: 4px;
}
.make_list_buttons.col2.step1 label:before {
  /* step1 icon 個別設定 */
}
.make_list_buttons label {
  position: relative;
}
.make_list_buttons label.withIcon:before {
  content: "";
  display: block;
  position: absolute;
  transform: translate(-50%, -50%);
  background: var(--icon_path) center/contain no-repeat;
}
.make_list_buttons label.noIcon:before {
  display: none;
}
.make_list_buttons label p {
  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 .wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 0;
}
section.sectionPop .content {
  max-width: 87vw;
  background-color: #fff;
  margin: auto;
  z-index: 100;
  line-height: 1.6;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0px;
  padding: 23px 21px 18px;
  height: -moz-max-content;
  height: max-content;
  width: 350px;
}
section.sectionPop .content .copy {
  padding: 2px 10px;
  border-radius: 50px;
  color: #E96E1F;
  font-size: 16px;
  font-feature-settings: "palt";
  font-weight: bold;
  line-height: 1.8em;
  letter-spacing: 0.4px;
  display: inline-block;
}
section.sectionPop .content h3.formHead {
  text-align: center;
  font-weight: bold;
  letter-spacing: 1px;
  color: #555;
  font-size: 1.125rem;
  margin: 0;
  margin-bottom: 20px;
  padding: 0;
}
section.sectionPop .content h3.formHead::before {
  content: "";
}
section.sectionPop .content .make_list_buttons {
  width: 100%;
  gap: 16px;
}
section.sectionPop .content .make_list_buttons label {
  border-radius: 4px;
  box-shadow: 2px 2px 6px -2px rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 95px;
  color: #FFFFFF;
  white-space: nowrap;
}
section.sectionPop .content .make_list_buttons label:nth-child(1) {
  background: #E96E1F;
}
section.sectionPop .content .make_list_buttons label:nth-child(2) {
  background: #204B9D;
}
section.sectionPop .content .make_list_buttons label p {
  align-items: center;
  padding: 0;
  border: none;
  font-size: 1.25rem;
  font-weight: bold;
}
section.sectionPop .content .make_list_buttons label input:checked + p {
  background-color: transparent;
  border-color: transparent;
  color: #fff;
  top: 0;
  border: 0;
}/*# sourceMappingURL=lists.css.map */