@charset "UTF-8";
/*
.hoge {
  z-index: map.get($layer, modal);
}
*/
/* FLOCSS
----------------------------------------------------- */
#page_top {
  display: none;
  position: fixed;
  right: 20px;
  bottom: 40px;
  z-index: 999;
}
#page_top a:focus, #page_top a:hover {
  opacity: 1;
  -webkit-filter: brightness(90%);
          filter: brightness(90%);
}

.content {
  max-width: 1140px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 15px;
  padding-left: 15px;
}
.content._margin {
  padding-top: 100px;
  padding-bottom: 100px;
}

.top-header__inner,
.header__inner {
  padding-left: 30px;
  padding-right: 30px;
  height: 100px;
  background-color: rgba(4, 108, 54, 0.75);
}
.top-header-utilities,
.header-utilities {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.top-header-logo-area,
.header-logo-area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding-right: 15px;
  height: 100px;
}
.top-header-logo-area__logo--img,
.header-logo-area__logo--img {
  width: 300px;
}
.top-header-nav-area,
.header-nav-area {
  margin-left: auto;
  height: 100px;
}
.top-header-tel,
.header-tel {
  padding: 15px 0 10px;
  text-align: right;
}
.top-header-nav,
.header-nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.top-header-nav__wrapper,
.header-nav__wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.top-header-nav__item,
.header-nav__item {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  text-align: center;
}
.top-header-nav__item + .top-header-nav__item,
.top-header-nav__item + .header-nav__item,
.header-nav__item + .top-header-nav__item,
.header-nav__item + .header-nav__item {
  margin-left: 35px;
}
.top-header-nav__link,
.header-nav__link {
  position: relative;
  display: block;
  border-bottom: 4px solid transparent;
  text-decoration: none;
  -webkit-transition: 0.25s;
  transition: 0.25s;
  color: #fff;
}
.top-header-nav__link::after,
.header-nav__link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 10%;
  width: 80%;
  height: 2px;
  background: #80ec6f;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1); /*X方向0、Y方向1*/
  -webkit-transform-origin: center top;
          transform-origin: center top; /*上部中央基点*/
}
.top-header-nav__link:hover,
.header-nav__link:hover {
  color: #80ec6f;
}
.top-header-nav__link:hover::after,
.header-nav__link:hover::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

.top-header {
  position: absolute;
  top: 0;
  left: 0;
  background-color: transparent;
  z-index: 20;
  width: 100%;
}
.top-header #stay,
.top-header .stay {
  color: #80ec6f;
}
.top-header #stay::after,
.top-header .stay::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 2px;
  background-color: #80ec6f;
  bottom: -5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.header {
  display: none;
  position: fixed;
  top: 0;
  left: 50‰;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 20;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.5);
}
.header.displayBlock {
  display: block;
}
.header.displayNone {
  display: none;
}
.header #stay,
.header .stay {
  color: #80ec6f;
}
.header #stay::after,
.header .stay::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 2px;
  background-color: #80ec6f;
  bottom: -5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

/*　上に上がる動き　*/
#header.UpMove {
  -webkit-animation: UpAnime 0.5s forwards;
          animation: UpAnime 0.5s forwards;
}

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

@keyframes UpAnime {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
}
/*　下に下がる動き　*/
#header.DownMove {
  -webkit-animation: DownAnime 0.5s forwards;
          animation: DownAnime 0.5s forwards;
}

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

@keyframes DownAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.drawer-icon {
  display: none;
  position: fixed;
  right: 15px;
  top: 20px;
  z-index: 201;
  text-align: center;
  cursor: pointer;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  background: #fff;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  padding: 0 9px 10px;
}
.drawer-icon.is-checked {
  -webkit-transform: translateX(-260px);
          transform: translateX(-260px);
}
.drawer-bars {
  display: inline-block;
  width: 22px;
  height: 20px;
  position: relative;
  vertical-align: bottom;
}
.drawer-bar {
  position: absolute;
  right: 0;
  left: 0;
  display: block;
  background: #777;
  width: 100%;
  height: 4px;
  border-radius: 0;
  -webkit-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.drawer-bar:nth-of-type(1) {
  top: 0;
}
.drawer-bar:nth-of-type(2) {
  top: 8px;
}
.drawer-bar:nth-of-type(3) {
  top: 16px;
}
.is-checked .drawer-bar:nth-of-type(1) {
  top: 10px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.is-checked .drawer-bar:nth-of-type(2) {
  background: transparent;
}
.is-checked .drawer-bar:nth-of-type(3) {
  top: 10px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.drawer-background {
  display: none;
  position: fixed;
  z-index: 199;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.drawer-background.is-checked {
  display: block;
  opacity: 0.8;
}
.drawer-content {
  overflow: auto;
  position: fixed;
  top: 0;
  right: 0;
  bottom: auto;
  left: auto;
  -webkit-transform: translateX(105%);
          transform: translateX(105%);
  z-index: 200;
  width: 260px;
  max-width: 90%;
  height: 100%;
  background: #fff;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  text-align: left;
  color: #707070;
}
.drawer-content.is-checked {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-box-shadow: 6px 0 25px rgba(0, 0, 0, 0.16);
          box-shadow: 6px 0 25px rgba(0, 0, 0, 0.16);
}
.drawer-content ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.drawer-content ul li {
  border-bottom: 1px dotted #707070;
  color: #707070;
}
.drawer-content ul li a {
  text-decoration: none;
  display: block;
  position: relative;
  padding: 16px 30px 14px 20px;
}
.drawer-content ul li a::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 7px;
  height: 11px;
  background: transparent url(../img/common/drawer-arrow-right.png) no-repeat center center/contain;
}

.mobile-active {
  color: #fff !important;
  background-color: #046c36;
}

.footer {
  background-color: #046c36;
  border-top: solid 5px #80ec6f;
}
.footer__inner {
  max-width: 1140px;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
.footer__inner-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 60px;
  padding-bottom: 60px;
  color: #fff;
}
.footer__company-area {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.footer__name {
  font-size: 25px;
  font-weight: 600;
}
.footer .address-area__box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-bottom: 10px;
}
.footer .address-area__box .location {
  font-size: 25px;
  color: #edc70c;
  margin-bottom: -3px;
  margin-left: 10px;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.footer .address-area__box .location:focus, .footer .address-area__box .location:hover {
  color: #80ec6f;
}
.footer__nav-area {
  width: 200px;
}
.footer-top {
  width: 110px;
}
.footer-top img {
  width: 110px;
}
.footer-nav {
  display: block;
  width: 100%;
}
.footer-nav__item {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  margin: 0 auto;
}
.footer-nav__item--active {
  background-color: #046c36;
  color: #fff;
}
.footer-nav__link {
  display: inline-block;
  padding: 0 15px 10px;
  text-decoration: none;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}
.footer-nav__link:focus, .footer-nav__link:hover {
  opacity: 0.6;
}
.footer-nav__link--last-child {
  padding-right: 0;
}
.footer .copyright {
  color: #fff;
  background-color: #046c36;
  padding: 10px 0;
  text-align: center;
  font-size: 13px;
}

.mv {
  padding-top: 100px;
  background-color: #046c36;
}
.mv-jumbotron {
  background-color: #999;
  background-size: cover;
  background-position: center center;
  height: 350px;
}
.mv-jumbotron__inner {
  position: relative;
  height: 100%;
  width: 100%;
  max-width: 1140px;
  margin-right: auto;
  margin-left: auto;
  padding: 0 15px;
}
.mv-jumbotron__inner-wrapper {
  position: absolute;
  top: 50%;
  left: 0%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  padding-left: 15px;
}
.mv .blog-h2 {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 20px;
  font-size: 43px;
  color: #fff;
  font-weight: 600;
  position: relative;
}

.h2 {
  display: inline-block;
  font-size: 32px;
  font-weight: 600;
  color: #046c36;
  color: #555;
  border-bottom: solid 3px #009b63;
  padding: 10px 0;
}
.h2:first-letter {
  color: #009b63;
}

.top-h2__title {
  display: inline-block;
  font-size: 90px;
  font-family: "Raleway", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
  line-height: 1;
  font-style: italic;
  text-transform: uppercase;
  background: linear-gradient(-45deg, #009b63 0%, #80ec6f 50%, #009b63 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.top-h2__title.privacy {
  font-size: 84px;
}
.top-h2__subtitle {
  font-size: 25px;
  font-weight: 500;
  font-style: italic;
}

.btn {
  display: inline-block;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  text-align: center;
  -webkit-transition: 0.25s;
  transition: 0.25s;
  padding: 12px;
  -webkit-box-shadow: 2px 2px 6px 0 rgba(0, 0, 0, 0.3);
          box-shadow: 2px 2px 6px 0 rgba(0, 0, 0, 0.3);
  background-color: #046c36;
  border-radius: 8px;
}
.btn:focus, .btn:hover {
  background-color: #009b63;
}
.btn.top {
  width: 220px;
}
.btn--arrow-right {
  position: relative;
}
.btn--arrow-right::after {
  content: "\f054";
  position: absolute;
  top: 50%;
  right: 0.83em;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.btn--arrow-left {
  position: relative;
}
.btn--arrow-left::after {
  content: "\f053";
  position: absolute;
  top: 50%;
  left: 0.83em;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.btn.google {
  width: 250px;
}

.tel-btn {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  padding: 5px 12px;
  letter-spacing: 0.1em;
  color: #fff;
  border: 1px solid #fff;
}
.tel-btn .fa-phone-alt {
  font-size: 20px;
}
.tel-btn._footer {
  -webkit-box-shadow: unset;
          box-shadow: unset;
}
.tel-btn .call {
  cursor: default;
}

.top-about {
  position: relative;
  z-index: -15;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
  background-image: repeating-linear-gradient(-53deg, rgba(0, 155, 99, 0.15) 0% 15%, white 15% 85%, rgba(0, 155, 99, 0.15) 85% 100%);
}
.top-about__inner::before {
  content: "";
  background: url(../img/common/top_about_txt.png) no-repeat center top/contain;
  width: 100%;
  max-width: 1110px;
  height: 40%;
  position: absolute;
  top: 59%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
  opacity: 0.15;
}
.top-about__items {
  display: grid;
  grid-template-columns: 65% 1fr;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 50px;
}
.top-about__items .text-box .text {
  font-size: 18px;
  line-height: 2.2;
  border-left: 5px solid #80ec6f;
  padding-left: 15px;
}
.top-about__items .img-box {
  width: 300px;
}

.top-privacy {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
  background: #eee;
  padding-top: 100px;
  padding-bottom: 100px;
}
.top-privacy__text-box {
  background-color: #fff;
  border: 3px solid #009b63;
  border-radius: 20px;
  padding: 50px;
}
.top-privacy__text-box .text {
  font-size: 18px;
  line-height: 2.2;
  letter-spacing: 0;
  text-align: justify;
}
.top-privacy__text-box .title {
  position: relative;
  padding: 10px 26px 10px 42px;
  background: rgba(128, 236, 111, 0.3);
  font-size: 22px;
  font-weight: 500;
  color: #046c36;
  line-height: 1.5;
  border-bottom: solid 3px #009b63;
  text-align: center;
  z-index: 1;
}
.top-privacy__text-box .title:before {
  position: absolute;
  content: "";
  left: -2px;
  top: -2px;
  width: 0;
  height: 0;
  border: none;
  border-left: solid 40px white;
  border-bottom: solid 95px transparent;
  z-index: 2;
}
.top-privacy__text-box .title:after {
  position: absolute;
  content: "";
  right: -3px;
  top: -5px;
  width: 0;
  height: 0;
  border: none;
  border-left: solid 40px transparent;
  border-bottom: solid 100px white;
  z-index: 2;
}

.business {
  padding-top: 100px;
  padding-bottom: 100px;
}
.business__inner {
  position: relative;
}
.business__text-box::before {
  content: "";
  background: url(../img/common/top_about_txt.png) no-repeat center top/cover;
  width: 100%;
  max-width: 1110px;
  height: 50.7%;
  position: absolute;
  bottom: 0%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
  opacity: 0.1;
}
.business__text {
  font-size: 18px;
  line-height: 2.2;
}

.mail {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: #e4f9e2;
}
.mail__items {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.mail__items .text-box {
  border: 3px solid #80ec6f;
  background-color: #009b63;
  color: #fff;
  padding: 30px 35px;
}
.mail__items .text-box__title {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 4px double #80ec6f;
  text-align: justify;
}
.mail__items .text-box__text {
  font-weight: 500;
  letter-spacing: 1.5px;
  text-align: justify;
}
.mail__items .item__img {
  border: 5px solid #fff;
}
.mail__works {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin: 0 auto;
}
.mail__work {
  position: relative;
}
.mail__work-text {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
  background-color: rgba(255, 255, 255, 0.7);
  padding: 15px;
  width: 300px;
  font-size: 18px;
  font-weight: 600;
}

.company__location {
  font-size: 18px;
  color: #009b63;
}
.company__location:focus, .company__location:hover {
  opacity: 0.6;
}
.company .profile {
  padding-top: 100px;
  padding-bottom: 100px;
}
.company .profile__link {
  color: #009b63;
  text-decoration: underline;
}
.company .profile__link:focus, .company .profile__link:hover {
  color: #aaa;
}
.company .profile .horizontal-table__inner {
  width: 100%;
  background-color: #fff;
}
.company .profile .horizontal-table__header {
  width: 25%;
  padding: 15px;
  border-bottom: 1px solid #ccc;
  font-weight: 600;
  vertical-align: middle;
}
.company .profile .horizontal-table__header:last-child {
  border-right-width: 0;
}
.company .profile .horizontal-table__header:first-child {
  border-top: 1px solid #ccc;
}
.company .profile .horizontal-table__text {
  padding: 15px;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  vertical-align: middle;
}
.company .profile .horizontal-table__text:last-child {
  border-right-width: 0;
}
.company .profile .horizontal-table__text:first-of-type {
  border-top: 1px solid #ccc;
}
.company .profile .horizontal-table__row:nth-child(odd) {
  background-color: #e4f9e2;
}
.company .profile .horizontal-table .center {
  margin: 0 auto;
}
.company .access {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
  background-color: #f5f5f5;
  padding-top: 100px;
  padding-bottom: 100px;
}
.company .access .access-map {
  position: relative;
  aspect-ratio: 4/1;
}
.company .access .access-map iframe {
  width: 100%;
  height: 400px;
}

.tel-fax {
  margin-top: 100px;
}
.tel-fax__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.tel-fax__box {
  background-color: #009b63;
  padding: 30px;
}
.tel-fax__line {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.tel-fax__title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 25px;
  font-weight: 500;
  color: #fff;
  text-align: center;
}
.tel-fax__title::before, .tel-fax__title::after {
  content: "";
  width: 30px;
  height: 3px;
  background-color: #80ec6f;
}
.tel-fax__title::before {
  margin-right: 15px;
}
.tel-fax__title::after {
  margin-left: 15px;
}
.tel-fax .tel__img {
  font-size: 35px;
  color: #fff;
}
.tel-fax .tel-number {
  font-size: 40px;
  font-weight: bolder;
  color: #fff;
  line-height: 1;
  padding-left: 15px;
}

.mail-form {
  margin-top: 50px;
  margin-bottom: 100px;
  /*ラジオボタンorチェックボックス
  ------------------------------------*/
  /*フォーカス時*/
  /*クリック範囲*/
  /*ラジオボタンスタイル*/
  /*ラジオボタンチェック印（未選択）*/
  /*ラジオボタンチェック印（選択）*/
  /*チェックボックススタイル*/
  /*チェックボックス未チェック時*/
  /*チェックボックスチェック時*/
  /*セレクトボックス
  ------------------------------------*/
  /*テキストエリア
  ------------------------------------*/
}
.mail-form ::-webkit-input-placeholder {
  color: #aaa;
}
.mail-form ::-moz-placeholder {
  color: #aaa;
}
.mail-form :-ms-input-placeholder {
  color: #aaa;
}
.mail-form ::-ms-input-placeholder {
  color: #aaa;
}
.mail-form ::placeholder {
  color: #aaa;
}
.mail-form__text {
  font-weight: 500;
  margin-bottom: 50px;
}
.mail-form__text > p {
  line-height: 2;
}
.mail-form .attention-text {
  color: #009b63;
  font-weight: 500;
  text-indent: -18px;
  padding-left: 18px;
}
.mail-form .form-p {
  display: inline-block;
}
.mail-form .form-input {
  border: 1px solid #aaa;
  padding: 5px 10px;
  width: 80%;
}
.mail-form .form-input._age {
  width: 40%;
}
.mail-form .label {
  display: inline-block;
  background-color: #c42e2e;
  color: #fff;
  padding: 4px 10px 2px;
  font-size: 13px;
}
.mail-form__file-text {
  display: block;
  font-size: 13px;
  color: #cc2a1f;
  text-indent: -13px;
  padding-left: 13px;
}
.mail-form .horizontal-table__inner {
  width: 100%;
}
.mail-form .horizontal-table__header {
  width: 27%;
  padding: 20px;
  background-color: #e4f9e2;
  border-bottom: 1px solid #aaa;
  font-weight: bold;
  vertical-align: middle;
}
.mail-form .horizontal-table__header--required {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.mail-form .horizontal-table__header:first-child {
  border-top: 1px solid #aaa;
}
.mail-form .horizontal-table__header:last-child {
  border-right-width: 0;
}
.mail-form .horizontal-table__text {
  padding: 10px 20px;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ccc;
  vertical-align: middle;
}
.mail-form .horizontal-table__text:first-of-type {
  border-top: 1px solid #ccc;
}
.mail-form .horizontal-table__text:last-child {
  border-right-width: 0;
}
.mail-form .horizontal-table .center {
  margin: 0 auto;
}
.mail-form .privacy-wrapper {
  text-align: center;
}
.mail-form .privacy__title {
  font-weight: 600;
  border-bottom: 1px solid #666;
  padding-bottom: 5px;
  margin-bottom: 10px;
}
.mail-form .privacy__address {
  text-indent: -53px;
  padding-left: 53px;
}
.mail-form .privacy__link {
  color: blue;
  text-decoration: underline;
}
.mail-form .privacy__link:hover {
  color: #999;
}
.mail-form .privacy-btn {
  display: inline-block;
  background-color: #046c36;
  color: #fff;
  padding: 15px 10px;
  width: 350px;
}
.mail-form .privacy-btn__wrapper {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 30px;
}
.mail-form .privacy-btn:focus, .mail-form .privacy-btn:hover {
  opacity: 0.6;
}
.mail-form .send-btn__wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 30px;
  margin-bottom: 30px;
}
.mail-form .send-btn {
  display: inline-block;
  background-color: #046c36;
  color: #fff;
  border: 2px solid transparent;
  padding: 15px;
  text-align: center;
  width: 320px;
}
.mail-form .send-btn:focus, .mail-form .send-btn:hover {
  opacity: 0.6;
}
.mail-form .send-btn--back {
  margin-right: 100px;
  color: #046c36;
  background-color: #fff;
  border: 2px solid #046c36;
}
.mail-form input[type=radio],
.mail-form input[type=checkbox] {
  opacity: 0;
  position: absolute;
}
.mail-form input[type=radio]:focus + span,
.mail-form input[type=checkbox]:focus + span {
  outline: 1px solid #ccc;
}
.mail-form input[type=radio] + span,
.mail-form input[type=checkbox] + span {
  display: inline-block;
  position: relative;
  margin: 0 2em 0 0;
  padding: 0.3em 0.3em 0.3em 2em;
  line-height: 1;
  vertical-align: middle;
  cursor: pointer;
}
.mail-form input[type=radio] + span:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1.375em;
  height: 1.375em;
  border: 1px solid #999;
  border-radius: 50%;
  line-height: 1;
  background: #fff;
}
.mail-form input[type=radio] + span:after {
  content: "";
  display: none;
}
.mail-form input[type=radio]:checked + span:after {
  display: block;
  position: absolute;
  top: 0.2em;
  left: 0.2em;
  width: 1em;
  height: 1em;
  margin: 0;
  padding: 0;
  border-radius: 50%;
  background: #3d98b4;
  line-height: 1;
}
.mail-form input[type=checkbox] + span:before {
  position: absolute;
  top: 0.2em;
  left: 0;
  content: "";
  width: 1.25em;
  height: 1.25em;
  border: 1px solid #999;
  background: #fff;
  line-height: 1;
  vertical-align: middle;
}
.mail-form input[type=checkbox] + span:after {
  content: "";
  display: none;
}
.mail-form input[type=checkbox]:checked + span:after {
  display: block;
  position: absolute;
  top: 0.3em;
  left: 0.4em;
  width: 0.5em;
  height: 1em;
  content: "";
  border-bottom: 3px solid #3d98b4;
  border-right: 3px solid #3d98b4;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.mail-form select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none; /*ブラウザ標準スタイルを解除*/
  display: block;
  width: 100%;
  padding: 5px 30px 5px 10px;
  border-radius: 4px;
  border: 1px solid #ccc;
}
.mail-form .selectWrap {
  /*selectの親要素をアイコン配置の基準とする*/
  position: relative;
  display: block;
  width: 30%;
}
.mail-form .selectWrap::after {
  /*矢印アイコン自作*/
  position: absolute;
  right: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-right: 2px solid #999;
  border-bottom: 2px solid #999;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  pointer-events: none; /*矢印の上もクリック可能にする*/
}
.mail-form textarea {
  resize: none;
}

.privacy-policy {
  display: inline-block;
  font-size: 20px;
  font-weight: bold;
  padding: 5px 0;
  margin-bottom: 30px;
  border-bottom: 2px solid #009b63;
}
.privacy-policy__items {
  max-width: 620px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.privacy-policy__items .pdf-item {
  padding: 25px 20px 30px;
  color: #fff;
  text-align: center;
  background-color: #009b63;
  border-radius: 10px;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.privacy-policy__items .pdf-item:focus, .privacy-policy__items .pdf-item:hover {
  background-color: #bb0000;
}
.privacy-policy__items .pdf-item .fa-file-pdf {
  font-size: 50px;
}

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

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

.text-blue {
  color: #009b63;
}

#privacy {
  margin-top: -100px;
  padding-top: 100px;
}

/*==================================================
ここまで
===================================*/
/*　swiper
------------------------------------------------------------------*/
.sp-box {
  position: relative;
  z-index: 10;
  overflow: hidden;
  height: 900px;
}

.swiper-slide img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 900px;
  -webkit-filter: brightness(70%);
          filter: brightness(70%);
  -webkit-animation: animationZoom 18s ease-in-out infinite;
          animation: animationZoom 18s ease-in-out infinite;
}

@-webkit-keyframes animationZoom {
  50% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
}

@keyframes animationZoom {
  50% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
}
.paralle {
  width: 15vw;
  height: calc(100vh - 44px);
  -webkit-transform: skew(-35deg);
          transform: skew(-35deg);
  background-color: rgba(128, 236, 111, 0.5);
  position: absolute;
  top: 0;
  right: 90px;
  z-index: 600;
}

.title-area {
  position: absolute;
  top: 45%;
  left: 13%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 610;
  color: #046c36;
}
.title-area__text {
  font-size: 4.4791666667vw;
  font-weight: 700;
  font-family: "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  line-height: 1.5;
  color: #fff;
  -webkit-animation: animationText 1s ease-in;
          animation: animationText 1s ease-in;
}

.catch-area {
  position: absolute;
  top: 65%;
  right: 13%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 610;
  color: #046c36;
}
.catch-area__text {
  font-size: 2.0833333333vw;
  font-family: "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
  -webkit-animation: animationText 1s ease-in;
          animation: animationText 1s ease-in;
}

/*========= 流れるテキスト ===============*/
/*全共通*/
.slide-in {
  overflow: hidden;
  display: inline-block;
}

.slide-in_inner {
  display: inline-block;
}

/*左右のアニメーション*/
.leftAnime {
  opacity: 0; /*事前に透過0にして消しておく*/
}

.slideAnimeLeftRight {
  -webkit-animation-name: slideTextX100;
          animation-name: slideTextX100;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes slideTextX100 {
  from {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%); /*要素を左の枠外に移動*/
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0); /*要素を元の位置に移動*/
    opacity: 1;
  }
}

@keyframes slideTextX100 {
  from {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%); /*要素を左の枠外に移動*/
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0); /*要素を元の位置に移動*/
    opacity: 1;
  }
}
.slideAnimeRightLeft {
  -webkit-animation-name: slideTextX-100;
          animation-name: slideTextX-100;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes slideTextX-100 {
  from {
    -webkit-transform: translateX(100%);
            transform: translateX(100%); /*要素を右の枠外に移動*/
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0); /*要素を元の位置に移動*/
    opacity: 1;
  }
}

@keyframes slideTextX-100 {
  from {
    -webkit-transform: translateX(100%);
            transform: translateX(100%); /*要素を右の枠外に移動*/
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0); /*要素を元の位置に移動*/
    opacity: 1;
  }
}
/*==================================================
カタログ用画像
===================================*/
.photo-ofi {
  height: 0;
  display: block;
  background-color: #efefef;
  overflow: hidden;
  position: relative;
  padding-bottom: 66.6666%; /* 高さを指定（ボックスの横幅を基準） */
}

.photo-ofi img {
  max-width: inherit;
  max-height: inherit;
  width: 100%;
  height: 100%;
  -o-object-fit: scale-down;
     object-fit: scale-down;
  font-family: "object-fit: scale-down;";
  position: absolute;
  left: 0;
  top: 0;
}

/*==================================================
ページング
===================================*/
div.paging {
  text-align: center;
}

div.paging span.current,
div.paging span.paging-text {
  margin: 0px 2px;
  color: #333;
  border: 1px solid #ccc;
  display: inline;
  zoom: 1;
  display: inline-block;
  overflow: hidden;
  text-decoration: none;
}

div.paging span.paging-text a {
  padding: 3px 8px;
  display: block;
}

div.paging span.current {
  background: #009b63;
  border: 1px solid #636;
  color: #fff;
  display: inline;
  zoom: 1;
  padding: 3px 8px;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
}

div.paging span.paging-text a:hover {
  background: #ccc;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

/* 左から右にカーテン
---------------------------------------------------- */
.curtainLefttoRight {
  position: relative;
}

.curtainLefttoRight.visible {
  -webkit-animation-name: curtainLeftFadeIn;
          animation-name: curtainLeftFadeIn;
  -webkit-animation-duration: 1.2s;
          animation-duration: 1.2s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}

.curtainLefttoRight.visible:before {
  display: block;
  content: "";
  position: absolute;
  z-index: 210;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  background-color: #000;
  -webkit-animation-name: curtainLeft;
          animation-name: curtainLeft;
  -webkit-animation-duration: 1.2s;
          animation-duration: 1.2s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes curtainLeftFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes curtainLeftFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes curtainLeft {
  0% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  50% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  50.001% {
    -webkit-transform-origin: right;
            transform-origin: right;
  }
  100% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}
@keyframes curtainLeft {
  0% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  50% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  50.001% {
    -webkit-transform-origin: right;
            transform-origin: right;
  }
  100% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}
/*========= ローディング画面のためのCSS ===============*/
#splash {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 9999999;
  text-align: center;
  color: #fff;
}

#splash-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

/*========= 画面遷移のためのCSS ===============*/
/*画面遷移アニメーション*/
.splashbg {
  display: none;
}

/*bodyにappearクラスがついたら出現*/
body.appear .splashbg {
  display: block;
  content: "";
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  background-color: rgba(0, 0, 0, 0.9); /*伸びる背景色の設定*/
  -webkit-animation-name: PageAnime;
          animation-name: PageAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes PageAnime {
  0% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  50% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  50.001% {
    -webkit-transform-origin: right;
            transform-origin: right;
  }
  100% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}

@keyframes PageAnime {
  0% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  50% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  50.001% {
    -webkit-transform-origin: right;
            transform-origin: right;
  }
  100% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}
/* -----------------------------------------------
* Page エントリーポイント
-------------------------------------------------- */
/*! destyle.css v2.0.2 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3*/
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  text-decoration: underline; /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

img {
  max-width: 100%;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  outline: 0;
  border-radius: 0;
  text-align: inherit;
}

/**
 * Reset radio and checkbox appearance to preserve their look in iOS.
 */
[type=checkbox] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
       appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
       appearance: radio;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

button[disabled],
[type=button][disabled],
[type=reset][disabled],
[type=submit][disabled] {
  cursor: default;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Remove arrow in IE10 & IE11
 */
select::-ms-expand {
  display: none;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the outline style in Safari.
 */
[type=search] {
  outline-offset: -2px; /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Remove outline for editable content.
 */
[contenteditable] {
  outline: none;
}

/* Table */
/* ============================================ */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

/* Misc */
/* ============================================ */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

main {
  overflow: hidden; /*横スクロールの発生を防止*/
}

body {
  font-size: 16px;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #333;
}

a {
  -webkit-transition: 0.25s;
  transition: 0.25s;
}

a:hover {
  text-decoration: none;
}

img {
  height: auto;
}

/* FLOCSS
----------------------------------------------------- */
.l-inner {
  max-width: 1230px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 15px;
  padding-left: 15px;
  padding-top: 50px;
  padding-bottom: 50px;
}
.l-inner--has-column {
  display: grid;
  gap: 40px;
  grid-template-columns: 3fr minmax(260px, 1fr);
}

/* FLOCSS
----------------------------------------------------- */
.c-btn {
  display: inline-block;
  width: 300px;
  max-width: 100%;
  padding: 20px 10px;
  background-color: #e25c00;
  border: 2px solid transparent;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  color: #fff;
  font-size: 17px;
  text-align: center;
  text-decoration: none;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}
.c-btn:focus, .c-btn:hover {
  background-color: #fff;
  border-color: currentColor;
  color: #e25c00;
}
.c-btn--arrow-right {
  position: relative;
  padding-right: 20px;
  padding-left: 13.8px;
}
.c-btn--arrow-right::after {
  content: "\f061";
  position: absolute;
  top: 50%;
  right: 8.3px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.c-btn--icon {
  position: relative;
  padding-right: 20px;
  padding-left: 13.8px;
}
.c-btn--icon::after {
  content: "";
  position: absolute;
  left: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 40px;
  height: 60px;
  background: transparent url(/images/nav_07.png) no-repeat center center/contain;
}
.c-btn--large {
  width: 340px;
  padding-top: 25px;
  padding-bottom: 25px;
  font-size: 20px;
}
.c-btn--warning {
  background-color: #f1de00;
  color: #222;
}
.c-btn--warning:focus, .c-btn--warning:hover {
  border-color: #f1de00;
  color: #222;
}

.c-rounded-btn {
  display: inline-block;
  width: 236px;
  max-width: 100%;
  padding: 15px 10px;
  background-color: #e25c00;
  border: 2px solid transparent;
  border-bottom-color: #d40152;
  border-radius: 10px;
  color: #fff;
  font-size: 17px;
  text-align: center;
  text-decoration: none;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}
.c-rounded-btn:focus, .c-rounded-btn:hover {
  background-color: #fff;
  border-color: currentColor;
  color: #e25c00;
}

.c-before-icon-btn {
  position: relative;
  display: inline-block;
  padding: 0.2em 0.3em;
  border: 1px solid currentColor;
  color: #e25c00;
  text-decoration: none;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}
.c-before-icon-btn:focus, .c-before-icon-btn:hover {
  background-color: #e25c00;
  color: #fff;
}
.c-before-icon-btn::before {
  display: inline-block;
  margin-right: 0.5em;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}
.c-before-icon-btn--download::before {
  content: "\f019";
}
.c-before-icon-btn--zoom::before {
  content: "\f00e";
  -webkit-transform: translateY(-6%);
          transform: translateY(-6%);
}

/* FLOCSS
----------------------------------------------------- */
.p-breadcrumb {
  margin: 10px 20px;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.p-breadcrumb li {
  list-style: none;
}
.p-breadcrumb li:after {
  content: ">";
  padding: 0 5px;
}
.p-breadcrumb li:last-child:after {
  content: "";
}
.p-breadcrumb li a {
  text-decoration: none;
}
.p-breadcrumb li a:hover {
  text-decoration: underline;
}
.p-breadcrumb .u-current {
  color: #046c36;
}

.p-btn-group__btns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-left: auto;
  margin-right: auto;
  gap: 30px 2.43902%;
  position: relative;
  z-index: 1;
}
.p-btn-group__btns--col3 > .p-btn-group__btns-item {
  width: 31.707%;
}
.p-btn-group__link-btn--link {
  display: block;
  padding: 15px 30px 15px 15px;
  border: 1px solid #046c36;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  background-color: #eee;
  text-decoration: none;
  text-align: center;
  border-radius: 10px;
  position: relative;
}
.p-btn-group__link-btn--link::after {
  content: "\f054";
  position: absolute;
  top: 50%;
  right: 0.83em;
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p-btn-group__link-btn--link:focus, .p-btn-group__link-btn--link:hover {
  color: #046c36;
  background-color: #fff;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.p-btn-group__link-btn--link._gb-active {
  color: #fff;
  background-color: #046c36;
}

/* FLOCSS
----------------------------------------------------- */

.mb-1 {
  margin-bottom: 10px;
}

.mb-2 {
  margin-bottom: 20px;
}

.mb-3 {
  margin-bottom: 30px;
}

.mb-4 {
  margin-bottom: 40px;
}

.mb-5 {
  margin-bottom: 50px;
}

.mb-6 {
  margin-bottom: 60px;
}

.mb-7 {
  margin-bottom: 70px;
}

.mb-8 {
  margin-bottom: 80px;
}

.mb-9 {
  margin-bottom: 90px;
}

.mb-10 {
  margin-bottom: 100px;
}

/* FLOCSS
----------------------------------------------------- */
/* FLOCSS
----------------------------------------------------- */
@media (max-width: 767px) {
  #page_top {
    width: 50px;
  }
  .content._margin {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .top-header-logo-area__logo--img,
.header-logo-area__logo--img {
    width: 220px;
  }
  .mv-jumbotron {
    height: 160px;
  }
  .mv-jumbotron__inner-wrapper {
    width: 100%;
  }
  .mv .blog-h2 {
    font-size: 22px;
    padding-bottom: 25px;
    width: 100%;
  }
  .h2 {
    font-size: 22px;
  }
  .btn {
    font-size: 16px;
  }
  .top-about__items {
    grid-template-columns: 1fr;
  }
  .top-about__items .text-box .text {
    font-size: 16px;
    line-height: 1.8;
  }
  .top-privacy {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .top-privacy__text-box {
    padding: 20px 15px;
  }
  .top-privacy__text-box .text {
    font-size: 16px;
    line-height: 1.8;
  }
  .top-privacy__text-box .title:before {
    font-size: 17px;
    border-left: solid 0px white;
  }
  .top-privacy__text-box .title:after {
    top: 0px;
    font-size: 17px;
    border-left: solid 0px transparent;
  }
  .business {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .business__text {
    font-size: 16px;
    line-height: 1.8;
  }
  .mail {
    padding-top: 50px;
    padding-bottom: 50px;
    text-align: center;
  }
  .mail__items {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .mail__items .text-box {
    padding: 20px 15px;
  }
  .mail__works {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .company .profile {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .company .profile .horizontal-table__header {
    width: 100%;
    border-right: 0;
    background-color: #efefef;
    padding: 10px;
  }
  .company .profile .horizontal-table__header:first-child {
    border-top-width: 0;
  }
  .company .profile .horizontal-table__text {
    border-bottom-width: 0;
  }
  .company .profile .horizontal-table__text:first-of-type {
    border-top-width: 0;
  }
  .company .profile .horizontal-table__text {
    width: 100%;
  }
  .company .profile .horizontal-table__row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .company .profile .horizontal-table__row:nth-child(odd) {
    background-color: unset;
  }
  .company .access {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .company .access .access-map iframe {
    height: 270px;
  }
  .tel-fax {
    margin-top: 50px;
  }
  .tel-fax__box {
    padding: 20px 15px;
  }
  .tel-fax__line {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .tel-fax__title {
    font-size: 18px;
    line-height: 1.5;
  }
  .tel-fax__title::before, .tel-fax__title::after {
    width: 30px;
  }
  .tel-fax .tel__img {
    font-size: 30px;
  }
  .mail-form {
    margin-bottom: 30px;
  }
  .mail-form__text {
    margin-bottom: 25px;
  }
  .mail-form .form-input {
    width: 100%;
  }
  .mail-form .privacy-btn {
    width: 100%;
    margin-bottom: 0px;
  }
  .mail-form .privacy-btn__wrapper {
    margin-bottom: 15px;
  }
  .mail-form .send-btn__wrapper {
    width: 100%;
    margin-bottom: 0px;
    display: block;
  }
  .mail-form .send-btn {
    width: 100%;
    margin-bottom: 15px;
  }
  .mail-form .send-btn--back {
    margin-right: 0px;
  }
  .mail-form input[type=radio] + span,
.mail-form input[type=checkbox] + span {
    font-size: 15px;
    margin-right: 0;
    line-height: 1.4;
    letter-spacing: 0;
  }
  .mail-form .selectWrap {
    width: 60%;
  }
  .privacy-policy {
    margin-bottom: 20px;
  }
  .privacy-policy__items {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .title-area {
    left: 3%;
  }
  .l-inner--has-column {
    grid-template-columns: 1fr;
  }
  .p-breadcrumb {
    font-size: 14px;
  }
  .p-btn-group__link-btn--link {
    font-size: 14px;
  }
  .pc-only {
    display: none;
  }
  .mb-2 {
    margin-bottom: 10px;
  }
  .mb-3 {
    margin-bottom: 15px;
  }
  .mb-4 {
    margin-bottom: 20px;
  }
  .mb-5 {
    margin-bottom: 25px;
  }
  .mb-6 {
    margin-bottom: 30px;
  }
  .mb-7 {
    margin-bottom: 35px;
  }
  .mb-8 {
    margin-bottom: 40px;
  }
  .mb-9 {
    margin-bottom: 45px;
  }
  .mb-10 {
    margin-bottom: 50px;
  }
}
@media (max-width: 1199px) {
  .top-header__inner,
.header__inner {
    padding-left: 15px;
    padding-right: 15px;
    height: 80px;
    background-color: #046c36;
  }
  .top-header-logo-area,
.header-logo-area {
    width: 265px;
    height: 80px;
  }
  .top-header-nav-area,
.header-nav-area {
    display: none;
  }
  .top-header-tel,
.header-tel {
    display: none;
  }
  .drawer-icon {
    display: block;
  }
  .mv {
    padding-top: 80px;
  }
  .top-h2__title {
    font-size: 60px;
  }
  .top-h2__title.privacy {
    font-size: 55px;
  }
  .top-h2__subtitle {
    font-size: 25px;
  }
  .top-about {
    background-image: repeating-linear-gradient(-53deg, rgba(0, 155, 99, 0.1) 0% 15%, white 15% 85%, rgba(0, 155, 99, 0.1) 85% 100%);
  }
  .top-about__inner::before {
    width: 95%;
  }
  .top-about__items .img-box {
    width: 100%;
    text-align: center;
  }
  .business__text-box::before {
    width: 98%;
    background: url(../img/common/top_about_txt.png) no-repeat center top/contain;
  }
  .mail__work-text {
    width: 20.8333333333vw;
    font-size: 1.5833333333vw;
  }
  .sp-box {
    background-color: #046c36;
    padding-top: 80px;
    height: calc(100vh - 80px);
  }
  .swiper-slide img {
    height: calc(100vh - 80px);
  }
  .paralle {
    height: calc(100vh - 60px);
  }
  .title-area__text {
    font-size: 6.6666666667vw;
  }
  .catch-area__text {
    font-size: 2.6041666667vw;
  }
}
@media (max-width: 1199px) and (max-width: 767px) {
  .top-header-logo-area,
.header-logo-area {
    width: 220px;
  }
  .top-h2__title {
    font-size: 30px;
    letter-spacing: 0;
  }
  .top-h2__title.privacy {
    font-size: 30px;
    letter-spacing: 0;
  }
  .top-about {
    padding-top: 50px;
    padding-bottom: 50px;
    background-image: repeating-linear-gradient(-53deg, rgba(0, 155, 99, 0.1) 0% 5%, white 5% 95%, rgba(0, 155, 99, 0.1) 95% 100%);
  }
  .top-about__inner::before {
    top: 10%;
    -webkit-transform: unset;
            transform: unset;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .business__text-box::before {
    top: 22%;
    -webkit-transform: unset;
            transform: unset;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .sp-box {
    height: 350px;
  }
  .swiper-slide img {
    -webkit-animation: unset;
            animation: unset;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: 0%;
       object-position: 0%;
    height: 350px;
  }
  .paralle {
    width: 10vw;
    height: 350px;
    right: 10px;
  }
  .title-area__text {
    font-size: 7.8125vw;
  }
}
@media (max-width: 1023px) {
  .header.displayBlock {
    display: none;
  }
  .footer__inner-wrapper {
    display: block;
  }
  .footer__company-area {
    text-align: center;
    margin-bottom: 10px;
  }
  .footer__name {
    margin: 0 auto 10px;
  }
  .footer .address-area__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 0px;
    font-size: 14px;
  }
  .footer .address-area__box .location {
    text-align: center;
    margin-bottom: 0px;
    margin-left: 0px;
  }
  .footer .address-area__address {
    text-align: center;
    font-size: 14px;
  }
  .footer__nav-area {
    margin-top: 20px;
    width: unset;
    text-align: center;
  }
  .footer-top {
    margin-top: 20px;
    width: unset;
    text-align: center;
  }
  .footer-nav__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
  .footer-nav__link {
    font-size: 14px;
    letter-spacing: 0;
    padding: 0 10px 10px;
  }
  .top-privacy__text-box .title {
    font-size: 19px;
  }
  .mail__items .text-box__title {
    font-size: 20px;
  }
  .tel-fax__wrapper {
    grid-template-columns: 1fr;
  }
  .tel-fax .tel-number {
    font-size: 28px;
  }
  .mail-form .horizontal-table__inner {
    font-size: 16px;
  }
  .mail-form .horizontal-table__header {
    border-bottom-width: 0;
    background-color: #efefef;
    width: 100%;
    border-right: 0;
    padding: 10px;
  }
  .mail-form .horizontal-table__text {
    border-bottom-width: 0;
    width: 100%;
    padding: 10px 0;
  }
  .mail-form .horizontal-table__row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .catch-area {
    right: 15%;
  }
  .slide-in_inner span {
    display: inline-block;
  }
  .pc-tab-only {
    display: none;
  }
}
@media (max-width: 1023px) and (max-width: 1023px) {
  .footer__inner-wrapper {
    padding-top: 40px;
    padding-bottom: 30px;
  }
}
@media (max-width: 1023px) and (max-width: 767px) {
  .footer__name {
    font-size: 21px;
  }
  .top-privacy__text-box .title {
    font-size: 17px;
    padding: 15px 12px;
  }
  .mail__items .text-box__title {
    font-size: 18px;
    font-weight: 600;
  }
  .tel-fax .tel-number {
    margin-bottom: 10px;
    padding-left: 0;
  }
  .catch-area {
    top: 70%;
    right: 3%;
  }
}
@media (max-width: 1199px) and (max-width: 1023px) {
  .top-h2__subtitle {
    font-size: 20px;
    letter-spacing: 0;
  }
  .mail__work-text {
    width: 20.8333333333vw;
  }
}
@media (max-width: 1199px) and (max-width: 1023px) and (max-width: 767px) {
  .top-h2__subtitle {
    display: block;
    font-size: 16px;
  }
  .mail__work-text {
    width: 58.59375vw;
    font-size: 16px;
  }
  .catch-area__text {
    font-size: 16px;
  }
}
@media (max-width: 1230px) {
  .p-btn-group__btns {
    gap: 30px 3.3333%;
  }
  .p-btn-group__btns--col3 > .p-btn-group__btns-item {
    width: 48.3333%;
  }
}
@media (max-width: 1230px) and (max-width: 767px) {
  .p-btn-group__btns {
    gap: 20px 0%;
  }
  .p-btn-group__btns--col3 > .p-btn-group__btns-item {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .sp-only {
    display: none;
  }
}
/*# sourceMappingURL=style.css.map */