@charset "UTF-8";
.make_list_buttons {
  display: grid;
  justify-content: space-between;
  gap: 7px;
  width: 320px;
  width: 100%;
  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の位置 */
  content: "";
  width: 45px;
  height: 45px;
  position: absolute;
  right: 0px;
  bottom: -10px;
  background-size: contain;
  z-index: 1;
}
@media (max-width: 600px) {
  .make_list_buttons.col1 label:before {
    right: -16px;
  }
}
.make_list_buttons.col1 p {
  align-items: center;
  justify-content: center;
  padding-bottom: 0;
  border: 1px solid #cccccc;
  border-radius: 4px;
}
.make_list_buttons.col2 {
  /* "grid_col": "col2" */
  grid-template-columns: 1fr 1fr;
}
.make_list_buttons.col2 label {
  min-height: 100px;
}
.make_list_buttons.col2 label:before {
  /* iconの位置 */
  height: 58px;
  width: 70px;
  top: 35%;
  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:before {
  content: "";
  display: block;
  position: absolute;
  transform: translate(-50%, -50%);
  background: url("") 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;
  font-size: 13px;
  text-align: center;
}
.make_list_buttons label.lg p {
  font-size: 17px;
}
@media (max-width: 375px) {
  .make_list_buttons label.lg p {
    font-size: 4vw;
  }
}
.make_list_buttons label input:checked + p {
  --color: #8ea5cc;
  background-color: var(--color);
  border-color: var(--color);
  color: #fff;
  top: -1px;
  border: 0;
}
.make_list_buttons label.ribbon_1::after {
  content: "";
  width: 100px;
  height: 32px;
  left: -20px;
  top: 2px;
  display: block;
  position: absolute;
  background: url(../../img/ribbon_1.svg) center center/contain no-repeat;
}
.make_list_buttons label.ribbon_2::after {
  content: "";
  width: 40px;
  height: 55px;
  left: 5px;
  top: -10px;
  display: block;
  position: absolute;
  background: url(../../img/ribbon_2.svg) center center/contain no-repeat;
}
.make_list_buttons .number-style {
  font-size: 24px;
}

section.sectionPop {
  /* "section_mode": "sectionPop" */
  display: none;
  margin: 0;
}
section.sectionPop .top_img {
  width: 100%;
  /*画像にグラデーション処理*/
  position: relative;
  overflow: hidden;
  text-shadow: 2px 2px 4px #ffffff, -2px -2px 4px #ffffff, 2px -2px 4px #ffffff, -2px 2px 4px #ffffff;
}
section.sectionPop .top_img::before {
  /*画像にグラデーション処理*/
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, #ffffff, transparent 50%, rgba(0, 0, 0, 0.1) 100%);
}
section.sectionPop .top_img img {
  width: 100%;
}
section.sectionPop .top_img .title {
  position: absolute;
  top: 45%;
  left: 5%;
  transform: translate(0%, -45%);
  text-align: left;
  color: #707070;
  font-weight: 400;
  font-size: 6.2vw;
  line-height: 8vw;
  letter-spacing: 0.4vw;
}
@media screen and (min-width: 601px) {
  section.sectionPop .top_img .title {
    font-size: 2rem;
    line-height: 1.2;
    letter-spacing: 4px;
  }
}
section.sectionPop .top_img .date {
  color: rgb(230, 146, 19);
  margin-right: 4px;
  font-size: 8.2vw;
}
@media screen and (min-width: 601px) {
  section.sectionPop .top_img .date {
    font-size: 3rem;
  }
}
section.sectionPop .wrapper {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
  max-width: 100%;
  height: 100vh;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 0;
}
section.sectionPop .content {
  max-width: 87vw;
  background: rgb(255, 255, 255);
  position: absolute;
  z-index: 1000;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  line-height: 1.6;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  gap: 10px;
  padding: 0 0 18px;
  height: max-content;
  width: 350px;
  overflow: hidden;
}
section.sectionPop .content .modalTitle {
  background: #92b2e9;
  margin: 0 auto;
  text-align: center;
  width: 100%;
  padding-top: 10px;
}
section.sectionPop .content .modalTitle img {
  width: 68%;
  height: auto;
  vertical-align: bottom;
}
section.sectionPop .content p.microcopy {
  background: rgba(237, 187, 103, 0.3);
  padding: 2px 10px;
  border-radius: 50px;
  color: rgb(230, 146, 19);
  font-size: 12px;
  font-feature-settings: "palt";
  font-weight: normal;
  line-height: 1.5em;
  letter-spacing: 0.4px;
  display: inline-block;
}
section.sectionPop .content h3.formHead {
  margin: 0;
  padding-top: 5px;
  font-size: 18px;
  font-weight: normal;
}
section.sectionPop .content h3.formHead::before {
  content: "";
}
section.sectionPop .content .make_list_buttons {
  width: 100%;
  gap: 16px;
  padding: 0 20px;
}
section.sectionPop .content .make_list_buttons label {
  border-radius: 4px;
  box-shadow: 2px 2px 6px -2px rgba(0, 0, 0, 0.5);
  width: 100%;
  color: #FFFFFF;
  white-space: nowrap;
  height: 40px;
}
section.sectionPop .content .make_list_buttons label:nth-child(1) {
  background: #c0506b;
  border-bottom: 3px solid #a33650;
  background: #E4912A;
  border-bottom: 3px solid #B95716;
}
section.sectionPop .content .make_list_buttons label:nth-child(2) {
  background: #D1B96F;
  border-bottom: 3px solid #b3922c;
  background: #49B8BF;
  border-bottom: 3px solid #1A868C;
}
section.sectionPop .content .make_list_buttons label p {
  font-size: 18px;
  letter-spacing: 0.01rem;
  align-items: center;
  padding: 0;
  border: none;
}
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 */