html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-size: 16px;
  scroll-padding-top: 111px;
  scroll-behavior: smooth;
}

* {
  font-family: "Noto Sans JP", sans-serif;
  color: #444444;
  letter-spacing: 0;
}

a[href^="tel:"] {
  pointer-events: none;
}

a {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.7;
}

.footer {
  background-color: #DDE9E9;
  padding: 41px 0 50px 0;
}

.footer-contents__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.company-name {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.2;
  color: #0DB695;
  margin-top: 9px;
}

.office__wrap {
  font-size: 16px;
  letter-spacing: 0.01em;
  line-height: 1.8;
}

.office__wrap:first-of-type {
  margin-top: 30px;
}

.office__wrap:nth-of-type(2) {
  margin-top: 26px;
}

.tel {
  position: relative;
  font-size: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #00866B;
  margin-left: 80px;
}

.tel::before {
  position: absolute;
  content: "";
  background: url(../images/tel-icon.png);
  background-size: contain;
  width: 39px;
  height: 39px;
  left: -40px;
}

.footer .detail-button {
  margin-top: 10px;
  margin-left: auto;
}

.copyright__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 60px;
}

.copyright__wrap small {
  font-size: 14px;
  letter-spacing: 0.08em;
}

.privacy-policy {
  font-size: 14px;
  letter-spacing: 0.08em;
  white-space: nowrap;
  margin-left: 50px;
}

.under-line {
  border-bottom: 1px solid #444444;
  padding-bottom: 3px;
}

.header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 111px;
  border-bottom: 6px solid #00B390;
  background-color: #FFFFFF;
}

main {
  padding-top: 111px;
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 40px;
  height: inherit;
}

.header__name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: auto;
  height: inherit;
}

.header__nav {
  height: inherit;
}

.header__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: inherit;
}

.header__item {
  height: inherit;
}

.header__item:not(:first-child) {
  margin-left: 35px;
}

.header__link {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: calc(22 / 18);
  color: #00B390;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: inherit;
}

.hamburger {
  position: fixed;
  z-index: 9999;
  top: 45px;
  right: 15px;
  width: 25px;
  height: 16px;
  cursor: pointer;
}

.hamburger span {
  position: absolute;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 2px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  background-color: #00B390;
}

.hamburger.is-active span {
  background-color: #FFFFFF;
}

.hamburger span:first-child {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 8px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.hamburger span:nth-child(3) {
  top: 16px;
}

.hamburger.is-active span:first-child {
  top: 15px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
  top: 15px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.drawer-menu {
  position: absolute;
  z-index: 5000;
  display: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #0DB695;
  overflow-y: scroll;
}

.drawer-menu__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: inherit;
}

.drawer-menu__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.drawer-menu__item {
  display: inline-block;
}

.drawer-menu__item:not(:first-child) {
  margin-top: 50px;
}

.drawer-menu__link {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.875;
  color: #FFFFFF;
  display: inline-block;
  padding-bottom: 4px;
  position: relative;
}

.drawer-menu__link:hover {
  opacity: 1;
}

.drawer-menu__link::after {
  background-color: #FFFFFF;
  bottom: 0;
  content: "";
  display: block;
  height: 1px;
  left: 0;
  position: absolute;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  width: 0;
}

.drawer-menu__link:hover::after {
  width: 100%;
}

.drawer-menu__contact {
  margin-top: 48px;
}

.section-title {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.2;
  color: #0DB695;
}

.section-title.section-title--white {
  color: #FFFFFF;
}

.detail-button {
  display: inline-block;
  max-width: 197px;
  width: 100%;
  height: 54px;
  background-color: #0D50A7;
  margin-top: 35px;
  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;
}

.button {
  position: relative;
  font-size: 16px;
  padding-right: 20px;
  color: #FFFFFF;
}

.button::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 9px;
  border-color: transparent transparent transparent #FFFFFF;
  position: absolute;
  top: 2px;
  right: 0;
  bottom: 0;
  margin: auto;
}

.detail-button.detail-button--contact {
  max-width: 268px;
}

.section-text {
  font-size: 16px;
  letter-spacing: 0.01em;
  line-height: 1.8;
  margin-top: 25px;
}

.section-text:not(:first-child) {
  margin-top: 10px;
}

.section-text:first-of-type {
  margin-top: 25px;
}

.lower-title__wrap {
  text-align: center;
}

.lower-title {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.12em;
  color: #0DB695;
}

.lower-title__text {
  font-size: 18px;
  line-height: 1.7;
  letter-spacing: 0.12em;
  max-width: 657px;
  margin: 25px auto 0 auto;
}

.inner {
  max-width: 1090px;
  padding-left: 25px;
  padding-right: 25px;
  margin-left: auto;
  margin-right: auto;
}

.lg-show {
  display: none;
}

.md-show {
  display: none;
}

.mv {
  height: 100vh;
  max-height: 600px;
  background-image: url(../images/mv.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
}

.mv__inner {
  padding-top: 60px;
}

.mv__title {
  font-size: 50px;
  font-weight: 700;
  text-shadow: 0 0 10px #244661;
  letter-spacing: 0.13em;
  line-height: 1.2;
  color: #FFFFFF;
}

.margin {
  display: block;
  line-height: 2;
  letter-spacing: 0.13em;
  color: #FFFFFF;
}

.mv__subtitle {
  font-size: 21px;
  text-shadow: 0 3px 6px #244661;
  letter-spacing: 0.1em;
  color: #FFFFFF;
  margin-top: -15px;
}

.company {
  position: relative;
  padding: 77px 0 63px 0;

}

.company__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.company-text__wrap {
  width: 50%;
  padding-right: 10%;
}

.company__img {
  width: 50%;
  height: auto;
  margin-top: auto;
}

.company__img.md-show {
  margin-top: 20px;
}

.company__img img {
  width: 100%;
  max-height: 290px;
}

.bg-text {
  position: absolute;
  z-index: -2;
  bottom: 0;
  left: 2%;
  width: 80%;
}

.bg-text img {
  width: 100%;
}

.company .detail-button {
  margin-bottom: 21px;
}

.subsidy {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right center;
  background-color: #00866B;
  overflow-y: hidden;
  z-index: 2;
  background-image: url(../images/bg-g.png);
  background-size: cover;
  padding: 77px 0 79px 0;
}

.subsidy__inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.subsidy-text__wrap {
  width: 50%;
  padding-right: 10%;
}

.subsidy .section-title.section-title--white {
  margin-top: 9px;
}

.subsidy .section-text {
  color: #FFFFFF;
}

.subsidy .section-text:first-of-type {
  margin-top: 30px;
}

.subsidy .section-text:nth-of-type(2) {
  margin-top: 31px;
}

.subsidy .section-text:nth-of-type(3) {
  margin-top: 28px;
}

.subsidy__img {
  width: 50%;
}

.subsidy__img img {
  width: 100%;
}

.subsidy-img01 {
  text-align: right;
}

.subsidy-img01 img {
  width: 447px;
  height: 375px;
  -o-object-fit: cover;
     object-fit: cover;
}

.subsidy-img02 img {
  width: 305px;
  height: 225px;
  margin-top: -66px;
}

.advantage__bg::before {
  position: absolute;
  content: "";
  width: calc(100% - 70px);
  height: 250px;
  background-color: #0DB695;
  opacity: 0.11;
  top: 0;
  right: 0;
}

.advantage__bg::after {
  position: absolute;
  content: "";
  width: calc(80% - 70px);
  height: 250px;
  background-color: #0DB695;
  opacity: 0.11;
  top: 45%;
  left: 70px;
}

.advantage__bg--column {
  max-width: 1400px;
  width: 100%;
}

.advantage__bg--column::after {
  position: absolute;
  content: "";
  width: 250px;
  height: 100%;
  background-color: #0DB695;
  opacity: 0.11;
  left: -180px;
}

.advantage__inner {
  position: relative;
}

.advantage__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 77px 0 85px 0;
}

.advantage__img.lg-none {
  width: 55%;
}

.advantage__img img {
  width: 100%;
}

.advantage__img picture {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.advantage-text__wrap {
  width: 45%;
  padding-left: 5%;
}

.advantage .section-title {
  margin-top: 9px;
}

.advantage .section-text:nth-of-type(3) {
  margin-top: 28px;
}

.advantage .detail-button {
  position: relative;
  z-index: 3;
}

.achievement {
  position: relative;
  background-color: #0DB695;
  padding: 77px 0 70px 0;
  z-index: 1;
}

.achievement__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.achievement-text__wrap {
  width: 50%;
  padding-right: 9%;
}

.achievement .section-title {
  margin-top: 9px;
}

.achievement-text__inner {
  padding-right: 15px;
}

.achievement .section-text {
  color: #FFFFFF;
}

.achievement__img {
  width: 50%;
}

.achievement__img img {
  width: 100%;
}

.achievement .bg-text {
  z-index: -1;
}

.lower-company {
  padding-top: 59px;
}

.lower-company__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 50px;
}

.lower-company__img {
  width: 55%;
}

.lower-company__img img {
  width: 100%;
}

.lower-company__text {
  width: 41%;
  margin-left: 4%;
}

.lower-company .section-text:first-of-type {
  margin-top: 0;
}

.lower-company .section-text:nth-of-type(3),
.lower-company .section-text:nth-of-type(4) {
  margin-top: 28px;
}

.lower-company-table__wrap {
  margin-top: 70px;
}

.lower-company-table__title {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.13em;
  color: #FFFFFF;
  background-color: #0DB695;
  height: 125px;
  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;
}

.lower-company__table {
  padding: 55px 0 57px;
  background-color: #00866B;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.lower-company__table dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 633px;
}

.lower-company__table dl:not(:first-child) {
  margin-top: 28px;
}

.lower-company__table dt,
.lower-company__table dd,
.lower-company__table dd li {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.8;
  color: #FFFFFF;
}

.lower-company__table dt {
  width: 100px;
}

.lower-company__table dd {
  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-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.lower-company__table dd li:not(:first-child) {
  margin-top: 18px;
}

.profile {
  margin-top: 0;
}

.lower-subsidy {
  padding: 59px 0 73px;
  background-color: #E4F7F3;
}

.overview__wrap {
  padding: 53px 0 50px;
}

.lower-subsidy__title {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.1769230769;
  background-color: #00866B;
  padding: 22px 0 17px;
  text-align: center;
  color: #FFFFFF;
}

.overview__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 30px;
}

.overview__img {
  width: 46%;
}

.overview__img img {
  width: 100%;
}

.overview-text__wrap {
  width: 50%;
  margin-left: 5%;
  margin-top: 5px;
}

.overview-text__wrap h7 {
  display: flex;
  justify-content: start;
}

.lower-subsidy__subtitle {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.53;
  color: #0DB695;
}

.lower-subsidy__table {
  margin-top: 30px;
}

.lower-subsidy__table dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.lower-subsidy__table dl:not(:first-child) {
  margin-top: 10px;
}

.lower-subsidy__table dt {
  width: 40%;
  color: #FFFFFF;
  background-color: #0DB695;
  padding: 0 34px;
  margin-right: 10px;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.44;
  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;
  text-align: center;
}

.lower-subsidy__table dd {
  width: 60%;
  background-color: #DDE9E9;
  padding: 27px 15px 25px;
  font-size: 16px;
  letter-spacing: 0.01em;
  line-height: 1.8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.lower-subsidy__table dd ul {
  max-width: 511px;
  width: 100%;
  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-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}

.lower-subsidy__table dl:first-child li {
  padding-left: 0;
  text-indent: 0;
}

.lower-subsidy__table dd li {
  padding-left: 1em;
  text-indent: -1em;
}

.point-inner {
  max-width: 746px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.lower-subsidy__title {
  text-align: center;
}

.point-content {
  margin-top: 55px;
}

.point-content:nth-of-type(2) {
  margin-top: 37px;
}

.point-content:nth-of-type(3) {
  margin-top: 72px;
}

.lower-subsidy__subtitle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.point-list {
  margin-top: 24px;
}

.point-content:nth-of-type(2) .point-list,
.point-content:nth-of-type(3) .point-list {
  margin-top: 29px;
}

.point-list__content {
  font-size: 16px;
  letter-spacing: 0.01em;
  line-height: 1.8;
  padding-left: 1em;
  text-indent: -1em;
}

.point-list__content:not(:first-child) {
  padding-top: 15px;
}

.point-content:nth-of-type(2) .point-list__content:not(:first-child),
.point-content:nth-of-type(3) .point-list__content:not(:first-child) {
  padding-top: 23px;
}

.point__wrap .section-text:first-of-type {
  margin-top: 40px;
}

.point {
  font-size: 16px;
  line-height: 1.9125;
  color: #FF4747;
  margin-top: 33px;
}

.lower-advantage {
  padding: 59px 0 70px;
}

.lower-advantage__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 53px;
}

.lower-advantage__img {
  width: 53%;
}

.lower-advantage__img img {
  width: 100%;
}

.lower-advantage__text {
  width: 47%;
  padding-left: 5%;
}

.lower-advantage .section-text:first-child {
  margin-top: 0;
}

.lower-advantage .section-text:nth-of-type(2) {
  margin-top: 28px;
}

.lower-achievement {
  padding: 59px 0 70px 0;
}

.lower-achievement__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 53px;
}

.lower-achievement__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.lower-achievement__img {
  width: 47%;
}

.lower-achievement__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lower-achievement__text {
  width: 53%;
  background-color: #E4F7F3;
  padding: 20px 48px;
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.lower-achievement__text .section-text:first-of-type {
  margin-top: 0;
}

.lower-achievement__table {
  margin-top: 20px;
}

.lower-achievement__table dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.lower-achievement__table dl:not(:first-child) {
  margin-top: 10px;
}

.lower-achievement__table dt {
  width: 35%;
  background-color: #0DB695;
  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-size: 16px;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.9125;
  color: #FFFFFF;
  margin-right: 10px;
}

.lower-achievement__table dd {
  width: 65%;
  background-color: #DDE9E9;
  padding: 28px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.lower-achievement__table ul {
  max-width: 288px;
  width: 100%;
  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-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}

.lower-achievement__table li {
  padding-left: 1em;
  text-indent: -1em;
  font-size: 16px;
  line-height: 1.9125;
}

.lower-achievement__table li:not(:first-child) {
  margin-top: 23px;
}

.index ul {
  max-width: 100%;
}

.font-small {
  font-size: 13px;
  color: #FFFFFF;
}

.index dt {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.12em;
  padding: 25px 0 20px 0;
  background-color: #00866B;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.index dd {
  padding: 23px 10px 25px;
  text-align: center;
  background-color: #00866B;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.index li {
  font-size: 20px;
  color: #FFFFFF;
  padding-left: 0;
  text-indent: 0;
}

.lower-contact {
  padding: 59px 0 66px 0;
}

.lower-contact .lower-title__text {
  margin-top: 20px;
}

.form__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 30px;
}

.form__inner {
  max-width: 846px;
  width: 100%;
}

.form__required {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 2.9285714286;
  background-color: #F7E352;
  padding: 10px 14px 8px 14px;
  margin-right: 20px;
}

.form__field:nth-of-type(3) .form__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-top: 40px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.1875;
}

.form__field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.form__field:not(:first-child) {
  margin-top: 2px;
}

.form__label {
  width: 33%;
  background-color: #00B390;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2222222222;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 35px;
  margin-right: 2px;
}

.form__data {
  width: 67%;
  background-color: #DDE9E9;
  padding: 22px 33px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.form__data p {
  width: 100%;
}

.form__input,
.form__textarea {
  background-color: #FFFFFF;
  width: 100%;
  padding: 0 20px;
  font-size: 20px;
  line-height: 1.2;
  display: flex;
  justify-content: center;
}

.form__input {
  height: 48px;
}

.form__textarea {
  height: 249px;
  padding-top: 15px;
  resize: none;
}

.form__data--checkbox {
  margin: 0 auto;
  padding-top: 35px;
  display: flex;
  justify-content: center;
}

.form__data--checkbox .wpcf7-list-item-label {
  font-size: 16px;
  letter-spacing: 0.01em;
  line-height: 1.8;
}

input[type=checkbox] {
  height: 16px;
  width: 16px;
  margin: 2px;
  border: 1px solid #444444;
  border-radius: 2px;
  margin-right: 10px;
  margin-top: -3px;
}

input[type=checkbox]:checked::before {
  display: grid;
  place-content: center;
  color: #0D50A7;
  height: 100%;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 14px;
  content: "\f00c";
}

.form__submit-button {
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.form__submit-button:after {
  display: inline-block;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 9px;
  border-color: transparent transparent transparent #FFFFFF;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 25%;
  bottom: 0;
  margin: auto;
}

.form__submit-input {
  padding: 20px 70px 20px 57px;
  background-color: #00810F;
  display: flex;
  justify-content:center;
  align-items: center;
  font-size: 16px;
  color: #FFFFFF;
  margin-top: 35px;
}

.wpcf7-submit:disabled {
  background-color: #999;
}

.wpcf7-spinner {
  display: none;
}

.lower-policy {
  padding: 59px 0 70px;
}

.policy-explanation {
  font-size: 16px;
  line-height: 1.5;
  padding-top: 25px;
}

.policy__wrap {
  margin-top: 50px;
}

.policy__title {
  font-size: 20px;
  font-weight: 700;
}

.policy__text {
  font-size: 16px;
  line-height: 1.5;
  margin-top: 10px;
  padding-left: 20px;
}

.wpcf7 form .wpcf7-response-output {
  border: none;
}

@media screen and (max-width: 1400px) {
  .advantage__bg::before {
    margin: 0 calc(50% - 50vw);
    width: calc(100vw - 250px);
  }

  .advantage__bg::after {
    margin: 0 calc(50% - 50vw);
    width: calc(80vw - 250px);
    left: 250px;
  }

  .advantage__bg--column::after {
    margin: 0 calc(50% - 50vw);
    left: 0;
  }
}

@media screen and (max-width: 1200px) {
  html {
    font-size: 1.1713030747vw;
  }

  .header__inner {
    padding: 0 25px;
  }

  .header__link {
    font-size: 16px;
  }

  .advantage__bg::before {
    width: calc(100vw - 250px);
  }

  .advantage__bg::after {
    width: calc(80vw - 250px);
  }
}

@media screen and (max-width: 1024px) {
  .header {
    height: 80px;
  }

  main {
    padding-top: 80px;
  }

  html {
    scroll-padding-top: 80px;
  }

  .header__inner {
    padding: 0 15px;
  }

  .hamburger {
    top: 30px;
  }

  .lg-none {
    display: none;
  }

  .lg-show {
    display: block;
  }

  .mv__title {
    line-height: 2;
  }

  .subsidy {
    position: relative;
    background-color: #00866B;
    padding: 50px 0;
  }

  .subsidy__inner {
    display: block;
  }

  .subsidy-text__wrap {
    width: 100%;
    padding-right: 0;
  }

  .subsidy__img {
    width: 100%;
    max-width: 800px;
    margin: 30px;
    margin-left: auto;
    margin-right: auto;
  }

  .subsidy-img01 img {
    width: 60%;
    height: auto;
  }

  .subsidy-img02 img {
    width: 40%;
    height: auto;
    margin-left: 20%;
    margin-top: -120px;
  }

  .advantage__bg::before {
    width: calc(100% - 150px);
    height: 150px;
  }

  .advantage__bg::after {
    width: calc(80% - 150px);
    height: 150px;
    left: 150px;
  }

  .advantage__bg--column::after {
    width: 150px;
  }

  .advantage__container {
    display: block;
  }

  .advantage__img.lg-show img {
    width: 80%;
  }

  .advantage-text__wrap {
    width: 100%;
    padding-left: 0;
  }

  .advantage__img.lg-show {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 30px;
  }

  .form__required {
    padding: 10px;
    font-size: 12px;
  }

  .form__label {
    font-size: 16px;
    padding: 0 15px;
  }
}

@media screen and (max-width: 768px) {
  html {
    font-size: 4.2666666667vw;
  }

  a[href^="tel:"] {
    pointer-events: auto;
  }

  .footer-contents__wrap {
    display: block;
  }

  .company-name {
    font-size: 23px;
  }

  .tel {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-top: 30px;
    margin-left: 40px;
  }

  .footer .detail-button {
    margin-left: 0;
  }

  .copyright__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .privacy-policy {
    margin-left: 0;
    text-align: right;
    margin-top: 20px;
  }

  .header__name img {
    width: 70%;
  }

  .section-title {
    font-size: 25px;
  }

  .lower-title {
    font-size: 23px;
  }

  .lower-title__text {
    font-size: 16px;
    text-align: left;
  }

  .inner {
    padding-left: 15px;
    padding-right: 15px;
  }

  .md-none {
    display: none;
  }

  .md-show {
    display: block;
  }

  .mv__title {
    font-size: min(9vw, 50px);
  }

  .mv__subtitle {
    font-size: 16px;
    margin-top: 0;
  }

  .company {
    padding: 50px 0;
  }

  .company__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .company-text__wrap {
    width: 100%;
    padding-right: 0;
  }

  .company__img {
    width: 100%;
    text-align: center;
  }

  .company__img img {
    max-height: unset;
    width: 100%;
  }

  .advantage__container {
    padding: 50px 0;
  }

  .achievement {
    padding: 50px 0;
  }

  .achievement-text__wrap {
    width: 100%;
    padding-right: 0;
  }

  .achievement__img {
    width: 100%;
    margin-top: 30px;
    text-align: center;
  }

  .achievement__img img {
    width: 100%;
  }

  .lower-company__wrap {
    display: block;
  }

  .lower-company__img {
    width: 100%;
    text-align: center;
  }

  .lower-company__img img {
    width: 100%;
  }

  .lower-company__text {
    width: 100%;
    margin-left: 0;
    margin-top: 30px;
  }

  .lower-company-table__title {
    font-size: 20px;
    height: 80px;
  }

  .overview__wrap {
    padding: 55px 0 100px;
  }

  .lower-subsidy__title {
    font-size: 20px;
    padding: 10px;
  }

  .overview__content {
    display: block;
  }

  .overview__img {
    width: 100%;
  }

  .overview-text__wrap {
    width: 100%;
    margin-left: 0;
  }

  .lower-subsidy__subtitle {
    margin-top: 30px;
  }

  .overview-text__wrap .section-text:first-of-type {
    margin-top: 10px;
  }

  .lower-subsidy__table dl {
    display: block;
  }

  .lower-subsidy__table dt {
    font-size: 18px;
    width: 100%;
    padding: 10px 0;
  }

  .lower-subsidy__table dd {
    width: 100%;
    padding: 20px;
  }

  .point-content {
    margin-top: 30px;
  }

  .point-content:nth-of-type(2) {
    margin-top: 72px;
  }

  .point-list {
    margin-top: 10px;
  }

  .point-content:nth-of-type(2) .point-list,
  .point-content:nth-of-type(3) .point-list {
    margin-top: 10px;
  }

  .point {
    margin-top: 20px;
  }

  .lower-advantage__wrap {
    display: block;
    margin-top: 30px;
  }

  .lower-advantage__img {
    width: 100%;
    text-align: center;
  }

  .lower-advantage__img img {
    width: 80%;
  }

  .lower-advantage__text {
    width: 100%;
    margin-top: 20px;
    padding-left: 0;
  }

  .lower-achievement__wrap {
    display: block;
  }

  .lower-achievement__img {
    width: 100%;
  }

  .lower-achievement__text {
    width: 100%;
    padding: 20px;
  }

  .lower-achievement__table {
    margin-top: 70px;
  }

  .lower-achievement__table dt {
    padding: 0 10px;
    margin-right: 4px;
  }

  .lower-achievement__table dl:not(:first-child) {
    margin-top: 4px;
  }

  .index dt {
    font-size: 16px;
  }

  .index li {
    font-size: 16px;
  }

  .form__field:nth-of-type(3) .form__label {
    padding: 20px 15px;
  }

  .form__field {
    display: block;
  }

  .form__label {
    width: 100%;
    padding: 20px 15px;
  }

  .form__data {
    width: 100%;
  }

  .form__input,
  .form__textarea {
    font-size: 16px;
    padding: 15px;
  }
}
/*# sourceMappingURL=style.css.map */