@charset "UTF-8";
@font-face {
  font-family: "Noto Sans JP";
  src: url("../assets/fonts/NotoSansJP-VariableFont_wght.woff2") format("woff2 supports variations"), url("../assets/fonts/NotoSansJP-VariableFont_wght.woff2") format("woff2-variations");
  font-weight: 300 500 700;
}
section.page-landing {
  background-color: #003A5E;
  color: #ffffff;
  padding: clamp(30px, 9vw, 90px) 0;
}
section.page-landing .h1-group h1 {
  color: #ffffff;
}
section.page-landing .h1-group h4 {
  color: #ffffff;
}
section.page-landing span {
  color: #ffffff;
}

section#incentives {
  padding-top: clamp(70px, 10vw, 150px);
  padding-bottom: clamp(40px, 6vw, 100px);
}

section#tax {
  padding-bottom: clamp(40px, 6vw, 120px);
}

/* ============================================================
   フローティング DL ボタン（インセンティブ資料）
   ============================================================ */
.float-download {
  border: none;
  position: fixed;
  right: 0;
  top: 50vh;
  transform: translate(-17.5%, 0);
  z-index: 5;
  border-radius: 50%;
  width: clamp(180px, 13vw, 250px);
  height: clamp(180px, 13vw, 250px);
  background-color: #D59E43;
  color: #ffffff;
  text-decoration: none;
  box-sizing: border-box;
  padding: clamp(12px, 1.5vw, 20px);
  transition: transform 0.5s ease, box-shadow 0.5s ease, background-color 0.5s ease, opacity 0.4s ease, visibility 0.4s ease;
  justify-content: space-between;
}
.float-download.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.float-download .icon-download {
  width: clamp(20px, 2vw, 38px);
  height: auto;
  display: block;
}
.float-download span {
  font-size: clamp(14px, 1.3vw, 20px);
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  color: #ffffff;
  letter-spacing: 0.01em;
  white-space: nowrap;
  padding-bottom: 0.5em;
}
.float-download .icon-arrow {
  width: clamp(14px, 1.4vw, 20px);
  height: auto;
  display: block;
}
.float-download:hover {
  transform: translate(-17.5%, 0) scale(1.05);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
  opacity: 1;
}
@media screen and (max-width: 1099px) {
  .float-download {
    position: fixed;
    right: 0;
    left: 0;
    bottom: 0;
    top: auto;
    transform: none;
    width: 100%;
    height: auto;
    border-radius: 0;
    padding: clamp(14px, 2.5vw, 22px) clamp(16px, 4vw, 32px);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: clamp(14px, 3vw, 24px);
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.15);
  }
  .float-download.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
  .float-download .icon-download {
    width: clamp(24px, 4.5vw, 32px);
  }
  .float-download span {
    font-size: clamp(15px, 3.6vw, 20px);
    white-space: nowrap;
    padding-bottom: 0;
    line-height: 1.4;
  }
  .float-download span br {
    display: none;
  }
  .float-download span .dl-suffix {
    display: none;
  }
  .float-download .icon-arrow {
    display: none;
  }
  .float-download:hover {
    transform: none;
    opacity: 0.95;
  }
}

/* ============================================================
   PDFアクセス用 モーダルフォーム
   ============================================================ */
.form-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 400;
}
.form-wrapper .form-container {
  overflow: scroll;
  scrollbar-width: none;
  padding: clamp(40px, 5vw, 60px) clamp(1.6rem, 1.8vw, 2rem);
  width: 72%;
  max-width: 800px;
  max-height: 90vh;
  position: relative;
  z-index: 2;
  background-color: #ffffff;
}
.form-wrapper .form-container::-webkit-scrollbar {
  display: none;
}
.form-wrapper .form-container h3 {
  margin-bottom: 1em;
  color: #003A5E;
  text-align: center;
}
.form-wrapper .form-bg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: hsla(0, 0%, 83%, 0.8);
  cursor: pointer;
}
.form-wrapper.active-fw {
  display: flex;
}

.contact-row {
  width: 100%;
  display: flex;
  font-size: clamp(10px, 1.5vw, 16px);
  margin-bottom: 2.4em;
  background-color: #ededed;
}
.contact-row .label,
.contact-row .contents {
  box-sizing: border-box;
  font-size: 1em;
}
.contact-row .label {
  background-color: #003A5E;
  width: 33%;
  padding: 1.9em 0.5em 0.5em 0.5em;
  color: #ffffff;
  font-weight: bold;
  line-height: 120%;
}
.contact-row .contents {
  color: #ffffff;
  width: 67%;
}
.contact-row .contents input[type=text],
.contact-row .contents input[type=email],
.contact-row .contents input[type=tel],
.contact-row .contents input[type=number],
.contact-row .contents input[type=date],
.contact-row .contents textarea {
  font-size: 1em;
  box-sizing: border-box;
  padding: 2em 1em 2em 2em;
  width: 100%;
  height: 100%;
  border: unset;
  color: #a5a5a5;
  background-color: #ededed;
}
.contact-row .contents input[type=text]:focus,
.contact-row .contents input[type=email]:focus,
.contact-row .contents input[type=tel]:focus,
.contact-row .contents input[type=number]:focus,
.contact-row .contents input[type=date]:focus,
.contact-row .contents textarea:focus {
  color: #333333;
  outline: 1px solid #D59E43;
}
.contact-row .contents textarea {
  min-height: 100%;
  min-height: clamp(280px, 50vw, 470px);
}
.contact-row .contents .wpcf7-not-valid-tip {
  padding-left: 2em;
}

@media screen and (min-width: 651px) {
  .contact-row .label {
    width: 25%;
    padding: 1.9em 1em 0.5em 2em;
  }
  .contact-row .contents {
    width: 75%;
  }
  .contact-row .contents input[type=text],
  .contact-row .contents input[type=email],
  .contact-row .contents input[type=tel],
  .contact-row .contents input[type=number],
  .contact-row .contents input[type=date],
  .contact-row .contents textarea {
    padding: 2em 1em 2em 2em;
  }
}
.submit-container {
  width: 100%;
  display: flex;
  align-items: center;
  text-align: center;
  margin: clamp(4rem, 6vw, 7rem) auto 0;
}
.submit-container p {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
}

.submit-btn {
  width: fit-content;
  appearance: unset;
  background-color: #D59E43;
  color: #ffffff;
  border: unset;
  border-radius: 2.5em;
  text-align: center;
  box-sizing: border-box;
  padding: 1em 2em;
  font-size: clamp(12px, 1.5vw, 20px);
  font-weight: bold;
  letter-spacing: 0.08em;
  line-height: 100%;
  cursor: pointer;
}
.submit-btn:hover {
  opacity: 0.7;
}

/*# sourceMappingURL=incentive.css.map */
