.c-modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
  display: none;
  width: 100%;
  width: 100vw;
  height: 100%;
  height: 100vh;
  padding: 20px 10px 10px;
}
.c-modal.is-modal-open {
  display: block !important;
}
.c-modal__bg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  height: 100dvh;
  background: rgba(0, 0, 0, 0.7);
}
.c-modal__inner {
  position: relative;
  top: 50%;
  z-index: 2;
  width: calc(85% - 10px);
  max-width: 810px;
  max-height: calc(100dvh - 100px);
  margin: 0 auto;
  line-height: 1.416;
  text-align: left;
  background: #fff;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.is-modal-open .c-modal__inner {
  -webkit-animation: modal 0.3s ease both;
          animation: modal 0.3s ease both;
}
.c-modal__scroll-area {
  max-height: calc(100dvh - 100px);
  padding: 3em clamp(1em, 5vw, 2.5em);
  overflow: auto;
  -ms-scroll-chaining: none;
      overscroll-behavior: contain;
}
.c-modal__btn-close {
  position: absolute;
  top: 0;
  right: -5px;
  width: 40px;
  height: 40px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  background-color: transparent;
  border: none;
  outline: none;
  -webkit-transform: translateY(-120%);
          transform: translateY(-120%);
}
.c-modal__btn-close::before, .c-modal__btn-close::after {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 32px;
  height: 2px;
  content: "";
  background: #fff;
}
@media print, screen and (min-width: 768px) {
  .c-modal__btn-close::before, .c-modal__btn-close::after {
    width: 36px;
  }
}
.c-modal__btn-close::before {
  -webkit-transform: translate(-50%, -50%) rotate(315deg);
          transform: translate(-50%, -50%) rotate(315deg);
}
.c-modal__btn-close::after {
  -webkit-transform: translate(-50%, -50%) rotate(-135deg);
          transform: translate(-50%, -50%) rotate(-135deg);
}
.c-modal__body {
  height: calc(100% - 70px);
  padding: 0 10px 50px;
  overflow-y: scroll;
}
@media print, screen and (min-width: 768px) {
  .c-modal__body {
    height: calc(100% - 95px);
    padding: 0 30px 50px;
  }
}

@-webkit-keyframes modal {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, -40%);
            transform: translate(0, -40%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
  }
}

@keyframes modal {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, -40%);
            transform: translate(0, -40%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
  }
}
section input[type=text],
section input[type=password],
section input[type=datetime],
section input[type=datetime-local],
section input[type=date],
section input[type=month],
section input[type=time],
section input[type=week],
section input[type=number],
section input[type=email],
section input[type=url],
section input[type=search],
section input[type=tel],
section input[type=color],
section input[type=file],
section textarea,
section select {
  display: block;
  width: 100%;
  max-width: 1000px;
  font-family: inherit;
  font-size: 1.6rem;
  line-height: normal;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #fff;
  border-radius: 0;
  outline: none;
}
section input[type=text],
section input[type=tel],
section input[type=email],
section input[type=password],
section input[type=search],
section input[type=number],
section textarea {
  width: 100%;
  padding: 1em 0.5em;
  font-family: inherit;
  font-size: 1.6rem;
  font-weight: 400;
  background: #f2f2f2;
  border: #b7b7b7 solid 1px;
  border-radius: 5px;
}
@media print, screen and (min-width: 768px) {
  section input[type=text],
  section input[type=tel],
  section input[type=email],
  section input[type=password],
  section input[type=search],
  section input[type=number],
  section textarea {
    padding: 1em;
    border-radius: 4px;
  }
}
section input[type=text]:focus,
section input[type=tel]:focus,
section input[type=email]:focus,
section input[type=password]:focus,
section input[type=search]:focus,
section input[type=number]:focus,
section textarea:focus {
  border: #4da442 solid 1px;
}
section input[type=text],
section input[type=tel],
section input[type=email],
section input[type=password],
section input[type=search] {
  height: 45px;
}
@media print, screen and (min-width: 768px) {
  section input[type=text],
  section input[type=tel],
  section input[type=email],
  section input[type=password],
  section input[type=search] {
    height: 50px;
  }
}
section input[type=checkbox] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  opacity: 0;
}
section input[type=checkbox] + label {
  position: relative;
  display: inline-block;
  padding: 12px 1em 12px 44px;
  font-size: clamp(1.4rem, 1.218rem + 0.78vw, 1.8rem);
  vertical-align: middle;
  cursor: pointer;
}
section input[type=checkbox] + label::before, section input[type=checkbox] + label::after {
  position: absolute;
  content: "";
  background: #000;
  -webkit-transform: translate(0, -15%);
          transform: translate(0, -15%);
}
section input[type=checkbox] + label::before {
  top: 50%;
  left: 0;
  display: block;
  width: 26px;
  height: 26px;
  background: #fff;
  border: #333 solid 1px;
  border-radius: 2px;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
section input[type=checkbox] + label::after {
  top: 50%;
  left: 3px;
  display: none;
  width: 20px;
  height: 16px;
  background: url("data:image/svg+xml;charset=utf8,%3Csvg%20enable-background%3D%22new%200%200%2023%2017%22%20viewBox%3D%220%200%2023%2017%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22m2.1%206.8%207.5%208.5%2011.1-13.2%22%20style%3D%22fill%3Anone%3Bstroke%3A%234da442%3Bstroke-width%3A3%3Bstroke-linecap%3Around%3Bstroke-linejoin%3Around%3Bstroke-miterlimit%3A10%22%2F%3E%3C%2Fsvg%3E") no-repeat center center/contain;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
section input[type=checkbox] + label + span {
  display: inline-block;
  margin-left: 10px;
  vertical-align: middle;
}
section input[type=checkbox]:checked + label::after {
  display: block !important;
}
section input[type=radio] {
  display: none;
}
section input[type=radio] + label {
  position: relative;
  display: inline-block;
  padding: 4px 1em 4px 40px;
  margin-top: 0.3em;
  vertical-align: middle;
  cursor: pointer;
}
section input[type=radio] + label::before, section input[type=radio] + label::after {
  position: absolute;
  content: "";
  -webkit-transform: translate(0, -15%);
          transform: translate(0, -15%);
}
section input[type=radio] + label::before {
  top: 50%;
  left: 0;
  display: block;
  width: 30px;
  height: 30px;
  background: #fff;
  border: #b7b7b7 solid 1px;
  border-radius: 50%;
  -webkit-transform: translate(0, -55%);
          transform: translate(0, -55%);
}
section input[type=radio] + label::after {
  top: 50%;
  left: 10px;
  display: none;
  width: 12px;
  height: 12px;
  background: #4da442;
  border-radius: 50%;
  -webkit-transform: translate(0, -55%);
          transform: translate(0, -55%);
}
section input[type=radio] + label + span {
  display: inline-block;
  margin-left: 10px;
  vertical-align: middle;
}
section input[type=radio]:checked + label::after {
  display: block !important;
}
section select {
  width: 100%;
  height: 45px;
  padding: 0.5em 40px 0.5em 1em;
  color: #000;
  background: #f2f2f2 url("data:image/svg+xml;charset=utf8,%3Csvg%20height%3D%2220%22%20width%3D%2228%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22m13.594%2020-13.5-19.5h27z%22%20fill%3D%22%23717171%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E") no-repeat right 10px center/10px 6px;
  border: #b7b7b7 solid 1px;
  border-radius: 5px;
}
@media print, screen and (min-width: 768px) {
  section select {
    height: 50px;
    padding-left: 1em;
    background-position: right 13px center;
    background-size: 12px 8px;
    border-radius: 4px;
  }
}
section select:invalid,
section select option:first-child {
  color: #999;
}
section select option {
  color: #000;
}
section textarea {
  height: 150px;
}
section select + .p-form-input__label {
  opacity: 0;
  -webkit-transform: translate(-1rem, -200%) scale(0.8);
          transform: translate(-1rem, -200%) scale(0.8);
}
section select:not(:invalid) + .p-form-input__label {
  opacity: 1;
}
section textarea:not(:-moz-placeholder-shown) + .p-form-input__label, section input[type=text]:not(:-moz-placeholder-shown) + .p-form-input__label {
  transform: translate(-1rem, -200%) scale(0.8);
}
section textarea:not(:-ms-input-placeholder) + .p-form-input__label, section input[type=text]:not(:-ms-input-placeholder) + .p-form-input__label {
  transform: translate(-1rem, -200%) scale(0.8);
}
section textarea:not(:placeholder-shown) + .p-form-input__label,
section input[type=text]:not(:placeholder-shown) + .p-form-input__label,
section input[type=text]:focus + .p-form-input__label,
section textarea:focus + .p-form-input__label {
  -webkit-transform: translate(-1rem, -200%) scale(0.8);
          transform: translate(-1rem, -200%) scale(0.8);
}
section .c-button01 {
  width: min(90%, 320px);
  margin: 0 auto;
}
section .p-entry-form__error {
  position: absolute;
  bottom: 0;
  left: 1.5em;
  display: none;
  font-size: 1.1rem;
  line-height: 1;
  color: #999;
  letter-spacing: 0;
  -webkit-transform: translateY(130%);
          transform: translateY(130%);
}
section input:focus:invalid + .p-entry-form__error {
  display: block;
}

.p-pagetitle {
  position: relative;
  display: -ms-grid;
  display: grid;
  place-content: center;
  width: 100%;
  height: clamp(200px, 25vw, 340px);
  padding-top: 50px;
  text-align: center;
  background-color: #f2f5eb;
}
@media print, screen and (min-width: 992px) {
  .p-pagetitle {
    padding-top: min(10vw, 90px);
  }
}

.p-contact .l-main {
  text-align: center;
}
.p-contact .p-pagetitle h1 {
  width: clamp(163px, 35vw, 272px);
  height: clamp(26px, 11vw, 43px);
}
@media print, screen and (min-width: 768px) {
  .p-contact .p-pagetitle h1 {
    width: 272px;
    height: 43px;
  }
}
.p-contact-section {
  width: min(85%, 800px);
  padding: clamp(6rem, 20vw, 12rem) 0 clamp(8rem, 25vw, 16rem);
  margin: 0 auto;
}
.p-contact-section h2 {
  font-size: clamp(1.6rem, 1.382rem + 1.09vw, 2.2rem);
  text-align: center;
}
.p-contact hr {
  position: relative;
  display: block;
  width: 100%;
  height: clamp(70px, 20vw, 110px);
  margin-top: 0;
  border: none;
  outline: none;
}
.p-contact hr::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #c3c3c3;
}
.p-contact-input__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.75em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: stretch;
      -ms-flex-pack: stretch;
          justify-content: stretch;
  font-size: 1.4rem;
  line-height: 1.5;
  text-align: left;
}
@media print, screen and (min-width: 768px) {
  .p-contact-input__label {
    top: 1.8em;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.p-contact-input__label span:first-child {
  font-size: clamp(1.4rem, 1.218rem + 0.78vw, 1.8rem);
  font-weight: 500;
}
.p-contact-input__label > span:nth-child(2) {
  padding: 0.2em 1em;
  font-size: 1rem;
  line-height: 1.25;
  color: #fff;
  vertical-align: 0.1em;
  background-color: #e83f3f;
  border-radius: 1em;
}
@media print, screen and (min-width: 768px) {
  .p-contact-input__label > span:nth-child(2) {
    font-size: 1.2rem;
  }
}
.p-contact__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5em;
  padding-bottom: 1.5em;
}
@media print, screen and (min-width: 768px) {
  .p-contact__block {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 14em 1em auto;
    grid-template-columns: 14em auto;
    gap: 1em;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    padding-bottom: 2.5em;
  }
}
.p-contact__block > label:first-child {
  padding-top: 0.76em;
}
.p-contact__block-privacy {
  padding-bottom: 0;
}
@media print, screen and (min-width: 768px) {
  .p-contact__block-privacy {
    padding-left: 15em;
  }
}
.p-contact__block-privacy > label:first-child {
  padding-top: 0.75em;
}
.p-contact__block-privacy a {
  color: #000;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.p-contact__block-privacy a:hover {
  color: #4ad338;
}
.p-contact__button-area {
  padding-top: 1em;
  text-align: center;
}
.p-contact__button-area .c-button01 {
  width: clamp(200px, 30vw, 250px);
}