@charset "UTF-8";
* {
  padding: 0;
  margin: 0;
}

body {
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
}

.header_wrapper {
  max-width: 1480px;
  margin: 0 auto;
  width: 85%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header_wrapper h1 {
  margin-top: 2%;
  width: 15%;
}
.header_wrapper .openbtn {
  display: none;
}

.nav_link {
  width: 500px;
  margin: 100px 0 0;
  list-style-type: none;
  display: flex;
  justify-content: right;
  position: relative;
}
.nav_link::before {
  content: "";
  display: block;
  position: absolute;
  top: -1.5rem;
  right: 0;
  width: 85%;
  height: 1rem;
  background-image: url(../imges/edit/line.svg);
  background-repeat: repeat-x;
}
.nav_link li {
  width: 100px;
  display: block;
}
.nav_link li a {
  width: 80%;
  text-decoration: none;
  display: block;
  text-align: center;
  color: rgb(99, 153, 102);
  position: relative;
}
.nav_link li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.3rem;
  width: 0%;
  height: 1px;
  background-color: rgb(99, 153, 102);
  transition: all 0.5s;
}
.nav_link li a:hover {
  opacity: 0.5;
}
.nav_link li a:hover::after {
  width: 100%;
}

header .header_img {
  width: 100%;
  display: block;
  margin: 30px auto 0 auto;
}
header .header_img img {
  width: 90%;
  display: block;
  text-align: center;
  margin: 0 auto;
}

main {
  margin-top: 100px;
}

footer {
  background-color: rgb(0, 153, 68);
  padding: 50px 0 0;
}
footer .footer_wrapper {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
footer .footer_wrapper .w_logo {
  width: 15%;
}
footer .footer_wrapper .footer_middle {
  font-size: 16px;
  color: #fff;
  letter-spacing: 0.25em;
  line-height: 2em;
}
footer .footer_wrapper .footer_middle dd {
  margin-left: 30px;
}
footer .footer_wrapper .footer_right p small {
  margin-top: 50px;
  color: #fff;
  letter-spacing: 0.15em;
}
footer .footer_wrapper .footer_right .tel_link {
  text-decoration: none;
}
footer .footer_wrapper .footer_right .tel_link .tel_button {
  width: 70%;
  padding: 5px 30px;
  text-align: center;
  margin: 20px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgb(75, 75, 75);
  transition: 0.5s ease;
}
footer .footer_wrapper .footer_right .tel_link .tel_button:hover {
  transform: scale(1.05);
}
footer .footer_wrapper .footer_right .tel_link .tel_button .tel_logo {
  width: 30px;
}
footer .footer_wrapper .footer_right .tel_link .tel_button p {
  text-align: center;
  color: #fff;
  font-size: 15px;
  letter-spacing: 0.2em;
}
footer .footer_wrapper .h_button {
  width: 70%;
  margin: 10px auto 0;
  padding: 10px 30px;
  background-color: rgb(75, 75, 75);
  transition: 0.2s ease;
}
footer .footer_wrapper .h_button:hover {
  transform: scale(1.05);
}
footer .footer_wrapper .h_button .hot_logo {
  width: 160px;
  display: block;
  margin: 0 auto;
}
footer .footer_wrapper .right_bottom {
  width: 85%;
  padding-top: 20px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer .footer_wrapper .right_bottom small a {
  font-size: 12px;
  display: block;
  text-align: left;
  text-decoration: none;
  padding-right: 60px;
  padding-bottom: 5px;
  color: #fff;
  letter-spacing: 0.15em;
  position: relative;
  transition: 0.5s ease;
}
footer .footer_wrapper .right_bottom small a:hover {
  transform: scale(1.1);
}
footer .footer_wrapper .right_bottom small a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.3rem;
  width: 20%;
  height: 1px;
  background-color: #fff;
  transition: all 0.5s;
}
footer .footer_wrapper .right_bottom small a:hover::after {
  width: 100%;
}
footer .footer_wrapper .right_bottom .inst_logo {
  width: 25px;
  transition: 0.2s ease;
}
footer .footer_wrapper .right_bottom .inst_logo:hover {
  transform: scale(1.3);
}
footer .copy_right {
  text-align: center;
  color: #fff;
  margin-top: 50px;
  padding-bottom: 10px;
}

@media screen and (max-width: 1000px) {
  footer .footer_wrapper {
    flex-direction: column;
  }
  footer .footer_wrapper .w_logo {
    width: 200px;
  }
  footer .footer_wrapper .footer_middle {
    margin-top: 50px;
  }
  footer .footer_wrapper .footer_right {
    margin-top: 30px;
  }
}
@media screen and (max-width: 750px) {
  header .header_wrapper h1 img {
    margin-top: 20px;
    width: 120px;
  }
  header .header_wrapper .openbtn {
    display: block;
    position: absolute;
    top: 30px;
    right: 40px;
    z-index: 100;
    cursor: pointer;
    width: 50px;
    height: 50px;
  }
  header .header_wrapper .openbtn span {
    display: inline-block;
    transition: all 0.4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background-color: #666;
    width: 45%;
  }
  header .header_wrapper .openbtn span:nth-of-type(1) {
    top: 15px;
  }
  header .header_wrapper .openbtn span:nth-of-type(2) {
    top: 23px;
  }
  header .header_wrapper .openbtn span:nth-of-type(3) {
    top: 31px;
  }
  header .header_wrapper .openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
  }
  header .header_wrapper .openbtn.active span:nth-of-type(2) {
    opacity: 0;
  }
  header .header_wrapper .openbtn.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
  }
  header .header_wrapper #g-nav.panelactive #g-nav-list {
    position: fixed;
    z-index: 50;
    width: 100%;
    height: 100%;
    overflow: auto;
  }
  header .header_wrapper #g-nav ul {
    position: absolute;
    z-index: 50;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  header .header_wrapper nav ul {
    display: flex;
    flex-flow: column;
    align-items: center;
    list-style: none;
    text-align: center;
  }
  header .header_wrapper .nav_link::before {
    position: initial;
  }
  header .header_wrapper .nav_link li {
    display: block;
    width: 200px;
  }
  header .header_wrapper nav ul li a {
    display: block;
    text-decoration: none;
    color: #000;
    margin-top: 30px;
    padding: 10px;
    font-size: 18px;
    border-bottom: 1px solid #000;
  }
  header .header_wrapper #g-nav {
    position: fixed;
    z-index: 50;
    top: -120%;
    left: 0;
    width: 100vw;
    height: 100%;
    background: rgba(227, 250, 235, 0.7);
    transition: all 0 0.6s;
  }
  header .header_wrapper #g-nav.panelactive {
    top: 0;
  }
  footer .footer_wrapper .right_bottom small a::after {
    width: 100%;
  }
}
@media screen and (max-width: 375px) {
  header .nav_link::before {
    width: 50%;
  }
  header .openbtn #g-nav.panelactive #g-nav-list {
    height: 90%;
  }
  footer .footer_wrapper {
    width: 95%;
    margin: 0 auto;
  }
  footer .footer_wrapper .w_logo {
    width: 150px;
  }
  footer .footer_wrapper .footer_middle {
    letter-spacing: 0.1em;
    line-height: 2em;
  }
  footer .footer_wrapper .footer_right {
    margin-top: 20px;
  }
  footer .footer_wrapper .footer_right p {
    width: 80%;
    margin: 0 auto;
  }
  footer .footer_wrapper .footer_right .tel_link .tel_button {
    margin-top: 30px;
  }
  footer .footer_wrapper .footer_right .tel_link .tel_button p {
    font-size: 14px;
    padding-left: 15px;
  }
}/*# sourceMappingURL=style.css.map */