@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Klee+One:wght@400;600&family=Noto+Serif+JP:wght@400;500;600;700&family=Zen+Old+Mincho:wght@400;700&display=swap");
html {
  font-size: 62.5%;
  width: 100%;
  box-sizing: border-box;
}

body {
  color: #333; /* RGB */
  background-color: #FFF;
  font-family: "Zen Old Mincho", "Noto Serif JP", serif, "Klee One", cursive, "Noto Sans JP", sans-serif, Arial, Helvetica, "YuGothic", "游ゴシック", "Yu Gothic", "メイリオ", "游明朝", serif, "MS 明朝";
  font-weight: 400;
  font-size: 1.6em;
  line-height: 1.2;
  box-sizing: border-box;
  letter-spacing: 0.02em;
}

a:hover {
  opacity: 0.5;
}

li {
  list-style: none;
}

.header {
  display: block;
  padding: 0;
  margin-bottom: 6rem;
}
.header_left {
  width: 100%;
}
.header_left h1 {
  width: 30rem;
  padding: 2rem 3rem;
  background: url(/assets/img/image_logo_bg.svg) no-repeat;
  background-size: 90% 100%;
}
@media (max-width: 520px) {
  .header_left h1 {
    width: 20rem;
  }
}
.header_left h1 a {
  color: #FFF;
  font-size: 2.4rem;
  text-decoration: none;
}
@media (max-width: 520px) {
  .header_left h1 a {
    width: 20rem;
    font-size: 2.2rem;
  }
}
.header_left h1 a span {
  display: block;
  font-size: 1.6rem;
}
.header_left-navigation {
  position: fixed;
  z-index: 999;
  top: -120%;
  left: 0;
  width: 100%;
  height: 100vh;
  padding: 5rem 0 0;
  background: #58AC6F;
  transition: all 0.6s;
}
.header_left-navigation.panelactive {
  top: 0;
}
.header_left-navigation ul {
  margin: 0 auto;
  list-style: none;
}
.header_left-navigation ul li {
  padding: 3rem;
  text-align: center;
}
.header_left-navigation ul li a {
  color: #FFF;
  font-size: 2rem;
  font-weight: 700;
  text-decoration: none;
}
.header_left-navigation ul li span {
  display: block;
  font-size: 1.4rem;
}
@media (max-width: 520px) {
  .header_left h1 {
    width: 24rem;
    padding: 1.6rem;
    line-height: 0.6;
  }
}

.hm_open {
  position: fixed;
  z-index: 9999;
  top: 10px;
  right: 10px;
  display: block;
  width: 5rem;
  height: 5rem;
  cursor: pointer;
}
.hm_open span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background: #58AC6F;
  width: 60%;
}
.hm_open span:nth-of-type(1) {
  top: 15px;
}
.hm_open span:nth-of-type(2) {
  top: 23px;
}
.hm_open span:nth-of-type(3) {
  top: 31px;
}
.hm_open.active span {
  background: #FFF;
}
.hm_open.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 60%;
}
.hm_open.active span:nth-of-type(2) {
  opacity: 0;
}
.hm_open.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 60%;
}

.contact {
  width: 80%;
  max-width: 1200px;
  padding: 0 2rem;
  margin: 0 auto;
}
@media screen and (max-width: 520px) {
  .contact {
    width: 100%;
  }
}
.contact_form-top {
  max-width: 60rem;
  margin: 0 auto 2rem;
}
.contact_form-top h2 {
  width: 100%;
  margin-bottom: 2rem;
  font-size: 3rem;
  color: #58AC6F;
  text-align: center;
}
@media screen and (max-width: 520px) {
  .contact_form-top h2 {
    font-size: 2.5rem;
  }
}
.contact_form-top h2 span {
  margin-left: 1rem;
  font-size: 1.5rem;
}
.contact_form-top p {
  width: 100%;
  font-size: 1.6rem;
  text-align: center;
}
.contact_form-top p.hissu {
  text-align: end;
}
.contact_form-top p:first-of-type {
  margin-bottom: 2rem;
}
.contact form {
  width: 100%;
  max-width: 60rem;
  margin: 0 auto 8rem;
}
.contact form .form-table {
  margin: 0 auto;
}
@media screen and (max-width: 520px) {
  .contact form .form-table {
    width: 100%;
    margin-top: 0;
  }
}
.contact form .form-table table {
  width: 100%;
}
.contact form .form-table table tr {
  width: 100%;
}
.contact form .form-table table tr th {
  display: block;
  padding: 1rem 0;
  font-size: 1.6rem;
  text-align: start;
}
.contact form .form-table table tr td {
  display: block;
  width: 100%;
  padding: 1rem;
  margin-bottom: 2rem;
  border: solid 1px #58AC6F;
  border-radius: 3px;
}
.contact form .form-table table tr td input {
  width: 100%;
  border: none;
  cursor: pointer;
  font-family: Arial, Helvetica, sans-serif;
}
.contact form .form-table table tr td textarea {
  width: 100%;
  height: 20rem;
  border: none;
  cursor: pointer;
  font-family: Arial, Helvetica, sans-serif;
}
.contact form .contact_button {
  width: 20rem;
  padding: 1.6rem 3rem;
  margin: 0 auto;
  background: #58AC6F;
  border: none;
  border-radius: 4rem;
  color: #FFF;
  font-size: 1.5rem;
  cursor: pointer;
  transition: 0.3s;
}
.contact form .contact_button:hover {
  box-shadow: 5px 5px 8px rgba(194, 194, 194, 0.4392156863), -5px -5px 8px rgba(194, 194, 194, 0.4392156863), -5px 5px 8px rgba(194, 194, 194, 0.4392156863), 5px -5px 8px rgba(194, 194, 194, 0.4392156863);
}
.contact form .contact_button input {
  background: #58AC6F;
}

.footer {
  width: 100%;
  background-color: #58AC6F;
}
.footer > a {
  display: block;
  width: 100%;
  padding: 1rem 0 1rem 1rem;
  background-color: #B1E5BF;
  color: #333;
  text-decoration: none;
}
.footer_navigation {
  width: 100%;
}
.footer_navigation ul {
  width: 100%;
  padding: 8rem 0 16rem;
  text-align: center;
}
.footer_navigation ul li {
  display: inline-block;
}
.footer_navigation ul li:not(:last-child) {
  padding-right: 6.4rem;
}
.footer_navigation ul li a {
  color: #FFF;
  text-decoration: none;
}
.footer p {
  width: 90%;
  padding: 0 0 2rem 1rem;
  margin: 0 auto 5rem;
  border-bottom: 1px solid #FFF;
  color: #FFF;
  font-size: 3rem;
}
.footer_copyright {
  width: 100%;
  padding-bottom: 1rem;
  color: #FFF;
  text-align: center;
}
@media (max-width: 768px) {
  .footer_navigation ul li:not(:last-child) {
    padding-right: 2rem;
  }
}
@media (max-width: 600px) {
  .footer_navigation {
    padding: 0 4rem;
  }
  .footer_navigation ul {
    display: flex;
    flex-wrap: wrap;
    padding: 8rem 0 10rem;
    text-align: left;
  }
  .footer_navigation ul li {
    width: 14rem;
    padding-bottom: 3rem;
  }
  .footer_navigation ul li:not(:last-child) {
    padding-right: 2.4rem;
  }
  .footer p {
    font-size: 2rem;
  }
}/*# sourceMappingURL=style.css.map */