@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  margin: 0;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans", Meiryo, sans-serif;
  line-height: 1.3;
  font-size: clamp(0.875rem, 0.653rem + 0.46vw, 1rem);
}

.wrapper {
  text-align: center;
  margin: 0 auto;
  max-width: 1200px;
}

.sp {
  display: none;
}

.pc {
  display: block;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
  -webkit-user-drag: none; /* Chrome, Safari, Operaを禁止する場合 */
  -khtml-user-drag: none; /* Konquerorを禁止する場合 */
  -moz-user-drag: none; /* Firefoxを禁止する場合 */
  /* SPの長押し禁止 */
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-touch-callout: none;
  -moz-user-select: none;
  user-select: none;
}

a {
  text-decoration: none;
}

h2 {
  font-size: clamp(1.875rem, -0.347rem + 4.63vw, 3.125rem);
  margin: 0.5em auto;
}

h3 {
  font-size: clamp(1.25rem, 0.139rem + 2.31vw, 1.875rem);
  margin: 0.5em auto;
}

small {
  color: #666;
  font-size: clamp(0.625rem, 0.181rem + 0.93vw, 0.875rem);
}
small a {
  color: #666;
  text-decoration: underline;
}

.flex {
  display: flex;
}

label, input, textarea {
  font-size: 16px;
}

button, .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 500px;
  width: 80vw;
  margin: 2.5em auto 2em;
  padding: 0.5em 1em;
  border: none;
  border-radius: 5px;
  font-weight: 600;
  font-size: clamp(1.125rem, 0.784rem + 1.45vw, 1.875rem);
  background-color: #009245;
  color: #fff;
  cursor: pointer;
  background-color: #009245;
  color: #fff;
}
button:hover, .btn:hover {
  background-color: #008235;
}

.dli-box-in {
  display: inline-block;
  vertical-align: middle;
  color: #009245;
  line-height: 1;
  position: relative;
  margin-right: 1rem;
  width: 1.15em;
  height: 1.15em;
}
.dli-box-in::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  border: 0.1em solid currentColor;
  border-top: 0;
  border-radius: 0 0 0.15em 0.15em;
  box-sizing: border-box;
}
.dli-box-in > span {
  position: absolute;
  width: 0.1em;
  height: 0.625em;
  background: currentColor;
  left: 0;
  right: 0;
  bottom: 0.353em;
  margin: auto;
}
.dli-box-in > span::before {
  content: "";
  width: 0.40625em;
  height: 0.40625em;
  border: 0.1em solid currentColor;
  border-top: 0;
  border-right: 0;
  transform: rotate(-45deg);
  transform-origin: bottom left;
  position: absolute;
  left: 50%;
  bottom: -0.05em;
  box-sizing: border-box;
}

.popup {
  display: none;
  height: 100vh;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}
.popup .content {
  background: #fff;
  padding: 30px;
  width: 50%;
  max-height: 100vh;
  overflow-y: auto;
}
.popup .content label {
  max-width: 500px;
  margin: 0.75em auto 0;
}
.popup .content button, .popup .content .btn {
  width: 70vw;
  max-width: 350px;
  margin: 1.5em auto 1em;
  font-size: clamp(1.125rem, 0.903rem + 0.46vw, 1.25rem);
}
.popup .content #download_form_close,
.popup .content #inquiry_form_close,
.popup .content #inquiry_success_close,
.popup .content #download_success_close,
.popup .content #automatic_close,
.popup .content #confirm_close {
  background-color: #fff;
  border: solid 1px #009245;
  color: #009245;
}
.popup .content #download_form_close:hover,
.popup .content #inquiry_form_close:hover,
.popup .content #inquiry_success_close:hover,
.popup .content #download_success_close:hover,
.popup .content #automatic_close:hover,
.popup .content #confirm_close:hover {
  background-color: #efefef;
}

.show {
  display: flex;
  justify-content: center;
  align-items: center;
}

#form {
  margin-top: 7em;
}
#form label, #form input, #form textarea {
  font-size: clamp(1rem, 0.943rem + 0.24vw, 1.125rem);
}

form {
  max-width: 650px;
  margin: 5% auto;
}
form label {
  display: block;
  text-align: left;
  margin-top: 0.75em;
}
form input, form textarea, form .field {
  box-sizing: border-box;
  border: solid 1px #009245;
  width: 100%;
  padding: 0.5em;
  margin-top: 0.25em;
  border-radius: 0.5em;
}
form input:focus, form textarea:focus, form .field:focus {
  outline: solid 1px #009245;
}

.required {
  color: #009245;
  margin-right: 1em;
  font-weight: bold;
}

.any {
  color: #009245;
  margin-right: 1em;
  font-weight: bold;
  opacity: 0.5;
}

.error-message {
  color: red;
  font-size: 0.9em;
  margin: 4px 0 8px;
}

.error-field {
  border-color: red;
}

.pre_box {
  display: block;
  border: 1px solid #009245;
  padding: 0.5em;
  margin-top: 0.25em;
  border-radius: 0.5em;
  background-color: #fff;
  white-space: pre-wrap;
  min-height: 1em;
  line-height: 1;
  font-size: 16px;
  overflow-wrap: break-word;
}

.confirm_popup .content #confirm_content {
  max-width: 500px;
  margin: auto;
  text-align: left;
}
.confirm_popup .content #confirm_content div {
  margin-top: 1em;
  font-size: 16px;
}
.confirm_popup .content #confirm_content pre {
  margin: 0;
}

footer {
  background-color: #009245;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  padding: 5% 0 3%;
  font-size: clamp(0.75rem, 0.636rem + 0.48vw, 1rem);
}
footer .flex {
  max-width: 1000px;
  margin: auto;
  justify-content: center;
  align-items: center;
}
footer div img {
  width: 45%;
  min-width: 250px;
  margin: 0 2.5%;
}
footer div button {
  width: 45%;
  background-color: #fff;
  color: #009245;
}
footer div button:hover {
  background-color: #efefef;
}
footer ul {
  padding: 1% 0 2%;
}
footer ul li {
  list-style: none;
  margin: 0 2em;
}
footer ul li a {
  color: #fff;
}
footer .copy {
  color: #fff;
}

.cta_b {
  position: fixed;
  right: 1em;
  bottom: 1em;
  width: 10vw;
  max-width: 135px;
  cursor: pointer;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
}

.active {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 768px) {
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
  #form {
    margin-top: 3em;
  }
  form {
    margin: 5%;
    max-width: none;
  }
  footer {
    padding: 10% 0 5%;
  }
  footer .footer_logo {
    display: block;
  }
  footer .footer_logo button {
    width: 80vw;
    margin: 1em auto;
  }
  footer ul {
    flex-wrap: wrap;
    width: 80vw;
  }
  footer ul li {
    width: 50%;
    margin: 0.5em auto;
  }
  .popup .content {
    width: 90%;
    padding: 5%;
  }
  .popup .content label {
    width: 100%;
  }
  .cta_b {
    width: 15vw;
  }
}
.slidein_left, .slidein_right, .fadein {
  opacity: 0;
}

.slidein_left.is-active {
  animation: slideIn_left 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.slidein_right.is-active {
  animation: slideIn_right 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.fadein.is-active {
  animation: fadeIn 0.5s ease-in-out 1 forwards;
}

.spinner {
  width: 32px;
  height: 32px;
  border: 4px solid #ccc;
  border-top: 4px solid #333;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 20px auto;
}

@keyframes slideIn_left {
  0% {
    transform: translateX(-180px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
  }
  40%, 100% {
    opacity: 1;
  }
}
@keyframes slideIn_right {
  0% {
    transform: translateX(180px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
  }
  40%, 100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    transform: translateY(40px);
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}/*# sourceMappingURL=common.css.map */