@charset "UTF-8";
/* Basic Color List */
/* Basic FONT List */
/* $pc : pc;
$tablet : tablet;
$mobile : mobile; */
/* Basic Tool List */
.flex__box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.flex__box > * {
  flex-shrink: 1;
  flex-grow: 0;
}

@media screen and (min-width: 768px) {
  .sp__only {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .pc__only {
    display: none;
  }
}
html {
  color: #4d4d4d;
  background: #eaede8;
}

button, input[type=button] {
  display: inline-block;
  padding: 2rem 1rem;
  line-height: 1.1;
  color: white;
  background: #255d40;
  border: none;
  border-radius: 0.5rem;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  border: 2px solid transparent;
  box-sizing: border-box;
  font-family: "BIZ UDPGothic", serif;
  box-shadow: 0 3px 20px rgba(37, 93, 64, 0.2);
}
@media screen and (max-width: 767px) {
  button, input[type=button] {
    padding: 5.1282051282vw 2.5641025641vw;
  }
}
button:hover, input[type=button]:hover {
  background: #053826;
}
button:focus, input[type=button]:focus {
  background: #053826;
  outline: 0;
  border: 2px solid #8f6800;
}

input[type=radio] {
  position: relative;
  width: 1.8rem;
  height: 1.8rem;
  border: 1px solid #4d4d4d;
  border-radius: 50%;
  vertical-align: -2px;
}
input[type=radio]:checked:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #255d40;
  content: "";
}
input[type=radio] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

textarea {
  display: block;
  width: 100%;
  padding: 0.5rem 1rem;
  box-sizing: border-box;
  font-family: "BIZ UDPGothic", serif;
  box-shadow: none;
  border-radius: 5px;
  border: #a7a7a7 solid 1px;
}
@media screen and (max-width: 767px) {
  textarea {
    padding: 1.2820512821vw 2.5641025641vw;
  }
}
textarea[required] {
  background: #f5f5e5;
  border: #255d40 solid 2px;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=date],
input[type=number] {
  width: 100%;
  padding: 0.5rem 1rem;
  box-sizing: border-box;
  font-family: "BIZ UDPGothic", serif;
  box-shadow: none;
  border-radius: 5px;
  border: #255d40 solid 2px;
  margin-right: 0.2em;
}
@media screen and (max-width: 767px) {
  input[type=text],
  input[type=email],
  input[type=tel],
  input[type=date],
  input[type=number] {
    padding: 1.2820512821vw 2.5641025641vw;
  }
}
input[type=text][required],
input[type=email][required],
input[type=tel][required],
input[type=date][required],
input[type=number][required] {
  background: #f5f5e5;
  border: #255d40 solid 2px;
}
input[type=text][disabled],
input[type=email][disabled],
input[type=tel][disabled],
input[type=date][disabled],
input[type=number][disabled] {
  background: rgba(255, 255, 255, 0.9019607843);
  border: #a7a7a7 solid 1px;
}

input[type=number] {
  width: 15rem;
}

select {
  padding: 1rem 3.5rem 1rem 1rem;
  background: white;
  font-family: "BIZ UDPGothic", serif;
  box-shadow: none;
  border-radius: 5px;
  border: #a7a7a7 solid 1px;
  font-size: 1.6rem;
  line-height: 1.5;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none; /* 元の矢印を消す*/
  background-image: url("../img/common/icon_arrow_drop_down.svg");
  background-repeat: no-repeat;
  background-size: 1.6rem auto;
  background-position: right 1rem center;
  color: #4d4d4d;
}
select[required] {
  background-color: #faf8e2;
  border: #255d40 solid 2px;
}

/* HEADER */
#header {
  padding: 2.2rem 3rem;
  background: white;
  width: calc(100% - 20px);
  max-width: 1200px;
  box-sizing: border-box;
  box-shadow: hsla(149, 43%, 25%, 0.2) 0 0 1.5rem;
  border-radius: 10px;
  margin: 10px auto 0 auto;
}
@media screen and (max-width: 767px) {
  #header {
    width: 100%;
    padding: 1.2820512821vw;
    border-radius: 0px;
    top: 0;
    margin: 0 0 0 0;
  }
}
#header .content {
  align-items: center;
}
#header .content .site__logo {
  margin: 0 3rem 0 2rem;
}
@media screen and (max-width: 767px) {
  #header .content .site__logo {
    margin: 0;
  }
}
#header .content .site__logo a {
  display: flex;
  font-size: 3.5rem;
  color: #4d4d4d;
  text-decoration: none;
  font-weight: 600;
  font-family: "BIZ UDPMincho", serif;
  position: relative;
  padding: 0 0 0 7rem;
}
#header .content .site__logo a:focus {
  outline: auto;
}
@media screen and (max-width: 767px) {
  #header .content .site__logo a {
    font-size: 3.5897435897vw;
    padding: 0 0 0 10.2564102564vw;
  }
}
#header .content .site__logo .logo {
  width: 5.6rem;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  #header .content .site__logo .logo {
    width: 7.6923076923vw;
  }
}
#header .content .group__logo {
  flex-basis: 25.3rem;
  margin: 0 0 0 0;
}
@media screen and (max-width: 767px) {
  #header .content .group__logo {
    flex-basis: 34.6153846154vw;
    margin: 0 4.1025641026vw 0 auto;
  }
}

#main .content {
  width: calc(100% - 4rem);
  margin: 0 auto;
  max-width: 1000px;
}
@media screen and (max-width: 767px) {
  #main .content {
    width: calc(100% - 5.1282051282vw);
  }
}

#form__content {
  margin: 10rem auto 10rem auto !important;
}
@media screen and (max-width: 767px) {
  #form__content {
    /* margin: tools.vw(100px,390px) auto !important; */
    margin: 5rem auto 6rem auto !important;
  }
}
#form__content h2 {
  text-align: center;
  font-size: 3rem;
  margin: 0 0 4rem 0;
  font-family: "BIZ UDPMincho", serif;
}
@media screen and (max-width: 767px) {
  #form__content h2 {
    font-size: 6.1538461538vw;
  }
}
#form__content a {
  color: #2665cf;
  text-decoration: none;
}
#form__content a:after {
  content: "link";
  font-family: "Material Icons";
  font-size: 130%;
  vertical-align: text-top;
  display: inline-block;
  line-height: 1;
}
#form__content a:hover {
  text-decoration: underline;
}
#form__content [target=_blank]:after {
  content: "open_in_new";
  font-size: 120%;
}
#form__content .need {
  display: inline-block;
  margin: 0 0 0 1em;
  color: white;
  background: #cc0000;
  padding: 0.25em 0.5em;
  line-height: 1.1;
  font-size: 75%;
  border-radius: 4px;
}
#form__content .form__box {
  margin: 0 0 4rem 0;
  border-bottom: #ccc dashed 1px;
  padding: 0 0 2rem 0;
  font-size: 1.8rem;
  line-height: 1.77;
  border-top: none;
  border-left: none;
  border-right: none;
}
#form__content .form__box h3, #form__content .form__box legend {
  position: relative;
  padding: 0 0 0 3rem;
  font-size: 2.1rem;
  margin: 0 0 1em 0;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  #form__content .form__box h3, #form__content .form__box legend {
    font-size: 4.358974359vw;
  }
}
#form__content .form__box h3:before, #form__content .form__box legend:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2.3rem;
  height: 2rem;
  background: url(../img/common/icon_leaf_03.svg) center center/100% 100% no-repeat;
}
#form__content .form__box p + .input__box {
  margin-top: 1rem;
}
#form__content .form__box .input__box {
  padding: 2rem 3rem 3rem;
  border-radius: 1rem;
  background: white;
}
#form__content .form__box .input__box.hide {
  display: none;
}
@media screen and (max-width: 767px) {
  #form__content .form__box .input__box {
    padding: 2.5641025641vw 5.1282051282vw 5.1282051282vw;
  }
}
#form__content .form__box .input__box:has(ul) {
  padding-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  #form__content .form__box .input__box:has(ul) {
    padding-bottom: 2.5641025641vw;
  }
}
#form__content .form__box .input__box ul {
  list-style: none;
  margin: 0 0 0 0;
  padding: 0 0 0 0;
  justify-content: flex-start;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  #form__content .form__box .input__box ul {
    gap: 5.1282051282vw;
  }
}
#form__content .form__box .input__box ul li {
  align-self: center;
  margin-bottom: 0.5em;
}
#form__content .form__box .input__box ul li.fb__50per {
  flex-basis: calc((100% - 2rem) / 2);
}
@media screen and (max-width: 767px) {
  #form__content .form__box .input__box ul li.fb__50per {
    flex-basis: 100%;
  }
}
#form__content .form__box .input__box ul .fb__20 {
  flex-basis: 20rem;
}
@media screen and (max-width: 767px) {
  #form__content .form__box .input__box ul .fb__20 {
    flex-basis: calc(50% - 2.5641025641vw);
  }
}
#form__content .form__box .input__box ul .fb__40 {
  flex-basis: 40rem;
}
@media screen and (max-width: 767px) {
  #form__content .form__box .input__box ul .fb__40 {
    flex-basis: 100%;
  }
}
#form__content .form__box .input__box ul + h4 {
  margin: 1rem 0 1rem 0;
}
@media screen and (max-width: 767px) {
  #form__content .form__box .input__box ul + h4 {
    margin: 2.5641025641vw 0;
  }
}
#form__content .form__box .input__box .basic__label {
  font-size: 1.6rem;
  font-weight: bold;
  margin: 1rem 0 0.5rem 0;
  display: block;
  font-family: "BIZ UDPGothic", serif;
}
@media screen and (max-width: 767px) {
  #form__content .form__box .input__box .basic__label {
    font-size: 4.1025641026vw;
  }
}
#form__content .form__box .input__box h4 {
  font-size: 1.7rem;
  font-weight: bold;
  margin: 0 0 1rem 0;
}
@media screen and (max-width: 767px) {
  #form__content .form__box .input__box h4 {
    font-size: 4.358974359vw;
    margin: 0 0 2.5641025641vw 0;
  }
}
#form__content .form__box .input__box h4:before {
  content: "●";
  color: #a7a7a7;
  margin-right: 0.2em;
}
#form__content .form__box .input__box h5 {
  font-size: 1.6rem;
  font-weight: bold;
  margin: 1rem 0 1rem 0;
}
@media screen and (max-width: 767px) {
  #form__content .form__box .input__box h5 {
    font-size: 4.1025641026vw;
    margin: 2.5641025641vw 0 2.5641025641vw 0;
  }
}
#form__content .form__box .input__box > label {
  font-size: 1.6rem;
  font-weight: bold;
  margin: 1rem 0 0.5rem 0;
  display: block;
}
@media screen and (max-width: 767px) {
  #form__content .form__box .input__box > label {
    font-size: 4.1025641026vw;
    margin: 2.5641025641vw 0 2.5641025641vw 0;
  }
}
#form__content .form__box .input__box p {
  font-size: 1.6rem;
  font-family: "BIZ UDPGothic", serif;
}
@media screen and (max-width: 767px) {
  #form__content .form__box .input__box p {
    font-size: 4.1025641026vw;
  }
}
#form__content .form__box .input__box + .input__box {
  margin: 2rem 0 0 0;
}
@media screen and (max-width: 767px) {
  #form__content .form__box .input__box + .input__box {
    margin: 5.1282051282vw 0 0 0;
  }
}
#form__content .form__box .input__box .input__sample.active {
  padding: 2rem;
  background: #f1f1f1;
  margin: 0 0 0.5rem 0;
}
@media screen and (max-width: 767px) {
  #form__content .form__box .input__box .input__sample.active {
    padding: 5.1282051282vw;
  }
}
#form__content .form__box .input__box .input__sample.active p {
  font-size: 1.6rem;
  color: #4d4d4d;
  font-family: "BIZ UDPGothic", serif;
}
@media screen and (max-width: 767px) {
  #form__content .form__box .input__box .input__sample.active p {
    font-size: 4.1025641026vw;
  }
}
#form__content .form__box .input__box .agree__content {
  padding: 2rem;
  margin: 0 auto 2rem auto;
  border-radius: 5px;
  border: 3px solid #b9b96c;
}
@media screen and (max-width: 767px) {
  #form__content .form__box .input__box .agree__content {
    padding: 5.1282051282vw;
    margin: 0 auto 5.1282051282vw auto;
  }
}
#form__content .form__box .input__box .agree__content p {
  font-size: 1.6rem;
  margin: 0 0 2rem 0;
}
@media screen and (max-width: 767px) {
  #form__content .form__box .input__box .agree__content p {
    font-size: 4.1025641026vw;
    margin: 0 0 5.1282051282vw 0;
  }
}
#form__content .form__box .input__box .agree__content ul li {
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  #form__content .form__box .input__box .agree__content ul li {
    font-size: 4.1025641026vw;
  }
}
#form__content .form__box .note__box {
  margin: 1rem 0 0 0;
}
@media screen and (max-width: 767px) {
  #form__content .form__box .note__box {
    margin: 2.5641025641vw 0 0 0;
  }
}
#form__content .form__box .note__box p {
  font-size: 1.6rem;
  color: #999999;
  font-family: "BIZ UDPGothic", serif;
}
@media screen and (max-width: 767px) {
  #form__content .form__box .note__box p {
    font-size: 3.5897435897vw;
  }
}
#form__content .form__box .note__box + .input__box {
  margin: 2rem 0 0 0;
}
@media screen and (max-width: 767px) {
  #form__content .form__box .note__box + .input__box {
    margin: 5.1282051282vw 0 0 0;
  }
}
#form__content .form__box + .form__box {
  margin: 4rem 0 4rem 0;
}
@media screen and (max-width: 767px) {
  #form__content .form__box + .form__box {
    margin: 10.2564102564vw 0 10.2564102564vw 0;
  }
}
#form__content .form__box label {
  font-family: "BIZ UDPGothic", serif;
  font-weight: 600;
  font-size: 1.6rem;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  #form__content .form__box label {
    font-size: 4.1025641026vw;
  }
}
#form__content .form__box label.error {
  color: #cc0000;
  padding: 0 0 0 2rem;
  font-size: 1.6rem;
  font-family: "BIZ UDPGothic", serif;
  font-weight: 600;
  position: relative;
}
@media screen and (max-width: 767px) {
  #form__content .form__box label.error {
    padding: 0 0 0 5.1282051282vw;
    font-size: 4.1025641026vw;
  }
}
#form__content .form__box label.error:before {
  content: "dangerous";
  font-family: "Material Icons";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  font-weight: normal;
}
@media screen and (max-width: 767px) {
  #form__content .form__box label.error:before {
    font-size: 5.1282051282vw;
  }
}
#form__content .form__box#agree .input__box ul.flex__box {
  justify-content: center;
}
#form__content .form__box#agree .input__box .error__box {
  text-align: center;
}
#form__content .text__box {
  margin: 0 0 4rem 0;
  padding: 4rem;
  background: rgba(255, 255, 255, 0.9019607843);
}
@media screen and (max-width: 767px) {
  #form__content .text__box {
    margin: 0 0 10.2564102564vw 0;
    padding: 5.1282051282vw;
  }
}
#form__content .text__box p {
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  #form__content .text__box p {
    font-size: 4.1025641026vw;
  }
}
#form__content .text__box dl {
  margin: 1rem 0 0 0;
}
@media screen and (max-width: 767px) {
  #form__content .text__box dl {
    margin: 2.5641025641vw 0 0 0;
  }
}
#form__content .text__box dl dt {
  font-size: 1.8rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  #form__content .text__box dl dt {
    font-size: 4.6153846154vw;
  }
}
#form__content .text__box dl dd {
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  #form__content .text__box dl dd {
    font-size: 4.1025641026vw;
  }
}
#form__content input[type=checkbox] {
  position: relative;
  width: 20px;
  height: 20px;
  border: #255d40 solid 2px;
  vertical-align: -6px;
  border-radius: 3px;
  margin-right: 0.5em;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
#form__content input[type=checkbox]:checked:before {
  position: absolute;
  top: 0;
  left: 6px;
  transform: rotate(50deg);
  width: 7px;
  height: 14px;
  border-right: 3px solid #4d4d4d;
  border-bottom: 3px solid #4d4d4d;
  content: "";
}
#form__content .btn__box {
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  #form__content .btn__box {
    font-size: 4.6153846154vw;
  }
}
#form__content .btn__box ul {
  margin: 0;
  padding: 0;
  gap: 2rem;
  justify-content: center;
  list-style: none;
}
@media screen and (max-width: 767px) {
  #form__content .btn__box ul {
    gap: 5.641025641vw;
  }
}
#form__content .btn__box ul li {
  flex-basis: calc((100% - 2rem) / 2);
}
@media screen and (max-width: 767px) {
  #form__content .btn__box ul li {
    flex-basis: calc((100% - 5.1282051282vw) / 2);
  }
}
#form__content .btn__box ul li button, #form__content .btn__box ul li input {
  display: block;
  width: 100%;
}
#form__content .frame__box {
  height: 150px;
  overflow: auto;
  overflow-x: hidden;
}
#form__content #confirm__table h3 {
  font-size: 2rem;
  margin: 0 0 2rem 0;
}
@media screen and (max-width: 767px) {
  #form__content #confirm__table h3 {
    font-size: 5.1282051282vw;
    margin: 0 0 5.1282051282vw 0;
  }
}
#form__content #confirm__table p {
  font-size: 1.6rem;
  margin: 0 0 2rem 0;
}
@media screen and (max-width: 767px) {
  #form__content #confirm__table p {
    font-size: 4.1025641026vw;
    margin: 0 0 5.1282051282vw 0;
  }
}
#form__content #confirm__table table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0px;
  font-feature-settings: "palt";
  background: white;
  margin: 0 0 4rem 0;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  #form__content #confirm__table table {
    display: block;
    float: none;
    font-size: 4.1025641026vw;
    margin: 0 0 10.2564102564vw 0;
  }
}
@media screen and (max-width: 767px) {
  #form__content #confirm__table table tbody {
    display: block;
    float: none;
  }
}
@media screen and (max-width: 767px) {
  #form__content #confirm__table table tbody tr {
    display: block;
    float: none;
    width: 100%;
  }
}
#form__content #confirm__table table tbody tr th {
  width: 24rem;
  padding: 1.5rem 0.5rem;
  border: #a7a7a7 solid 1px;
}
@media screen and (max-width: 767px) {
  #form__content #confirm__table table tbody tr th {
    display: block;
    float: none;
    width: 100%;
    text-align: left;
    padding: 2.5641025641vw 3.8461538462vw;
    border: none;
    border-bottom: #a7a7a7 dashed 1px;
  }
}
#form__content #confirm__table table tbody tr td {
  padding: 1.5rem 1.5rem;
  border: #a7a7a7 solid 1px;
}
@media screen and (max-width: 767px) {
  #form__content #confirm__table table tbody tr td {
    display: block;
    float: none;
    width: 100%;
    padding: 2.5641025641vw 3.8461538462vw;
    border: none;
  }
}
@media screen and (max-width: 767px) {
  #form__content #confirm__table table tbody tr + tr {
    margin: 1rem 0 0 0;
    border-top: #a7a7a7 solid 1px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  #form__content #confirm__table table tbody tr + tr {
    margin: 2.5641025641vw 0 0 0;
  }
}
#form__content .thanks__message p {
  font-size: 1.6rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #form__content .thanks__message p {
    font-size: 4.1025641026vw;
  }
}
#form__content .thanks__message p a {
  display: block;
  margin: 4rem 0 0 0;
}
@media screen and (max-width: 767px) {
  #form__content .thanks__message p a {
    margin: 10.2564102564vw 0 0 0;
  }
}
#form__content .contact {
  background: white;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 3rem;
  padding: 3rem;
  font-weight: 600;
  color: #4d4d4d;
  margin: 6rem auto 0 auto;
}
@media screen and (max-width: 767px) {
  #form__content .contact {
    width: calc(100% - 40px);
    margin: 40px auto 0 auto;
    text-align: center;
  }
}
#form__content .contact span {
  display: inline-block;
  font-family: "BIZ UDPMincho", serif;
  font-size: 1.8rem;
  align-self: center;
}
#form__content .contact span.strong {
  font-size: 2.8rem;
}
#form__content .contact span.tel span {
  font-size: 2.8rem;
}
#form__content .contact span.tel span.icon {
  background: url(../img/common/icon_freecall.svg) center center/100% 100% no-repeat;
  width: 1.82em;
  height: 1.5em;
  vertical-align: text-bottom;
}
#form__content .contact span.tel span.number {
  margin: 0 0 0 0;
  font-size: 3.2rem;
}

#copyright {
  background: white;
  padding: 3rem 0;
}
@media screen and (max-width: 767px) {
  #copyright {
    padding: 7.6923076923vw 0 7.6923076923vw 0;
  }
}
#copyright .content p {
  font-size: 1.3rem;
  text-align: center;
  line-height: 1.2;
  display: block;
  font-family: "BIZ UDPMincho", serif;
  color: #4d4d4d;
}
@media screen and (max-width: 767px) {
  #copyright .content p {
    font-size: 2.5641025641vw;
  }
}/*# sourceMappingURL=form.css.map */