body {
  width: 100%;
  height: auto;
  margin: 0;
  color: #000000;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  background-image: url(./images/bg.png);
  background-size: contain;
  background-position: center;
  background-repeat: repeat;
  box-sizing: border-box;
}

p {
  line-height: 1.8;
  letter-spacing: 1.6px;
}

.btn {
  display: inline-block;
  width: 290px;
  padding: 18px 0;
  border: 1px solid #000000;
  color: #000000;
  font-family: "Noto Sans JP", sans-serif;
  text-decoration: none;
  letter-spacing: 0.2em;
  text-align: center;
}
@media only screen and (max-width:640px) {
  .btn {
    display: block;
    margin: 0 auto;
  }
}
.btn:hover {
  color: #FFFFFF;
  background-color: #000000;
  transition: all 0.5s;
}

.sp {
  display: none;
}
@media only screen and (min-width:641px) and (max-width:1112px) {
  .sp {
    display: block;
  }
}
@media only screen and (max-width:640px) {
  .sp {
    display: block;
  }
}

.pc {
  display: block;
}
@media only screen and (min-width:641px) and (max-width:1112px) {
  .pc {
    display: block;
  }
}
@media only screen and (max-width:640px) {
  .pc {
    display: none;
  }
}

#l_hero {
  width: 100%;
  height: auto;
  margin-bottom: 150px;
}
#l_hero .hero_inner {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 450px;
  padding-bottom: 140px;
  box-sizing: content-box;
}
#l_hero .hero_inner::before {
  content: url(./images/hero_bg.png);
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  width: 75%;
  height: 100%;
  overflow: hidden;
}
#l_hero .hero_inner .hero_img {
  width: 90%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 58% 50%;
     object-position: 58% 50%;
}
#l_hero .hero_inner .h1 {
  position: relative;
  display: inline-block;
  margin: 40px 0 0 80px;
  padding-left: 180px;
  font-size: 48px;
  font-weight: 500;
  letter-spacing: 0.2em;
}
@media only screen and (min-width:641px) and (max-width:1112px) {
  #l_hero .hero_inner .h1 {
    font-size: 36px;
  }
}
@media only screen and (max-width:640px) {
  #l_hero .hero_inner .h1 {
    margin: 40px 0 0 20px;
    padding-left: 80px;
    font-size: 28px;
  }
}
#l_hero .hero_inner .h1::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 99;
  display: block;
  width: 150px;
  height: 1.5px;
  background-color: #000000;
}
@media only screen and (max-width:640px) {
  #l_hero .hero_inner .h1::before {
    width: 60px;
  }
}
#l_hero .hero_inner .narrow {
  letter-spacing: normal;
}

.nav_wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  height: 110px;
  background-color: rgba(255, 255, 255, 0.3);
}
@media only screen and (max-width:640px) {
  .nav_wrapper {
    height: 90px;
  }
}
.nav_wrapper h1 {
  margin: 0;
}
.nav_wrapper h1 img {
  position: fixed;
  z-index: 999999;
  width: 700px;
  height: auto;
  margin: 0;
  padding: 20px 0 0 20px;
}
@media only screen and (min-width:641px) and (max-width:1112px) {
  .nav_wrapper h1 img {
    width: 400px;
    padding: 35px 0 0 20px;
  }
}
@media only screen and (max-width:640px) {
  .nav_wrapper h1 img {
    width: 270px;
    padding: 30px 0 0 10px;
  }
}
.nav_wrapper .openbtn {
  position: relative;
  top: 0;
  right: 0;
  z-index: 100000;
  display: inline-block;
  width: 110px;
  height: 110px;
  background: rgb(255, 255, 255);
  cursor: pointer;
}
@media only screen and (max-width:640px) {
  .nav_wrapper .openbtn {
    width: 90px;
    height: 90px;
  }
}
.nav_wrapper .openbtn .btn_line {
  position: absolute;
  top: 45px;
  left: 50%;
  transform: translate(-50%);
  display: inline-block;
  width: 50px;
  height: 2.5px;
  background: #000000;
  transition: all 0.1s;
}
@media only screen and (max-width:640px) {
  .nav_wrapper .openbtn .btn_line {
    top: 35px;
    width: 45px;
  }
}
.nav_wrapper .openbtn .btn_line::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translate(-50%);
  width: 50px;
  height: 2.5px;
  background: #000000;
  transition: all 0.5s;
}
@media only screen and (max-width:640px) {
  .nav_wrapper .openbtn .btn_line::before {
    width: 45px;
  }
}
.nav_wrapper .openbtn .btn_line::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translate(-50%);
  width: 50px;
  height: 2.5px;
  background: #000000;
  transition: all 0.5s;
}
@media only screen and (max-width:640px) {
  .nav_wrapper .openbtn .btn_line::after {
    width: 45px;
  }
}
.nav_wrapper .openbtn .btn_menu {
  position: absolute;
  top: 62px;
  left: 50%;
  transform: translate(-50%);
}
@media only screen and (max-width:640px) {
  .nav_wrapper .openbtn .btn_menu {
    top: 50px;
    font-size: 15px;
  }
}
.nav_wrapper .openbtn.active {
  background: none;
}
.nav_wrapper .openbtn.active .btn_menu {
  color: #FFFFFF;
}
.nav_wrapper .openbtn.active .btn_line::before {
  top: 0px;
  left: 0px;
  z-index: 99999;
  width: 50px;
  height: 2.5px;
  background: #FFFFFF;
  transform: rotate(45deg);
  transition: all 0.5s;
  visibility: visible;
}
@media only screen and (max-width:640px) {
  .nav_wrapper .openbtn.active .btn_line::before {
    width: 45px;
  }
}
.nav_wrapper .openbtn.active .btn_line {
  visibility: hidden;
}
.nav_wrapper .openbtn.active .btn_line::after {
  top: 0px;
  left: 0px;
  z-index: 10000;
  width: 50px;
  height: 2.5px;
  background: #FFFFFF;
  transform: rotate(-45deg);
  transition: all 0.5s;
  visibility: visible;
}
@media only screen and (max-width:640px) {
  .nav_wrapper .openbtn.active .btn_line::after {
    width: 45px;
  }
}
.nav_wrapper #nav {
  position: fixed;
  top: 0;
  right: -100%;
  z-index: 99999;
  width: 100%;
  height: 100vh;
  background: linear-gradient(181.0317846249deg, rgb(80, 151, 201) 22.1977205154%, rgb(111, 193, 194) 55.1982160555%, rgb(234, 254, 234) 91.6724479683%, rgb(235, 255, 235) 91.6724479683%);
  background-size: cover;
  transition: all 0.5s;
}
@media only screen and (min-width:641px) and (max-width:820px) {
  .nav_wrapper #nav {
    right: -120%;
    width: 100%;
  }
}
@media only screen and (max-width:640px) {
  .nav_wrapper #nav {
    right: -120%;
    width: 100%;
  }
}
.nav_wrapper #nav.panelactive {
  right: 0;
}
.nav_wrapper #nav .nav-list {
  height: 100vh;
  overflow: auto;
}
.nav_wrapper #nav .nav-list .nav_list_inner {
  position: relative;
  width: 100%;
  height: 100%;
}
.nav_wrapper #nav .nav-list .nav_list_inner .wrapper {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -60%);
  margin: 0 auto;
}
@media only screen and (max-width:640px) {
  .nav_wrapper #nav .nav-list .nav_list_inner .wrapper {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
.nav_wrapper #nav .nav-list .nav_list_inner .wrapper ul {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  list-style-type: none;
  box-sizing: border-box;
}
.nav_wrapper #nav .nav-list .nav_list_inner .wrapper ul li {
  width: 100%;
  height: auto;
  margin-bottom: 1.2em;
  text-align: center;
  vertical-align: top;
}
.nav_wrapper #nav .nav-list .nav_list_inner .wrapper ul li a {
  color: rgb(0, 105, 52);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-decoration: none;
}
@media only screen and (max-width:640px) {
  .nav_wrapper #nav .nav-list .nav_list_inner .wrapper ul li a {
    font-size: 14px;
  }
}
.nav_wrapper #nav .nav-list .nav_list_inner .wrapper ul li a:hover {
  opacity: 0.7;
  transition: 0.5s;
}
.nav_wrapper #nav .nav-list .nav_list_inner .wrapper ul li a span {
  display: block;
  color: #FFFFFF;
  font-size: 24px;
  font-family: "Jost", sans-serif;
}
@media only screen and (max-width:640px) {
  .nav_wrapper #nav .nav-list .nav_list_inner .wrapper ul li a span {
    font-size: 20px;
  }
}
.nav_wrapper .overlay {
  position: fixed;
  top: 0;
  right: -120%;
  display: none;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  transition: all 0.6s;
  z-index: 999;
}
.nav_wrapper .overlay.panelactive {
  right: 0;
}
.nav_wrapper .openbtn.active + .overlay {
  display: block;
}

.nav_wrapper2 {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.nav_wrapper2 .openbtn {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100000;
  display: inline-block;
  width: 110px;
  height: 110px;
  background: rgb(255, 255, 255);
  cursor: pointer;
}
@media only screen and (max-width:640px) {
  .nav_wrapper2 .openbtn {
    width: 90px;
    height: 90px;
  }
}
.nav_wrapper2 .openbtn .btn_line {
  position: absolute;
  top: 45px;
  left: 50%;
  transform: translate(-50%);
  display: inline-block;
  width: 50px;
  height: 2.5px;
  background: #000000;
  transition: all 0.1s;
}
@media only screen and (max-width:640px) {
  .nav_wrapper2 .openbtn .btn_line {
    top: 35px;
    width: 45px;
  }
}
.nav_wrapper2 .openbtn .btn_line::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translate(-50%);
  width: 50px;
  height: 2.5px;
  background: #000000;
  transition: all 0.5s;
}
@media only screen and (max-width:640px) {
  .nav_wrapper2 .openbtn .btn_line::before {
    width: 45px;
  }
}
.nav_wrapper2 .openbtn .btn_line::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translate(-50%);
  width: 50px;
  height: 2.5px;
  background: #000000;
  transition: all 0.5s;
}
@media only screen and (max-width:640px) {
  .nav_wrapper2 .openbtn .btn_line::after {
    width: 45px;
  }
}
.nav_wrapper2 .openbtn .btn_menu {
  position: absolute;
  top: 62px;
  left: 50%;
  transform: translate(-50%);
}
@media only screen and (max-width:640px) {
  .nav_wrapper2 .openbtn .btn_menu {
    top: 50px;
    font-size: 15px;
  }
}
.nav_wrapper2 .openbtn.active {
  background: none;
}
.nav_wrapper2 .openbtn.active .btn_menu {
  color: #FFFFFF;
}
.nav_wrapper2 .openbtn.active .btn_line::before {
  top: 0px;
  left: 0px;
  z-index: 99999;
  width: 50px;
  height: 2.5px;
  background: #FFFFFF;
  transform: rotate(45deg);
  transition: all 0.5s;
  visibility: visible;
}
@media only screen and (max-width:640px) {
  .nav_wrapper2 .openbtn.active .btn_line::before {
    width: 45px;
  }
}
.nav_wrapper2 .openbtn.active .btn_line {
  visibility: hidden;
}
.nav_wrapper2 .openbtn.active .btn_line::after {
  top: 0px;
  left: 0px;
  z-index: 10000;
  width: 50px;
  height: 2.5px;
  background: #FFFFFF;
  transform: rotate(-45deg);
  transition: all 0.5s;
  visibility: visible;
}
@media only screen and (max-width:640px) {
  .nav_wrapper2 .openbtn.active .btn_line::after {
    width: 45px;
  }
}
.nav_wrapper2 #nav {
  position: fixed;
  top: 0;
  right: -100%;
  z-index: 99999;
  width: 100%;
  height: 100vh;
  background: linear-gradient(181.0317846249deg, rgb(80, 151, 201) 22.1977205154%, rgb(111, 193, 194) 55.1982160555%, rgb(234, 254, 234) 91.6724479683%, rgb(235, 255, 235) 91.6724479683%);
  background-size: cover;
  transition: all 0.5s;
}
@media only screen and (min-width:641px) and (max-width:820px) {
  .nav_wrapper2 #nav {
    right: -120%;
    width: 100%;
  }
}
@media only screen and (max-width:640px) {
  .nav_wrapper2 #nav {
    right: -120%;
    width: 100%;
  }
}
.nav_wrapper2 #nav.panelactive {
  right: 0;
}
.nav_wrapper2 #nav .nav-list {
  height: 100vh;
  overflow: auto;
}
.nav_wrapper2 #nav .nav-list .nav_list_inner {
  position: relative;
  width: 100%;
  height: 100%;
}
.nav_wrapper2 #nav .nav-list .nav_list_inner .wrapper {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -60%);
  margin: 0 auto;
}
@media only screen and (max-width:640px) {
  .nav_wrapper2 #nav .nav-list .nav_list_inner .wrapper {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
.nav_wrapper2 #nav .nav-list .nav_list_inner .wrapper ul {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  list-style-type: none;
  box-sizing: border-box;
}
.nav_wrapper2 #nav .nav-list .nav_list_inner .wrapper ul li {
  width: 100%;
  height: auto;
  margin-bottom: 1.2em;
  text-align: center;
  vertical-align: top;
}
.nav_wrapper2 #nav .nav-list .nav_list_inner .wrapper ul li a {
  color: rgb(0, 105, 52);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-decoration: none;
}
@media only screen and (max-width:640px) {
  .nav_wrapper2 #nav .nav-list .nav_list_inner .wrapper ul li a {
    font-size: 14px;
  }
}
.nav_wrapper2 #nav .nav-list .nav_list_inner .wrapper ul li a:hover {
  opacity: 0.7;
  transition: 0.5s;
}
.nav_wrapper2 #nav .nav-list .nav_list_inner .wrapper ul li a span {
  display: block;
  color: #FFFFFF;
  font-size: 24px;
  font-family: "Jost", sans-serif;
}
@media only screen and (max-width:640px) {
  .nav_wrapper2 #nav .nav-list .nav_list_inner .wrapper ul li a span {
    font-size: 20px;
  }
}
.nav_wrapper2 .overlay {
  position: fixed;
  top: 0;
  right: -120%;
  display: none;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  transition: all 0.6s;
  z-index: 999;
}
.nav_wrapper2 .overlay.panelactive {
  right: 0;
}
.nav_wrapper2 .openbtn.active + .overlay {
  display: block;
}

.fix_btn {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 999;
  width: 100%;
}
.fix_btn ul {
  list-style-type: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: 0;
  padding: 0;
}
.fix_btn ul li {
  width: 50%;
  font-size: 15px;
  text-align: center;
}
.fix_btn ul li a {
  display: block;
  padding: 20px;
  color: #FFFFFF;
  text-decoration: none;
}
.fix_btn ul li img {
  width: 40px;
  padding: 0 10px 0 0;
}
.fix_btn ul .btn_mail {
  height: 60px;
  background-color: rgb(0, 105, 52);
}
.fix_btn ul .btn_recruit {
  height: 60px;
  background-color: #9AC044;
}

.fix_btn {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 999;
  width: 100%;
}
.fix_btn ul {
  list-style-type: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: 0;
  padding: 0;
}
.fix_btn ul li {
  width: 50%;
  font-size: 15px;
  text-align: center;
}
.fix_btn ul li a {
  display: block;
  padding: 20px;
  color: #FFFFFF;
  text-decoration: none;
}
.fix_btn ul li img {
  width: 35px;
  padding: 0 10px 0 0;
}
.fix_btn ul .btn_mail {
  height: 60px;
  background-color: rgb(0, 105, 52);
}
.fix_btn ul .btn_recruit {
  height: 60px;
  background-color: #9AC044;
}

.bg_img {
  width: 100%;
  height: 200px;
  background-image: url(./images/about_bg.png);
  background-size: cover;
}

h1 {
  margin: 0;
}
h1 .logo {
  display: block;
  width: 400px;
  height: auto;
  margin: 0 auto;
  padding: 20px 0 0;
}
@media only screen and (max-width:640px) {
  h1 .logo {
    width: 280px;
    padding: 45px 0 0;
  }
}

#kv {
  width: 100%;
  height: 100vh;
  margin: 0;
}
#kv img {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}

#news {
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 160px 30px 100px;
  background: #EFEFEF;
}
@media only screen and (max-width:640px) {
  #news {
    padding: 100px 20px 60px;
  }
}
#news .news_inner {
  width: 70%;
  height: auto;
  margin: 0 auto;
}
@media only screen and (min-width:641px) and (max-width:1112px) {
  #news .news_inner {
    width: 90%;
  }
}
@media only screen and (max-width:640px) {
  #news .news_inner {
    width: 100%;
  }
}
#news .news_inner article {
  border-bottom: 1px dotted rgba(114, 113, 113, 0.7);
  padding: 20px 0;
}
#news .news_inner article:hover {
  opacity: 0.7;
  transition: all 0.3s;
  cursor: pointer;
}
#news .news_inner article a {
  text-decoration: none;
  color: #000000;
  letter-spacing: 1.6px;
}
#news .news_inner article .flex {
  display: flex;
}
@media only screen and (max-width:640px) {
  #news .news_inner article .flex {
    display: block;
  }
}
#news .news_inner article .flex .date {
  display: block;
  width: 100%;
  max-width: 140px;
  line-height: 1.8;
}
@media only screen and (max-width:640px) {
  #news .news_inner article .flex .date {
    font-size: 14px;
  }
}
#news .news_inner article .flex .ttl {
  margin: 0;
  font-weight: 500;
}
@media only screen and (max-width:640px) {
  #news .news_inner article .flex .ttl {
    font-size: 16px;
  }
}
#news .news_inner .news_btn {
  color: rgb(0, 105, 52);
  text-align: right;
  letter-spacing: 0;
  text-decoration: none;
}
#news .news_inner .news_btn:hover {
  opacity: 0.8;
  transition: all 0.3s;
}
#news h2 {
  position: relative;
  margin: 0 auto 40px;
  padding: 0;
  font-size: 34px;
  font-weight: 500;
  text-align: center;
}
@media only screen and (max-width:640px) {
  #news h2 {
    margin: 0 auto 10px;
    font-size: 20px;
  }
}
#news h2::before {
  content: "NEWS";
  position: absolute;
  top: -90px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: rgba(0, 154, 62, 0.2);
  font-size: 100px;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  letter-spacing: 20;
}
@media only screen and (max-width:640px) {
  #news h2::before {
    top: -50px;
    font-size: 60px;
  }
}

#works {
  margin: 150px auto 0;
  padding: 0;
}
@media only screen and (max-width:640px) {
  #works {
    margin: 100px auto 0;
  }
}
#works h2 {
  position: relative;
  margin: 0 auto 60px;
  padding: 0;
  font-size: 34px;
  font-weight: 500;
  text-align: center;
}
@media only screen and (max-width:640px) {
  #works h2 {
    margin: 0 auto 30px;
    font-size: 20px;
  }
}
#works h2::before {
  content: "WORKS";
  position: absolute;
  top: -90px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  color: rgba(0, 154, 62, 0.2);
  font-size: 100px;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  letter-spacing: 20;
}
@media only screen and (max-width:640px) {
  #works h2::before {
    top: -50px;
    font-size: 60px;
  }
}
#works p {
  width: 50%;
  margin: 0 auto;
  padding: 0 30px;
  text-align: center;
}
@media only screen and (min-width:641px) and (max-width:1112px) {
  #works p {
    width: 85%;
    padding: 0 25px;
  }
}
@media only screen and (max-width:640px) {
  #works p {
    width: 100%;
    padding: 0 20px;
  }
}
#works .works_img {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100vw;
  margin: 40px 0 100px;
  padding: 0;
  list-style-type: none;
}
#works .works_img li {
  width: 33.4%;
}
#works .works_img li img {
  width: 100%;
  max-height: 650px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width:640px) {
  #works .works_img {
    display: none;
  }
}
#works .btn_works {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 10px 60px;
  color: #FFFFFF;
  text-decoration: none;
  background-color: rgba(0, 145, 58, 0.69);
}
#works .btn_works p {
  display: inline;
  font-size: 24px;
}
#works .works_img_sp {
  display: none;
}
@media only screen and (max-width:640px) {
  #works .works_img_sp {
    position: relative;
    display: block;
  }
}
#works .works_img_sp .works_img {
  display: block;
  width: 100%;
  max-height: 400px;
  margin: 30px 0 60px;
  padding: 0 20px;
  -o-object-fit: cover;
     object-fit: cover;
}
#works .works_img_sp .btn_works {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 75%;
  padding: 10px 30px;
  color: #FFFFFF;
  text-align: center;
  text-decoration: none;
  background-color: rgba(0, 145, 58, 0.69);
}
#works .works_img_sp .btn_works p {
  font-size: 16px;
}

#about {
  margin: 150px auto 0;
  padding: 0;
}
@media only screen and (max-width:640px) {
  #about {
    margin: 100px auto 0;
  }
}
#about h2 {
  position: relative;
  margin: 0 auto 40px;
  padding: 0;
  font-size: 34px;
  font-weight: 500;
  text-align: center;
}
@media only screen and (max-width:640px) {
  #about h2 {
    margin: 0 auto 30px;
    font-size: 20px;
  }
}
#about h2::before {
  content: "ABOUT";
  position: absolute;
  top: -90px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  color: rgba(0, 154, 62, 0.2);
  font-size: 100px;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  letter-spacing: 20;
}
@media only screen and (max-width:640px) {
  #about h2::before {
    top: -50px;
    font-size: 60px;
  }
}
#about .about_inner {
  width: 100%;
  padding: 100px 30px;
  background-image: url(./images/about.png);
  background-size: cover;
}
@media only screen and (max-width:640px) {
  #about .about_inner {
    padding: 80px 25px;
  }
}
@media only screen and (max-width:640px) {
  #about .about_inner {
    padding: 60px 20px;
  }
}
#about .about_inner .about_content {
  width: 40%;
  margin: 0 0 0 auto;
  padding: 50px 40px 100px;
  background-color: rgba(255, 255, 255, 0.66);
}
@media only screen and (min-width:641px) and (max-width:1112px) {
  #about .about_inner .about_content {
    width: 60%;
  }
}
@media only screen and (max-width:640px) {
  #about .about_inner .about_content {
    width: 100%;
  }
}
#about .about_inner .about_content h3 {
  margin: 0 0 20px 0;
  color: #045629;
  font-size: 24px;
  font-weight: 400;
}
@media only screen and (max-width:640px) {
  #about .about_inner .about_content h3 {
    font-size: 24px;
  }
}
#about .about_inner .about_content p {
  margin: 0 0 30px 0;
  font-weight: 400;
}
#about .about_inner .about_content .btn_about {
  display: inline-block;
  padding: 10px 30px;
  color: #000000;
  text-align: center;
  border: solid 0.35px #3E3A39;
  text-decoration: none;
}
#about .about_inner .about_content .btn_about p {
  margin: 0;
}

#recruit {
  margin: 150px auto 0;
  padding: 0;
}
@media only screen and (max-width:640px) {
  #recruit {
    margin: 100px auto 0;
  }
}
#recruit h2 {
  position: relative;
  margin: 0 auto 60px;
  padding: 0;
  font-size: 34px;
  font-weight: 500;
  text-align: center;
}
@media only screen and (max-width:640px) {
  #recruit h2 {
    margin: 0 auto 30px;
    font-size: 20px;
  }
}
#recruit h2::before {
  content: "RECRUIT";
  position: absolute;
  top: -90px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  color: rgba(0, 154, 62, 0.2);
  font-size: 100px;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  letter-spacing: 20;
}
@media only screen and (max-width:640px) {
  #recruit h2::before {
    top: -50px;
    font-size: 60px;
  }
}
#recruit p {
  margin: 0;
  padding: 0 30px;
  text-align: center;
}
@media only screen and (min-width:641px) and (max-width:1112px) {
  #recruit p {
    padding: 0 25px;
  }
}
@media only screen and (max-width:640px) {
  #recruit p {
    padding: 0 20px;
  }
}
#recruit .pc {
  display: block;
}
@media only screen and (max-width:640px) {
  #recruit .pc {
    display: none;
  }
}
#recruit .sp {
  display: none;
}
@media only screen and (max-width:640px) {
  #recruit .sp {
    display: block;
  }
}
#recruit .recruit_img {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100vw;
  margin: 40px 0 100px;
  padding: 0;
  list-style-type: none;
}
#recruit .recruit_img li {
  width: 50%;
}
#recruit .recruit_img li img {
  width: 100%;
  max-height: 650px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width:640px) {
  #recruit .recruit_img {
    display: none;
  }
}
#recruit .btn_recruit {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 10px 60px;
  color: #FFFFFF;
  text-decoration: none;
  background-color: rgba(0, 145, 58, 0.69);
}
#recruit .btn_recruit p {
  display: inline;
  font-size: 24px;
}
#recruit .recruit_img_sp {
  display: none;
}
@media only screen and (max-width:640px) {
  #recruit .recruit_img_sp {
    position: relative;
    display: block;
  }
}
#recruit .recruit_img_sp .recruit_img {
  display: block;
  width: 100%;
  max-height: 400px;
  margin: 30px 0 60px;
  padding: 0 20px;
  -o-object-fit: cover;
     object-fit: cover;
}
#recruit .recruit_img_sp .btn_recruit {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 75%;
  padding: 10px 30px;
  color: #FFFFFF;
  text-align: center;
  text-decoration: none;
  background-color: rgba(0, 145, 58, 0.69);
}
#recruit .recruit_img_sp .btn_recruit p {
  font-size: 16px;
}

#access {
  margin: 150px auto 0;
  padding: 0 30px;
}
@media only screen and (min-width:641px) and (max-width:1112px) {
  #access {
    padding: 0 25px;
  }
}
@media only screen and (max-width:640px) {
  #access {
    margin: 100px auto 0;
    padding: 0 20px;
  }
}
#access .access_inner {
  margin: 0 auto;
}
#access .access_inner p {
  margin: 0 0 20px 0;
  text-align: center;
}
#access .access_inner iframe {
  display: block;
  width: 80%;
  height: 550px;
  margin: 0 auto;
}
@media only screen and (min-width:641px) and (max-width:1112px) {
  #access .access_inner iframe {
    width: 100%;
    height: 450px;
  }
}
@media only screen and (max-width:640px) {
  #access .access_inner iframe {
    width: 100%;
    height: 250px;
  }
}
#access h2 {
  position: relative;
  margin: 0 auto 60px;
  padding: 0;
  font-size: 34px;
  font-weight: 500;
  text-align: center;
}
@media only screen and (max-width:640px) {
  #access h2 {
    margin: 0 auto 30px;
    font-size: 20px;
  }
}
#access h2::before {
  content: "ACCESS";
  position: absolute;
  top: -90px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  color: rgba(0, 154, 62, 0.2);
  font-size: 100px;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  letter-spacing: 20;
}
@media only screen and (max-width:640px) {
  #access h2::before {
    top: -50px;
    font-size: 60px;
  }
}

#contact {
  margin: 150px auto 40px;
  padding: 0 30px;
}
@media only screen and (max-width:640px) {
  #contact {
    margin: 100px auto 40px;
    padding: 0 25px;
  }
}
@media only screen and (max-width:640px) {
  #contact {
    margin: 100px auto 40px;
    padding: 0 20px;
  }
}
#contact h2 {
  position: relative;
  margin: 0 auto 60px;
  padding: 0;
  font-size: 34px;
  font-weight: 500;
  text-align: center;
}
@media only screen and (max-width:640px) {
  #contact h2 {
    margin: 0 auto 30px;
    font-size: 20px;
  }
}
#contact h2::before {
  content: "CONTACT";
  position: absolute;
  top: -90px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  color: rgba(0, 154, 62, 0.2);
  font-size: 100px;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  letter-spacing: 20;
}
@media only screen and (max-width:640px) {
  #contact h2::before {
    top: -50px;
    font-size: 60px;
  }
}
#contact .btn_contact {
  color: #036EB8;
  font-size: 24px;
  text-align: center;
}
@media only screen and (max-width:640px) {
  #contact .btn_contact {
    font-size: 18px;
  }
}

#header_about .bg_img {
  width: 100%;
  height: 200px;
  background-image: url(./images/about_bg.png);
  background-size: cover;
}

.page_about_inner {
  max-width: 900px;
  width: 100%;
  margin: 150px auto 100px;
  padding: 0 30px;
}
@media only screen and (min-width:641px) and (max-width:1112px) {
  .page_about_inner {
    margin: 130px auto 80px;
    padding: 0 25px;
  }
}
@media only screen and (max-width:640px) {
  .page_about_inner {
    margin: 110px auto 60px;
    padding: 0 20px;
  }
}
.page_about_inner h2 {
  position: relative;
  margin: 0 auto;
  padding: 0;
  font-size: 34px;
  font-weight: 500;
  text-align: center;
}
@media only screen and (max-width:640px) {
  .page_about_inner h2 {
    margin: 0 auto 30px;
    font-size: 20px;
  }
}
.page_about_inner h2::before {
  content: "ABOUT";
  position: absolute;
  top: -90px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  color: rgba(0, 154, 62, 0.2);
  font-size: 100px;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  letter-spacing: 20;
}
@media only screen and (max-width:640px) {
  .page_about_inner h2::before {
    top: -50px;
    font-size: 60px;
  }
}
.page_about_inner h3 {
  margin: 0;
  color: #B5B5B6;
  font-size: 36px;
  font-weight: normal;
  letter-spacing: 0.05em;
}
@media only screen and (max-width:640px) {
  .page_about_inner h3 {
    font-size: 28px;
  }
}
.page_about_inner .h3_jp {
  letter-spacing: 0.1em;
}
.page_about_inner #sec_message {
  margin: 60px auto 0;
}
@media only screen and (max-width:640px) {
  .page_about_inner #sec_message {
    margin: 40px auto 0;
  }
}
.page_about_inner #sec_message .message .message_contents {
  width: 100%;
  height: auto;
  margin: 30px 0 0;
  padding: 40px;
  background-image: url(images/message_bg.png);
  background-size: cover;
  background-repeat: no-repeat;
}
@media only screen and (min-width:641px) and (max-width:820px) {
  .page_about_inner #sec_message .message .message_contents {
    padding: 0;
    background-image: none;
  }
}
@media only screen and (max-width:640px) {
  .page_about_inner #sec_message .message .message_contents {
    padding: 0;
    background-image: none;
  }
}
.page_about_inner #sec_message .message .message_contents .message_img {
  display: none;
}
@media only screen and (min-width:641px) and (max-width:820px) {
  .page_about_inner #sec_message .message .message_contents .message_img {
    display: block;
    width: 100%;
    margin: 0 auto 30px;
  }
}
@media only screen and (max-width:640px) {
  .page_about_inner #sec_message .message .message_contents .message_img {
    display: block;
    width: 100%;
    margin: 0 auto 30px;
  }
}
.page_about_inner #sec_message .message .message_contents .message_txt {
  width: 45%;
  margin: 0 0 30px auto;
}
@media only screen and (min-width:641px) and (max-width:820px) {
  .page_about_inner #sec_message .message .message_contents .message_txt {
    width: 100%;
    margin: 0 auto 30px;
  }
}
@media only screen and (max-width:640px) {
  .page_about_inner #sec_message .message .message_contents .message_txt {
    width: 100%;
    margin: 0 auto 30px;
  }
}
.page_about_inner #sec_message .message .message_contents .sign {
  display: block;
  width: 30%;
  margin: 0 0 0 auto;
}
@media only screen and (max-width:640px) {
  .page_about_inner #sec_message .message .message_contents .sign {
    width: 55%;
    margin: 0 auto 0 0;
  }
}
.page_about_inner #sec_message .message .message_contents .sign span {
  margin: 0 10px 0 0;
  font-size: 14px;
  vertical-align: middle;
}
.page_about_inner #sec_history {
  margin: 60px auto 0;
}
.page_about_inner #sec_history table {
  max-width: 900px;
  width: 100%;
  margin: 60px auto 0;
  border-top: solid 1px #898989;
}
.page_about_inner #sec_history table tr th {
  padding: 10px 10px 10px 0;
  color: #9FA0A0;
  font-weight: normal;
  text-align: left;
  vertical-align: top;
  border-bottom: solid 1px #898989;
}
.page_about_inner #sec_history table tr td {
  width: 75%;
  padding: 10px 10px 10px 0;
  font-weight: normal;
  vertical-align: top;
  border-bottom: solid 1px #898989;
}
.page_about_inner #sec_profile {
  margin: 60px auto 0;
}
.page_about_inner #sec_profile table {
  max-width: 900px;
  width: 100%;
  margin: 40px auto 0;
}
.page_about_inner #sec_profile table tr th {
  width: 15%;
  padding: 10px 10px 10px 0;
  color: #9FA0A0;
  font-weight: normal;
  text-align: left;
  vertical-align: top;
  border-bottom: solid 1px #898989;
}
@media only screen and (max-width:640px) {
  .page_about_inner #sec_profile table tr th {
    width: 30%;
  }
}
.page_about_inner #sec_profile table tr td {
  padding: 10px 10px 10px 0;
  font-weight: normal;
  vertical-align: top;
  border-bottom: solid 1px #898989;
}
@media only screen and (max-width:640px) {
  .page_about_inner #sec_profile table tr td {
    width: 100%;
  }
}
.page_about_inner #sec_qualified_personnel {
  margin: 60px auto 0;
}
.page_about_inner #sec_qualified_personnel .table_top {
  margin: 40px 0 20px;
}
.page_about_inner #sec_qualified_personnel table {
  max-width: 900px;
  width: 100%;
  margin: 0;
}
.page_about_inner #sec_qualified_personnel table tr th {
  padding: 10px 10px 10px 0;
  color: #9FA0A0;
  font-weight: normal;
  text-align: left;
  vertical-align: middle;
  border-top: solid 2px #898989;
  border-bottom: solid 2px #898989;
}
.page_about_inner #sec_qualified_personnel table tr .th_3 {
  width: 15%;
}
.page_about_inner #sec_qualified_personnel table tr td {
  padding: 10px 10px 10px 0;
  font-weight: normal;
  vertical-align: top;
  border-bottom: solid 1px #898989;
}
.page_about_inner #sec_qualified_personnel table tr .td_1 {
  color: #898989;
}
.page_about_inner #sec_qualified_personnel table tr .no_bd {
  border: none;
}
.page_about_inner #sec_qualified_personnel .table_2 {
  width: 60%;
  margin: 0 0 60px;
}
@media only screen and (max-width:640px) {
  .page_about_inner #sec_qualified_personnel .table_2 {
    width: 100%;
    margin: 0 0 40px;
  }
}
.page_about_inner #sec_qualified_personnel .btn_saiyou {
  display: block;
  max-width: 290px;
  width: 100%;
  margin: 40px auto 0;
  padding: 10px 0;
  color: white;
  text-align: center;
  text-decoration: none;
  background-color: #00A29A;
  border-radius: 35px;
}
.page_about_inner #sec_qualified_personnel .btn_saiyou p {
  margin: 0;
}
.page_about_inner #sec_map {
  margin: 60px auto 0;
}
.page_about_inner #sec_map iframe {
  width: 100%;
  height: 350px;
  margin: 0 auto;
}
@media only screen and (max-width:640px) {
  .page_about_inner #sec_map iframe {
    height: 250px;
  }
}
.page_about_inner #sec_map .h3_jp {
  display: block;
  margin: 10px 0;
}
.page_about_inner #sec_map .h3_btm {
  margin: 40px 0 10px;
}

.about_btm_img {
  width: 100%;
  margin: 0 auto;
}

#header_works .bg_img {
  width: 100%;
  height: 200px;
  background-image: url(./images/works_bg.png);
  background-size: cover;
}

#page_works {
  padding: 0 30px;
}
@media only screen and (min-width:641px) and (max-width:1112px) {
  #page_works {
    padding: 0 25px;
  }
}
@media only screen and (max-width:640px) {
  #page_works {
    padding: 0 20px;
  }
}
#page_works .works_inner {
  max-width: 900px;
  width: 100%;
  margin: 150px auto 100px;
}
@media only screen and (min-width:641px) and (max-width:1112px) {
  #page_works .works_inner {
    margin: 130px auto 80px;
  }
}
@media only screen and (max-width:640px) {
  #page_works .works_inner {
    margin: 110px auto 60px;
  }
}
#page_works .works_inner h2 {
  position: relative;
  margin: 0 auto;
  padding: 0;
  font-size: 34px;
  font-weight: 500;
  text-align: center;
}
@media only screen and (max-width:640px) {
  #page_works .works_inner h2 {
    margin: 0 auto 30px;
    font-size: 20px;
  }
}
#page_works .works_inner h2::before {
  content: "WORKS";
  position: absolute;
  top: -90px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  color: rgba(0, 154, 62, 0.2);
  font-size: 100px;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  letter-spacing: 20;
}
@media only screen and (max-width:640px) {
  #page_works .works_inner h2::before {
    top: -50px;
    font-size: 60px;
  }
}
#page_works .works_inner h3 {
  margin: 0 0 30px;
  padding: 10px 0 10px 15px;
  color: #006934;
  font-size: 20px;
  border-bottom: solid 0.35px #006934;
  border-left: solid 0.35px #006934;
}
#page_works .works_inner ul {
  list-style-type: none;
  padding: 0;
}
#page_works .works_inner ul li {
  margin: 0 0 80px;
}
@media only screen and (min-width:641px) and (max-width:1112px) {
  #page_works .works_inner ul li {
    margin: 0 0 60px;
  }
}
@media only screen and (max-width:640px) {
  #page_works .works_inner ul li {
    margin: 0 0 60px;
  }
}
#page_works .works_inner ul li h4 {
  margin: 0 0 20px 0;
  font-size: 18px;
}
#page_works .works_inner ul li h4 span {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin: 0 2px 0 0;
  vertical-align: middle;
  border-radius: 50%;
  background-color: #006934;
}
#page_works .works_inner ul li p {
  margin: 0;
}
#page_works .works_inner ul li img {
  display: block;
  max-width: 750px;
  width: 100%;
  margin: 40px auto 0;
}
@media only screen and (max-width:640px) {
  #page_works .works_inner ul li img {
    margin: 20px auto 0;
  }
}
#page_works .works_inner ul li .mg_btm {
  margin: 40px auto;
}
@media only screen and (max-width:640px) {
  #page_works .works_inner ul li .mg_btm {
    margin: 20px auto;
  }
}

#header_recruit .bg_img {
  width: 100%;
  height: 200px;
  background-image: url(./images/recruit_bg.png);
  background-size: cover;
}

#page_recruit .recruit_inner {
  max-width: 1000px;
  width: 100%;
  margin: 150px auto 100px;
  padding: 0 30px;
}
@media only screen and (min-width:641px) and (max-width:1112px) {
  #page_recruit .recruit_inner {
    margin: 130px auto 80px;
    padding: 0 25px;
  }
}
@media only screen and (max-width:640px) {
  #page_recruit .recruit_inner {
    margin: 110px auto 60px;
    padding: 0 20px;
  }
}
#page_recruit .recruit_inner h2 {
  position: relative;
  margin: 0 auto;
  padding: 0;
  font-size: 34px;
  font-weight: 500;
  text-align: center;
}
@media only screen and (max-width:640px) {
  #page_recruit .recruit_inner h2 {
    margin: 0 auto 30px;
    font-size: 20px;
  }
}
#page_recruit .recruit_inner h2::before {
  content: "RECRUIT";
  position: absolute;
  top: -90px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  color: rgba(0, 154, 62, 0.2);
  font-size: 100px;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  letter-spacing: 20;
}
@media only screen and (max-width:640px) {
  #page_recruit .recruit_inner h2::before {
    top: -50px;
    font-size: 60px;
  }
}
#page_recruit .recruit_inner .txt {
  margin: 40px 0 30px;
  text-align: center;
}
@media only screen and (max-width:640px) {
  #page_recruit .recruit_inner .txt {
    text-align: left;
  }
}
#page_recruit .recruit_inner .recruit_btn {
  display: block;
  max-width: 400px;
  width: 100%;
  margin: 0 auto 60px;
}
#page_recruit .recruit_inner h3 {
  margin: 0;
  color: #B5B5B6;
  font-size: 28px;
  font-weight: normal;
  letter-spacing: 0.05em;
}
#page_recruit .recruit_inner .contents {
  margin: 30px auto 60px;
  padding: 40px 30px 60px;
  border: solid 0.7px #B5B5B6;
}
@media only screen and (max-width:640px) {
  #page_recruit .recruit_inner .contents {
    margin: 20px auto 40px;
    padding: 0;
    border: none;
  }
}
#page_recruit .recruit_inner .contents .table_ttl {
  width: 100%;
  margin: 0 0 5px;
  padding: 10px 15px;
  color: white;
  background-color: #00A29A;
}
@media only screen and (max-width:640px) {
  #page_recruit .recruit_inner .contents .table_ttl {
    font-size: 15px;
  }
}
#page_recruit .recruit_inner .contents table {
  width: 100%;
  border-collapse: separate;
}
#page_recruit .recruit_inner .contents table tr th {
  width: 25%;
  padding: 10px 15px;
  text-align: left;
  border-right: solid 5px white;
  border-bottom: solid 5px white;
  background-color: #DCDDDD;
}
@media only screen and (max-width:640px) {
  #page_recruit .recruit_inner .contents table tr th {
    width: 25%;
    font-size: 15px;
  }
}
#page_recruit .recruit_inner .contents table tr td {
  width: 75%;
  padding: 10px 15px;
  border-bottom: solid 5px white;
  background-color: #EFEFEF;
}
@media only screen and (max-width:640px) {
  #page_recruit .recruit_inner .contents table tr td {
    width: 75%;
    font-size: 15px;
  }
}
#page_recruit .recruit_inner .contents .recruit_btn_2 {
  display: block;
  max-width: 400px;
  width: 100%;
  margin: 40px auto 0;
}
#page_recruit .recruit_img {
  width: 100%;
}

#header_contact .bg_img {
  width: 100%;
  height: 200px;
  background-image: url(./images/news_bg.png);
  background-size: cover;
  background-position: center;
}

#page_news {
  padding: 0 30px;
}
@media only screen and (min-width:641px) and (max-width:1112px) {
  #page_news {
    padding: 0 25px;
  }
}
@media only screen and (max-width:640px) {
  #page_news {
    padding: 0 20px;
  }
}
#page_news .news_inner {
  max-width: 925px;
  width: 100%;
  margin: 150px auto 0;
  border-bottom: solid 1px rgb(181, 181, 182);
}
@media only screen and (min-width:641px) and (max-width:1112px) {
  #page_news .news_inner {
    margin: 130px auto 0;
  }
}
@media only screen and (max-width:640px) {
  #page_news .news_inner {
    margin: 110px 0 0;
  }
}
#page_news .news_inner h2 {
  position: relative;
  margin: 0 auto 40px;
  padding: 0;
  font-size: 34px;
  font-weight: 500;
  text-align: center;
}
@media only screen and (max-width:640px) {
  #page_news .news_inner h2 {
    margin: 0 auto 30px;
    font-size: 20px;
  }
}
#page_news .news_inner h2::before {
  content: "NEWS";
  position: absolute;
  top: -90px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  color: rgba(0, 154, 62, 0.2);
  font-size: 100px;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  letter-spacing: 20;
}
@media only screen and (max-width:640px) {
  #page_news .news_inner h2::before {
    top: -50px;
    font-size: 60px;
  }
}
#page_news .news_inner article {
  margin: 0 auto;
  padding: 20px;
  border-top: solid 1px rgb(181, 181, 182);
  border-left: solid 1px rgb(181, 181, 182);
  border-right: solid 1px rgb(181, 181, 182);
}
#page_news .news_inner article a {
  text-decoration: none;
  color: #000000;
  letter-spacing: 1.6px;
}
#page_news .news_inner article .flex {
  display: flex;
}
@media only screen and (max-width:640px) {
  #page_news .news_inner article .flex {
    display: block;
  }
}
#page_news .news_inner article .flex .date {
  display: block;
  max-width: 130px;
  width: 100%;
  font-size: 14px;
  line-height: 1.8;
}
@media only screen and (max-width:640px) {
  #page_news .news_inner article .flex .date {
    margin-bottom: 5px;
  }
}
#page_news .news_inner article .flex .ttl {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
}
#page_news .pagenation {
  margin: 0 0 100px;
}
@media only screen and (min-width:641px) and (max-width:1112px) {
  #page_news .pagenation {
    margin: 0 0 80px;
  }
}
@media only screen and (max-width:640px) {
  #page_news .pagenation {
    margin: 0 0 60px;
  }
}
#page_news .pagenation .nav-links {
  display: flex;
  justify-content: center;
  margin: 60px auto 0;
}
#page_news .pagenation .nav-links .current {
  color: white !important;
  text-decoration: none;
  background-color: rgb(0, 105, 52) !important;
}
#page_news .pagenation .nav-links .page-numbers {
  margin: 0 2px;
  padding: 2px 8px;
  color: #000000;
  text-decoration: none;
  background-color: rgb(219, 219, 219);
}
#page_news .pagenation .nav-links .page-numbers:hover {
  opacity: 0.7;
  transition: all 0.5s;
  cursor: pointer;
}

#page_news_single {
  padding: 0 30px;
}
@media only screen and (min-width:641px) and (max-width:1112px) {
  #page_news_single {
    padding: 0 25px;
  }
}
@media only screen and (max-width:640px) {
  #page_news_single {
    padding: 0 20px;
  }
}
#page_news_single .news_inner {
  max-width: 925px;
  width: 100%;
  margin: 0 auto;
  padding: 80px 0;
}
@media only screen and (min-width:641px) and (max-width:1112px) {
  #page_news_single .news_inner {
    padding: 80px 0;
  }
}
@media only screen and (max-width:640px) {
  #page_news_single .news_inner {
    padding: 60px 0;
  }
}
#page_news_single .news_inner article {
  margin: 0 auto;
}
#page_news_single .news_inner article .date {
  display: block;
  max-width: 130px;
  width: 100%;
  margin: 0 0 10px;
  color: rgb(0, 105, 52);
  font-size: 14px;
  line-height: 1.8;
}
@media only screen and (max-width:640px) {
  #page_news_single .news_inner article .date {
    margin-bottom: 5px;
  }
}
#page_news_single .news_inner article .ttl {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
}
#page_news_single .news_inner article .content {
  margin: 20px 0 40px;
  padding: 20px 0;
  border-top: solid 1px rgb(0, 105, 52);
  border-bottom: solid 1px rgb(0, 105, 52);
}
#page_news_single .news_inner .news_btn {
  color: rgb(0, 105, 52);
}
#page_news_single .news_inner .news_btn:hover {
  opacity: 0.8;
  transition: all 0.3s;
}
#page_news_single .news_inner .news_btn p {
  margin: 0;
}

#header_contact .bg_img {
  width: 100%;
  height: 200px;
  background-image: url(./images/contact_bg.png);
  background-size: cover;
  background-position: center;
}

#page_contact {
  padding: 0 30px;
}
@media only screen and (min-width:641px) and (max-width:1112px) {
  #page_contact {
    padding: 0 25px;
  }
}
@media only screen and (max-width:640px) {
  #page_contact {
    padding: 0 20px;
  }
}
#page_contact .contact_inner {
  margin: 150px auto 100px;
}
@media only screen and (min-width:641px) and (max-width:1112px) {
  #page_contact .contact_inner {
    margin: 130px auto 80px;
  }
}
@media only screen and (max-width:640px) {
  #page_contact .contact_inner {
    margin: 110px auto 60px;
  }
}
#page_contact .contact_inner h2 {
  position: relative;
  margin: 0 auto;
  padding: 0;
  font-size: 34px;
  font-weight: 500;
  text-align: center;
}
@media only screen and (max-width:640px) {
  #page_contact .contact_inner h2 {
    margin: 0 auto 30px;
    font-size: 20px;
  }
}
#page_contact .contact_inner h2::before {
  content: "CONTACT";
  position: absolute;
  top: -90px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  color: rgba(0, 154, 62, 0.2);
  font-size: 100px;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  letter-spacing: 20;
}
@media only screen and (max-width:640px) {
  #page_contact .contact_inner h2::before {
    top: -50px;
    font-size: 60px;
  }
}
#page_contact .contact_inner .txt {
  margin: 60px 0 40px;
  text-align: center;
}
#page_contact .contact_inner .contact_form {
  max-width: 650px;
  width: 100%;
  margin: 0 auto;
}
#page_contact .contact_inner .contact_form input {
  width: 100%;
  margin: 5px 0 15px;
  padding: 10px;
  font-size: 16px;
}
#page_contact .contact_inner .contact_form textarea {
  width: 100%;
  height: 200px;
  margin: 5px 0 10px;
  padding: 10px;
  font-size: 16px;
}
#page_contact .contact_inner .contact_form p {
  width: 100%;
  margin: 0 0 0;
}
#page_contact .contact_inner .contact_form label {
  margin: 0 0 15px;
}
#page_contact .contact_inner .contact_form .name {
  margin: 0;
}
#page_contact .contact_inner .contact_form .min {
  margin: 0 0 0 3px;
  padding: 1px 3px 2px;
  color: white;
  font-size: 12px;
  border-radius: 6px;
  background-color: red;
}
#page_contact .contact_inner .contact_form .inline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
#page_contact .contact_inner .contact_form .inline p {
  display: inline;
  width: 49%;
}
#page_contact .contact_inner .contact_form .inline .mg_right {
  margin: 0 10px 0 0;
}
#page_contact .contact_inner .contact_form .scroll-box {
  margin: 5px 0 15px;
  padding: 10px;
  border: solid 1px gray;
}
#page_contact .contact_inner .contact_form .scroll-box p {
  margin: 0 0 10px;
  font-size: 14px;
  line-height: normal;
}
#page_contact .contact_inner .contact_form .agree {
  margin: 20px 0;
  padding: 5px 0;
  border: solid 1px gray;
}
#page_contact .contact_inner .contact_form .agree p {
  display: inline;
}
#page_contact .contact_inner .contact_form .agree input {
  display: inline;
  width: 20px;
  margin: 0 0 4px 0;
  vertical-align: middle;
}
#page_contact .contact_inner .contact_form .agree span {
  display: inline;
}
#page_contact .contact_inner .contact_form input[type=submit] {
  margin: 0;
  padding: 10px;
  color: white;
  border: none;
  background-color: rgb(83, 186, 209);
}

#header_recruit_form .bg_img {
  width: 100%;
  height: 200px;
  background-image: url(./images/recruitform_bg.png);
  background-size: cover;
}

#page_recruit_form {
  padding: 0 30px;
}
@media only screen and (min-width:641px) and (max-width:1112px) {
  #page_recruit_form {
    padding: 0 25px;
  }
}
@media only screen and (max-width:640px) {
  #page_recruit_form {
    padding: 0 20px;
  }
}
#page_recruit_form .recruit_form_inner {
  margin: 150px auto 100px;
}
@media only screen and (min-width:641px) and (max-width:1112px) {
  #page_recruit_form .recruit_form_inner {
    margin: 130px auto 80px;
  }
}
@media only screen and (max-width:640px) {
  #page_recruit_form .recruit_form_inner {
    margin: 110px auto 60px;
  }
}
#page_recruit_form .recruit_form_inner h2 {
  position: relative;
  margin: 0 auto;
  padding: 0;
  font-size: 34px;
  font-weight: 500;
  text-align: center;
}
@media only screen and (max-width:640px) {
  #page_recruit_form .recruit_form_inner h2 {
    margin: 0 auto 30px;
    font-size: 20px;
  }
}
#page_recruit_form .recruit_form_inner h2::before {
  content: "ENTRY";
  position: absolute;
  top: -90px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  color: rgba(0, 154, 62, 0.2);
  font-size: 100px;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  letter-spacing: 20;
}
@media only screen and (max-width:640px) {
  #page_recruit_form .recruit_form_inner h2::before {
    top: -50px;
    font-size: 60px;
  }
}
#page_recruit_form .recruit_form_inner .txt {
  margin: 60px 0 40px;
  text-align: center;
}
#page_recruit_form .recruit_form_inner .min_txt {
  margin: 0 0 40px;
  color: gray;
  font-size: 14px;
  text-align: center;
}
#page_recruit_form .recruit_form_inner .min_txt .red {
  color: red;
}
#page_recruit_form .recruit_form_inner .recruit_form {
  max-width: 650px;
  width: 100%;
  margin: 0 auto;
}
#page_recruit_form .recruit_form_inner .recruit_form input {
  width: 100%;
  margin: 5px 0 15px;
  padding: 10px;
  font-size: 16px;
}
#page_recruit_form .recruit_form_inner .recruit_form textarea {
  width: 100%;
  height: 200px;
  margin: 5px 0 10px;
  padding: 10px;
  font-size: 16px;
}
#page_recruit_form .recruit_form_inner .recruit_form .check {
  margin: 0 0 15px;
}
#page_recruit_form .recruit_form_inner .recruit_form .check .wpcf7-not-valid-tip {
  margin: 15px 0 0;
}
#page_recruit_form .recruit_form_inner .recruit_form .check .wpcf7-list-item {
  display: inline-block;
  margin: 5px 5px 0 0;
  border: 1px solid rgb(217, 217, 217);
  border-radius: 3px;
  vertical-align: middle;
}
#page_recruit_form .recruit_form_inner .recruit_form .radio .wpcf7-list-item {
  display: inline-block;
  width: calc(50% - 5px);
  border: 1px solid rgb(217, 217, 217);
  vertical-align: middle;
}
#page_recruit_form .recruit_form_inner .recruit_form .radio .wpcf7-list-item input {
  display: inline-block;
  width: 20px;
  margin: 5px 0 8px 8px;
}
@media only screen and (max-width:640px) {
  #page_recruit_form .recruit_form_inner .recruit_form .job_radio .wpcf7-list-item {
    display: block;
    width: 100%;
  }
}
#page_recruit_form .recruit_form_inner .recruit_form p {
  width: 100%;
  margin: 0 0 0;
}
#page_recruit_form .recruit_form_inner .recruit_form label {
  margin: 0 0 15px;
}
#page_recruit_form .recruit_form_inner .recruit_form .kinmu input {
  margin-bottom: 0;
}
#page_recruit_form .recruit_form_inner .recruit_form .name {
  margin: 0;
}
#page_recruit_form .recruit_form_inner .recruit_form .min {
  margin: 0 0 0 3px;
  padding: 1px 3px 2px;
  color: white;
  font-size: 12px;
  border-radius: 6px;
  background-color: red;
}
@media only screen and (max-width:640px) {
  #page_recruit_form .recruit_form_inner .recruit_form .min {
    display: inline-block;
  }
}
#page_recruit_form .recruit_form_inner .recruit_form .ttl_txt {
  margin: 0;
  letter-spacing: normal;
}
#page_recruit_form .recruit_form_inner .recruit_form .gray_txt {
  margin: 0 0 10px;
  color: gray;
  font-size: 12px;
  font-weight: normal;
  letter-spacing: normal;
}
#page_recruit_form .recruit_form_inner .recruit_form .mgn {
  margin: 0;
}
#page_recruit_form .recruit_form_inner .recruit_form select {
  width: 200px;
  margin: 5px 0 0;
  padding: 10px;
  font-size: 16px;
}
#page_recruit_form .recruit_form_inner .recruit_form .year {
  margin: 0 0 0 5px;
}
#page_recruit_form .recruit_form_inner .recruit_form .inline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
#page_recruit_form .recruit_form_inner .recruit_form .inline p {
  display: inline;
  width: 49%;
}
#page_recruit_form .recruit_form_inner .recruit_form .inline .mg_right {
  margin: 0 10px 0 0;
}
#page_recruit_form .recruit_form_inner .recruit_form .scroll-box {
  margin: 5px 0 15px;
  padding: 10px;
  border: solid 1px gray;
  border-radius: 3px;
}
#page_recruit_form .recruit_form_inner .recruit_form .scroll-box p {
  margin: 0 0 10px;
  font-size: 14px;
  line-height: normal;
}
#page_recruit_form .recruit_form_inner .recruit_form .agree {
  margin: 20px 0;
  padding: 5px;
  border: solid 1px gray;
  border-radius: 5px;
}
#page_recruit_form .recruit_form_inner .recruit_form .agree p {
  display: inline;
}
#page_recruit_form .recruit_form_inner .recruit_form .agree .wpcf7-list-item {
  margin: 5px 0 8px 8px;
}
#page_recruit_form .recruit_form_inner .recruit_form .agree input {
  display: inline;
  width: 20px;
  margin-right: 5px;
  margin: 0 5px 3px 0;
}
#page_recruit_form .recruit_form_inner .recruit_form .agree span {
  display: inline;
}
#page_recruit_form .recruit_form_inner .recruit_form input[type=submit] {
  margin: 0;
  padding: 10px;
  color: white;
  font-size: 16px;
  border: none;
  background-color: rgb(83, 186, 209);
}

#single_page {
  max-width: 925px;
  width: 100%;
  height: auto;
  margin: 0 auto;
}
@media only screen and (min-width:641px) and (max-width:1112px) {
  #single_page {
    padding: 0 30px;
  }
}
@media only screen and (max-width:640px) {
  #single_page {
    padding: 0 20px;
  }
}
#single_page .inner {
  margin-bottom: 150px;
}
@media only screen and (min-width:641px) and (max-width:1112px) {
  #single_page .inner {
    margin-bottom: 100px;
  }
}
@media only screen and (max-width:640px) {
  #single_page .inner {
    margin-bottom: 60px;
  }
}
#single_page .inner article .txt .ttl {
  margin-top: 0;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 2px;
  text-align: left;
  float: left;
}
@media only screen and (min-width:641px) and (max-width:1112px) {
  #single_page .inner article .txt .ttl {
    font-size: 26px;
  }
}
@media only screen and (min-width:641px) and (max-width:820px) {
  #single_page .inner article .txt .ttl {
    font-size: 22px;
  }
}
@media only screen and (max-width:640px) {
  #single_page .inner article .txt .ttl {
    font-size: 20px;
  }
}
#single_page .inner article .txt .date {
  font-size: 16px;
  text-align: right;
  line-height: 55px;
}
@media only screen and (min-width:641px) and (max-width:820px) {
  #single_page .inner article .txt .date {
    margin: 0 0 30px 0;
    font-size: 14px;
    text-align: left;
    line-height: normal;
    clear: both;
  }
}
@media only screen and (max-width:640px) {
  #single_page .inner article .txt .date {
    margin: 0 0 30px 0;
    font-size: 14px;
    text-align: left;
    line-height: normal;
    clear: both;
  }
}
#single_page .inner article .content {
  margin: 0 0 40px;
  padding: 80px 0;
  border-top: solid 1px #B9B9B9;
  border-bottom: solid 1px #B9B9B9;
  clear: both;
}
@media only screen and (min-width:641px) and (max-width:1112px) {
  #single_page .inner article .content {
    padding: 60px 0;
  }
}
@media only screen and (min-width:641px) and (max-width:820px) {
  #single_page .inner article .content {
    padding: 40px 0;
  }
}
@media only screen and (max-width:640px) {
  #single_page .inner article .content {
    padding: 40px 0;
  }
}
#single_page .inner article .content ul li {
  line-height: 1.8;
  font-size: 18px;
  letter-spacing: 1.2px;
}
@media only screen and (min-width:641px) and (max-width:820px) {
  #single_page .inner article .content ul li {
    font-size: 16px;
  }
}
@media only screen and (max-width:640px) {
  #single_page .inner article .content ul li {
    font-size: 16px;
  }
}
#single_page .inner article .content p {
  font-size: 18px;
  letter-spacing: 1.1px;
  line-height: 1.8;
}
@media only screen and (min-width:641px) and (max-width:820px) {
  #single_page .inner article .content p {
    font-size: 16px;
  }
}
@media only screen and (max-width:640px) {
  #single_page .inner article .content p {
    font-size: 16px;
  }
}
#single_page .inner a {
  text-decoration: none;
  color: #000000;
  text-align: right;
  letter-spacing: 2px;
}
#single_page .inner a:hover {
  opacity: 0.7;
  transition: all 0.5s;
}

#header_privacypolicy .bg_img {
  width: 100%;
  height: 200px;
  background-image: url(./images/privacypolicy_bg.png);
  background-size: cover;
  background-position: center;
}

.privacypolicy_inner {
  margin: 100px auto;
  padding: 0 30px;
}
@media only screen and (max-width:640px) {
  .privacypolicy_inner {
    margin: 60px auto;
  }
}
.privacypolicy_inner h2 {
  margin: -40px 0 0;
  font-size: 34px;
  text-align: center;
}
@media only screen and (min-width:641px) and (max-width:1112px) {
  .privacypolicy_inner h2 {
    margin: -30px 0 0;
    font-size: 28px;
  }
}
@media only screen and (max-width:640px) {
  .privacypolicy_inner h2 {
    margin: -25px 0 0;
    font-size: 20px;
  }
}
.privacypolicy_inner .en {
  display: block;
  margin: 0 auto;
  color: rgba(0, 154, 62, 0.2);
  font-size: 100px;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  letter-spacing: 20;
  text-align: center;
  line-height: 1;
}
@media only screen and (min-width:641px) and (max-width:1112px) {
  .privacypolicy_inner .en {
    font-size: 80px;
  }
}
@media only screen and (min-width:641px) and (max-width:820px) {
  .privacypolicy_inner .en {
    font-size: 70px;
  }
}
@media only screen and (max-width:640px) {
  .privacypolicy_inner .en {
    font-size: 60px;
  }
}
.privacypolicy_inner .txt {
  width: 100%;
  max-width: 750px;
  margin: 60px auto 0;
}
@media only screen and (max-width:640px) {
  .privacypolicy_inner .txt {
    margin: 40px auto 0;
  }
}

#footer footer {
  padding: 60px 0 0;
  background-color: #EFEFEF;
}
@media only screen and (max-width:640px) {
  #footer footer {
    padding: 40px 0 0;
  }
}
#footer footer img {
  display: block;
  width: 50%;
  margin: 0 auto;
  padding: 0 30px;
}
@media only screen and (min-width:641px) and (max-width:1112px) {
  #footer footer img {
    padding: 0 25px;
  }
}
@media only screen and (max-width:640px) {
  #footer footer img {
    width: 100%;
    padding: 0 20px;
  }
}
#footer footer .address {
  margin: 20px 0 10px;
  font-size: 20px;
  text-align: center;
}
@media only screen and (min-width:641px) and (max-width:1112px) {
  #footer footer .address {
    padding: 0 25px;
  }
}
@media only screen and (max-width:640px) {
  #footer footer .address {
    padding: 0 20px;
    font-size: 16px;
  }
}
#footer footer .tel {
  margin: 0;
  color: #009A3E;
  font-size: 46px;
  font-weight: bold;
  text-align: center;
}
@media only screen and (min-width:641px) and (max-width:1112px) {
  #footer footer .tel {
    padding: 0 25px;
  }
}
@media only screen and (max-width:640px) {
  #footer footer .tel {
    padding: 0 20px;
    font-size: 24px;
  }
}
#footer footer .tel a {
  text-decoration: none;
  color: #009A3E;
}
#footer footer .tel img {
  display: inline-block;
  width: 50px;
  height: auto;
  padding: 0;
}
@media only screen and (max-width:640px) {
  #footer footer .tel img {
    width: 30px;
  }
}
#footer footer ul {
  display: flex;
  justify-content: center;
  margin: 60px 0 0;
  padding: 10px 0;
  list-style-type: none;
  background-color: #231815;
}
@media only screen and (max-width:640px) {
  #footer footer ul {
    flex-wrap: wrap;
    margin: 40px 0 0;
  }
}
#footer footer ul li {
  padding: 15px;
}
@media only screen and (max-width:640px) {
  #footer footer ul li {
    padding: 5px 10px;
    font-size: 14px;
  }
}
#footer footer ul li a {
  color: #FFFFFF;
  text-decoration: none;
}
#footer .copy {
  padding: 10px 0;
  font-size: 14px;
  text-align: center;
}
@media only screen and (min-width:641px) and (max-width:1112px) {
  #footer .copy {
    margin: 0 0 60px 0;
  }
}
@media only screen and (max-width:640px) {
  #footer .copy {
    margin: 0 0 60px 0;
    font-size: 12px;
  }
}

#page_top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 100;
}
@media only screen and (min-width:641px) and (max-width:1112px) {
  #page_top {
    display: none;
  }
}
@media only screen and (min-width:641px) and (max-width:820px) {
  #page_top {
    display: none;
  }
}
@media only screen and (max-width:640px) {
  #page_top {
    display: none;
  }
}
#page_top a img {
  display: inline-block;
  width: 120px;
  margin: 0;
}
@media only screen and (min-width:641px) and (max-width:1112px) {
  #page_top a img {
    display: none;
  }
}
@media only screen and (min-width:641px) and (max-width:820px) {
  #page_top a img {
    display: none;
  }
}
@media only screen and (max-width:640px) {
  #page_top a img {
    display: none;
  }
}/*# sourceMappingURL=main.css.map */