@charset "UTF-8";
@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;
  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;
}
.ttl {
  position: relative;
  z-index: 2;
  font-size: 4rem;
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}
.ttl span {
  padding-bottom: 1.6rem;
  letter-spacing: 0.05em;
  -ms-writing-mode: lr-tb;
      writing-mode: horizontal-tb;
  opacity: 0.3;
}
.ttlGreen {
  color: #58AC6F;
  -ms-writing-mode: lr-tb;
      writing-mode: horizontal-tb;
}
.ttlGreen span {
  display: block;
}
@media (max-width: 600px) {
  .ttl {
    padding-bottom: 2rem;
    font-size: 2.4rem;
    -ms-writing-mode: horizontal-tb;
    writing-mode: horizontal-tb;
  }
  .ttl span {
    display: block;
    padding-bottom: 1rem;
  }
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 3rem 0;
  margin-bottom: 5rem;
}
.header_left {
  width: 25%;
  height: 100%;
}
.header_left h1 {
  padding: 2rem 3rem;
  background: url(../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 {
  width: 100%;
  padding: 2rem 6rem 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:not(:last-child) {
  border-bottom: 1px solid rgba(112, 112, 112, 0.5);
}
.header_left-navigation ul li a {
  color: #333;
  font-size: 2rem;
  font-weight: 700;
  text-decoration: none;
}
.header_left-navigation ul li span {
  display: block;
  font-size: 1.4rem;
}
.header_right {
  position: relative;
  width: 75%;
}
.header_right-img {
  position: relative;
  width: 95%;
}
.header_right-img img {
  width: 100%;
  border-radius: 3rem;
}
.header_right-img::after {
  content: "";
  position: absolute;
  top: 3rem;
  left: 3rem;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-color: #58AC6F;
  border-radius: 3rem;
}
.header_right p {
  position: absolute;
  top: 6rem;
  right: 20rem;
  color: #FFF;
  font-size: 3.6rem;
  font-weight: 600;
  line-height: 1.7;
  letter-spacing: 0.25em;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-shadow: 0 0 15px rgb(80, 100, 83);
}
@media (max-width: 1300px) {
  .header_left-navigation ul li {
    padding: 3rem 2rem;
  }
}
@media (max-width: 1080px) {
  .header {
    margin-bottom: 0;
  }
  .header_left h1 {
    font-size: 2rem;
  }
  .header_left-navigation {
    padding: 2rem 4rem;
  }
  .header_left-navigation ul li a {
    font-size: 1.8rem;
  }
  .header_right-img {
    width: 85%;
    margin-left: 3rem;
  }
  .header_right p {
    right: 15rem;
    font-size: 2.4rem;
  }
}
@media (max-width: 960px) {
  .header {
    display: block;
    padding: 0;
    margin-bottom: 6rem;
  }
  .header_left {
    width: 100%;
  }
  .header_left h1 {
    width: 28rem;
  }
  .header_left-navigation {
    position: fixed;
    z-index: 999;
    top: -120%;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #58AC6F;
    transition: all 0.6s;
  }
  .header_left-navigation.panelactive {
    top: 0;
  }
  .header_left-navigation ul li:not(:last-child) {
    border-bottom: 0;
  }
  .header_left-navigation ul li a {
    color: #FFF;
  }
  .header_right {
    width: 100%;
    padding-top: 3rem;
  }
  .header_right-img {
    margin: 0 auto;
  }
}
@media (max-width: 600px) {
  .header_right p {
    right: 10rem;
  }
}
@media (max-width: 520px) {
  .header_left h1 {
    width: 24rem;
    padding: 1.6rem;
  }
  .header_right p {
    right: 5rem;
    font-size: 1.8rem;
  }
  .header_right-img img {
    height: 50rem;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 2rem;
  }
  .header_right-img::after {
    top: 2rem;
    left: 2rem;
    border-radius: 2rem;
  }
}

.hm_open {
  display: none;
}
@media (max-width: 960px) {
  .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%;
  }
}

.ecBtn {
  position: fixed;
  z-index: 999;
  bottom: 2rem;
  right: 2rem;
  width: 25rem;
  height: 7.4rem;
  background-color: rgb(233, 155, 66);
  border-radius: 1rem;
  transition: all .5s;
}
.ecBtn a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 1.6rem 2rem;
  color: #FFF;
  /* font-family: '游ゴシック', YuGothic, '游ゴシック体', sans-serif; */
  font-size: 1.8rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0;
  white-space: nowrap;
  transition: all .8s;
}
.ecBtn_imgBx {
  width: 4.2rem;
}
.ecBtn_imgBx img {
  width: 100%;
}
.ecBtn_txtBx {
  display: block;
  opacity: 1;
}
@media screen and (max-width: 520px) {
  .ecBtn {
    width: 22rem;
    height: 5.6rem;
  }
  .ecBtn a {
    padding: 1.2rem;
    font-size: 1.6rem;
  }
  .ecBtn_imgBx {
    width: 3.2rem;
  }
  .ecBtn.circle {
    width: 5.6rem;
    height: 5.6rem;
    border-radius: 50%;
  }
  .ecBtn.circle .ecBtn_txtBx {
    display: none;
    opacity: 0;
  }
  .ecBtn.circle a {
    display: block;
  }
}

.concept {
  position: relative;
  width: 100%;
  padding: 12rem 0;
  background-color: #58AC6F;
}
.concept_container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  width: 55%;
  margin: 0 auto;
  color: #FFF;
}
.concept_container p {
  position: relative;
  z-index: 2;
  line-height: 1.7;
  letter-spacing: 0.08em;
}
.concept_container p span {
  display: block;
  padding-bottom: 1rem;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.7;
}
.concept_img {
  width: 100%;
}
.concept_img img {
  position: absolute;
  opacity: 0.5;
}
.concept_img img:nth-child(1) {
  bottom: 0;
  left: 2%;
  width: 26rem;
}
@media screen and (max-width: 960px) {
  .concept_img img:nth-child(1) {
    width: 20rem;
  }
}
@media screen and (max-width: 600px) {
  .concept_img img:nth-child(1) {
    width: 15rem;
  }
}
.concept_img img:nth-child(2) {
  top: -2.5rem;
  right: 5%;
  width: 20rem;
  transform: rotate(165deg) scale(-1, 1);
}
@media screen and (max-width: 600px) {
  .concept_img img:nth-child(2) {
    top: -2rem;
    width: 15rem;
  }
}
.concept_img img:nth-child(3) {
  bottom: 0;
  right: 18%;
  width: 5rem;
}
@media screen and (max-width: 600px) {
  .concept_img img:nth-child(3) {
    width: 3rem;
  }
}
.concept_img img:nth-child(4) {
  bottom: 0;
  right: 13%;
  width: 5rem;
}
@media screen and (max-width: 960px) {
  .concept_img img:nth-child(4) {
    right: 10%;
  }
}
@media screen and (max-width: 600px) {
  .concept_img img:nth-child(4) {
    width: 3rem;
  }
}
@media (max-width: 960px) {
  .concept_container {
    width: 65%;
  }
  .concept_container p span {
    font-size: 1.6rem;
  }
}
@media (max-width: 600px) {
  .concept {
    padding: 6rem 0;
  }
  .concept_container {
    display: block;
    width: 80%;
  }
}

.SpTb_only {
  display: none;
}
@media (max-width: 1300px) {
  .SpTb_only {
    display: block;
  }
}

.service {
  position: relative;
  padding: 8rem 0 16rem;
  overflow: hidden;
}
.service h2 {
  padding-left: 15%;
}
.service h2 span {
  margin-left: -2rem;
}
.service_img {
  position: relative;
  width: 60%;
  max-width: 1260px;
  padding-top: 4.8rem;
  margin-bottom: 40rem;
}
.service_img img {
  width: 100%;
}
.service_img::before, .service_img::after {
  content: "";
  position: absolute;
  z-index: -1;
  background-color: rgba(88, 172, 111, 0.3);
}
.service_img::before {
  top: 8rem;
  left: 12rem;
  width: 100%;
  height: 115%;
}
.service_img::after {
  top: 28rem;
  left: 42rem;
  width: 90%;
  height: 100%;
}
.service_list {
  position: absolute;
  top: 68rem;
  right: 0;
  width: 45%;
  color: #FFF;
  font-size: 2.4rem;
  font-weight: 600;
  text-align: center;
}
.service_list li {
  padding: 2.4rem 3rem;
  background-color: #58AC6F;
  list-style: none;
}
.service_list li:not(:last-child) {
  margin-bottom: 2.4rem;
}
.service_list li span {
  display: block;
  padding-top: 1rem;
  font-size: 1.6rem;
  font-weight: 400;
}
.service_message {
  width: 100%;
  padding: 8rem 0 12rem;
  background: url(../img/service_message_bg.svg) no-repeat;
  background-size: 100% 100%;
}
.service_message-container {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1100px;
  width: 70%;
  margin: 0 auto;
  font-weight: 600;
}
.service_message-container h3 {
  width: 30%;
  padding: 4rem 8rem 4rem 0;
  border-right: 1px solid #333;
  font-size: 3rem;
  line-height: 1.5;
}
.service_message-container p {
  width: 70%;
  padding-left: 8rem;
  line-height: 2.2;
}
.service_truck {
  width: 100%;
  padding-top: 12rem;
}
.service_truck img {
  width: 60%;
  margin: 0 auto;
}
@media (max-width: 1300px) {
  .service_list {
    top: 64rem;
  }
  .service_message {
    padding: 6rem 0 8rem;
  }
  .service_message-container h3 {
    padding: 4rem 6rem 4rem 0;
  }
  .service_message-container p {
    padding-left: 6rem;
  }
}
@media (max-width: 1080px) {
  .service_list {
    top: 56rem;
  }
}
@media (max-width: 960px) {
  .service_img {
    margin-bottom: 32rem;
  }
  .service_img::after {
    top: 28rem;
    left: 30rem;
    width: 90%;
    height: 82%;
  }
  .service_list {
    top: 48rem;
    width: 55%;
  }
  .service_message-container {
    width: 80%;
  }
  .service_message-container h3 {
    padding: 3rem 4rem 3rem 0;
    font-size: 2.4rem;
  }
  .service_message-container p {
    padding-left: 4rem;
  }
  .service_truck img {
    width: 80%;
  }
}
@media (max-width: 768px) {
  .service_img {
    margin-bottom: 40rem;
  }
  .service_list {
    width: 60%;
  }
  .service_list li:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 600px) {
  .service_img {
    width: 70%;
  }
  .service_img::before {
    top: 8rem;
    left: 8rem;
    width: 100%;
    height: 110%;
  }
  .service_img::after {
    top: 20rem;
    left: 18rem;
    width: 90%;
    height: 82%;
  }
  .service_list {
    width: 80%;
    font-size: 2rem;
  }
  .service_message-container {
    display: block;
  }
  .service_message-container h3 {
    width: 100%;
    padding: 0 0 2rem 0;
    border-right: 0;
    font-size: 2rem;
  }
  .service_message-container p {
    width: 100%;
    padding-left: 0;
  }
}
@media (max-width: 520px) {
  .service {
    padding: 8rem 0 10rem;
  }
  .service h2 {
    padding-left: 24px;
  }
  .service h2 span {
    margin-left: 0;
  }
  .service_img {
    width: 80%;
    margin-bottom: 45rem;
  }
  .service_list {
    top: 45rem;
    width: 90%;
  }
  .service_message {
    background: url(../img/service_message_bg_sp.svg) no-repeat;
    background-size: 100% 100%;
  }
  .service_truck {
    padding-top: 6rem;
  }
  .service_truck img {
    width: 90%;
  }
}
@media (max-width: 390px) {
  .service_img {
    margin-bottom: 50rem;
    padding-top: 0;
  }
  .service_list {
    top: 40rem;
  }
}
@media (max-width: 1300px) {
  .pc_only {
    display: none;
  }
}

.faq {
  width: 100%;
  padding-bottom: 16rem;
}
.faq h2 {
  padding: 0 0 3rem 10%;
}
.faq_accordionArea {
  list-style: none;
  max-width: 900px;
  width: 80%;
  margin: 0 auto;
}
.faq_accordionArea li > div {
  border: 1px solid #ccc;
}
.faq_accordionArea-title {
  position: relative;
  padding: 1.6rem 3rem 1.6rem 2rem;
  background-color: #58AC6F;
  color: #FFF;
  font-size: 1.6rem;
  transition: all 0.5s ease;
}
.faq_accordionArea-title::before, .faq_accordionArea-title::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 2px;
  background-color: #FFF;
  transition: all 0.5s ease;
}
.faq_accordionArea-title::before {
  top: 48%;
  right: 15px;
  transform: rotate(0deg);
}
.faq_accordionArea-title::after {
  top: 48%;
  right: 15px;
  transform: rotate(90deg);
}
.faq_accordionArea-title.close::before {
  transform: rotate(45deg);
}
.faq_accordionArea-title.close::after {
  transform: rotate(-45deg);
}
.faq_accordionArea-box {
  display: none;
  padding: 4rem 2rem;
}
@media (max-width: 520px) {
  .faq {
    padding-bottom: 10rem;
  }
  .faq h2 {
    padding-left: 24px;
  }
  .faq_accordionArea {
    width: 90%;
  }
}

.information {
  padding-bottom: 24rem;
}
.information h2 {
  padding: 0 0 3rem 20%;
}
.information h2 span {
  margin-left: -15rem;
}
.information table {
  width: 50%;
  margin: 0 auto;
}
.information table tr {
  border-bottom: 1px solid #ccc;
}
.information table th {
  width: 24%;
  padding: 2rem 4rem 2rem 2rem;
  text-align: left;
}
.information table td {
  padding: 2rem 0 2rem 1rem;
}
.information table td span {
  display: block;
  font-size: 1.2rem;
}
@media (max-width: 960px) {
  .information {
    padding-bottom: 16rem;
  }
  .information table {
    width: 70%;
  }
}
@media (max-width: 768px) {
  .information table {
    width: 80%;
  }
}
@media (max-width: 520px) {
  .information {
    padding-bottom: 10rem;
  }
  .information h2 {
    padding: 0 0 3rem 24px;
  }
  .information h2 span {
    margin-left: 0;
  }
  .information table {
    width: 90%;
  }
  .information table th {
    display: block;
    width: 50%;
    padding: 2rem 0 1rem 2rem;
  }
  .information table td {
    display: block;
    padding: 0 0 2rem 2rem;
  }
}

.contact {
  position: relative;
  width: 100%;
  padding: 3rem 0 7.2rem;
  margin-bottom: 16rem;
  background-color: #58AC6F;
}
.contact_container {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 5rem;
  width: 80%;
  margin: 0 auto;
}
.contact_container img {
  width: 55%;
  margin-top: -10rem;
}
.contact_containerTxt {
  width: 45%;
  color: #FFF;
}
.contact_containerTxt h2 {
  padding-left: 6rem;
  -ms-writing-mode: lr-tb;
      writing-mode: horizontal-tb;
  font-size: 3.2rem;
}
.contact_containerTxt h2 span {
  display: block;
  margin-left: -3rem;
}
.contact_containerTxt p {
  text-align: center;
  position: relative;
  padding-top: 8rem;
  margin: 0 auto;
  color: #FFF;
  font-size: 1.6rem;
  font-weight: 600;
  text-decoration: none;
}
.contact_containerTxt-btn {
  position: relative;
  z-index: 2;
  padding-top: 2.4rem;
  text-align: center;
}
.contact_containerTxt-btn a {
  padding: 1.5rem 3rem;
  background-color: #FFF;
  border-radius: 5rem;
  color: #58AC6F;
  font-size: 2rem;
  font-weight: 900;
  text-decoration: none;
}
.contact_img {
  width: 100%;
}
.contact_img img {
  width: 16rem;
  position: absolute;
  bottom: 0;
  right: 3%;
  transform: scale(-1, 1);
}
@media (max-width: 1200px) {
  .contact_container img {
    width: 50%;
    margin-top: -5rem;
  }
  .contact_containerTxt {
    width: 50%;
  }
  .contact_containerTxt h2 {
    padding: 0;
  }
  .contact_containerTxt-btn a {
    font-size: 1.8rem;
  }
}
@media (max-width: 960px) {
  .contact_container {
    display: block;
    width: 50%;
  }
  .contact_container img {
    display: none;
  }
  .contact_containerTxt {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .contact_container {
    width: 70%;
  }
}
@media (max-width: 520px) {
  .contact {
    margin-bottom: 10rem;
  }
  .contact_container {
    width: 100%;
  }
  .contact_containerTxt h2 {
    padding-left: 24px;
    font-size: 2.4rem;
  }
  .contact_containerTxt h2 span {
    margin-left: 0;
  }
  .contact_containerTxt-btn a {
    padding: 1.5rem 2rem;
    font-size: 1.6rem;
  }
}

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