@charset "UTF-8";
:root {
  --green: #3A7524;
}

.make_list_buttons {
  display: grid;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          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;
  justify-items: center;
}
.make_list_buttons.col1 label {
  min-height: 70px;
  width: 220px;
}
.make_list_buttons.col1 label.noIcon {
  min-height: 55px;
}
.make_list_buttons.col1 label:before {
  /* iconの位置 */
  height: 45px;
  width: 45px;
  top: 50%;
  left: 40px;
}
.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: 3px solid var(--green);
  border-radius: 10px;
  -webkit-box-shadow: 0 2px 3px 0 rgba(141, 141, 141, 0.4);
          box-shadow: 0 2px 3px 0 rgba(141, 141, 141, 0.4);
}
.make_list_buttons.col1 input:checked + p {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.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;
  -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: 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 個別設定 */
}
.make_list_buttons.col3 {
  /* "grid_col": "col1" */
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  justify-items: center;
}
.make_list_buttons.col3 label {
  min-height: 50px;
  width: 100%;
}
.make_list_buttons.col3 label:before {
  /* iconの位置 */
  height: 45px;
  width: 45px;
  top: 50%;
  left: 40px;
}
.make_list_buttons.col3 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: 3px solid var(--green);
  border-radius: 10px;
  -webkit-box-shadow: 0 2px 3px 0 rgba(141, 141, 141, 0.4);
          box-shadow: 0 2px 3px 0 rgba(141, 141, 141, 0.4);
}
.make_list_buttons.col3 input:checked + p {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.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;
  font-size: 15px;
  text-align: center;
}
.make_list_buttons label input:checked + p {
  background-color: var(--green);
  border-color: var(--green);
  -webkit-filter: brightness(1.2);
          filter: brightness(1.2);
  color: #fff;
  top: -1px;
  border: 0;
}

section.sectionPop {
  /* "section_mode": "sectionPop" */
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
  margin: 0;
}
section.sectionPop .wrapper {
  width: 100%;
  height: 100vh;
  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;
  background-color: transparent;
  border-radius: 0;
}
section.sectionPop .content {
  width: 80%;
  min-width: 320px;
  height: 300px;
  background-color: #F8F8F8;
  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: 1px solid #555;
}
section.sectionPop .content h3.formHead {
  margin: 0;
}
section.sectionPop .content .make_list_buttons {
  width: 100%;
  gap: 10px;
}
section.sectionPop .content .make_list_buttons label {
  border: 1px solid #555;
  -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%;
  white-space: nowrap;
  min-height: 120px;
}
section.sectionPop .content .make_list_buttons label:nth-child(1) {
  background-color: var(--green);
  color: #FFFFFF;
}
section.sectionPop .content .make_list_buttons label:nth-child(2) {
  color: var(--green);
  background-color: #FFFFFF;
}
section.sectionPop .content .make_list_buttons label p {
  line-height: 1.5;
  font-size: 4vw;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
  border: none;
  border-radius: 0;
}
@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: inherit;
  color: inherit;
  -webkit-filter: brightness(0.5);
          filter: brightness(0.5);
}

section.sectionSpecialtybirthYear .wrapper {
  width: 90%;
  margin: 0 auto;
}
section.sectionSpecialtybirthYear .wrapper h3.formHead {
  -moz-text-align-last: left;
       text-align-last: left;
}
section.sectionSpecialtybirthYear .wrapper input#list_detail {
  background-color: #DAEAD4;
  border: none;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}
section.sectionSpecialtybirthYear .wrapper input#list_detail::-webkit-input-placeholder {
  color: #9D9E9C;
}
section.sectionSpecialtybirthYear .wrapper input#list_detail::-moz-placeholder {
  color: #9D9E9C;
}
section.sectionSpecialtybirthYear .wrapper input#list_detail:-ms-input-placeholder {
  color: #9D9E9C;
}
section.sectionSpecialtybirthYear .wrapper input#list_detail::-ms-input-placeholder {
  color: #9D9E9C;
}
section.sectionSpecialtybirthYear .wrapper input#list_detail::placeholder {
  color: #9D9E9C;
}
section.sectionSpecialtybirthYear .wrapper .list_detail_area {
  margin-top: 25px;
}
section.sectionSpecialtybirthYear .wrapper .list_detail_area .list_detail {
  display: none;
  position: fixed;
  z-index: 150;
  left: 0;
  top: 0;
  width: 100vw;
  max-width: 100vw;
  height: 100%;
  min-height: 100vh;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
section.sectionSpecialtybirthYear .wrapper .list_detail_area .list_detail .list_detail_section {
  background-color: #fefefe;
  margin: 40px auto;
  padding: 20px;
  border: 1px solid #888;
  width: 90%;
  max-width: 400px;
  position: relative;
  display: none;
}
section.sectionSpecialtybirthYear .wrapper .list_detail_area .list_detail .list_detail_section .close {
  color: #aaa;
  float: right;
  font-size: 28px;
  line-height: 35px;
  font-weight: bold;
  cursor: pointer;
  background-color: #DAF3F0;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: 10px;
  right: 20px;
}
section.sectionSpecialtybirthYear .wrapper .list_detail_area .list_detail .list_detail_section h4.list_detail_title {
  text-align: center;
  font-size: 18px;
  margin-bottom: 20px;
}
section.sectionSpecialtybirthYear .wrapper .list_detail_area .list_detail .list_detail_section .list_detail_buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 25px;
}
section.sectionSpecialtybirthYear .wrapper .list_detail_area .list_detail .list_detail_section .list_detail_buttons label.inputRadio {
  min-height: 50px;
}
section.sectionSpecialtybirthYear .wrapper .list_detail_area .list_detail .list_detail_section .list_detail_buttons label.inputRadio p {
  width: 100%;
  height: 100%;
  display: grid;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  border: 1px solid #aaa;
  border-radius: 8px;
  padding-left: 30px;
  font-size: 14px;
}
section.sectionSpecialtybirthYear .wrapper .list_detail_area .list_detail .list_detail_section .list_detail_buttons label.inputRadio p::before,
section.sectionSpecialtybirthYear .wrapper .list_detail_area .list_detail .list_detail_section .list_detail_buttons label.inputRadio p::after {
  content: "";
  display: block;
  position: absolute;
}
section.sectionSpecialtybirthYear .wrapper .list_detail_area .list_detail .list_detail_section .list_detail_buttons label.inputRadio p::before {
  background-color: #fff;
  border-radius: 3px;
  border: 1px solid #aaa;
  width: 20px;
  height: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
  left: 5px;
}
section.sectionSpecialtybirthYear .wrapper .list_detail_area .list_detail .list_detail_section .list_detail_buttons label.inputRadio p::after {
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  opacity: 0;
  height: 5px;
  width: 10px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  left: 10px;
}
section.sectionSpecialtybirthYear .wrapper .list_detail_area .list_detail .list_detail_section .list_detail_buttons label.inputRadio input:checked + p {
  background-color: #DAF3F0;
  border-color: #1CB4B4;
}
section.sectionSpecialtybirthYear .wrapper .list_detail_area .list_detail .list_detail_section .list_detail_buttons label.inputRadio input:checked + p::after {
  opacity: 1;
}
section.sectionSpecialtybirthYear .wrapper .list_detail_area .list_detail .list_detail_section .list_detail_buttons label.inputRadio input:checked + p::before {
  background-color: #1CB4B4;
  border-color: #1CB4B4;
}
section.sectionSpecialtybirthYear .wrapper .list_detail_area .list_detail_submit {
  width: 300px;
  height: 50px;
  border-radius: 8px;
  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;
  font-weight: bold;
  margin: 0 auto;
  background-color: #B7D6AA;
  color: #fff;
}
section.sectionSpecialtybirthYear .wrapper .list_detail_area .list_detail_submit.active {
  background-color: var(--green);
}

section.sectionNameAddress .wrapper {
  width: 90%;
  margin: 0 auto;
}

section.sectionTelEmail .wrapper {
  width: 100%;
}