@charset "UTF-8";
* {
  list-style: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
  margin: 0;
  text-decoration: none;
}

html {
  font-size: 0.0732vw;
  scroll-behavior: smooth;
}
@media (max-width: 767px) {
  html {
    font-size: 0.266666vw;
  }
}
@media (min-width: 1120px) {
  html {
    font-size: 1px;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
}

a {
  color: #000;
}

.inner {
  max-width: 1000px;
  margin: 0 auto;
}

.inner_1080 {
  max-width: 1080px;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .pc {
    display: none;
  }
}

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

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

.btn {
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  color: #fff;
  position: relative;
  background: -webkit-gradient(linear, left top, right top, color-stop(0, #0D9F50), color-stop(50%, #005828), to(#0D9F50));
  background: linear-gradient(to right, #0D9F50 0, #005828 50%, #0D9F50 100%);
  background-size: 200% auto;
  background-position: 1% 50%;
  -webkit-box-shadow: 2rem 2rem 10rem rgba(5, 136, 65, 0.3);
          box-shadow: 2rem 2rem 10rem rgba(5, 136, 65, 0.3);
  border-radius: 60rem;
  font-weight: 500;
}
.btn:hover {
  color: #fff;
  background-position: 99% 50%;
}

.section_title_h2 {
  font-size: 40rem;
  line-height: 1.475;
  font-weight: 900;
  text-align: center;
}

.text-green {
  color: #058841 !important;
}

.text-black {
  color: #000 !important;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}
header .header_inner.blackbg {
  background-color: #000 !important;
}
header .header_inner {
  height: 91rem;
  padding: 0 20rem 0 40rem;
  background-color: #fff;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
@media (max-width: 767px) {
  header .header_inner {
    height: auto;
    padding: 0 20rem;
  }
}
header .header_inner > .container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767px) {
  header .header_inner > .container {
    padding: 0;
  }
}
header .header_inner > .container > .logo {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
@media (max-width: 767px) {
  header .header_inner > .container > .logo {
    margin: 0 auto 0 0;
  }
}
header .header_inner > .container > .logo a {
  width: 100%;
  height: 100%;
}
header .header_inner > .container > .logo a img {
  width: 220rem;
  height: auto;
  display: block;
}
@media (max-width: 767px) {
  header .header_inner > .container > .logo a img {
    width: 152.53rem;
  }
}
header .header_inner > .container .openbtn {
  display: none;
  position: relative;
  cursor: pointer;
  width: 100px;
  height: 100px;
  margin-left: 20rem;
}
@media (max-width: 767px) {
  header .header_inner > .container .openbtn {
    display: block;
    width: 32rem;
    height: 22rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
header .header_inner > .container .openbtn span {
  display: inline-block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s; /*アニメーションの設定*/
  position: absolute;
  left: 28px;
  height: 3px;
  background: #000;
  width: 45%;
}
header .header_inner > .container .openbtn span.white_bg {
  background: #fff;
}
@media (max-width: 767px) {
  header .header_inner > .container .openbtn span {
    height: 2rem;
    left: 0;
    width: 100%;
  }
}
header .header_inner > .container .openbtn span:nth-of-type(1) {
  top: 30px;
}
header .header_inner > .container .openbtn span:nth-of-type(2) {
  top: 46px;
}
header .header_inner > .container .openbtn span:nth-of-type(3) {
  top: 62px;
}
@media (max-width: 767px) {
  header .header_inner > .container .openbtn span:nth-of-type(1) {
    top: 0;
  }
  header .header_inner > .container .openbtn span:nth-of-type(2) {
    top: calc(50% - 1px);
  }
  header .header_inner > .container .openbtn span:nth-of-type(3) {
    top: auto;
    bottom: 0;
  }
}
header .header_inner > .container .openbtn.active span:nth-of-type(1) {
  top: 36px;
  -webkit-transform: translateY(12px) rotate(-45deg);
          transform: translateY(12px) rotate(-45deg);
}
header .header_inner > .container .openbtn.active span:nth-of-type(2) {
  opacity: 0;
}
header .header_inner > .container .openbtn.active span:nth-of-type(3) {
  top: 60px;
  -webkit-transform: translateY(-12px) rotate(45deg);
          transform: translateY(-12px) rotate(45deg);
}
@media (max-width: 767px) {
  header .header_inner > .container .openbtn.active span:nth-of-type(1) {
    top: 50%;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  header .header_inner > .container .openbtn.active span:nth-of-type(3) {
    top: 50%;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
}
header .header_inner > .container > .gnav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20rem;
  -ms-flex-item-align: end;
      align-self: flex-end;
}
@media (max-width: 767px) {
  header .header_inner > .container > .gnav {
    background-color: black;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 20rem 30rem 91rem;
    overflow: auto;
    margin-top: 65rem;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    z-index: 9999;
  }
}
header .header_inner > .container > .gnav.openmenu {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
@media (max-width: 767px) {
  header .header_inner > .container > .gnav .gnav_menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
header .header_inner > .container > .gnav .gnav_menu > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media (max-width: 767px) {
  header .header_inner > .container > .gnav .gnav_menu > ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
header .header_inner > .container > .gnav .gnav_menu > ul > li {
  -webkit-transition: all linear 0.2s;
  transition: all linear 0.2s;
}
@media (max-width: 767px) {
  header .header_inner > .container > .gnav .gnav_menu > ul > li {
    border-bottom: 1px solid #7A7A7A;
  }
  header .header_inner > .container > .gnav .gnav_menu > ul > li:last-child {
    border-bottom: none;
  }
}
header .header_inner > .container > .gnav .gnav_menu > ul > li > a {
  color: #000;
  width: 100%;
  height: 100%;
}
@media (max-width: 767px) {
  header .header_inner > .container > .gnav .gnav_menu > ul > li > a {
    color: #fff;
  }
}
@media (max-width: 767px) {
  header .header_inner > .container > .gnav .gnav_menu > ul.gnav_menu_top > li:first-of-type {
    border-top: 1px solid #7A7A7A;
  }
}
header .header_inner > .container > .gnav .gnav_menu > ul.gnav_menu_top > li > a {
  display: block;
  padding: 0 15rem 7rem;
  font-size: 14rem;
  line-height: 1.36;
  -webkit-transition: all linear 0.2s;
  transition: all linear 0.2s;
}
header .header_inner > .container > .gnav .gnav_menu > ul.gnav_menu_top > li > a:hover {
  opacity: 0.8;
}
@media (max-width: 767px) {
  header .header_inner > .container > .gnav .gnav_menu > ul.gnav_menu_top > li > a {
    padding: 10rem 0;
  }
}
header .header_inner > .container > .gnav .gnav_menu > ul.gnav_menu_bottom > li {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
header .header_inner > .container > .gnav .gnav_menu > ul.gnav_menu_bottom > li > a {
  display: block;
  padding: 7rem 15rem 16rem;
  font-size: 16rem;
  line-height: 1.3125;
  font-weight: 500;
  -webkit-transition: all linear 0.2s;
  transition: all linear 0.2s;
  border-bottom: solid 3rem rgba(0, 88, 40, 0);
}
header .header_inner > .container > .gnav .gnav_menu > ul.gnav_menu_bottom > li > a.border_bottom {
  border-bottom: solid 3rem #005828;
}
header .header_inner > .container > .gnav .gnav_menu > ul.gnav_menu_bottom > li > a:hover {
  border-bottom: solid 3rem #005828;
}
@media (max-width: 767px) {
  header .header_inner > .container > .gnav .gnav_menu > ul.gnav_menu_bottom > li > a {
    padding: 10rem 0;
  }
  header .header_inner > .container > .gnav .gnav_menu > ul.gnav_menu_bottom > li > a:hover {
    border-bottom: solid 3rem #000;
  }
}
header .header_inner > .container > .gnav .gnav_menu > ul.gnav_menu_bottom > li > p {
  padding: 7rem 15rem 16rem;
  font-size: 16rem;
  line-height: 1.3125;
  font-weight: 500;
  -webkit-transition: all linear 0.2s;
  transition: all linear 0.2s;
  border-bottom: solid 3rem rgba(0, 88, 40, 0);
  cursor: pointer;
}
header .header_inner > .container > .gnav .gnav_menu > ul.gnav_menu_bottom > li > p.border_bottom {
  border-bottom: solid 3rem #005828;
}
header .header_inner > .container > .gnav .gnav_menu > ul.gnav_menu_bottom > li > p:hover {
  border-bottom: solid 3rem #005828;
}
@media (max-width: 767px) {
  header .header_inner > .container > .gnav .gnav_menu > ul.gnav_menu_bottom > li > p {
    color: #fff;
    padding: 10rem 0;
    -webkit-transition: -webkit-transform;
    transition: -webkit-transform;
    transition: transform;
    transition: transform, -webkit-transform;
  }
  header .header_inner > .container > .gnav .gnav_menu > ul.gnav_menu_bottom > li > p:hover {
    border-bottom: solid 3rem #000;
  }
  header .header_inner > .container > .gnav .gnav_menu > ul.gnav_menu_bottom > li > p::after {
    content: ">";
    margin-left: 10rem;
  }
}
header .header_inner > .container > .gnav .gnav_menu > ul.gnav_menu_bottom > li > ul {
  position: fixed;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
  font-size: 13rem;
  line-height: 1.462;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40rem;
  padding: 30rem 0 31rem;
}
@media (max-width: 767px) {
  header .header_inner > .container > .gnav .gnav_menu > ul.gnav_menu_bottom > li > ul {
    position: relative;
    display: block;
    padding: 0 0 0 20rem;
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    opacity: 1;
    -webkit-transition: -webkit-transform;
    transition: -webkit-transform;
    transition: transform;
    transition: transform, -webkit-transform;
    overflow: hidden;
  }
}
@media (max-width: 767px) {
  header .header_inner > .container > .gnav .gnav_menu > ul.gnav_menu_bottom > li > ul > li {
    padding: 10rem 0;
  }
}
header .header_inner > .container > .gnav .gnav_menu > ul.gnav_menu_bottom > li > ul > li > a {
  color: #fff;
  -webkit-transition: all linear 0.2s;
  transition: all linear 0.2s;
}
header .header_inner > .container > .gnav .gnav_menu > ul.gnav_menu_bottom > li > ul > li > a:hover {
  opacity: 0.8;
}
header .header_inner > .container > .gnav .gnav_contact {
  width: 180rem;
  height: 60rem;
  border-radius: 60rem;
}
header .header_inner > .container > .gnav .gnav_contact > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15rem;
  width: 100%;
  height: 100%;
  border-radius: 60rem;
  font-size: 16rem;
  line-height: 1.3125;
}
header .header_inner > .container > .gnav .gnav_contact > a img {
  width: 20rem;
  height: 16rem;
}
@media (max-width: 767px) {
  header .header_inner > .container .gnav_contact_sp {
    width: 70rem;
    height: 70rem;
    border-left: 1rem solid #DEDEDE;
    border-right: 1rem solid #DEDEDE;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  header .header_inner > .container .gnav_contact_sp > a {
    width: 30rem;
    height: 23.5rem;
  }
  header .header_inner > .container .gnav_contact_sp > a img {
    width: 100%;
    height: 100%;
  }
  header .header_inner > .container .gnav_contact_sp.border_transparent {
    border-left: 1rem solid rgba(222, 222, 222, 0.3);
    border-right: 1rem solid rgba(222, 222, 222, 0.3);
  }
}

main #top_mv {
  width: 100%;
  height: 213px;
  background-image: url(../img/top_mv_bg.jpg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  margin-top: 91rem;
  padding-top: 58px;
}
@media (max-width: 767px) {
  main #top_mv {
    height: 160px;
    margin-top: 70.45rem;
    padding: 42rem 0 0;
  }
}
main #top_mv h1 {
  font-size: 46px;
  line-height: 1.2826;
  letter-spacing: 0.1em;
  color: #fff;
  max-width: 1200px;
  margin: 0 auto;
  width: 88%;
}
@media (max-width: 767px) {
  main #top_mv h1 {
    font-size: 27px;
    margin-left: 40px;
  }
}
main #top_mv h1 span {
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
  letter-spacing: 0.14em;
  font-weight: 500;
}
@media (max-width: 767px) {
  main #top_mv h1 span {
    font-size: 12px;
  }
}
main h3, main h4 {
  font-size: 26rem;
  line-height: 1.61538;
  color: #000;
}
@media (max-width: 767px) {
  main h3, main h4 {
    font-size: 20rem;
    line-height: 1.6;
  }
}
main p {
  font-size: 16rem;
  line-height: 1.75;
}
@media (max-width: 767px) {
  main p {
    font-size: 15rem;
  }
}
main section {
  padding-left: 143rem !important;
  padding-right: 143rem !important;
}
@media (max-width: 767px) {
  main section {
    padding-left: 20rem !important;
    padding-right: 20rem !important;
  }
}
main section#top_txt {
  background-color: #fff;
  height: 258px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767px) {
  main section#top_txt {
    height: 171px;
  }
}
main section#top_txt h2 {
  font-size: 40px;
  line-height: 1.475;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  main section#top_txt h2 {
    font-size: 24px;
    line-height: 1.5;
  }
}
main .bg_green {
  background-color: #F2F8F7;
}
main .section_top_pattern_pd {
  padding: 70rem 0 120rem;
}
@media (max-width: 767px) {
  main .section_top_pattern_pd {
    padding: 50rem 0 60rem;
  }
}
main .section_top_pattern {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
main .section_top_pattern h2, main .section_top_pattern h3 {
  font-size: 33rem;
  line-height: 1;
  font-weight: 500;
  margin-bottom: 6.2rem;
  position: relative;
  margin-bottom: 12.4rem;
}
@media (max-width: 767px) {
  main .section_top_pattern h2, main .section_top_pattern h3 {
    font-size: 24rem;
    line-height: 1.5;
    margin-bottom: 6rem;
    text-align: center;
  }
}
main .section_top_pattern h2::after, main .section_top_pattern h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transform: translateY(12.4rem);
          transform: translateY(12.4rem);
  background-image: url(../img/waby_line.png);
  background-size: contain;
  background-repeat: repeat-x;
  width: 100%;
  height: 6rem;
  background-position: 0;
}
@media (max-width: 767px) {
  main .section_top_pattern h2::after, main .section_top_pattern h3::after {
    -webkit-transform: translateY(6rem);
            transform: translateY(6rem);
    height: 4.55rem;
  }
}
main .section_top_pattern img {
  width: 78rem;
  margin-bottom: 22rem;
}
@media (max-width: 767px) {
  main .section_top_pattern img {
    width: 55rem;
    margin-bottom: 12rem;
  }
}
main ul.page_link {
  width: 100%;
  padding: 30rem 40rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12rem 90rem;
  background-color: #fff;
  -webkit-box-shadow: 10rem 20rem 50rem rgba(0, 6, 69, 0.1);
          box-shadow: 10rem 20rem 50rem rgba(0, 6, 69, 0.1);
}
@media (max-width: 767px) {
  main ul.page_link {
    grid-template-columns: 1fr;
  }
}
main ul.page_link li {
  counter-increment: page_link;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
main ul.page_link li a {
  font-size: 16rem;
  line-height: 1.2;
  -webkit-transition: all linear 0.2s;
  transition: all linear 0.2s;
}
main ul.page_link li a:hover {
  color: #058841;
}
main ul.page_link li::before {
  content: counter(page_link, decimal-leading-zero);
  width: 30rem;
  height: 30rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #058841;
  border-radius: 50%;
  font-size: 16rem;
  color: #fff;
  font-family: "Roboto";
  margin-right: 12rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
main #Breadcrumb {
  border-top: solid 1px #D6DEDD;
}
main #Breadcrumb .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 50px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 13px;
}
@media (max-width: 767px) {
  main #Breadcrumb .inner {
    margin: 0 20rem;
    gap: 0 13px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
main #Breadcrumb .inner li {
  font-size: 13px;
}
main #Breadcrumb .inner li::after {
  content: "＞";
  margin-left: 13px;
}
main #Breadcrumb .inner li:last-of-type {
  color: #ABABAB;
}
main #Breadcrumb .inner li:last-of-type::after {
  content: "";
}
main section#service_area {
  padding-bottom: 0;
}
main section#service_area .bg_green {
  width: 100%;
  margin: 80rem 0 60rem;
  padding: 40rem 40rem 37rem;
}
@media (max-width: 767px) {
  main section#service_area .bg_green {
    padding: 20rem 15rem;
    margin: 60rem 0;
  }
}
main section#service_area .bg_green a {
  -webkit-transition: all linear 0.2s;
  transition: all linear 0.2s;
}
main section#service_area .bg_green a:hover {
  opacity: 0.8;
}
main section#service_area .bg_green a > div {
  background-color: #fff;
  -webkit-box-shadow: 10rem 10rem 40rem rgba(0, 6, 69, 0.1);
          box-shadow: 10rem 10rem 40rem rgba(0, 6, 69, 0.1);
  background-image: url(../img/about_assembling_img15.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right 0 top 0;
  max-width: 800rem;
  margin: 0 auto;
  padding: 40rem 0 56rem 60rem;
}
@media (max-width: 767px) {
  main section#service_area .bg_green a > div {
    padding: 20rem 20rem 214rem;
    background-position: 50% 100%;
  }
}
main section#service_area .bg_green a > div h4 {
  position: relative;
  padding-left: 57rem;
}
main section#service_area .bg_green a > div h4::before {
  content: "";
  width: 45rem;
  height: 36rem;
  background-image: url(../img/icon_awesome-truck.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  bottom: 0;
}
main section#service_area .bg_green a > div p {
  font-size: 14rem;
  margin: 17rem 0 20rem;
}
main section#service_area .bg_green a > div dl {
  font-weight: 500;
}
main section#service_area .bg_green a > div dl dt {
  font-size: 14rem;
  color: #fff;
  background-color: #058841;
  padding: 1rem 5rem;
  display: inline;
}
main section#service_area .bg_green a > div dl dd {
  font-size: 17rem;
  margin-top: 5rem;
}
main section#service_area .bg_green a > div img {
  display: block;
  height: 100%;
  margin: 0;
  width: 52%;
}
main section#service_area .bg_green > p {
  text-align: center;
  margin-top: 15rem;
}
main section#service_area .bg_green > p a {
  color: #058841;
  -webkit-transition: all linear 0.2s;
  transition: all linear 0.2s;
}
main section#service_area .bg_green > p a:hover {
  opacity: 0.8;
}

footer .footer_inner {
  width: 100%;
  background-color: #F2F8F7;
}
footer .footer_inner > .footer_top {
  padding: 93rem 0 74rem;
  border-bottom: solid 1px #D7DEDD;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767px) {
  footer .footer_inner > .footer_top {
    padding: 93rem 0 0;
  }
}
footer .footer_inner > .footer_top > .footer_logo {
  display: block;
  width: 272rem;
  height: 47rem;
  margin-bottom: 21rem;
}
@media (max-width: 767px) {
  footer .footer_inner > .footer_top > .footer_logo {
    width: 73%;
    margin: 0 auto 21rem;
  }
}
footer .footer_inner > .footer_top > .footer_logo > img {
  width: 100%;
  height: 100%;
}
footer .footer_inner > .footer_top > p {
  font-size: 15rem;
  line-height: 1.8666;
  color: #000;
  margin-bottom: 97rem;
}
@media (max-width: 767px) {
  footer .footer_inner > .footer_top > p {
    margin-bottom: 50rem;
  }
}
footer .footer_inner > .footer_top > .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 767px) {
  footer .footer_inner > .footer_top > .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30rem;
  }
}
@media (max-width: 767px) {
  footer .footer_inner > .footer_top > .container > .office_info {
    width: 80%;
    margin: 0 auto;
  }
}
footer .footer_inner > .footer_top > .container > .office_info > .office_name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15rem;
  margin-bottom: 16rem;
}
footer .footer_inner > .footer_top > .container > .office_info > .office_name > p {
  font-size: 18rem;
  line-height: 1.5555;
  font-weight: bold;
}
footer .footer_inner > .footer_top > .container > .office_info > .office_name > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: -webkit-gradient(linear, left top, right top, from(#0D9F50), to(#005828));
  background: linear-gradient(to right, #0D9F50, #005828);
  border-radius: 4rem;
  height: 25rem;
  width: 70rem;
  font-size: 14rem;
  line-height: 1.3571;
  color: #fff;
}
footer .footer_inner > .footer_top > .container > .office_info > p {
  font-size: 16rem;
  line-height: 1.75;
}
footer .footer_inner > .footer_top > .container > .inquiry {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767px) {
  footer .footer_inner > .footer_top > .container > .inquiry {
    width: 90%;
    margin: 53rem auto;
  }
}
footer .footer_inner > .footer_top > .container > .inquiry > p {
  font-size: 17rem;
  line-height: 1.647;
  margin-bottom: 19rem;
}
footer .footer_inner > .footer_top > .container > .inquiry > .footer_inquiry {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 380rem;
  height: 70rem;
  padding: 21rem 0 19rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 29rem;
  border-radius: 60rem;
}
@media (max-width: 767px) {
  footer .footer_inner > .footer_top > .container > .inquiry > .footer_inquiry {
    width: 100%;
  }
}
footer .footer_inner > .footer_top > .container > .inquiry > .footer_inquiry.hidden {
  display: none;
}
footer .footer_inner > .footer_top > .container > .inquiry > .footer_inquiry > img {
  width: 28rem;
  height: 22rem;
}
footer .footer_inner > .footer_top > .container > .inquiry > .footer_inquiry > p {
  font-size: 22rem;
  line-height: 1.3636;
}
footer .footer_inner > .footer_bottom {
  padding: 61rem 0 75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
footer .footer_inner > .footer_bottom > .footer_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 22rem;
}
@media (max-width: 767px) {
  footer .footer_inner > .footer_bottom > .footer_nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 17rem;
  }
}
footer .footer_inner > .footer_bottom > .footer_nav > li {
  padding: 0 25rem;
  border-right: solid 1px #000;
}
@media (max-width: 767px) {
  footer .footer_inner > .footer_bottom > .footer_nav > li {
    border-right: none;
  }
}
footer .footer_inner > .footer_bottom > .footer_nav > li:last-of-type {
  border-right: none;
}
footer .footer_inner > .footer_bottom > .footer_nav > li > a {
  width: 100%;
  height: 100%;
  font-size: 13rem;
  line-height: 1;
  color: #000;
}
footer .footer_inner > .footer_bottom > p {
  font-size: 11rem;
  line-height: 2.5454;
  color: #8F8F8F;
}
footer #to_top {
  display: block;
  width: 60rem;
  height: 60rem;
  background-color: #058841;
  position: fixed;
  bottom: 20rem;
  right: 23rem;
  -webkit-transition: -webkit-transform linear 0.2s;
  transition: -webkit-transform linear 0.2s;
  transition: transform linear 0.2s;
  transition: transform linear 0.2s, -webkit-transform linear 0.2s;
  display: none;
}
@media (max-width: 767px) {
  footer #to_top {
    width: 40rem;
    height: 40rem;
    bottom: 10rem;
    right: 11.5rem;
  }
}
footer #to_top:hover {
  opacity: 0.8;
}
@media (max-width: 767px) {
  footer #to_top:hover {
    opacity: 1;
  }
}
footer #to_top::after {
  content: "";
  width: 15rem;
  height: 15rem;
  border-top: solid 2rem #fff;
  border-left: solid 2rem #fff;
  -webkit-transform: translateY(5rem) rotate(45deg);
          transform: translateY(5rem) rotate(45deg);
  position: absolute;
  top: calc(50% - 7.5rem);
  left: calc(50% - 7.5rem);
}
@media (max-width: 767px) {
  footer #to_top::after {
    width: 10rem;
    height: 10rem;
    -webkit-transform: translateY(2rem) rotate(45deg);
            transform: translateY(2rem) rotate(45deg);
    top: calc(50% - 5rem);
    left: calc(50% - 5rem);
  }
}/*# sourceMappingURL=common.css.map */