@charset "UTF-8";
html {
  font-size: 62.5%;
}

body {
  width: 100%;
  background-image: url(../img/bg.jpg);
  font-family: "Noto Sans JP", "Hiragino Sans", "Meiryo", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 1.6rem;
  color: #333;
}

main {
  overflow-x: auto;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
}

.inner {
  max-width: 1000px;
  width: 90%;
  margin: auto;
}

.loading-bg {
  width: 100%;
  height: 100%;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}

.loading {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.loading img {
  max-width: 90%;
  width: 320px;
  height: auto;
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.js-fadeLeft,
.js-fadeRight,
.js-fadeTop {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 1.6s, visibility 1.6s, -webkit-transform 1.3s;
  transition: opacity 1.6s, visibility 1.6s, -webkit-transform 1.3s;
  transition: opacity 1.6s, visibility 1.6s, transform 1.3s;
  transition: opacity 1.6s, visibility 1.6s, transform 1.3s, -webkit-transform 1.3s;
}

.js-fadeTop {
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
}

.js-fadeLeft {
  -webkit-transform: translateX(60px);
          transform: translateX(60px);
}

.js-fadeRight {
  -webkit-transform: translateX(-60px);
          transform: translateX(-60px);
}

.js-scroll {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.btn {
  display: block;
  text-align: center;
  padding: 1.6rem 0;
  color: #2A852A;
  letter-spacing: 0.025em;
  max-width: 100%;
  width: 350px;
  border: 1px solid #2A852A;
  background-color: #fff;
  position: relative;
  margin: auto;
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
  z-index: 1;
}
.btn span {
  display: inline-block;
  width: 100%;
  color: #2A852A;
  z-index: 1;
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
  position: relative;
}
.btn span::before, .btn span::after {
  content: "";
  position: absolute;
  top: 55%;
  right: 7%;
  height: 1px;
  background: #2A852A;
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
.btn span::before {
  width: 36px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.btn span::after {
  width: 10px;
  -webkit-transform: translateY(-50%) rotate(35deg);
          transform: translateY(-50%) rotate(35deg);
  -webkit-transform-origin: right center;
          transform-origin: right center;
}
.btn::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #2A852A;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: right;
          transform-origin: right;
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  z-index: -1;
}
.btn:hover span {
  color: #fff;
}
.btn:hover span::before, .btn:hover span::after {
  right: 6%;
  background: #fff;
}
.btn:hover::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: left;
          transform-origin: left;
}

.for-sp {
  display: none;
}

@media screen and (max-width: 798px) {
  .for-pc {
    display: none;
  }
  .for-sp {
    display: inline;
  }
}
@media screen and (max-width: 576px) {
  body {
    font-size: 1.4rem;
  }
  .inner {
    max-width: 90%;
  }
  .btn {
    width: 280px;
  }
  .btn span::before {
    width: 25px;
  }
  .btn span::after {
    width: 9px;
  }
}
.sec__title {
  text-align: center;
  margin-bottom: 60px;
}
.sec__title-en {
  font-size: 6rem;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  color: #E9F3D2;
}
.sec__title-ja {
  margin-top: -24px;
  font-size: 3.2rem;
  line-height: 1.5;
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.sec__title-ja span {
  color: #2A852A;
}

@media screen and (max-width: 1000px) {
  .sec__title {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 576px) {
  .sec__title-en {
    font-size: 4rem;
  }
  .sec__title-ja {
    margin-top: -16px;
    font-size: 2rem;
  }
}
.header {
  width: 100%;
  margin: auto;
  background-color: #fff;
}
.header__inner {
  max-width: 90%;
  height: 80px;
  margin: auto;
  padding: 20px 0 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  position: relative;
}
.header__logo {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.header__logo img {
  max-width: 250px;
}
.header__menu-btn {
  position: fixed;
  width: 30px;
  height: 40px;
  cursor: pointer;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  display: block;
  z-index: 100;
}
.header__menu-btn span {
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 2px;
  border-radius: 4px;
  background-color: #2A852A;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.header__menu-btn span:nth-of-type(1) {
  top: 0;
  -webkit-animation: menu-bar01 0.75s forwards;
          animation: menu-bar01 0.75s forwards;
}
.header__menu-btn span:nth-of-type(2) {
  top: 10px;
  -webkit-transition: all 0.25s 0.25s;
  transition: all 0.25s 0.25s;
  opacity: 1;
}
.header__menu-btn span:nth-of-type(3) {
  top: 20px;
  -webkit-animation: menu-bar03 0.75s forwards;
          animation: menu-bar03 0.75s forwards;
}
.header__menu-btn.is-active span {
  background-color: #fff;
}
.header__menu-btn.is-active span:nth-of-type(1) {
  -webkit-animation: active-menu-bar01 0.75s forwards;
          animation: active-menu-bar01 0.75s forwards;
}
.header__menu-btn.is-active span:nth-of-type(2) {
  opacity: 0;
}
.header__menu-btn.is-active span:nth-of-type(3) {
  -webkit-animation: active-menu-bar03 0.75s forwards;
          animation: active-menu-bar03 0.75s forwards;
}
.header__menu-btn.load span {
  -webkit-animation: none;
          animation: none;
}
.header__menu-btn::after {
  content: "MENU";
  color: #2A852A;
  font-size: 1.4rem;
  font-weight: 500;
  position: absolute;
  top: 32px;
  right: 50%;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.header__menu-btn.is-active::after {
  color: #fff;
  content: "CLOSE";
}

@-webkit-keyframes menu-bar01 {
  0% {
    -webkit-transform: translateY(10px) rotate(45deg);
            transform: translateY(10px) rotate(45deg);
  }
  50% {
    -webkit-transform: translateY(10px) rotate(0);
            transform: translateY(10px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
}

@keyframes menu-bar01 {
  0% {
    -webkit-transform: translateY(10px) rotate(45deg);
            transform: translateY(10px) rotate(45deg);
  }
  50% {
    -webkit-transform: translateY(10px) rotate(0);
            transform: translateY(10px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
}
@-webkit-keyframes menu-bar03 {
  0% {
    -webkit-transform: translateY(-10px) rotate(-45deg);
            transform: translateY(-10px) rotate(-45deg);
  }
  50% {
    -webkit-transform: translateY(-10px) rotate(0);
            transform: translateY(-10px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
}
@keyframes menu-bar03 {
  0% {
    -webkit-transform: translateY(-10px) rotate(-45deg);
            transform: translateY(-10px) rotate(-45deg);
  }
  50% {
    -webkit-transform: translateY(-10px) rotate(0);
            transform: translateY(-10px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
}
@-webkit-keyframes active-menu-bar01 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(10px) rotate(0);
            transform: translateY(10px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(10px) rotate(45deg);
            transform: translateY(10px) rotate(45deg);
  }
}
@keyframes active-menu-bar01 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(10px) rotate(0);
            transform: translateY(10px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(10px) rotate(45deg);
            transform: translateY(10px) rotate(45deg);
  }
}
@-webkit-keyframes active-menu-bar03 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(-10px) rotate(0);
            transform: translateY(-10px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(-10px) rotate(-45deg);
            transform: translateY(-10px) rotate(-45deg);
  }
}
@keyframes active-menu-bar03 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(-10px) rotate(0);
            transform: translateY(-10px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(-10px) rotate(-45deg);
            transform: translateY(-10px) rotate(-45deg);
  }
}
@media screen and (max-width: 576px) {
  .header__logo img {
    max-width: 220px;
  }
  .header__menu-btn::after {
    font-size: 1.2rem;
  }
}
.header__gnav {
  position: fixed;
}
.header__gnav__contents {
  position: absolute;
  top: 40%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 1000px;
  max-width: 95%;
  max-height: 95%;
  border-radius: 20px;
  padding: 40px 60px;
  background-color: #fff;
  opacity: 0;
  z-index: 99;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.header__gnav.is-gnav-active {
  z-index: 51;
  width: 100%;
  height: 100vh;
}
.header__gnav.is-gnav-active .header__gnav__contents {
  opacity: 1;
}
.header__gnav__logo {
  display: block;
  max-width: 250px;
  height: auto;
  margin: 0 auto 30px;
}
.header__gnav__menu {
  color: #2A852A;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.header__gnav__menu-l {
  width: 40%;
}
.header__gnav__parent-link, .header__gnav__child-link {
  display: block;
  color: #2A852A;
  font-weight: 600;
  padding: 0.8em 0;
  border-bottom: 3px dotted #C3D677;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  position: relative;
}
.header__gnav__parent-link::after, .header__gnav__child-link::after {
  content: "";
  width: 12px;
  height: 12px;
  background-image: url(../img/icon-arrow.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  position: absolute;
  top: 50%;
  right: 5px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.header__gnav__parent-link:hover, .header__gnav__child-link:hover {
  opacity: 0.8;
}
.header__gnav__parent-link:hover::after, .header__gnav__child-link:hover::after {
  right: 0px;
}
.header__gnav__parent-link, .header__gnav__parent-txt {
  font-size: 2rem;
}
.header__gnav__parent-link::before, .header__gnav__parent-txt::before {
  content: "-";
  padding-right: 0.5em;
}
.header__gnav__child-link {
  font-size: 1.6rem;
  margin-bottom: 0.5em;
}
.header__gnav__child-link::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #C3D677;
  margin-right: 0.5em;
}
.header__gnav__parent-txt {
  font-weight: 600;
  margin: 2em 0 1em;
}
.header__gnav__menu-r {
  text-align: center;
  width: 50%;
}
.header__gnav__menu-r .top-contact__tel {
  padding-bottom: 20px;
  border-bottom: 3px dotted #C3D677;
  margin-bottom: 25px;
}
.header__gnav__menu-r .top-contact__item__address {
  border-radius: 50px;
  padding: 2rem 0;
  margin: 10px auto 14px;
  border: 2px solid #2A852A;
  overflow: hidden;
}
.header__gnav__menu-r .top-contact__item__address::before {
  border-radius: 50px;
}
.header__gnav__menu-r .top-contact__item__address span::before {
  content: none;
}
.header__gnav__menu-r .top-contact__item__address span::after {
  width: 12px;
  height: 12px;
  background-color: transparent;
  background-image: url(../img/icon-arrow-w.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.header__gnav__menu-r .top-contact__item__address:hover span::after {
  right: 4%;
  background-color: transparent;
  background-image: url(../img/icon-arrow.svg);
  background-repeat: no-repeat;
  background-size: 100%;
}
.header__gnav__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 600;
  margin-top: 30px;
}
.header__gnav__sns__link {
  margin-left: 40px;
  padding-left: 1.5em;
  position: relative;
}
.header__gnav__sns__link::after {
  content: "";
  background-image: url(../img/icon-insta.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  width: 18px;
  height: 18px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.header__gnav-circle-bg {
  position: fixed;
  width: 100px;
  height: 100px;
  max-height: 100vh;
  border-radius: 50%;
  background-color: #2A852A;
  -webkit-transform: scale(0);
          transform: scale(0);
  right: -50px;
  top: -50px;
  -webkit-transition: 0.8s ease;
  transition: 0.8s ease;
  z-index: 50;
}
.header__gnav-circle-bg.is-circle-active {
  -webkit-transform: scale(50);
          transform: scale(50);
}

@media screen and (max-width: 576px) {
  .header__gnav__contents {
    top: 43%;
    max-height: 88%;
    padding: 30px 20px;
    overflow-y: scroll;
  }
  .header__gnav__menu-l {
    width: 100%;
    margin-bottom: 10px;
  }
  .header__gnav__menu-r {
    width: 100%;
  }
  .header__gnav__menu-r .top-contact__tel {
    padding-bottom: 10px;
    margin-bottom: 15px;
  }
  .header__gnav__menu-r .top-contact__item__address span::after {
    right: 5%;
  }
  .header__gnav__logo {
    max-width: 200px;
    margin: 0 auto 20px;
  }
  .header__gnav__parent-link, .header__gnav__parent-txt {
    font-size: 1.6rem;
  }
  .header__gnav__parent-txt {
    margin: 1.2em 0 0.5em;
  }
  .header__gnav__child-link {
    font-size: 1.4rem;
    margin-bottom: 0;
  }
}
.footer {
  font-size: 12px;
  text-align: center;
  padding-bottom: 30px;
}
.footer__logo img {
  max-width: 260px;
  height: auto;
  margin-bottom: 20px;
}
.footer__address {
  margin-bottom: 10px;
}

.sub__fv {
  position: relative;
  margin-bottom: 40px;
}
.sub__fv__wrap {
  width: 100%;
  overflow: hidden;
}
.sub__fv__contents {
  background-image: url(../img/service/img-maintenance-fv.jpg);
  background-size: 85%;
  background-repeat: no-repeat;
  background-position: center;
  min-height: 330px;
  border-bottom-right-radius: 2000px 500px;
  border-bottom-left-radius: 2000px 500px;
  margin-left: -200px;
  margin-right: -200px;
}
.sub__fv__ttl {
  background-color: rgba(42, 133, 42, 0.8);
  padding: 14px 30px;
  text-align: center;
  color: #fff;
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  font-weight: 600;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.sub__fv__ttl-jp {
  font-size: 3.2rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.3em;
}
.sub__fv__ttl-en {
  font-size: 1.8rem;
}

@media screen and (max-width: 1000px) {
  .sub__fv__ttl {
    width: 60%;
  }
  .sub__fv__ttl-jp {
    font-size: 2.4rem;
  }
  .sub__fv__ttl-en {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 576px) {
  .sub__fv__ttl {
    width: 80%;
  }
  .sub__fv__ttl-jp {
    font-size: 2rem;
  }
  .sub__fv__ttl-en {
    font-size: 1.4rem;
  }
}
.sub__link__tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 60px 0 80px;
}
.sub__link__item {
  display: inline-block;
  width: 300px;
  padding: 0.7em 0;
  font-size: 2rem;
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  font-weight: 500;
  text-align: center;
  position: relative;
}
.sub__link__item.--active {
  background-color: #2A852A;
  color: #fff;
}
.sub__link__item.--active::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -10px;
  border: 10px solid transparent;
  border-top: 10px solid #2A852A;
}
.sub__link__item.--link {
  border: 1px solid #2A852A;
  color: #2A852A;
}
.sub__link__item:not(:first-child) {
  margin-left: 50px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.sub__link__item:not(:first-child):hover {
  color: #fff;
  background-color: #2A852A;
}

@media screen and (max-width: 576px) {
  .sub__link__tab {
    margin: 40px 0 60px;
  }
  .sub__link__item {
    font-size: 1.6rem;
  }
  .sub__link__item.--active::after {
    margin-left: -8px;
    border: 8px solid transparent;
    border-top: 8px solid #2A852A;
  }
  .sub__link__item:not(:first-child) {
    margin-left: 20px;
  }
}
.sub__contents__ttl {
  font-size: 4rem;
  letter-spacing: 0.05em;
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  font-weight: 500;
  color: #2A852A;
  text-align: center;
  margin-bottom: 60px;
}
.sub__contents__lead {
  text-align: center;
  line-height: 1.75;
}
.sub__contents__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 120px;
}
.sub__contents__item__txt {
  display: inline-block;
  width: 50%;
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid #fff;
  padding: 50px 35px;
  position: relative;
  z-index: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.sub__contents__item__ttl {
  font-size: 3rem;
  letter-spacing: 0.05em;
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  font-weight: 500;
  color: #2A852A;
  padding-left: 1em;
  margin-bottom: 30px;
  position: relative;
}
.sub__contents__item__ttl::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 51%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 20px;
  height: 2px;
  background-color: #C3D677;
  margin-right: 0.5em;
}
.sub__contents__item__description {
  line-height: 1.75;
}
.sub__contents__item__img {
  width: 60%;
  margin-left: -5%;
  position: relative;
  z-index: -1;
}
.sub__contents__item__img img {
  width: 100%;
}
.sub__contents__item:nth-of-type(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.sub__contents__item:nth-of-type(even) .sub__contents__item__img {
  margin-left: 0;
  margin-right: -5%;
}

@media screen and (max-width: 1000px) {
  .sub__contents__ttl {
    font-size: 3.2rem;
  }
  .sub__contents__item__ttl {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 576px) {
  .sub__contents__ttl {
    font-size: 2.4rem;
    margin-bottom: 40px;
  }
  .sub__contents__lead {
    text-align: left;
  }
  .sub__contents__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 60px;
  }
  .sub__contents__item__txt {
    margin-top: -3%;
    width: 95%;
    padding: 35px 30px;
  }
  .sub__contents__item__ttl {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  .sub__contents__item__ttl::before {
    width: 16px;
  }
  .sub__contents__item__img {
    width: 100%;
    margin-left: 0;
  }
  .sub__contents__item:nth-of-type(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .sub__contents__item:nth-of-type(even) .sub__contents__item__img {
    margin-right: 0;
  }
}
.sub__topics {
  background-color: #2A852A;
  text-align: center;
  padding: 30px 0;
}
.sub__topics__ttl {
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.5;
  color: #fff;
  margin-bottom: 20px;
}
.sub__topics .btn::before {
  background: #C3D677;
}

.breadcrumb a {
  color: #2A852A;
  text-decoration: underline;
}
.breadcrumb ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.breadcrumb li {
  position: relative;
}
.breadcrumb li:not(:first-child) {
  padding-left: 30px;
}
.breadcrumb li:not(:first-child)::before {
  content: "";
  width: 6px;
  height: 12px;
  background-image: url(../img/icon-arrow-m.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  position: absolute;
  left: 15px;
  top: 53%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.price {
  width: 100%;
  background-color: #E3E4D6;
  background-blend-mode: multiply;
  padding: 60px 0 80px;
  margin-bottom: 120px;
}
.price__ttl {
  font-size: 3.2rem;
  letter-spacing: 0.05em;
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  font-weight: 500;
  color: #2A852A;
  text-align: center;
  margin-bottom: 30px;
}
.price__sub {
  font-size: 1.4rem;
  text-align: right;
  margin-top: 10px;
  margin-bottom: 10px;
}
.price__table {
  width: 100%;
}
.price__table th, .price__table td {
  height: 50px;
  text-align: center;
  vertical-align: middle;
  border: 1px solid #ccc;
}
.price__table:not(:first-of-type) tr:first-of-type th, .price__table:not(:first-of-type) tr:first-of-type td {
  border-top: none;
}
.price__table th {
  width: 174px;
  font-weight: 400;
  background-color: #2A852A;
  color: #fff;
}
.price__table .price__table__top td {
  background-color: #E9F3D2;
}
.price__table .price__table__date td {
  font-size: 1.8rem;
  font-weight: 500;
  color: #2A852A;
  background-color: #fff;
}
.price__table .price__table__date td span {
  font-size: 2.2rem;
}
.price__note {
  font-size: 1.4rem;
  line-height: 1.7;
  padding-left: 1rem;
  text-indent: -1rem;
  margin: 30px 0 50px;
}
.price__single {
  max-width: 800px;
  margin: auto;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.price__single__name, .price__single__num {
  width: 50%;
  padding: 2.2rem 0;
  font-size: 2rem;
  font-weight: 500;
}
.price__single__name {
  background-color: #2A852A;
  color: #fff;
  position: relative;
}
.price__single__name::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  margin-top: -10px;
  border: 10px solid transparent;
  border-left: 10px solid #2A852A;
}
.price__single__num {
  color: #2A852A;
  background-color: #fff;
}
.price__single__num span {
  font-size: 2.4rem;
}
.price__attention {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid #ccc;
  text-align: center;
  font-weight: 600;
  color: #2A852A;
  line-height: 1.5;
  padding: 0.8em 0;
}

@media screen and (max-width: 1000px) {
  .price__ttl {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 576px) {
  .price {
    padding: 40px 0 60px;
    margin-bottom: 60px;
  }
  .price__ttl {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  .price__sub {
    font-size: 1.2rem;
    margin-top: 5px;
    margin-bottom: 5px;
  }
  .price__table thead {
    display: none;
  }
  .price__table tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 100%;
  }
  .price__table th {
    width: 100%;
    height: 40px;
    line-height: 40px;
  }
  .price__table td {
    display: block;
    width: 100%;
    height: 40px;
    line-height: 40px;
    padding-right: 1em;
    text-align: right;
  }
  .price__table td::before {
    content: attr(data-label);
    float: left;
    width: 45%;
    font-size: 1.4rem;
    padding: 0 0.5em;
    text-align: center;
    background-color: #E9F3D2;
  }
  .price__single__name, .price__single__num {
    padding: 1.8rem 0;
    font-size: 1.6rem;
  }
  .price__single__num span {
    font-size: 2rem;
  }
}
.result {
  margin-bottom: 120px;
}
.result__ttl {
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  font-weight: 500;
  font-size: 2.4rem;
  letter-spacing: 0.05em;
  color: #2A852A;
  text-align: center;
  margin-bottom: 40px;
}
.result__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.result__img {
  max-width: 480px;
  width: calc(50% - 40px);
  margin-bottom: 40px;
}
.result__contents.three-row::after {
  content: "";
  display: block;
  width: calc(33.3333333333% - 50px);
}
.result__contents.single-row img {
  width: 100%;
  max-width: 680px;
}
.result__contents.three-row img {
  width: calc(33.3333333333% - 50px);
}

@media screen and (max-width: 576px) {
  .result__ttl {
    font-size: 2.4rem;
    letter-spacing: 0.05em;
    color: #2A852A;
    text-align: center;
    margin-bottom: 40px;
  }
  .result__img {
    width: 100%;
    margin-bottom: 20px;
  }
  .result__contents.three-row {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .result__contents.three-row::after {
    width: calc(50% - 10px);
  }
  .result__contents.three-row img {
    width: calc(50% - 10px);
  }
}
.fv {
  position: relative;
  margin-bottom: 120px;
}
.fv__wrap {
  width: 100%;
  overflow: hidden;
}
.fv__contents {
  background-image: url(../img/fv.jpg);
  background-size: 80%;
  background-repeat: no-repeat;
  background-position: top 40% center;
  min-height: 40vw;
  border-bottom-right-radius: 2000px 300px;
  border-bottom-left-radius: 2000px 300px;
  margin-left: -200px;
  margin-right: -200px;
}
.fv__img {
  max-width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.fv__contact {
  max-width: 190px;
  position: absolute;
  right: 5%;
  bottom: 0;
}

@media screen and (min-width: 1600px) {
  .fv__contents {
    background-size: 86%;
  }
}
@media screen and (min-width: 1200px) {
  .fv__contents {
    background-size: 83%;
  }
}
@media screen and (max-width: 1000px) {
  .fv__contents {
    min-height: 48.7804878049vw;
  }
}
@media screen and (max-width: 576px) {
  .fv {
    margin-bottom: 80px;
  }
  .fv__contents {
    background-image: url(../img/fv-sp.jpg);
    background-size: 70%;
    background-position: center;
    min-height: 500px;
    border-bottom-right-radius: 2000px 600px;
    border-bottom-left-radius: 2000px 600px;
  }
  .fv__img {
    width: 100%;
    max-width: 80%;
  }
  .fv__contact {
    max-width: 130px;
    right: 2%;
    bottom: -15%;
  }
}
.about {
  margin-bottom: 120px;
}
.about .inner {
  max-width: 1100px;
}
.about__top-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.about__copy {
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  font-weight: 400;
  font-size: 3.2rem;
  letter-spacing: 5px;
  line-height: 1.5;
  width: 22%;
  text-align: center;
}
.about__copy span {
  border-radius: 20px;
  background: -webkit-gradient(linear, left top, right top, color-stop(35%, transparent), color-stop(35%, #E9F3D2), color-stop(65%, #E9F3D2), color-stop(65%, transparent));
  background: linear-gradient(90deg, transparent 35%, #E9F3D2 35%, #E9F3D2 65%, transparent 65%);
}
.about__img {
  height: auto;
}
.about__bottom-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: auto;
  background-image: url(../img/bg-about.png);
  background-repeat: no-repeat;
  background-position: right bottom;
}
.about__txt {
  margin-top: 40px;
  margin-left: 40px;
}
.about__subcopy {
  font-size: 2.2rem;
  color: #2A852A;
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.05em;
  margin-bottom: 40px;
}
.about__description {
  line-height: 1.7;
}

@media screen and (max-width: 1000px) {
  .about {
    margin-bottom: 80px;
  }
  .about__copy {
    width: 18%;
    font-size: 2.6rem;
  }
  .about__img:not(.js-fadeRight) {
    width: 80%;
  }
  .about__bottom-contents {
    padding-bottom: 8em;
    background-size: 20%;
  }
}
@media screen and (max-width: 576px) {
  .about {
    margin-bottom: 20px;
  }
  .about .inner {
    max-width: 90%;
  }
  .about__top-contents {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .about__copy {
    font-size: 2rem;
  }
  .about__img {
    width: 100%;
    margin-top: 20px;
  }
  .about__txt {
    margin: 30px auto 0;
  }
  .about__subcopy {
    text-align: center;
    font-size: 1.7rem;
    margin-bottom: 30px;
  }
  .about__bottom-contents {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding-bottom: 80px;
    background-size: 22%;
  }
}
.top-service {
  background-image: url(../img/bg-service01.png), url(../img/bg-service02.png), url(../img/bg-service03.png);
  background-repeat: no-repeat;
  background-position: left -3% top 30%, right -5% bottom 38%, left 0 bottom 5%;
  padding-bottom: 80px;
}
.top-service__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 80px;
}
.top-service__item__img {
  width: 55%;
  z-index: 1;
}
.top-service__item__txt {
  width: 50%;
  padding: 70px 40px 70px 100px;
  border: 1px solid #2A852A;
  text-align: center;
  margin-left: -5%;
  margin-top: 50px;
  position: relative;
}
.top-service__item__num {
  position: absolute;
  top: 0;
  right: 0;
}
.top-service__item__num img {
  width: 68px;
  height: 52px;
}
.top-service__item__ttl {
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}
.top-service__item__ttl-en {
  font-size: 2rem;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  color: #2A852A;
  margin-bottom: 30px;
}
.top-service__item__description {
  text-align: left;
  line-height: 1.7;
  margin-bottom: 20px;
}
.top-service__item:nth-of-type(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.top-service__item:nth-of-type(even) .top-service__item__txt {
  margin-left: 0;
  margin-right: -5%;
  padding: 70px 100px 70px 50px;
}
.top-service__item:nth-of-type(even) .top-service__item__num {
  right: auto;
  left: 0;
}

@media screen and (max-width: 1000px) {
  .top-service__item__txt {
    padding: 40px 30px 40px 60px;
  }
  .top-service__item:nth-of-type(even) .top-service__item__txt {
    padding: 40px 60px 40px 30px;
  }
}
@media screen and (max-width: 576px) {
  .top-service {
    background-size: 30%;
    background-position: left -3% top 35%, right -5% bottom 33%, left 0 bottom 3%;
    padding-bottom: 60px;
  }
  .top-service__item {
    margin-bottom: 30px;
  }
  .top-service__item__img {
    width: 100%;
  }
  .top-service__item__txt {
    width: 100%;
    padding: 25px 20px 20px;
    margin-left: 0;
    margin-top: 10px;
  }
  .top-service__item__num img {
    width: 50px;
    height: 38px;
  }
  .top-service__item__ttl {
    font-size: 1.8rem;
  }
  .top-service__item__ttl-en {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }
  .top-service__item:nth-of-type(even) .top-service__item__txt {
    margin-right: 0;
    padding: 25px 20px 20px;
  }
}
.instagram {
  margin-bottom: 120px;
}
.instagram__inner {
  max-width: 800px;
  margin: auto;
}
.instagram__link {
  text-align: center;
}
.instagram__btn {
  margin: 30px auto 0;
}
.instagram__btn::after {
  content: "";
  background-image: url(../img/icon-insta.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  width: 18px;
  height: 18px;
  position: absolute;
  top: 50%;
  left: 10%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media screen and (max-width: 576px) {
  .instagram__btn {
    margin: 20px auto 0;
  }
}
.top-contact {
  margin-bottom: 120px;
}
.top-contact__box {
  text-align: center;
  padding: 0 80px;
  background-color: #F5F4EF;
  background-blend-mode: multiply;
  width: 100%;
  position: relative;
}
.top-contact__box::before, .top-contact__box::after {
  content: "";
  width: 100%;
  height: 0;
  display: block;
  position: absolute;
  left: 0;
}
.top-contact__box::before {
  border-bottom: solid 60px #F5F4EF;
  border-left: solid 60px transparent;
  bottom: 100%;
}
.top-contact__box::after {
  border-top: solid 60px #F5F4EF;
  border-right: solid 60px transparent;
  top: 100%;
}
.top-contact__img {
  position: absolute;
  top: -40%;
  left: 6%;
}
.top-contact__catch {
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  font-weight: 600;
  font-size: 3.2rem;
  color: #2A852A;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.top-contact__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 30px;
}
.top-contact__tel .top-contact__item__ttl::before, .top-contact__mail .top-contact__item__ttl::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-size: 100%;
  background-repeat: no-repeat;
}
.top-contact__tel .top-contact__item__ttl::before {
  width: 16px;
  height: 16px;
  background-image: url(../img/icon-tel.svg);
}
.top-contact__mail .top-contact__item__ttl::before {
  width: 17px;
  height: 12px;
  background-image: url(../img/icon-mail.svg);
}
.top-contact__item {
  width: calc(50% - 30px);
  padding: 25px 20px 20px;
  background-color: #fff;
}
.top-contact__item__ttl {
  display: inline-block;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 10px;
  padding-left: 1.2em;
  position: relative;
}
.top-contact__item__num {
  display: block;
  font-size: 3.6rem;
  font-weight: 600;
  color: #2A852A;
  margin-bottom: 10px;
  letter-spacing: 0.03em;
}
.top-contact__item__address {
  color: #fff;
  border: 1px solid #2A852A;
  background-color: #2A852A;
  margin-bottom: 8px;
}
.top-contact__item__address span {
  color: #fff;
}
.top-contact__item__address span::before, .top-contact__item__address span::after {
  right: 5%;
  background: #fff;
}
.top-contact__item__address::before {
  background: #fff;
}
.top-contact__item__address:hover span {
  color: #2A852A;
}
.top-contact__item__address:hover span::before, .top-contact__item__address:hover span::after {
  right: 3%;
  background: #2A852A;
}

@media screen and (max-width: 1000px) {
  .top-contact__box {
    padding: 0 30px;
  }
  .top-contact__item {
    width: calc(50% - 10px);
  }
  .top-contact__item__address span::before,
  .top-contact__item__address span::after {
    content: none;
  }
}
@media screen and (max-width: 576px) {
  .top-contact {
    margin-bottom: 80px;
  }
  .top-contact__img {
    top: -20%;
    max-width: 100px;
  }
  .top-contact__box {
    padding: 15px 20px 0;
  }
  .top-contact__box::before {
    border-bottom: solid 30px #F5F4EF;
    border-left: solid 30px transparent;
  }
  .top-contact__box::after {
    border-top: solid 30px #F5F4EF;
    border-right: solid 30px transparent;
  }
  .top-contact__catch {
    font-size: 2rem;
    letter-spacing: 0.05em;
  }
  .top-contact__lead {
    text-align: left;
    line-height: 1.5;
  }
  .top-contact__contents {
    margin-top: 20px;
  }
  .top-contact__item {
    width: 100%;
    padding: 18px;
    margin-bottom: 20px;
  }
  .top-contact__item__ttl {
    font-size: 1.6rem;
  }
  .top-contact__item__num {
    font-size: 2.8rem;
  }
  .top-contact__item__address {
    width: 270px;
    padding-right: 0.8em;
  }
  .top-contact__item__address span::before,
  .top-contact__item__address span::after {
    content: "";
    right: -1%;
  }
}
.maintenance__column {
  width: 100%;
  max-width: 800px;
  background-color: #fff;
  border: 1px solid #C3D677;
  margin: 0 auto 120px;
  padding: 30px 20px;
}
.maintenance__column__ttl {
  font-size: 2.4rem;
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  font-weight: 500;
  color: #2A852A;
  letter-spacing: 0.05em;
  margin-bottom: 30px;
  text-align: center;
}
.maintenance__column__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 15px;
}
.maintenance__column__item:not(:first-of-type) {
  padding-top: 15px;
  border-top: 1px solid #E3E4D6;
}
.maintenance__column__item__head {
  width: 15%;
  padding: 0 15px;
  display: inline-block;
  background-color: #E9F3D2;
  border-radius: 10px;
  font-size: 2rem;
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  font-weight: 500;
  color: #2A852A;
  letter-spacing: 0.05em;
  text-align: center;
  position: relative;
}
.maintenance__column__item__head p {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.maintenance__column__item__txt {
  width: 82%;
  line-height: 1.75;
}
.maintenance__column__item__txt .accent {
  color: #2A852A;
}

@media screen and (max-width: 576px) {
  .maintenance__column {
    padding: 30px 20px 15px;
    margin: 0 auto 60px;
  }
  .maintenance__column__item {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .maintenance__column__item__head {
    width: 100%;
    font-size: 1.8rem;
    border-radius: 5px;
    line-height: 1.8;
    margin-bottom: 10px;
  }
  .maintenance__column__item__head p {
    position: relative;
  }
  .maintenance__column__item__txt {
    width: 100%;
    line-height: 1.5;
  }
}
.felling__price {
  margin-top: 60px;
}

@media screen and (max-width: 576px) {
  .pruning__price .price__table:first-of-type .price__table__top {
    display: none;
  }
  .pruning__price .price__table:nth-of-type(2) .price__table__top td {
    display: none;
  }
}
.weeding__column {
  width: 100%;
  max-width: 800px;
  text-align: center;
  background-color: #fff;
  border: 1px solid #2A852A;
  margin: 0 auto 120px;
  padding: 40px 20px;
}
.weeding__column__ttl {
  font-size: 2rem;
  color: #2A852A;
  font-weight: 600;
  margin-bottom: 30px;
}
.weeding__column__list {
  max-width: 400px;
  margin: 0 auto 20px;
  text-align: left;
  line-height: 2;
}
.weeding__column__list li {
  padding-left: 1.7em;
  position: relative;
}
.weeding__column__list li .accent {
  color: #2A852A;
}
.weeding__column__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 60%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url(../img/icon-check.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  width: 17px;
  height: 17px;
}

.cleaning__price .price__table {
  width: 80%;
}
.cleaning__price__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  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;
  margin-bottom: 40px;
}
.cleaning__price__flex__plus {
  font-size: 2rem;
  color: #2A852A;
  font-weight: 600;
}
.cleaning__price__garbage-fee {
  width: 17%;
  height: 100px;
  line-height: 100px;
  background-color: #fff;
  border: 1px solid #ccc;
  color: #2A852A;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-align: center;
}

@media screen and (max-width: 576px) {
  .cleaning__price .price__table {
    width: 100%;
  }
  .cleaning__price__flex {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 30px;
  }
  .cleaning__price__flex__plus {
    display: block;
  }
  .cleaning__price__garbage-fee {
    width: 100%;
    height: auto;
    font-size: 1.8rem;
    line-height: 2;
  }
}
.renewal .sub__fv__contents {
  background-image: url(../img/service/img-renewal-fv.jpg);
  background-position: top 25% center;
}

.remake__images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 80px;
}
.remake__images__item {
  width: calc(33.3333333333% - 20px);
}
.remake__images__name {
  font-size: 2rem;
  margin-top: 1rem;
  letter-spacing: 0.05em;
  text-align: center;
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  font-weight: 500;
  color: #2A852A;
}

.planting__message {
  margin-top: 60px;
}
.planting__message .price__message {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid #ccc;
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  font-weight: 500;
  text-align: center;
  font-size: 2rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  padding: 0.8em;
}

@media screen and (max-width: 1000px) {
  .remake__images__name {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 576px) {
  .remake__images {
    margin-bottom: 60px;
  }
  .remake__images__item {
    width: calc(33.3333333333% - 5px);
  }
  .remake__images__name {
    font-size: 1.4rem;
  }
  .planting__message {
    margin-top: 40px;
  }
  .planting__message .price__message {
    text-align: left;
    font-size: 1.4rem;
  }
}
.other .sub__fv__contents {
  background-image: url(../img/service/img-other-fv.jpg);
}

.arrangements__images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 80px;
}
.arrangements__images__item {
  width: calc(33.3333333333% - 20px);
}

@media screen and (max-width: 576px) {
  .arrangements__images {
    margin-bottom: 60px;
  }
  .arrangements__images__item {
    width: calc(33.3333333333% - 5px);
  }
}
.other__column {
  width: 100%;
  background-color: #E3E4D6;
  background-blend-mode: multiply;
  padding: 60px 0;
  margin-bottom: 120px;
}
.other__column__box {
  width: 100%;
  max-width: 800px;
  text-align: center;
  background-color: #fff;
  border: 1px solid #2A852A;
  padding: 40px 20px 20px;
  margin: auto;
}
.other__column__ttl {
  font-size: 2rem;
  color: #2A852A;
  font-weight: 600;
  margin-bottom: 30px;
}
.other__column__lead {
  line-height: 2;
  margin-bottom: 1.6rem;
}

.other .result .result__contents::after {
  content: "";
  display: block;
  width: calc(50% - 40px);
}

@media screen and (max-width: 576px) {
  .other__column {
    margin-bottom: 60px;
    padding: 40px 0;
  }
  .other__column__box {
    padding: 30px 20px 20px;
  }
  .other__column__ttl {
    font-size: 1.8rem;
    margin-bottom: 20px;
    line-height: 1.4;
  }
  .other__column__lead {
    line-height: 1.5;
    margin-bottom: 1.4rem;
    text-align: left;
  }
  .other .result .result__contents::after {
    width: 100%;
  }
}
.contact .sub__fv__contents {
  background-image: url(../img/contact/img-contact-fv.jpg);
  background-position: top 25% center;
}

.contact__form {
  margin-top: 60px;
  margin-bottom: 180px;
}
.contact__form .inner {
  max-width: 900px;
}
.contact__form .sub__contents__lead {
  margin-bottom: 60px;
}
.contact__form .errs ul li {
  color: #FF6565;
  line-height: 1.5;
}
.contact__form .errs ul li:last-of-type {
  margin-bottom: 1em;
}

.contact__form form dt {
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
}
.contact__form form dd {
  margin-bottom: 4rem;
}
.contact__form form dd.radio-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.contact__form form dd .radioelement {
  margin-left: 40px;
  line-height: 1.5;
}
.contact__form form input[type=text] {
  width: 100%;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 1em 1.5em;
}
.contact__form form input::-webkit-input-placeholder {
  color: #ccc;
}
.contact__form form input::-moz-placeholder {
  color: #ccc;
}
.contact__form form input:-ms-input-placeholder {
  color: #ccc;
}
.contact__form form input::-ms-input-placeholder {
  color: #ccc;
}
.contact__form form input::placeholder {
  color: #ccc;
}
.contact__form form textarea {
  width: 100%;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 1em 1.5em;
}
.contact__form form textarea::-webkit-input-placeholder {
  color: #ccc;
}
.contact__form form textarea::-moz-placeholder {
  color: #ccc;
}
.contact__form form textarea:-ms-input-placeholder {
  color: #ccc;
}
.contact__form form textarea::-ms-input-placeholder {
  color: #ccc;
}
.contact__form form textarea::placeholder {
  color: #ccc;
}
.contact__form form textarea[name] {
  background-image: none;
}
.contact__form form .title {
  font-weight: 600;
  padding-left: 5.5rem;
  position: relative;
}
.contact__form form .title::after {
  content: "任意";
  color: #fff;
  font-size: 1.4rem;
  background-color: #AFAFAF;
  border-radius: 5px;
  position: absolute;
  padding: 0.3em 0.7em;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.contact__form form .title.required::after {
  content: "必須";
  background-color: #FF6565;
}
.contact__form form .contact__form__btn {
  color: #fff;
  border: 1px solid #2A852A;
  background-color: #2A852A;
}
.contact__form form .contact__form__btn span {
  position: absolute;
  right: 5px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.contact__form form .contact__form__btn span::before, .contact__form form .contact__form__btn span::after {
  background: #fff;
}
.contact__form form .contact__form__btn::before {
  background: #fff;
}
.contact__form form .contact__form__btn:hover {
  color: #2A852A;
}
.contact__form form .contact__form__btn:hover span {
  color: #2A852A;
}
.contact__form form .contact__form__btn:hover span::before, .contact__form form .contact__form__btn:hover span::after {
  right: 6%;
  background: #2A852A;
}

@media screen and (max-width: 576px) {
  .contact__form form dt {
    margin-bottom: 1.2rem;
  }
  .contact__form form dd {
    margin-bottom: 2rem;
  }
}
.confirm__form form dt {
  margin-bottom: 1.2rem;
}
.confirm__form form dd {
  margin-bottom: 2rem;
}
.confirm__form form p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 20px auto;
}
.confirm__form form input[type=button],
.confirm__form form input[type=submit] {
  display: block;
  text-align: center;
  padding: 1.6rem 0;
  letter-spacing: 0.025em;
  width: 200px;
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
.confirm__form form input[type=button] {
  color: #2A852A;
  border: 1px solid #2A852A;
  background-color: #fff;
}
.confirm__form form input[type=submit] {
  color: #fff;
  border: 1px solid #2A852A;
  background-color: #2A852A;
}

.privacy {
  width: 100%;
  max-width: 600px;
  margin: 0 auto 60px;
  background-color: #fff;
  border: 1px solid #ddd;
  padding: 24px 30px 20px;
}
.privacy__ttl {
  font-size: 1.8rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 14px;
}
.privacy__lead {
  font-size: 1.4rem;
  line-height: 1.75;
}

@media screen and (max-width: 576px) {
  .privacy {
    padding: 20px;
    margin: 0 auto 40px;
  }
  .privacy__ttl {
    font-size: 1.6rem;
  }
  .privacy__lead {
    font-size: 1.2rem;
    line-height: 1.5;
  }
}