@charset "UTF-8";
body {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-size: 16px;
  background: #d3e1d6;
  margin-top: 97px;
  margin-bottom: 100px;
}

.header {
  width: 100%;
  background: #28a62e;
  top: 0;
  left: 0;
  position: fixed;
  z-index: 999;
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .header__inner {
    max-width: 1200px;
    padding: 20px 30px;
    margin-left: auto;
    margin-right: auto;
  }
}

.header__logo {
  color: #ffffff;
  font-size: 24px;
  font-weight: bold;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__nav {
  display: none;
}
@media screen and (min-width: 768px) {
  .header__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 20px;
    gap: 40px;
    color: #fff;
  }
}

.header__nav-link:hover {
  color: #093d0c;
  cursor: pointer;
}

@media screen and (min-width: 768px) {
  .header__open {
    display: none;
  }
}

.drawer-icon {
  position: relative;
  width: 30px;
  height: 30px;
  border: none;
  z-index: 51;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(1) {
  top: 10px;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(2) {
  display: none;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(3) {
  top: 10px;
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
}

.drawer-icon__bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 3px;
  border-radius: 5px;
  background: #fff;
  -webkit-transition: top 0.3s linear, -webkit-transform 0.3s linear;
  transition: top 0.3s linear, -webkit-transform 0.3s linear;
  transition: transform 0.3s linear, top 0.3s linear;
  transition: transform 0.3s linear, top 0.3s linear, -webkit-transform 0.3s linear;
}
.drawer-icon__bar:nth-of-type(2) {
  top: 10px;
}
.drawer-icon__bar:nth-of-type(3) {
  top: 20px;
}

.drawer-content {
  width: 375px;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  background: #1a6f1e;
  z-index: 50;
  padding: 97px 40px 40px;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.3s linear;
  transition: -webkit-transform 0.3s linear;
  transition: transform 0.3s linear;
  transition: transform 0.3s linear, -webkit-transform 0.3s linear;
}
.drawer-content.is-checked {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.drawer-content__link {
  display: block;
  padding-top: 14px;
  padding-bottom: 14px;
  text-align: right;
  font-size: 30px;
  color: #fff;
  font-weight: bold;
  line-height: 1.7;
  letter-spacing: 0.48px;
}
.drawer-content__link:hover {
  color: #093d0c;
}

/*共通*/
.inner {
  padding: 32px 15px;
  max-width: 630px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .inner {
    max-width: 900px;
  }
}

.title {
  font-size: 32px;
  color: #093d0c;
}

.title__text {
  margin: 4px 0 0 15px;
  font-size: 14px;
  color: #1a6f1e;
}

.button {
  display: block;
  width: 150px;
  height: 50px;
  color: #fff;
  background: #28a62e;
  border-radius: 30px;
  border: none;
  margin-left: auto;
  margin-right: auto;
}

.hidden-sp {
  display: block;
}
@media screen and (min-width: 768px) {
  .hidden-sp {
    display: block;
  }
}

/*ファーストビュー*/
.fv__img {
  width: 100%;
  height: auto;
}
.fv__img img {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .fv__img img {
    max-height: 500px;
    display: block;
    margin: 0 auto;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.gallery__pages {
  margin-top: 20px;
  text-align: center;
}

.gallery__page + .gallery__page {
  margin-top: 30px;
}

.gallery__img {
  width: 300px;
  height: 380px;
}

.gallery__text {
  margin-top: 8px;
  color: #093d0c;
}

.gallery__swiper {
  padding-bottom: 30px !important;
}

.gallery__pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
  bottom: 0 !important;
}
.gallery__pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin-left: 0 !important;
  margin-right: 0 !important;
  background: #9ac49c;
  opacity: 1;
}
.gallery__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #1a6f1e;
}

.gallery__prev::after {
  color: #1a6f1e;
}

.gallery__next::after {
  color: #1a6f1e;
}

.service__contents {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .service__contents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    gap: 20px;
  }
}

.service__content {
  margin-top: 30px;
  background: #fff;
  width: 300px;
  border-radius: 10px;
  padding: 15px;
  margin-left: auto;
  margin-right: auto;
  border: 3px solid #093d0c;
}
@media screen and (min-width: 768px) {
  .service__content {
    width: 180px;
  }
}

.service__img {
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
}
.service__img img {
  width: 80px;
}

.service__text {
  margin-top: 8px;
  font-weight: bold;
}

.about__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-radius: 10px;
}

.about__text {
  display: block;
  width: 70%;
  font-size: 14px;
  padding: 0 10px;
}
@media screen and (min-width: 768px) {
  .about__text {
    padding-left: 150px;
    font-size: 16px;
  }
}

.about__img {
  width: 150px;
  display: block;
}
.about__img img {
  border-radius: 0 10px 10px 0;
}

.contact__form {
  margin-top: 20px;
  background: #fff;
  border-radius: 10px;
  padding: 30px 20px;
}
@media screen and (min-width: 768px) {
  .contact__form {
    padding: 50px;
  }
}

.contact__fields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

.contact__button {
  margin-top: 20px;
}

@media screen and (min-width: 768px) {
  .form-field {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
  }
}

.form-field__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .form-field__head {
    width: 200px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

.form-field__label {
  font-weight: bold;
}

.form-field__tag {
  display: inline-block;
  border-radius: 2px;
  background: rgb(230, 89, 113);
  padding: 5px 8px;
  font-size: 12px;
  color: #fff;
  font-weight: bold;
}

.form-field__item {
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .form-field__item {
    margin-top: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}
.form-field__item [type=text],
.form-field__item [type=email] {
  width: 100%;
  border-radius: 10px;
  border: 3px solid #28a62e;
  padding: 10px 20px;
}
.form-field__item textarea {
  width: 100%;
  height: 180px;
  border-radius: 10px;
  border: 3px solid #28a62e;
  padding: 10px 20px;
}

.contact-form {
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
}
.contact-form a {
  color: #093d0c;
  font-size: 20px;
  font-weight: bold;
  border-bottom: 3px solid #093d0c;
}