@charset "UTF-8";
html {
  font-size: 2.6666666666vw;
}

@media screen and (min-width: 768px) {
  html {
    font-size: 10px;
  }
}

body {
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.5;
}

@media screen and (min-width: 768px) {
  body {
    font-size: 1.4rem;
  }
}

body .background {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -30;
  background: url(../img/body-back.jpg);
  background-size: cover;
  background-position: center;
}

header .pc-header {
  height: 7rem;
  width: 100vw;
  background-color: rgba(255, 255, 255, 0.8);
  position: fixed;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0rem 0 0 2rem;
}

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

header .pc-header .box .logo {
  width: auto;
  padding: 1rem 0;
}

header .pc-header .box .logo img {
  height: 100%;
  height: 5rem;
}

header .pc-header .box .menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

header .pc-header .box .menu ul li {
  position: relative;
  display: inline-block;
  /* リンクにホバーした際の下線の表示 */
}

header .pc-header .box .menu ul li::after {
  background-color: #4e9f35;
  /* 下線の色 */
  bottom: -20px;
  /* 要素の下端からの距離 */
  content: "";
  /* 要素に内容を追加 */
  height: 2px;
  /* 下線の高さ */
  left: 0;
  /* 要素の左端からの距離 */
  opacity: 0;
  /* 不透明度 */
  position: absolute;
  /* 絶対位置指定 */
  -webkit-transition: all .3s;
  transition: all .3s;
  /* アニメーション効果を追加 */
  width: 100%;
  /* 要素の幅 */
}

header .pc-header .box .menu ul li:hover::after {
  bottom: 15px;
  /* 下線を上から下に移動 */
  opacity: 1;
  /* 不透明度を変更してフェードイン */
}

header .pc-header .box .menu ul li a {
  padding: 2rem 2rem;
  line-height: 3rem;
}

header .pc-header .box .menu ul .cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
}

header .pc-header .box .menu ul .cta .tel {
  height: 100%;
  background-color: #4e9f35;
  margin: 0 0 0 2rem;
}

header .pc-header .box .menu ul .cta .tel a {
  padding: 1rem 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

header .pc-header .box .menu ul .cta .tel a img {
  width: 3rem;
  height: auto;
  margin: 0 1rem 0 0;
}

header .pc-header .box .menu ul .cta .tel a p {
  text-align: center;
  font-size: 1.8rem;
  color: #fff;
  line-height: 5rem;
}

header .pc-header .box .menu ul .cta .line {
  background-color: #fff;
}

header .pc-header .box .menu ul .cta .line a {
  padding: 1rem 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

header .pc-header .box .menu ul .cta .line a img {
  width: 4rem;
  height: auto;
  margin: 0 1rem 0 0;
}

header .pc-header .box .menu ul .cta .line a p {
  text-align: center;
  font-size: 1.8rem;
  color: #4e9f35;
  line-height: 5rem;
}

header .mb-header {
  padding: 2rem;
}

header .mb-header .logo {
  width: 14rem;
  height: auto;
}

header .mb-header .hamburger-menu {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 5rem;
  height: 5rem;
  cursor: pointer;
  z-index: 30;
  border: 1px solid #fff;
  border-radius: 50%;
  padding: 6px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background-color: #8bc7a1;
}

header .mb-header .hamburger-menu .line {
  display: block;
  position: absolute;
  width: 50%;
  height: 2px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

header .mb-header .hamburger-menu .line:nth-of-type(1) {
  top: 30%;
}

header .mb-header .hamburger-menu .line:nth-of-type(2) {
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

header .mb-header .hamburger-menu .line:nth-of-type(3) {
  bottom: 30%;
  top: auto;
}

header .mb-header .hamburger-menu.active > .line:nth-of-type(1) {
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}

header .mb-header .hamburger-menu.active > .line:nth-of-type(2) {
  opacity: 0;
}

header .mb-header .hamburger-menu.active > .line:nth-of-type(3) {
  top: 50%;
  bottom: auto;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

header .mb-header .nav-menu {
  display: none;
}

header .mb-header .nav-menu.active {
  background: #e9e9e9;
  display: block;
  border: 1px solid #333;
  padding: 10rem 2rem 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  position: absolute;
}

header .mb-header .nav-menu a {
  display: block;
  color: #333;
  text-decoration: none;
  padding: 12px 18px;
  margin: 0;
  width: 100%;
  height: 5rem;
  text-align: center;
  border-bottom: 1px solid #ddd;
}

@-webkit-keyframes fadeIn {
  0% {
    top: 45%;
    opacity: 0;
  }
  100% {
    top: 50%;
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    top: 45%;
    opacity: 0;
  }
  100% {
    top: 50%;
    opacity: 1;
  }
}

.contact {
  padding: 5rem 2rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.7);
}

@media screen and (min-width: 1024px) {
  .contact {
    padding: 8rem 20%;
  }
}

.contact .title {
  font-size: 1.6rem;
  color: #8bc7a1;
  margin: 0 0 2rem;
}

@media screen and (min-width: 1024px) {
  .contact .title {
    font-size: 2.4rem;
    margin: 0 0 2rem;
  }
}

.contact .text > p {
  margin: 0 0 2rem;
}

@media screen and (min-width: 1024px) {
  .contact .text > p {
    margin: 0 0 3rem;
    font-size: 1.6rem;
  }
}

.contact .btn {
  background: #8bc7a1;
  color: #fff;
  line-height: 1;
  border-radius: 2rem;
  margin: 0 0 2rem;
  -webkit-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.29);
          box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.29);
}

@media screen and (min-width: 1024px) {
  .contact .btn {
    padding: 2rem;
    width: 70%;
    margin: 0 auto 2rem;
  }
}

.contact .btn a {
  padding: 1.2rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.contact .btn a img {
  width: 3rem;
  height: auto;
}

.contact .btn a p {
  line-height: 3rem;
  padding: 0 1rem;
}

footer {
  padding: 5rem 0;
  background-color: #fff;
}

footer .footer-logo {
  width: 50%;
  margin: 0 auto;
}

@media screen and (min-width: 1024px) {
  footer .footer-logo {
    width: 20%;
  }
}

.fixed-title {
  width: 100%;
  background-color: #fff;
  position: fixed;
  text-align: center;
  padding: 2rem 0;
  font-size: 2.4rem;
  color: #4e9f35;
  border-bottom: #4e9f35 solid 0.3rem;
  z-index: 999;
}

.test {
  width: 100vw;
  height: 200vh;
  background: url(../img/o-p-top-case1.jpg);
  background-size: cover;
  background-position: center;
}
/*# sourceMappingURL=style.css.map */