@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(/test1/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;
  }
}

.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%;
}

.privacy-policy-page {
  margin: 0 20rem 10rem;
}
.privacy-policy-page__wrapper {
  margin-bottom: 5rem;
}
.privacy-policy-page__title {
  padding-left: 1rem;
  margin-bottom: 1rem;
  border-left: solid 10px #58AC6F;
}
.privacy-policy-page__title h1 {
  font-size: 2.4rem;
}
.privacy-policy-page__text p {
  line-height: 1.7;
}
.privacy-policy-page__contents {
  margin-bottom: 5rem;
}
.privacy-policy-page__contents h2 {
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
  border-bottom: solid 2px #58AC6F;
  font-size: 2.4rem;
}
.privacy-policy-page__contents--text p {
  line-height: 1.7;
}
.privacy-policy-page__contents--text ol li {
  line-height: 1.7;
}
@media (max-width: 960px) {
  .privacy-policy-page {
    margin: 0 10rem 10rem;
  }
}
@media (max-width: 520px) {
  .privacy-policy-page {
    margin: 0 4rem 10rem;
  }
  .privacy-policy-page__title h1 {
    font-size: 2rem;
  }
  .privacy-policy-page__contents h2 {
    padding-bottom: 0.5rem;
    font-size: 2rem;
  }
}
@media (max-width: 375px) {
  .privacy-policy-page {
    margin: 0 2rem 10rem;
  }
}

.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 */