@charset "UTF-8";
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  scroll-margin-top: 120px;
}

body {
  color: #000;
  line-height: 1;
  font-family: "Noto Sans JP Medium", sans-serif;
  font-size: 1.6rem;
  background-image: url(../img/common/bk.png);
  background-size: cover;
}

h2, h3, h4, h5 {
  font-weight: bold;
}

/*　ハンバーガーボタン　*/
.hamburger {
  display: block;
  position: relative;
  z-index: 3;
  width: 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
  position: absolute;
  right: 10px;
  top: 39px;
}

.hamburger span {
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 6px;
  background: #555;
  transition: 0.3s ease-in-out;
}

.hamburger span:nth-child(1) {
  top: 10px;
}

.hamburger span:nth-child(2) {
  top: 20px;
}

.hamburger span:nth-child(3) {
  top: 30px;
}

/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top: 16px;
  left: 6px;
  background: #707070;
  transform: rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 16px;
  background: #707070;
  transform: rotate(45deg);
}

nav.globalMenuSp {
  display: none;
  position: absolute;
  z-index: -2;
  top: 0;
  left: 0;
  color: #fff;
  background: rgba(255, 255, 255, 0.98);
  text-align: center;
  width: 100%;
  height: 100vh;
  opacity: 0;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  display: flex;
}
nav.globalMenuSp ul {
  display: none;
}

nav.globalMenuSp.active {
  z-index: 2;
  display: block;
  width: 100%;
}
nav.globalMenuSp.active ul {
  display: block;
  width: 100%;
  padding: 50px 0;
}
nav.globalMenuSp.active ul li {
  width: 100%;
  text-align: left;
}
nav.globalMenuSp.active ul li a {
  background-color: #fff;
  display: block;
  position: relative;
  padding: 10px 0 10px 10px;
  font-size: 2rem;
  border-bottom: 1px solid #8c8c8c;
  color: #0d3d01;
}
nav.globalMenuSp.active ul li a::after {
  content: "";
  display: block;
  background-image: url(../img/common/sp_arrow01.png);
  position: absolute;
  right: 10px;
  top: 13px;
  width: 10px;
  height: 18px;
  background-size: cover;
}
nav.globalMenuSp.active ul li:nth-child(5) a {
  background-color: #0d3d01;
  color: #fff;
}
nav.globalMenuSp.active ul li:nth-child(5) a::after {
  background-image: url(../img/common/sp_arrow02.png);
}
nav.globalMenuSp.active ul li:nth-child(6) a {
  background-color: #0d3d01;
  color: #fff;
}
nav.globalMenuSp.active ul li:nth-child(6) a::after {
  background-image: url(../img/common/sp_arrow02.png);
}

nav.globalMenuSp .txt_box {
  padding: 10% 0 0 10%;
}
nav.globalMenuSp .txt_box .globalMenu_flex {
  display: flex;
  align-items: center;
}
nav.globalMenuSp .txt_box .globalMenu_flex .btn_list {
  margin-left: 40px;
}
nav.globalMenuSp .txt_box .menu_list {
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 50px;
  margin-bottom: 30px;
}
nav.globalMenuSp .txt_box .menu_list li {
  width: 48%;
  text-align: left;
  margin-bottom: 20px;
}
nav.globalMenuSp .txt_box .menu_list li a {
  display: block;
  color: #292925;
  border-bottom: 1px solid #E4E4E4;
  padding-bottom: 10px;
}
nav.globalMenuSp .txt_box .btn a {
  margin-left: 0;
  background-color: #4D4D4D;
  color: #fff;
}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
  opacity: 100;
}

.thnks_txt {
  text-align: center;
  font-size: 2rem;
  line-height: 2;
}

.pc_header .inner {
  max-width: 1200px;
  margin: 20px auto;
}
.pc_header .inner .top_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 750px) {
  .pc_header .inner .top_box {
    padding: 20px 0;
  }
  .pc_header .inner .top_box .logo {
    padding: 0 10px 10px 10px;
    display: inline-block;
    width: 60%;
  }
}
.pc_header .inner .top_box ul {
  display: flex;
  align-items: center;
}
.pc_header .inner .top_box ul li:nth-child(1) {
  margin-right: 10px;
}
.pc_header .inner nav {
  margin-left: auto;
}
.pc_header .inner nav ul {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}
.pc_header .inner nav ul li {
  margin-left: 30px;
  font-size: 2rem;
}
.pc_header .inner nav ul li a {
  color: #0d3d01;
}

.mv {
  text-align: center;
}

.top_box01 {
  position: relative;
}
.top_box01::before {
  content: "";
  display: block;
  width: 152px;
  height: 1077px;
  background-image: url(../img/top/txt01.png);
  background-size: cover;
  position: absolute;
  left: 0;
  top: -10%;
}
@media (max-width: 750px) {
  .top_box01::before {
    display: none;
  }
}
.top_box01 .inner {
  max-width: 1200px;
  margin: 50px auto 0;
  position: relative;
}
.top_box01 .inner::before {
  content: "";
  background-image: url(../img/top/box01bk.png);
  background-size: cover;
  width: 300px;
  height: 200px;
  display: block;
  position: absolute;
  right: 0;
  top: 0;
}
@media (max-width: 750px) {
  .top_box01 .inner::before {
    width: 230px;
    height: 150px;
    right: 0;
    top: -2%;
    z-index: -1;
  }
}
.top_box01 .inner .flex_box {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 750px) {
  .top_box01 .inner .flex_box {
    padding: 0 20px;
    flex-direction: column;
  }
}
.top_box01 .inner .left_box {
  width: 50%;
}
@media (max-width: 750px) {
  .top_box01 .inner .left_box {
    width: 100%;
  }
}
.top_box01 .inner .left_box h3 {
  font-size: 5.4rem;
  font-weight: bold;
  line-height: 1.6;
  margin-top: 20px;
}
@media (max-width: 750px) {
  .top_box01 .inner .left_box h3 {
    font-size: 3rem;
    margin-top: 10px;
  }
}
.top_box01 .inner .left_box p {
  font-size: 1.6rem;
  line-height: 1.8;
  margin-top: 30px;
}
@media (max-width: 750px) {
  .top_box01 .inner .left_box p {
    margin-top: 10px;
  }
}
.top_box01 .inner .right_box {
  width: 48%;
  padding-top: 180px;
}
@media (max-width: 750px) {
  .top_box01 .inner .right_box {
    width: 100%;
  }
}
.top_box01 .inner .box01_list {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
@media (max-width: 750px) {
  .top_box01 .inner .box01_list {
    flex-wrap: wrap;
  }
}
@media (max-width: 750px) {
  .top_box01 .inner .box01_list li {
    width: 33%;
  }
  .top_box01 .inner .box01_list li:nth-child(1) {
    margin: 0 30% 20px;
  }
}
.top_box01 .inner .box01_list li:nth-child(2) {
  margin: 0 50px;
}
@media (max-width: 750px) {
  .top_box01 .inner .box01_list li:nth-child(2) {
    margin: 0 50px 0 0;
  }
}
.top_box01 .inner .btn {
  text-align: center;
  margin-top: 50px;
}
@media (max-width: 750px) {
  .top_box01 .inner .btn {
    padding: 0 30px;
  }
}

.top_box02 {
  margin-top: 100px;
}
.top_box02 .inner .ttl {
  text-align: center;
  color: #0d3d01;
  font-size: 5rem;
  font-weight: bold;
  position: relative;
  padding-bottom: 30px;
}
@media (max-width: 750px) {
  .top_box02 .inner .ttl {
    font-size: 3rem;
  }
}
.top_box02 .inner .ttl::after {
  content: "";
  width: 86px;
  height: 6px;
  border-radius: 10px;
  background-color: #b3b3b3;
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.top_box02 .inner ul {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
@media (max-width: 750px) {
  .top_box02 .inner ul {
    flex-direction: column;
  }
}
.top_box02 .inner ul li img {
  width: 100%;
}
.top_box02 .inner ul li:nth-child(1) {
  width: 66.6%;
}
@media (max-width: 750px) {
  .top_box02 .inner ul li:nth-child(1) {
    width: 100%;
  }
}
.top_box02 .inner ul li:nth-child(2) {
  width: 33.4%;
}
@media (max-width: 750px) {
  .top_box02 .inner ul li:nth-child(2) {
    width: 100%;
  }
}

.top_box03 {
  position: relative;
}
.top_box03::before {
  content: "";
  display: block;
  background-image: url(../img/top/box03bk01.png);
  width: 480px;
  height: 662px;
  position: absolute;
  left: 0;
  top: 0;
}
@media (max-width: 750px) {
  .top_box03::before {
    width: 100px;
    height: 150px;
    background-size: cover;
  }
}
.top_box03::after {
  content: "";
  display: block;
  background-image: url(../img/top/box03bk02.png);
  width: 479px;
  height: 805px;
  position: absolute;
  right: 0;
  top: 0;
}
@media (max-width: 750px) {
  .top_box03::after {
    width: 90px;
    height: 154px;
    background-size: cover;
  }
}
.top_box03 .inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 0;
  position: relative;
  z-index: 20;
}
.top_box03 .inner .ttl {
  text-align: center;
  color: #0d3d01;
  font-size: 5rem;
  font-weight: bold;
  position: relative;
  padding-bottom: 30px;
}
.top_box03 .inner .ttl::after {
  content: "";
  width: 86px;
  height: 6px;
  border-radius: 10px;
  background-color: #b3b3b3;
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.top_box03 .inner .sub_ttl {
  text-align: center;
  font-size: 3rem;
  color: #afafaf;
  margin-top: 30px;
}
.top_box03 .inner .txt {
  text-align: center;
  line-height: 1.6;
  font-size: 1.6rem;
  margin-top: 20px;
}
.top_box03 .inner .btn01 {
  margin-top: 30px;
  text-align: center;
}
@media (max-width: 750px) {
  .top_box03 .inner .btn01 {
    padding: 0 20px;
  }
}
.top_box03 .inner .btn02 {
  margin-top: 50px;
  text-align: center;
}
@media (max-width: 750px) {
  .top_box03 .inner .btn02 {
    padding: 0 20px;
  }
}
.top_box03 .inner .btn03 {
  margin-top: 100px;
  text-align: center;
}
@media (max-width: 750px) {
  .top_box03 .inner .btn03 {
    padding: 0 20px;
    margin-top: 30px;
  }
}
.top_box03 .inner .list {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 2;
  margin-top: 100px;
}
@media (max-width: 750px) {
  .top_box03 .inner .list {
    flex-direction: column;
    padding: 0 20px;
  }
}
@media (max-width: 750px) {
  .top_box03 .inner .list li {
    width: 55%;
  }
}
.top_box03 .inner .list li:nth-child(2) {
  margin: 0 30px;
}
@media (max-width: 750px) {
  .top_box03 .inner .list li:nth-child(2) {
    margin: -20px 0 -20px auto;
  }
}

.top_faq {
  background-color: rgba(179, 179, 179, 0.2);
  padding: 100px 0;
}
.top_faq .inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 750px) {
  .top_faq .inner {
    overflow-x: hidden;
  }
}
.top_faq .inner::before {
  content: "";
  display: block;
  width: 390px;
  height: 222px;
  background-image: url(../img/top/faqbk.png);
  position: absolute;
  right: 0;
  top: -131px;
  padding-top:30%;
}
@media (max-width: 750px) {
  .top_faq .inner::before {
    right: -10%;
    width: 171px;
    height: 269px;
  }
}
.top_faq .inner .ttl {
  text-align: center;
  color: #0d3d01;
  font-size: 5rem;
  font-weight: bold;
  position: relative;
  padding-bottom: 30px;
}
.top_faq .inner .ttl::after {
  content: "";
  width: 86px;
  height: 6px;
  border-radius: 10px;
  background-color: #b3b3b3;
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.top_faq .inner .sub_ttl {
  text-align: center;
  font-size: 3rem;
  color: #afafaf;
  margin-top: 30px;
  margin-bottom: 85px;
}
@media (max-width: 750px) {
  .top_faq .inner .sub_ttl {
    margin-bottom: 125px;
  }
}
.top_faq .inner .faq_list {
  margin-top: 40px;
}
@media (max-width: 750px) {
  .top_faq .inner .faq_list {
    padding: 0 20px;
  }
}
.top_faq .inner .faq_list dt {
  background-color: #0d3d01;
  padding: 20px;
  font-size: 2rem;
  color: #fff;
  display: flex;
  align-items: center;
}
@media (max-width: 750px) {
  .top_faq .inner .faq_list dt {
    padding: 20px 10px;
  }
}
.top_faq .inner .faq_list dt::before {
  content: "";
  display: block;
  width: 22px;
  height: 46px;
  background-image: url(../img/top/faq_q.png);
  margin-right: 30px;
}
@media (max-width: 750px) {
  .top_faq .inner .faq_list dt::before {
    width: 20px;
    height: 37px;
    background-size: cover;
  }
}
@media (max-width: 750px) {
  .top_faq .inner .faq_list dt p {
    width: calc(100% - 20px);
  }
}
.top_faq .inner .faq_list dd {
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  padding: 20px;
  line-height: 1.7;
}
@media (max-width: 750px) {
  .top_faq .inner .faq_list dd {
    align-items: flex-start;
    padding: 20px 0 20px 10px;
  }
}
.top_faq .inner .faq_list dd::before {
  content: "";
  display: block;
  width: 33px;
  height: 43px;
  background-image: url(../img/top/faq_a.png);
  margin-right: 30px;
}
@media (max-width: 750px) {
  .top_faq .inner .faq_list dd::before {
    width: 20px;
    height: 36px;
    background-size: cover;
    margin-right: 10px;
  }
}
@media (max-width: 750px) {
  .top_faq .inner .faq_list dd p {
    width: calc(100% - 50px);
  }
}
.top_faq .inner .btn {
  text-align: center;
  margin-top: 100px;
}
@media (max-width: 750px) {
  .top_faq .inner .btn {
    margin-top: 30px;
    padding: 0 20px;
  }
}

@media (max-width: 750px) {
  .sp_icon {
    position: absolute;
    right: 45px;
    top: 40px;
    display: flex;
    justify-content: flex-end;
  }
  .sp_icon li {
    width: 25%;
    margin-right: 10px;
  }
}

footer .footer_waooer {
  background-image: url(../img/common/footer_bk.png);
  background-size: cover;
  padding: 100px;
}
@media (max-width: 750px) {
  footer .footer_waooer {
    padding: 50px 20px;
    background-position: right -280px center;
  }
}
footer .footer_top {
  background-color: rgba(0, 127, 72, 0.5);
  padding: 30px;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 750px) {
  footer .footer_top {
    padding: 30px 10px;
  }
}
footer .footer_top h2 {
  text-align: center;
  color: #fff;
  font-size: 5rem;
  margin-top: -60px;
}
footer .footer_top .txt {
  text-align: center;
  color: #fff;
  font-size: 3rem;
  margin: 20px 0 0;
}
@media (max-width: 750px) {
  footer .footer_top .txt {
    font-size: 1.6rem;
  }
}
footer .footer_top ul {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}
@media (max-width: 750px) {
  footer .footer_top ul {
    flex-direction: column;
  }
}
footer .footer_top ul li {
  color: #fff;
}
@media (max-width: 750px) {
  footer .footer_top ul li {
    width: 100%;
  }
}
footer .footer_top ul li p {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 20px;
}
footer .footer_top ul li:first-child {
  margin-right: 30px;
}
@media (max-width: 750px) {
  footer .footer_top ul li:first-child {
    margin-right: 0;
    margin-bottom: 30px;
  }
}
footer .footer_center {
  text-align: center;
  background-color: #0d3d01;
  padding: 50px 0;
}
@media (max-width: 750px) {
  footer .footer_center {
    padding: 50px 20px;
  }
}
footer .footer_center .inner {
  max-width: 500px;
  margin: 0 auto;
}
footer .footer_center h2 {
  font-size: 3rem;
  color: #fff;
  border-bottom: 2px solid #fff;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
footer .footer_center .add {
  text-align: center;
  color: #fff;
}
@media (max-width: 750px) {
  footer .footer_center .add {
    font-size: 1.4rem;
  }
}
footer .footer_center .map {
  margin-top: 50px;
}
@media (max-width: 750px) {
  footer .footer_center .map iframe {
    height: 350px;
  }
}
footer .footer_bottom {
  background-color: #0d3d01;
  padding: 30px 0;
}
footer .footer_bottom .inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 750px) {
  footer .footer_bottom .inner {
    flex-direction: column-reverse;
    padding: 0 20px;
    align-items: center;
  }
}
footer .footer_bottom .inner .right_box .flex_box {
  display: flex;
}
footer .footer_bottom .inner .right_box .flex_box div {
  margin-left: 30px;
}
@media (max-width: 750px) {
  footer .footer_bottom .inner .right_box .flex_box div {
    margin-left: 0px;
    margin-right: 15px;
  }
}
footer .footer_bottom .inner .right_box .flex_box p {
  font-size: 2rem;
  margin-bottom: 20px;
}
@media (max-width: 750px) {
  footer .footer_bottom .inner .right_box .flex_box p {
    font-size: 1.4rem;
  }
}
footer .footer_bottom .inner .right_box .flex_box p a {
  color: #fff;
}
@media (max-width: 750px) {
  footer .footer_bottom .inner .left_box {
    padding: 0 20px;
  }
}
footer .footer_bottom .inner .mbox {
  margin: 20px 0;
}
footer .copy {
  background-color: #0d3d01;
  padding: 10px 0;
  color: #fff;
  text-align: center;
}
.sec_mv {
  background-image: url(../img/common/secmv.png);
  padding: 50px 0;
  background-size: cover;
  margin: 20px 0;
}
.sec_mv .inner {
  max-width: 800px;
  margin: 0 auto;
}
.sec_mv .inner h2 {
  text-align: center;
  font-size: 4rem;
  color: #fff;
}
.sec_mv .inner h2 span {
  display: block;
  border-top: 1px solid #fff;
  padding-top: 10px;
  margin-top: 10px;
  font-size: 3rem;
}

.service_box01 .inner {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.service_box01 .inner::before {
  content: "";
  display: block;
  position: absolute;
  width: 366px;
  height: 301px;
  background-image: url(../img/service/service_box01bk.png);
  right: 0;
}
@media (max-width: 750px) {
  .service_box01 .inner::before {
    background-size: 182px 150px;
    background-position: right top;
    z-index: -1;
  }
}
.service_box01 .inner h2 {
  font-size: 4.5rem;
  position: relative;
}
@media (max-width: 750px) {
  .service_box01 .inner h2 {
    font-size: 2rem;
  }
}
.service_box01 .inner h2::after {
  content: "";
  display: block;
  position: absolute;
  width: 50px;
  height: 3px;
  border-radius: 20px;
  background-color: #b3b3b3;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
}
.service_box01 .inner .txt {
  margin-top: 60px;
  text-align: center;
  line-height: 1.7;
}
@media (max-width: 750px) {
  .service_box01 .inner .txt {
    margin-top: 30px;
    padding: 0 20px;
  }
}
.service_box01 .inner .btn {
  text-align: center;
  margin-top: 30px;
}
@media (max-width: 750px) {
  .service_box01 .inner .btn {
    padding: 0 20px;
  }
}

.service_box02 {
  margin-top: 3px;
}
@media (max-width: 750px) {
  .service_box02 {
    margin-top: 50px;
  }
}
.service_box02 .inner {
  max-width: 1200px;
  margin: 0 auto;
}
.service_box02 .inner .flex_box {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 750px) {
  .service_box02 .inner .flex_box {
    flex-direction: column;
  }
  .service_box02 .inner .flex_box.flex_re {
    flex-direction: column-reverse;
  }
}
.service_box02 .inner .flex_box .txt_box {
  width: 48%;
  padding: 30px;
}
@media (max-width: 750px) {
  .service_box02 .inner .flex_box .txt_box {
    width: 100%;
    padding: 20px;
  }
}
.service_box02 .inner .flex_box .txt_box h2 {
  font-size: 4.8rem;
  display: flex;
  align-items: center;
  line-height: 1.6;
  letter-spacing: 0.1em;
}
@media (max-width: 750px) {
  .service_box02 .inner .flex_box .txt_box h2 {
    font-size: 2.5rem;
  }
}
.service_box02 .inner .flex_box .txt_box h2::before {
  margin-right: 20px;
}
.service_box02 .inner .flex_box .txt_box h2.non01::before {
  content: url(../img/service/icon01.png);
}
@media (max-width: 750px) {
  .service_box02 .inner .flex_box .txt_box h2.non01::before {
    display: block;
    width: 57px;
    height: 42px;
    content: "";
    background-image: url(../img/service/icon01.png);
    background-size: cover;
  }
}
.service_box02 .inner .flex_box .txt_box h2.non02::before {
  content: url(../img/service/icon02.png);
}
@media (max-width: 750px) {
  .service_box02 .inner .flex_box .txt_box h2.non02::before {
    display: block;
    width: 57px;
    height: 40px;
    content: "";
    background-image: url(../img/service/icon02.png);
    background-size: cover;
  }
}
.service_box02 .inner .flex_box .txt_box h2.non03::before {
  content: url(../img/service/icon03.png);
}
@media (max-width: 750px) {
  .service_box02 .inner .flex_box .txt_box h2.non03::before {
    display: block;
    width: 57px;
    height: 39px;
    content: "";
    background-image: url(../img/service/icon03.png);
    background-size: cover;
  }
}
.service_box02 .inner .flex_box .txt_box h2.non04::before {
  content: url(../img/service/icon04.png);
}
@media (max-width: 750px) {
  .service_box02 .inner .flex_box .txt_box h2.non04::before {
    display: block;
    width: 57px;
    height: 38px;
    content: "";
    background-image: url(../img/service/icon04.png);
    background-size: cover;
  }
}
.service_box02 .inner .flex_box .txt_box .txt {
  line-height: 1.8;
  margin-top: 20px;
}
.service_box02 .inner .flex_box .img_box {
  width: 48%;
}
@media (max-width: 750px) {
  .service_box02 .inner .flex_box .img_box {
    width: 100%;
  }
}

.service_box03 {
  margin-top: 100px;
  margin-bottom: 125px;
}
@media (max-width: 750px) {
  .service_box03 {
    margin-top: 50px;
    margin-bottom: 50px;
  }
}
.service_box03 .inner {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.service_box03 .inner::before {
  content: "";
  display: block;
  position: absolute;
  width: 366px;
  height: 301px;
  background-image: url(../img/service/service_box03bk.png);
  left: 0;
}
@media (max-width: 750px) {
  .service_box03 .inner::before {
    width: 183px;
    height: 150px;
    background-size: cover;
    left: -5%;
    top: 20%;
  }
}
.service_box03 .inner h2 {
  font-size: 4.5rem;
  position: relative;
}
.service_box03 .inner h2::after {
  content: "";
  display: block;
  position: absolute;
  width: 50px;
  height: 3px;
  border-radius: 20px;
  background-color: #b3b3b3;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
}
.service_box03 .inner .txt {
  margin-top: 60px;
  text-align: center;
  line-height: 1.7;
}
@media (max-width: 750px) {
  .service_box03 .inner .txt {
    padding: 0 20px;
  }
  
  .service_box03 .inner h2 {
  font-size: 2rem;
  }
}
.service_box03 .inner .btn {
  text-align: center;
  margin-top: 30px;
}
@media (max-width: 750px) {
  .service_box03 .inner .btn {
    padding: 0 20px;
  }

  .service_box03 .inner h2 {
  font-size: 2rem;
}
}

.recruit_box01 .inner {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.recruit_box01 .inner::before {
  content: "";
  display: block;
  position: absolute;
  width: 366px;
  height: 301px;
  background-image: url(../img/recruit/bk01.png);
  left: 0;
}
.recruit_box01 .inner h2 {
  font-size: 4.5rem;
  position: relative;
}
@media (max-width: 750px) {
  .recruit_box01 .inner h2 {
    font-size: 2rem;
  }
}
.recruit_box01 .inner h2::after {
  content: "";
  display: block;
  position: absolute;
  width: 50px;
  height: 3px;
  border-radius: 20px;
  background-color: #b3b3b3;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
}
.recruit_box01 .inner .txt {
  margin-top: 45px;
  text-align: center;
  line-height: 1.7;
}
@media (max-width: 750px) {
  .recruit_box01 .inner .txt {
    margin-top: 30px;
    padding: 0 10px;
  }
}
.recruit_box01 .inner .btn {
  text-align: center;
  margin-top: 30px;
  position: relative;
  z-index: 2;
}

.recruit_box02 {
  margin-top: 50px;
}
@media (max-width: 750px) {
  .recruit_box02 {
    font-size: 30px;
  }
}
.recruit_box02 .ttl {
  font-size: 4.5rem;
  position: relative;
  text-align: center;
  margin-bottom: 45px;
}
@media (max-width: 750px) {
  .recruit_box02 .ttl {
    font-size: 2rem;
    margin-bottom: 50px;
  }
}
.recruit_box02 .ttl::after {
  content: "";
  display: block;
  position: absolute;
  width: 50px;
  height: 3px;
  border-radius: 20px;
  background-color: #b3b3b3;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
}
.recruit_box02 .inner {
  max-width: 1200px;
  margin: 0 auto;
}
.recruit_box02 .inner .flex_box {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 750px) {
  .recruit_box02 .inner .flex_box {
    flex-direction: column;
  }
  .recruit_box02 .inner .flex_box.flex_re {
    flex-direction: column-reverse;
  }
}
.recruit_box02 .inner .flex_box .txt_box {
  width: 48%;
  padding: 0 30px 30px 30px;
}
@media (max-width: 750px) {
  .recruit_box02 .inner .flex_box .txt_box {
    width: 100%;
    padding: 20px 20px 0px;
  }
}
.recruit_box02 .inner .flex_box .txt_box h2 {
  font-size: 5rem;
  line-height: 1.6;
}
@media (max-width: 750px) {
  .recruit_box02 .inner .flex_box .txt_box h2 {
    font-size: 2rem;
  }
}
.recruit_box02 .inner .flex_box .txt_box h2 span {
  display: block;
  color: #007f48;
  font-size: 3rem;
}
@media (max-width: 750px) {
  .recruit_box02 .inner .flex_box .txt_box h2 span {
    font-size: 1.8rem;
  }
}
.recruit_box02 .inner .flex_box .txt_box .txt {
  line-height: 1.8;
  margin-top: 20px;
}
@media (max-width: 750px) {
  .recruit_box02 .inner .flex_box .txt_box .txt {
    font-size: 1.6rem;
  }
}
.recruit_box02 .inner .flex_box .img_box {
  width: 48%;
}
@media (max-width: 750px) {
  .recruit_box02 .inner .flex_box .img_box {
    width: 100%;
    padding: 0 20px;
  }
}

.recruit_box03 {
  margin-top: 50px;
}
.recruit_box03 .ttl {
  font-size: 4.5rem;
  position: relative;
  text-align: center;
  margin-bottom: 90px;
}
@media (max-width: 750px) {
  .recruit_box03 .ttl {
    font-size: 2rem;
  }
}
.recruit_box03 .ttl::after {
  content: "";
  display: block;
  position: absolute;
  width: 50px;
  height: 3px;
  border-radius: 20px;
  background-color: #b3b3b3;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
}
.recruit_box03 .inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.recruit_box03 .inner::before {
  content: "";
  height: 70%;
  width: 5px;
  background-color: #000;
  position: absolute;
  left: 6.5%;
  top: 17%;
  z-index: -1;
}
@media (max-width: 750px) {
  .recruit_box03 .inner::before {
    display: none;
  }
}
.recruit_box03 .inner .img_box02 {
  text-align: center;
}
.recruit_box03 .inner .flex_box {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}
@media (max-width: 750px) {
  .recruit_box03 .inner .flex_box {
    align-items: center;
    padding: 0 20px;
  }
}
.recruit_box03 .inner .flex_box .icon_box {
  width: 15%;
}
@media (max-width: 750px) {
  .recruit_box03 .inner .flex_box .icon_box {
    width: 25%;
  }
}
.recruit_box03 .inner .flex_box .txt_box {
  width: 60%;
  padding: 0 30px 30px 30px;
}
@media (max-width: 750px) {
  .recruit_box03 .inner .flex_box .txt_box {
    width: 75%;
    padding: 0 0px 30px 10px;
  }
}
.recruit_box03 .inner .flex_box .txt_box h2 {
  font-size: 5rem;
  line-height: 1.6;
}
.recruit_box03 .inner .flex_box .txt_box h2 span {
  display: block;
  color: #007f48;
  font-size: 3rem;
}
.recruit_box03 .inner .flex_box .txt_box .txt {
  line-height: 1.8;
  margin-top: 20px;
  font-size: 1.6rem;
}
.recruit_box03 .inner .flex_box .img_box {
  width: 25%;
}

.recruit_box04 {
  margin-top: 100px;
  margin-bottom: 100px;
}
.recruit_box04 .ttl {
  font-size: 4.5rem;
  position: relative;
  text-align: center;
  margin-bottom: 100px;
}
@media (max-width: 750px) {
  .recruit_box04 .ttl {
    font-size: 2rem;
  }
}
.recruit_box04 .ttl::after {
  content: "";
  display: block;
  position: absolute;
  width: 50px;
  height: 3px;
  border-radius: 20px;
  background-color: #b3b3b3;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
}
.recruit_box04 .inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.recruit_box04 .inner .table01 {
  max-width: 700px;
  margin: 0 auto;
  border-spacing: 0;
}
@media (max-width: 750px) {
  .recruit_box04 .inner .table01 {
    max-width: 92%;
  }
}
.recruit_box04 .inner .table01 th {
  background-color: #e6e6e6;
  padding: 30px 20px;
  border: 1px solid #b3b3b3;
  line-height: 1.8;
  width: 20%;
}
.recruit_box04 .inner .table01 td {
  padding: 30px;
  border: 1px solid #b3b3b3;
  line-height: 1.8;
  background-color: #ffffff;
}

.company_box01 .inner {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.company_box01 .inner::before {
  content: "";
  display: block;
  position: absolute;
  width: 366px;
  height: 301px;
  background-image: url(../img/recruit/bk01.png);
  left: 0;
}
@media (max-width: 750px) {
  .company_box01 .inner::before {
    display: none;
  }
}
.company_box01 .inner h2 {
  font-size: 4.5rem;
  position: relative;
}
.company_box01 .inner h2::after {
  content: "";
  display: block;
  position: absolute;
  width: 50px;
  height: 3px;
  border-radius: 20px;
  background-color: #b3b3b3;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
}
.company_box01 .inner .flex_box {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
}
@media (max-width: 750px) {
  .company_box01 .inner .flex_box {
    flex-direction: column-reverse;
  }
 .company_box01 .inner h2 {
  font-size: 2rem;
}
}
.company_box01 .inner .flex_box .txt_box {
  text-align: left;
  width: 50%;
}
@media (max-width: 750px) {
  .company_box01 .inner .flex_box .txt_box {
    width: 100%;
    padding: 0 20px;
    position: relative;
  }
  .company_box01 .inner .flex_box .txt_box::before {
    content: "";
    display: block;
    position: absolute;
    width: 183px;
    height: 151px;
    background-image: url(../img/recruit/bk01.png);
    left: 0;
    top: 0;
    background-size: cover;
  }
}
.company_box01 .inner .flex_box .txt_box h3 {
  font-size: 4.5rem;
  line-height: 1.7;
}
.company_box01 .inner .flex_box .txt_box .txt {
  margin-top: 30px;
  line-height: 2;
}
.company_box01 .inner .flex_box .txt_box .txt02 {
  margin-top: 10px;
  line-height: 1.7;
  text-align: right;
}
.company_box01 .inner .flex_box .img_box {
  width: 38%;
}
@media (max-width: 750px) {
  .company_box01 .inner .flex_box .img_box {
    width: 100%;
    padding: 0 20px;
  }
}

@media (max-width: 750px) {
  .company_box02 {
    margin-top: 50px;
  }
}
.company_box02 .inner {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.company_box02 .inner h2 {
  font-size: 4.5rem;
  position: relative;
}
@media (max-width: 750px) {
  .company_box02 .inner h2 {
    font-size: 2rem;
  }
}
.company_box02 .inner h2::after {
  content: "";
  display: block;
  position: absolute;
  width: 50px;
  height: 3px;
  border-radius: 20px;
  background-color: #b3b3b3;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
}
.company_box02 .inner .table01 {
  max-width: 800px;
  margin: 50px auto;
  width: 100%;
}
@media (max-width: 750px) {
  .company_box02 .inner .table01 {
    width: 96%;
  }
}
.company_box02 .inner .table01 th {
  text-align: left;
  border-bottom: 1px solid #b3b3b3;
  padding-bottom: 20px;
  padding-top: 20px;
  line-height: 2;
}
.company_box02 .inner .table01 td {
  line-height: 2;
  border-bottom: 1px solid #b3b3b3;
  padding-bottom: 20px;
  padding-top: 20px;
  text-align: left;
}

.company_box04 .note {
  max-width: 1200px;
  margin: 0 auto;
}
.company_box04 .inner {
  max-width: 1200px;
  margin: 0 auto;
}
.company_box04 .inner .txt {
  text-align: center;
}

@media (max-width: 750px) {
  .privacypolicy_box {
    padding: 0 20px;
  }
}
.privacypolicy_box .inner {
  max-width: 1200px;
  margin: 100px auto;
}
@media (max-width: 750px) {
  .privacypolicy_box .inner {
    margin: 50px auto;
  }
}
.privacypolicy_box .inner .txt01 {
  line-height: 1.8;
  margin-top: 20px;
}
.privacypolicy_box .inner .ttl {
  border-bottom: 1px solid #b3b3b3;
  padding-bottom: 20px;
  margin-top: 50px;
  line-height: 1.7;
}

.advantage_box01 .inner {
  max-width: 1200px;
  margin: 100px auto;
  position: relative;
}
@media (max-width: 750px) {
  .advantage_box01 .inner {
    overflow-x: hidden;
  }
}
.advantage_box01 .inner::before {
  content: "";
  width: 336px;
  height: 250px;
  background-image: url(../img/advantage/bk01.png);
  background-size: cover;
  position: absolute;
  right: 0;
  top: 0;
}
@media (max-width: 750px) {
  .advantage_box01 .inner::before {
    right: -10%;
    width: 182px;
    height: 150px;
  }
}
.advantage_box01 .inner .ttl {
  font-size: 4.5rem;
  position: relative;
  text-align: center;
}
@media (max-width: 750px) {
  .advantage_box01 .inner .ttl {
    font-size: 2rem;
  }
}
.advantage_box01 .inner .ttl::after {
  content: "";
  display: block;
  position: absolute;
  width: 50px;
  height: 3px;
  border-radius: 20px;
  background-color: #b3b3b3;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
}
.advantage_box01 .inner .txt01 {
  text-align: center;
  line-height: 2;
  margin-top: 50px;
}
.advantage_box01 .inner .list {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
@media (max-width: 750px) {
  .advantage_box01 .inner .list {
    flex-wrap: wrap;
  }
}
@media (max-width: 750px) {
  .advantage_box01 .inner .list li {
    width: 33%;
  }
}
@media (max-width: 750px) {
  .advantage_box01 .inner .list li:nth-child(1) {
    margin: 0 30% 20px;
  }
}
.advantage_box01 .inner .list li:nth-child(2) {
  margin: 0 50px;
}
@media (max-width: 750px) {
  .advantage_box01 .inner .list li:nth-child(2) {
    margin: 0 20px 0 0;
  }
}
.advantage_box01 .inner .flex_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 50px;
}
@media (max-width: 750px) {
  .advantage_box01 .inner .flex_box {
    flex-direction: column;
  }
  .advantage_box01 .inner .flex_box.flex_re {
    flex-direction: column-reverse;
  }
}
.advantage_box01 .inner .flex_box .txt_box {
  width: 48%;
  position: relative;
}
@media (max-width: 750px) {
  .advantage_box01 .inner .flex_box .txt_box {
    width: 100%;
    padding: 0 20px;
  }
}
.advantage_box01 .inner .flex_box .txt_box.non01 {
  background-image: url(../img/advantage/icon01.png);
  background-position: right top;
}
@media (max-width: 750px) {
  .advantage_box01 .inner .flex_box .txt_box.non01 {
    background-position: right 30px top 0px;
    background-size: 76px 74px;
  }
}
.advantage_box01 .inner .flex_box .txt_box.non02 {
  background-image: url(../img/advantage/icon02.png);
  background-position: right top;
}
@media (max-width: 750px) {
  .advantage_box01 .inner .flex_box .txt_box.non02 {
    background-position: right 30px top 0px;
    background-size: 76px 74px;
  }
}
.advantage_box01 .inner .flex_box .txt_box.non03 {
  background-image: url(../img/advantage/icon03.png);
  background-position: right top;
}
@media (max-width: 750px) {
  .advantage_box01 .inner .flex_box .txt_box.non03 {
    background-position: right 30px top 0px;
    background-size: 76px 74px;
  }
}
.advantage_box01 .inner .flex_box .txt_box h3 {
  text-align: left;
  font-size: 5.5rem;
  letter-spacing: 0.12em;
}
@media (max-width: 750px) {
  .advantage_box01 .inner .flex_box .txt_box h3 {
    font-size: 3rem;
  }
}
.advantage_box01 .inner .flex_box .txt_box h3 span {
  color: #007f48;
}
.advantage_box01 .inner .flex_box .txt_box .txt {
  margin-top: 20px;
  line-height: 1.8;
  font-size: 2rem;
  padding: 0 30px 0 0;
}
.advantage_box01 .inner .flex_box .img_box {
  width: 48%;
}

.voice_box01 .inner {
  max-width: 1200px;
  margin: 40px auto 115px auto;
  position: relative;
}
@media (max-width: 750px) {
  .voice_box01 .inner {
    margin: 50px auto;
  }
}
.voice_box01 .inner .flex_box {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
}
@media (max-width: 750px) {
  .voice_box01 .inner .flex_box {
    flex-direction: column;
  }
  .voice_box01 .inner .flex_box.sp_re {
    flex-direction: column-reverse;
  }
}
.voice_box01 .inner .flex_box .txt_box {
  width: 48%;
  position: relative;
  padding-top: 100px;
}
@media (max-width: 750px) {
  .voice_box01 .inner .flex_box .txt_box {
    width: 100%;
    padding: 0 20px;
  }
}
.voice_box01 .inner .flex_box .txt_box.non01 {
  background-image: url(../img/voice/non01.png);
  background-position: right 0px top 100px;
}
@media (max-width: 750px) {
  .voice_box01 .inner .flex_box .txt_box.non01 {
    background-position: right 0px top 70px;
    background-size: 182px 84px;
  }
}
.voice_box01 .inner .flex_box .txt_box.non02 {
  background-image: url(../img/voice/non02.png);
  background-position: right 0px top 100px;
}
@media (max-width: 750px) {
  .voice_box01 .inner .flex_box .txt_box.non02 {
    background-position: right 0px top 70px;
    background-size: 182px 84px;
  }
}
.voice_box01 .inner .flex_box .txt_box.non03 {
  background-image: url(../img/voice/non03.png);
  background-position: right 0px top 100px;
}
@media (max-width: 750px) {
  .voice_box01 .inner .flex_box .txt_box.non03 {
    background-position: right 0px top 70px;
    background-size: 182px 84px;
  }
}
.voice_box01 .inner .flex_box .txt_box h3 {
  text-align: left;
  font-size: 4rem;
  padding-top: 50px;
}
@media (max-width: 750px) {
  .voice_box01 .inner .flex_box .txt_box h3 {
    font-size: 2.6rem;
  }
}
.voice_box01 .inner .flex_box .txt_box h3 span {
  color: #fff;
  display: block;
  background-color: #007f48;
  margin-bottom: 20px;
  padding: 10px;
  display: inline-block;
}
.voice_box01 .inner .flex_box .txt_box h3 span.top {
  padding-left: 130px;
  margin-left: -130px;
}
.voice_box01 .inner .flex_box .txt_box .txt {
  margin-top: 20px;
  line-height: 1.8;
  font-size: 2rem;
  padding: 0 30px 0 0;
}
.voice_box01 .inner .flex_box .img_box {
  width: 48%;
}
@media (max-width: 750px) {
  .voice_box01 .inner .flex_box .img_box {
    width: 80%;
    margin: 0 auto;
  }
}

.btnwapper {
  display: flex;
  margin-bottom: 50px;
}
@media (max-width: 750px) {
  .btnwapper {
    flex-direction: column;
    padding: 0 20px;
  }
}
.btnwapper li {
}
@media (max-width: 750px) {
  .btnwapper li {
    width: 100%;
    margin-bottom: 20px;
  }
}

.contact_box01 .inner_wapper {
  max-width: 800px;
  margin: 0 auto;
  border: 1px solid #b3b3b3;
  padding: 30px 50px;
  border-radius: 10px;
  position: relative;
}
@media (max-width: 750px) {
  .contact_box01 .inner_wapper {
    padding: 20px 20px;
  }
}
.contact_box01 .inner_wapper::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  background-image: url(../img/conatact/bk01.png);
  width: 57px;
  height: 56px;
}
@media (max-width: 750px) {
  .contact_box01 .inner_wapper::before {
    width: 26px;
    height: 26px;
    background-size: cover;
  }
}
.contact_box01 .inner_wapper .txt {
  text-align: center;
  line-height: 2;
}
.contact_box01 .tel_txt {
  text-align: center;
  margin: 50px 0;
}
.contact_box01 .form_box {
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 750px) {
  .contact_box01 .form_box {
    padding: 0 20px;
  }
}
.contact_box01 .form_box .contact_box03 {
  margin-top: 30px;
}
.contact_box01 .form_box .contact_box03 .name {
  font-size: 2rem;
}
.contact_box01 .form_box .contact_box03 .name .hissu {
  font-size: 1.6rem;
  background-color: #ed1c24;
  border-radius: 20px;
  display: inline-block;
  color: #fff;
  padding: 5px 20px;
  margin-left: 30px;
}
.contact_box01 .form_box .contact_box03 .form_box {
  padding: 20px 0;
}
.contact_box01 .form_box .contact_box03 .form_box input {
  padding: 10px;
  background-color: #b3b3b3;
  width: 100%;
  border-radius: 3px;
}
.contact_box01 .form_box .contact_box03 .form_box textarea {
  padding: 10px;
  background-color: #b3b3b3;
  width: 100%;
  margin-top: 30px;
}
.contact_box01 .form_box .contact_box03 .form_box input[type=radio i] {
  width: auto;
  margin-left: 10px;
}
.contact_box01 .form_box .sub_center {
  text-align: center;
  margin: 100px 0;
}
.contact_box01 .form_box .sub_center input {
  background-color: #0d3d01;
  color: #fff;
  display: inline-block;
  padding: 30px 100px;
}
@media (max-width: 750px) {
  .contact_box01 .form_box .sub_center input {
    max-width: 96%;
    text-align: center;
    display: block;
    padding: 30px 0px;
    width: 100%;
  }
}
.contact_box01 .form_box .check_box {
  max-width: 1000px;
  margin: 30px auto 0;
  display: flex;
  justify-content: center;
  flex-direction: row;
}
.contact_box01 .form_box .check_box p {
  font-size: 2rem;
}
@media (max-width: 750px) {
  .contact_box01 .form_box .check_box p {
    font-size: 1.6rem;
  }
}
.contact_box01 .form_box .check_box p a {
  color: #472821;
}

.contact_box02 .inner {
  max-width: 1000px;
  margin: 40px auto 0;
}
.contact_box02 h2 {
  text-align: center;
  font-size: 2rem;
  color: #221815;
  margin-bottom: 30px;
}
.contact_box02 .top_privacy {
  padding: 20px;
  height: 200px;
  margin: 0 auto;
  overflow-y: scroll;
  border: 3px solid #ccc;
  color: #221815;
  font-size: 1.6rem;
  line-height: 1.5;
}
@media (max-width: 750px) {
  .contact_box02 .top_privacy {
    margin-top: 30px;
    max-width: 96%;
  }
}

.pagetop {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 15px;
  z-index: 100;
}

.pagetop a {
  display: block;
  text-align: center;
  color: #222;
  font-size: 12px;
  text-decoration: none;
  padding: 5px 10px;
}

.pagetop a:hover {
  display: block;
  text-decoration: none;
  padding: 5px 10px;
}

@media (max-width: 750px) {
  .pagetop{
    width: 80px;
    right: 5px;
  }
  .pagetop a img {
    width: 100%;
    margin-left: auto;
  }
  .sp_hide {
    display: none !important;
  }
}
@media (min-width: 751px) {
  .pc_hide {
    display: none !important;
  }
}/*# sourceMappingURL=style.css.map */


.company_box01 .inner .flex_box .txt_box h3 {
    font-size: 3.4rem !important;
    line-height: 1.7;
}

.btnwapper {
    justify-content: center;

.pc_header .inner .top_box {
    align-items: center;
}


header{
  position: sticky;
  top: 0;
  z-index: 999;
  align-items: flex-start;
}

video {
    max-width: 900px;
    width: 100% !important;
}

@media (max-width: 750px) {
.pagetop img{
    width:50%;
 }
}


.rec_btn{
  text-align: center;
  padding-bottom: 40px;
}

.map iframe {
    width: 100%;
}