@charset "utf-8";

/* ----------------------------------------------------------
 Reset,Base CSS
---------------------------------------------------------- */
* {
  margin: 0;
  padding: 0;
  border-style:none;
  box-sizing: border-box !important;
}
html {
  color: #000000; 
  background-color: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
  font-size: 4.5vw;
  line-height: 1.75em;
  text-align: left;
  -webkit-font-smoothing: antialiased;
}
body {
  width: 100%;
  margin: 0;
  padding: 0;
  font-size-adjust: none;
  -webkit-font-size-adjust: none;
  animation: fadeIn 2s ease 0s 1 normal;
  -webkit-animation: fadeIn 2s ease 0s 1 normal;
  position: relative;
}
@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
body:before {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background-color: #eeeeee;
  position: absolute;
  z-index: 0;
  top: 0;
  left: 2.5%;
}
body:after {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background-color: #eeeeee;
  position: absolute;
  z-index: 0;
  top: 0;
  right: 2.5%;
}
main { display: block; }
section { margin: 0; }
figure img { width: 100%; }
h1,h2,h3,h4,h5,h6 {
  margin: 0;
  padding: 0;
  font-size: 1rem;
}
input[type=submit],
input[type=reset] {
  -webkit-appearance: none;
  border-radius: 0;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
a {
  color: #000000; 
  text-decoration : none;
  border: none;
  outline: none;
  transition: 0.5s;
}
ul, ol {
  margin: 0;
  padding: 0;
  list-style : none;
}
figure,
img {
  margin: 0;
  padding: 0;
  min-height: 0% !important;
  line-height: 0;
}
p {
  font-size: 4.5vw;
  line-height: 1.75em;
}
.fw {
  font-weight: bold;
}

/* ----------------------------------------------------------
 Responsive Settings
---------------------------------------------------------- */
.wrapper {
  overflow: hidden;
  position: relative;
}
.smpoff {
  display: none !important;
}

/*　Roading
--------------------------------------------- */
/* opening */
.start {
  background: #000000;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.start img {
  width: 60vw;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  display: none;
  z-index: 9999;
  text-align: center;
}

/* ----------------------------------------------------------
 Header, Navigation
---------------------------------------------------------- */

/* Header Base
--------------------------------------------- */
header {
  position: fixed;
  width: 100%;
  height: 60px;
  top: 0;
  left: 0;
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header > h1 {
  width: 40%;
  margin-left: 1rem;
}
header > h1 a {
  display: flex;
  align-items: center;
}
header > h1 a img {
  width: 100%;
}

/* Gloval Nav
--------------------------------------------- */
#nav-toggle {
  position: absolute;
  z-index: 9999;
  top: 0;
  right: 0;
}
#nav-toggle div {
  display: flex;
  justify-content: center;
  width: 60px;
  height: 60px;
  position: relative;
  margin: 0;
  background-color: rgba(00,00,00,0.9);
  transition: 0.6s;
  text-align: center;
}
#nav-toggle div:hover {
  opacity: 1;
  transition: 0.6s;
}
#nav-toggle div span {
  display: block;
  width: 55%;
  height: 3px;
  position: absolute;
  left: 22.5%;
  background: #ffffff;
  transition: transform .6s ease-in-out, top .5s ease;
}
#nav-toggle div span:nth-child(1) { top: 18px; }
#nav-toggle div span:nth-child(2) { top: 28px; }
#nav-toggle div span:nth-child(3) { top: 38px; }
#gloval-nav {
  visibility: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: fixed;
  z-index: 9998;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  text-align: center;
  color: #fff;
  opacity: 0;
  transition: opacity .6s ease, visibility .6s ease;
}
 #gloval-nav nav {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  margin: 0;
  background-color: rgba(00,00,00,0.9);
}
#gloval-nav nav ul {
  list-style: none;
  width: 65%;
  background-color: transparent;
}
#gloval-nav nav ul li {
  font-size: 1.5rem;
  width: 100%;
  margin: 0 2%;
  border-bottom: 1px solid rgba(255,255,255,0.5);
  opacity: 0;
  transform: translateX(200px);
  transition:  transform .6s ease, opacity .2s ease;
}
#gloval-nav nav ul li:nth-child(1) { transition-delay: .15s; }
#gloval-nav nav ul li:nth-child(2) { transition-delay: .3s; }
#gloval-nav nav ul li:nth-child(3) { transition-delay: .45s; }
#gloval-nav nav ul li:nth-child(4) { transition-delay: .6s; }
#gloval-nav nav ul li:nth-child(5) { transition-delay: .75s; }
#gloval-nav nav ul li:nth-child(6) { transition-delay: .9s; }
#gloval-nav nav ul li:nth-child(7) { transition-delay: .105s; }
#gloval-nav nav ul li:nth-child(8) { transition-delay: .12s; }
#gloval-nav nav ul li:nth-child(9) { transition-delay: .130s; }
#gloval-nav nav ul li a svg {
  display: none;
}
#gloval-nav nav ul li a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0.75rem 0;
  font-size: 5vw;
  font-weight: bold;
  text-decoration: none;
  color: #ffffff;
  transition: color .6s ease;
}
#gloval-nav nav ul li a:first-letter {
  color: #0EB7A4;
}

/* open */
.open { overflow: hidden; }
.open #nav-toggle div:after {
  display: none;
  transition: 0.6s;
}
.open #nav-toggle div span { background: #ffffff; }
.open #nav-toggle div span:nth-child(1) {
  top: 28px;
  transform: rotate(45deg);
}
.open #nav-toggle div span:nth-child(2) {
  display: none;
}
.open #nav-toggle div span:nth-child(3) {
  top: 28px;
  transform: rotate(-45deg);
}
.open #gloval-nav {
  visibility: visible;
  opacity: 1;
}
.open #gloval-nav nav ul li {
  opacity: 1;
  transform: translateX(0);
  transition:  transform 1s ease, opacity .9s ease;
}


/* ----------------------------------------------------------
 Footer
---------------------------------------------------------- */
footer .sec_contact {
  position: relative;
  z-index: 1;
  background-color: #EFEFEF;
  padding: 3rem 8%;
  text-align: center;
  margin-top: 3rem;
}
footer .sec_contact p {
  text-align: left;
}
footer .sec_contact div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 2rem 0 1rem 0;
}
footer .sec_contact div h3 {
  font-size: 2rem;
  margin: 0 1rem;
}
footer .sec_contact div h3 span {
  color: #0EB7A4;
}
footer article {
  padding: 1rem 0;
  position: relative;
  z-index: 1;
}
footer article .pagetop {
  position: absolute;
  z-index: 1;
  top: -25px;
  right: 0;
  width: 50px;
  height: 50px;
}
footer article .pagetop a {
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(00,00,00,0.8);
  line-height: 0;
  position: relative;
}
footer article .pagetop a:before {
  content: '';
  display: block;
  position: absolute;
  top: 12px;
  left: 25px;
  width: 1px;
  height: 25px;
  background: #ffffff;
}
footer article .pagetop a:after{
  content: '';
  display: block;
  position: absolute;
  top: 10px;
  left: 28px;
  width: 1px;
  background: #ffffff;
  height: 8px;
  transform: rotate(-45deg);
}
footer article h1 {
  text-align: center;
  width: 60%;
  margin: 0 auto;
}
footer article h1 a {
  display: block;
}
footer article h1 a img {
  width: 100%;
}
footer article small {
  display: block;
  width: 100%;
  color: #0EB7A4;
  font-size: 3vw;
  font-weight: bold;
  text-align: center;
}


/* ----------------------------------------------------------
 Common
---------------------------------------------------------- */
/* fadein */
.fadein {
  opacity : 0;
  transform : translate(0, 30px);
  transition : all 1s;
}
 
.fadein.active{
  opacity : 1;
  transform : translate(0, 0);
}

section {
  position: relative;
  z-index: 1;
}
section h2 {
  color: #0EB7A4;
  font-size: 10vw;
  font-weight: bold;
  margin-bottom: 1.5rem;
}
section h2 span {
  font-size: 5vw;
  display: block;
  padding-top: 0.25rem;
}
p.more a,
.form .formbox p input {
  display: block;
  width: 96%;
  padding: 0.75rem 0;
  margin: 2rem auto 1rem auto;
  color: #ffffff;
  background-color: #0EB7A4;
  font-weight: bold;
  position: relative;
  transition: 0.3s;
  text-align: center;
}
footer p.pcoff a {
  margin-bottom: 0;
}
footer p.pcoff + p.more a {
  margin-top: 1rem;
}
p.more a:before,
p.more a:after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  height: 1px;
  background: #000000;
}
p.more a:before {
  width: 60px;
  transform: translate(20px, 0px);
}
p.more a:after {
  width: 10px;
  transform-origin: right center;
  transform: translate(20px, 0px) rotate(45deg);
}
p.more a.w:before,
p.more a.w:after {
  background-color: #ffffff;
}

/* ----------------------------------------------------------
 Home
---------------------------------------------------------- */
/* main visual
-------------------------*/
.sec_main {
  height: 87vh;
  position: relative;
  background-color: #efefef;
}
.sec_main:after {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background-color: rgba(255,255,255,0.8);
  position: absolute;
  z-index: 2;
  top: 0;
  right: 2.5%;
}
.sec_main p {
  color: #ffffff;
  font-size: 12vw;
  line-height: 1.5em;
  font-weight: bold;
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 0.5em;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
}

/* KYOWA CHISHITSU */
.sec_main .maintext {
  display: flex;
  position: absolute;
  z-index: 2000;
  left: 0;
  bottom: -5px;
}
.sec_main .maintext img {
  height: 35vw;
  max-height: 150px;
}
.sec_main .maintext img:first-child {
  -webkit-animation: loop 120s -60s linear infinite;
  animation: loop 120s -60s linear infinite;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: transform;
}
.sec_main .maintext img + img {
  -webkit-animation: loop2 120s  linear infinite;
  animation: loop2 120s linear infinite;
}
@-webkit-keyframes loop {
  0% {
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@keyframes loop {
  0% {
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-webkit-keyframes loop2 {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-200%);
    -ms-transform: translateX(-200%);
    transform: translateX(-200%);
  }
}
@keyframes loop2 {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-200%);
    -ms-transform: translateX(-200%);
    transform: translateX(-200%);
  }
}

/* Swiper */
.swiper-container,
.slide-img {
  width: 100%;
  height: 87vh;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.slide-img1 {
  background-position: 60% center;
}
.slide-img2 {
  background-position: center center;
}
.slide-img3 {
  background-position: 82% center;
}
.slide-img4 {
  background-position: 44.5% center;
}
.slide-img {
  background-repeat: no-repeat;
}
.slide-img img{
  display: block;
}
.swiper-slide-active .slide-img,
.swiper-slide-duplicate-active .slide-img,
.swiper-slide-prev .slide-img{
  animation: zoomUp 13s linear 0s 1 normal both;  
}
@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}

/* Scroll */
body.home main:after {
  content: "";
  display: block;
  width: 5px;
  height: 30px;
  background-color: #ffffff;
  position: absolute;
  z-index: 3;
  bottom: 0;
  right: calc(2.5% - 2px);
  content: "";
  -webkit-animation: animation 2.5s infinite;
  animation: animation 2.5s infinite;
}
@-webkit-keyframes animation {
  0% {
    top: 0;
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    top: 80vh;
    opacity: 1;
  }
}
@keyframes animation {
  0% {
    top: 0;
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    top: 80vh;
    opacity: 1;
  }
}
/* news
-------------------------*/
.sec_news {
  position: relative;
  z-index: 5;
}
.sec_news h2 {
  width: 100%;
  color: #ffffff;
  background-color: rgba(14,183,164,0.8);
  padding: 0.5rem 
  1rem;
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 0;
}
.sec_news a {
  display: block;
  width: 100%;
  padding: 0.75rem;
  font-weight: bold !important;
  border-bottom: 1px solid #cccccc;
}
.sec_news a time {
  margin-right: 1em;
}
.sec_news a h3 {
  display: flex;
  align-items: center;
}
.sec_news a h3:after {
  content: "";
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  border-top: 2px solid #0EB7A4;
  border-right: 2px solid #0EB7A4;
  transform: rotate(45deg);
  margin-left: 0.75rem;
}

/* services
-------------------------*/
.sec_services {
  width: 84%;
  margin: 2rem auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sec_services figure {
  order: 1;
  width: 100%;
  margin-bottom: 2rem;
}
.sec_services figure img {
  width: 100%;
}
.sec_services div {
  order: 2;
}
.sec_services div h2 {
  position: relative;
  z-index: 1;
}
.sec_services div h2:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #0EB7A4;
  position: absolute;
  z-index: -2;
  top: 1rem;
  left: 0;
}
.sec_services div h2:after {
  content: "";
  display: block;
  width: 53vw;
  height: 100%;
  background-color: #ffffff;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
}
.sec_services div p.sub_title {
  font-size: 6vw;
  line-height: 1.5em;
  font-weight: bold;
  margin-bottom: 1rem;
}

/* works
-------------------------*/
.sec_works {
  width: 100%;
  padding: 4rem 8%;
  color: #ffffff;
  background-color: #000000;
  text-align: center;
  position: relative;
}
.sec_works .inner {
  width: 100%;
}
.sec_works:before {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background-color: #333333;
  position: absolute;
  z-index: 0;
  top: 0;
  left: 2.5%;
}
.sec_works:after {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background-color: #333333;
  position: absolute;
  z-index: 0;
  top: 0;
  right: 2.5%;
}
.sec_works h2 {
  color: #ffffff;
}
.sec_works h2 + p {
  text-align: left;
}
.sec_works ul {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 2rem 0;
}
.sec_works ul li {
  width: 49%;
  margin: 0.5%;
}
.sec_works ul li {
  display: block;
  position: relative;
}
.sec_works ul li figure,
.sec_works ul li figure img {
  width: 100%;
}
.sec_works ul li h3 {
  font-size: 4vw;
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

/* company
-------------------------*/
.sec_company {
  width: 84%;
  margin: 3rem auto;
  display: flex;
  flex-direction: column;
}
.sec_company figure {
  width: 100%;
  margin-bottom: 2rem;
}
.sec_company figure img {
  width: 100%;
}
.sec_company div {
  width: 100%;
}
.sec_company div h2 {
  position: relative;
  z-index: 1;
}
.sec_company div h2:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #0EB7A4;
  position: absolute;
  z-index: -2;
  top: 1rem;
  left: 0;
}
.sec_company div h2:after {
  content: "";
  display: block;
  width: 55vw;
  height: 100%;
  background-color: #ffffff;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
}
.sec_company div p.sub_title {
  font-size: 2.5rem;
  line-height: 1.5em;
  font-weight: bold;
  margin-bottom: 2rem;
}

/* office
-------------------------*/
.sec_office {
  padding: 4rem 8%;
  background-image: url(images/top-office.jpg);
  background-position: 20% center;
  background-size: cover;
  color: #ffffff;
}
.sec_office h2 {
  color: #ffffff;
  margin-bottom: 1rem;
}
.sec_office p:nth-of-type(1) {
  width: 100%;
  margin-bottom: 2rem;
}
.sec_office p.more a {
  margin-top: 0;
}

/* fb,recruit
-------------------------*/
.half {
  width: 84%;
  margin: 3rem auto;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}
.sec_fb {
  order: 2;
}
.sec_recruit {
  order: 1;
  margin-bottom: 2rem;
}
body.home .half h2 {
  color: #000000;
}
body.home .half h2 span {
  color: #0EB7A4;
}
.sec_fb div {
  text-align: center;
}
.sec_recruit p.sub_title {
  font-size: 8vw;
  line-height: 1.5em;
  font-weight: bold;
  margin-bottom: 1rem;
}
.sec_recruit p.more {
  margin-top: 2rem;
  text-align: center;
}



/* ----------------------------------------------------------
 Page - Common
---------------------------------------------------------- */
.art_title {
  height: 25vh;
  position: relative;
  background-size: cover;
  background-position: left center;
  border-bottom: 50px solid #0EB7A4;
  position: relative;
  margin-bottom: 2rem;
}
.art_title h2 {
  text-align: center;
  color: #ffffff;
  position: absolute;
  bottom: -40px;
  margin-bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
}
.blue {
  background-color: rgba(14,183,164,0.1);
  padding: 4rem 0;
}
.sec_page h3 {
  text-align: center;
  font-size: 8vw;
  margin-bottom: 1rem;
}
.sec_page h3 span {
  display: block;
  color: #0EB7A4;
  font-size: 4.5vw;
  padding-top: 0.5rem;
}
.sec_page h3 + p {
  text-align: left;
  margin-bottom: 3rem;
}
.sec_page p.sub_title {
  font-size: 6vw;
  line-height: 1.75em;
  font-weight: bold;
  text-align: left;
}

/* ----------------------------------------------------------
 Page - Services
---------------------------------------------------------- */

/* 共通
------------------------------------- */
body.services .art_title,
body.services2 .art_title,
body.services3 .art_title {
  background-image: url(images/title-services.jpg);
}
main.servicepage .inner {
  width: 84%;
  margin: 2rem auto;
}
.nav_service {
  margin: 0 auto 4rem auto;
}
.sec_page p.sub_title + .nav_service {
  margin-top: 4rem;
}
.nav_service ul {
  display: flex;
  flex-direction: column;
  background-color: #000000;
}
.nav_service ul li {
  width: 100%;
  border-bottom: 1px solid #ffffff;
}
.nav_service ul li:last-child {
  border-bottom: 0;
}
.nav_service ul li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0;
  width: 100%;
  height: 100%;
  color: #ffffff;
  text-align: center;
  font-weight: bold;
  font-size: 0.9rem;
}
.nav_service ul li a:before {
  content: "";
  display: block;
  width: 0.25rem;
  height: 0.25rem;
  border-top: 3px solid #ffffff;
  border-right: 3px solid #ffffff;
  transform: rotate(45deg);
  margin-right: 0.5rem;
}
body.services .ul_services > li h4,
body.services2 .ul_services > li h4,
body.services3 .ul_services > li h4 {
  text-align: center;
  font-size: 6vw;
  font-weight: bold;
  margin-bottom: 1rem;
}
body.services .ul_services > li p,
body.services2 .ul_services > li p,
body.services3 .ul_services > li p {
  font-size: 4vw;
}
.ul_dojou li h5 {
  text-align: center;
  font-size: 4vw;
  line-height: 1.5em;
  font-weight: bold;
  color: #0EB7A4;
  margin-bottom: 0.5rem;
}

/* 地質調査と解析
------------------------------------- */
body.services .nav_service ul li:nth-child(2) a {
  color: #fff;
  background-color: #0EB7A4;;
}
body.services .ul_services {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}
body.services .ul_services > li {
  width: 100%;
  border: 1px solid #0EB7A4;
  border-radius: 0.5rem;
  padding: 1.5rem 1rem;
  margin-bottom: 2rem;
  background-color: #ffffff;
  position: relative;
}
body.services .ul_services > li:before {
  content: "";
  display: block;
  width: 140px;
  height: 5px;
  background-color: #0EB7A4;
  position: absolute;
  left: 50%;
  top: -2.5px;
  margin-left: -70px;
}
body.services .ul_services > li figure {
  width: 100%;
  margin-bottom: 1rem;
}
body.services .ul_services > li figure img {
  width: 100%;
}
body.services .ul_dojou {
  display: flex;
  flex-direction: column;
}
body.services .ul_dojou li {
  background-color: #E2F7F4;
  width: 100%;
  padding: 1rem;
  margin-bottom: 1rem;
}
body.services .ul_services > li:nth-child(2) h5 {
  font-size: 4vw;
  color: #0EB7A4;
  margin-top: 1rem;
}
body.services .ul_services > li:nth-child(8) h4 {
  margin-bottom: 1.5rem;
}
body.services .ul_services > li:nth-child(8) ul {
  display: flex;
  flex-direction: column;
}
body.services .ul_services > li:nth-child(8) ul li {
  background-color: #E2F7F4;
  width: 100%;
  padding: 1rem;
  text-align: center;
  margin-bottom: 1rem;
}
body.services .ul_services > li:nth-child(8) ul li:last-child {
  margin-right: 0;
}

/* 測量・設計
------------------------------------- */
body.services2 .nav_service ul li:nth-child(1) a {
  color: #fff;
  background-color: #0EB7A4;;
}
body.services2 .ul_services {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}
body.services2 .ul_services > li {
  width: 100%;
  border: 1px solid #0EB7A4;
  border-radius: 0.5rem;
  padding: 1.5rem 1rem;
  margin-bottom: 2rem;
  background-color: #ffffff;
  position: relative;
}
body.services2 .ul_services > li:before {
  content: "";
  display: block;
  width: 140px;
  height: 5px;
  background-color: #0EB7A4;
  position: absolute;
  left: 50%;
  top: -2.5px;
  margin-left: -70px;
}
body.services2 .ul_services > li figure {
  width: 100%;
  margin-bottom: 1rem;
}
body.services2 .ul_services > li:nth-child(1) h4 {
  margin-bottom: 1.5rem;
}
body.services2 .ul_services > li:nth-child(1) ul {
  display: flex;
  flex-direction: column;
}
body.services2 .ul_services > li:nth-child(1) ul li {
  background-color: #E2F7F4;
  width: 100%;
  padding: 1rem;
  text-align: center;
  margin-bottom: 1rem;
}
body.services2 .ul_services > li:nth-child(1) ul li:last-child {
  margin-right: 0;
}
body.services2 .ul_services > li:nth-child(2) ul {
  display: flex;
  justify-content: space-between;
}
body.services2 .ul_services > li:nth-child(2) ul:nth-of-type(1) li {
  background-color: #E2F7F4;
  width: 49%;
  padding: 1rem;
  text-align: center;
}
body.services2 .ul_services > li:nth-child(2) ul:nth-of-type(1) li:last-child {
  margin-right: 0;
}
body.services2 .ul_services > li:nth-child(2) ul:nth-of-type(2) {
  margin-top: 1rem;
}
body.services2 .ul_services > li:nth-child(2) ul:nth-of-type(2) li {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 14%;
  padding: 0.5rem 0;
  border: 3px solid #E2F7F4;
  font-weight: bold;
  font-size: 0.9rem;
  writing-mode: vertical-rl;
}

/* 土壌・地下水汚染・アスベスト調査
------------------------------------- */
body.services3 .ul_services > li {
  width: 100%;
  border: 1px solid #0EB7A4;
  border-radius: 0.5rem;
  padding: 1.5rem 1rem;
  margin-bottom: 2rem;
  background-color: #ffffff;
  position: relative;
}
body.services3 .ul_services > li:before {
  content: "";
  display: block;
  width: 140px;
  height: 5px;
  background-color: #0EB7A4;
  position: absolute;
  left: 50%;
  top: -2.5px;
  margin-left: -70px;
}
.services3 .ul_services > li h4 + p {
  margin-bottom: 2rem;
}
body.services3 .nav_service ul li:nth-child(3) a {
  color: #fff;
  background-color: #0EB7A4;;
}
body.services3 .ul_dojou li {
  background-color: #E2F7F4;
  width: 100%;
  padding: 1rem;
  margin-bottom: 1rem;
}


/* ----------------------------------------------------------
 Page - Works
---------------------------------------------------------- */
body.works .art_title {
  background-image: url(images/title-works.jpg);
}
body.works .inner {
  width: 84%;
  margin: 2rem auto;
}
body.works .inner h3 {
  font-size: 7.5vw;
}
body.works .inner h3 span {
  padding-top: 0.25rem;
}
.ul_works {
  border-bottom: 1px solid #0EB7A4;
  position: relative;
  margin-bottom: 4rem;
}
.ul_works:before {
  content: "";
  display: block;
  width: 140px;
  height: 5px;
  background-color: #0EB7A4;
  position: absolute;
  left: 50%;
  bottom: -2.5px;
  margin-left: -70px;
}
.ul_works li {
  border-top: 1px solid #0EB7A4;
  padding: 2rem 0;
  position: relative;
}
.ul_works > li:before {
  content: "";
  display: block;
  width: 140px;
  height: 5px;
  background-color: #0EB7A4;
  position: absolute;
  left: 50%;
  top: -2.5px;
  margin-left: -70px;
}
.ul_works h4 {
  font-size: 7.5vw;
  font-weight: bold;
  margin-bottom: 1rem;
}
.ul_works h4 span {
  color: #0EB7A4;
  margin-right: 0.5rem;
}
.ul_works div {
  display: flex;
  flex-direction: column;
}
.ul_works div figure {
  order: 1;
  margin-bottom: 1rem;
  width: 100%;
}
.ul_works div figure img {
  width: 100%;
}
.ul_works div dl {
  order: 2;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-right: 2rem;
  border: 1px solid #cccccc;
  border-bottom: 0;
  font-size: 4vw;
  line-height: 1.5em;
}
.ul_works div dt {
  width: 30%;
  padding: 0.5rem;
  background-color: #EFEFEF;
  border-bottom: 1px solid #cccccc;
  border-right: 1px solid #cccccc;
}
.ul_works div dd {
  width: 70%;
  padding: 0.5rem;
  border-bottom: 1px solid #cccccc;
}
.ul_works .title {
  color: #ffffff;
  background-color: #333333;
  text-align: center;
  font-weight: bold;
}

/* ----------------------------------------------------------
 Page - Company
---------------------------------------------------------- */
body.company .art_title {
  background-image: url(images/title-company.jpg);
}
body.company .inner {
  width: 84%;
  margin: 2rem auto;
}
/* ごあいさつ */
div.greeting {
  border: 1px solid #0EB7A4;
  border-radius: 0.5rem;
  margin: 2rem 0 4rem 0;
  padding: 2rem;
  position: relative;
}
div.greeting:before {
  content: "";
  display: block;
  width: 140px;
  height: 5px;
  background-color: #0EB7A4;
  position: absolute;
  left: 50%;
  top: -2.5px;
  margin-left: -70px;
}
div.greeting h4 {
  text-align: center;
  font-size: 6vw;
  margin-bottom: 1rem;
}
div.greeting p {
  font-size: 4vw;
  line-height: 1.75em;
}
div.greeting p:last-of-type {
  text-align: right;
  margin-top: 1rem;
}
/* 共通 */
body.company div.policy,
body.company div.health,
body.company div.profile {
  border-top: 1px solid #0EB7A4;
  position: relative;
  padding: 4rem 0;;
}
body.company div.policy:before,
body.company div.health:before,
body.company div.profile:before {
  content: "";
  display: block;
  width: 140px;
  height: 5px;
  background-color: #0EB7A4;
  position: absolute;
  left: 50%;
  top: -2.5px;
  margin-left: -70px;
}
body.company div.contents h4 {
  font-size: 7.5vw;
  font-weight: bold;
  text-align: center;
  margin-bottom: 2rem;
}
body.company div.contents > p {
  font-size: 4vw;
  line-height: 1.75em;
}
/* 経営基本方針 */
div.policy ul {
  display: flex;
  flex-direction: column;
}
div.policy ul li {
  background-color: #E2F7F4;
  width: 100%;
  margin-bottom: 1rem;
  padding: 1rem;
  text-align: center;
  font-size: 4vw;
  text-align: left;
}
/* 健康経営理念 */
div.health ol {
  margin: 2rem auto;
}
div.health ol li {
  background-color: #E2F7F4;
  width: 100%;
  margin: 0 0 1rem 0;
  padding: 1rem 1rem 1rem 2.5rem;
  font-size: 0.9rem;
  counter-increment: healthnumber;
  position: relative;
}
div.health ol li:before {
  content: counter(healthnumber);
  color: #0EB7A4;
  font-size: 1.25rem;
  font-weight: bold;
  width: 1.5em;
  position: absolute;
  left: 1rem;
  top: 1rem;
}
/* 会社概要 */
div.profile dl {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  border: 1px solid #cccccc;
  border-bottom: 0;
  font-size: 4vw;
}
div.profile dl dt {
  width: 100%;
  padding: 0.5rem;
  background-color: #EFEFEF;
  border-bottom: 1px solid #cccccc;
  border-right: 1px solid #cccccc;
}
div.profile dl dd {
  width: 100%;
  padding: 0.5rem;
  border-bottom: 1px solid #cccccc;
}
div.profile dl dd a {
  color: #0EB7A4;
  display: inline-block;
  border-bottom: 1px solid #0EB7A4;
  margin-bottom: 0.5rem;
}
div.profile dl dd figure {
  display: flex;
  margin: 0.5rem 0;
}
div.profile dl dd figure img {
  width: 70px;
}
div.profile > dl > dd ul li {
  padding: 0.25em 0;
  border-bottom: 1px dotted #cccccc;
}
/* 沿革 */
div.history {
  border-top: 0;
  margin: 0 auto !important;
}
div.history:before {
  content: none;
}
div.history dl {
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  padding: 1rem;
  border-radius: 0.5rem;
}
div.history dl dt {
  color: #0EB7A4;
  font-weight: bold;
  width: 100%;
  padding: 0.5rem 0.5rem 0 0.5rem;
}
div.history dl dd {
  width: 100%;
  padding: 0 0.5rem 0.5rem 0.5rem;
  border-bottom: 1px solid #cccccc;
}
/* 沿革 */
div.qualification {
  border-top: 0;
  padding: 2rem 0 0 0;
}
div.qualification:before {
  content: none;
}
div.qualification > dl {
  margin: 0 auto 2rem auto;
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  padding: 1rem;
  border: 1px solid #0EB7A4;
  border-radius: 0.5rem;
}
div.qualification > dl > dt {
  color: #0EB7A4;
  font-weight: bold;
  width: 100%;
  padding: 0;
}
div.qualification > dl > dd {
  width: 100%;
  padding: 0.5rem 0;
}
div.qualification > dl > dd .list {
  display: flex;
  flex-direction: column;
  font-size: 4vw;
  line-height: 1.75em;
}
div.qualification > dl > dd .list dt {
  width: 100%;
  padding: 0.25rem 0 0 0;
}
div.qualification > dl > dd .list dd {
  width: 100%;
  padding: 0 0 0.25rem;
  border-bottom: 1px dotted #cccccc;
  text-align: right;
}
div.qualification > dl > dd ul li {
  padding: 0.25em 0;
  border-bottom: 1px dotted #cccccc;
}

/* ----------------------------------------------------------
 Page - Office
---------------------------------------------------------- */
body.office .art_title {
  background-image: url(images/title-office.jpg);
}
body.office .inner {
  width: 84%;
  margin: 2rem auto;
}
body.office article > div {

}
div.spot {
  border: 1px solid #0EB7A4;
  border-radius: 0.5rem;
  position: relative;
  padding: 2rem 1rem;
  margin-bottom: 2rem !important;
}
div.spot:before {
  content: "";
  display: block;
  width: 140px;
  height: 5px;
  background-color: #0EB7A4;
  position: absolute;
  left: 50%;
  top: -2.5px;
  margin-left: -70px;
}
div.spot h3 {
  font-size: 6vw;
  font-weight: bold;
  text-align: center;
}
div.spot div figure {
  width: 100%;
  margin-bottom: 1rem;
}
div.spot div figure img {
  width: 100%;
}
div.spot div dl {
  width: 100%;
  display: flex;
  flex-direction: column;
  font-size: 4vw;
  line-height: 1.75em;
}
div.spot div dl dt {
  color: #0EB7A4;
  font-weight: bold;
  width: 100%;
  padding: 0.25rem 0 0 0;
}
div.spot div dl dd {
  width: 100%;
  padding: 0.25rem 0 0.5rem 0;
  border-bottom: 1px solid #cccccc;
}
div.spot div dl dt:last-of-type,
div.spot div dl dd:last-of-type {
  border-bottom: 0;
}
div.spot div dl dd iframe {
  width: 100%;
  height: 200px;
}
div.minioffice div.spot {
  width: 100% !important;
}
div.minioffice div.spot dl {
  width: 100%;
}

/* ----------------------------------------------------------
 Page - Recruite
---------------------------------------------------------- */
body.recruit .art_title {
  background-image: url(images/title-recruit.jpg);
}
body.recruit .inner {
  width: 84%;
  margin: 2rem auto;
}
body.recruit h3 {
  font-size: 6vw;
}
body.recruit h3 span {
  padding-top: 0.25rem;
}
body.recruit h3 + p {
  margin-bottom: 1.5rem;
}
body.recruit figure.inner {
  width: 100%;
  margin: 1rem auto;
}
body.recruit h4 {
  font-size: 7.5vw;
  line-height: 1.5em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 2rem;
}
/* 募集要項 */
div.job {
  border-top: 1px solid #0EB7A4;
  position: relative;
  padding: 3rem 0;
  margin-top: 3rem;
}
div.job:before {
  content: "";
  display: block;
  width: 140px;
  height: 5px;
  background-color: #0EB7A4;
  position: absolute;
  left: 50%;
  top: -2.5px;
  margin-left: -70px;
}
div.job dl {
  margin: 2rem auto;
  display: flex;
  flex-direction: column;
  border: 1px solid #cccccc;
  border-bottom: 0;
  font-size: 4vw;
}
div.job dl h4 + p {
  margin-bottom: 3rem;
}
div.job dl dt {
  width: 100%;
  padding: 0.5rem;
  background-color: #EFEFEF;
  border-bottom: 1px solid #cccccc;
  border-right: 1px solid #cccccc;
}
div.job dl dd {
  width: 100%;
  padding: 0.5rem;
  border-bottom: 1px solid #cccccc;
}
div.job dl dd a {
  color: #999999;
  border-bottom: 1px solid  #999999;
  font-weight: bold;
}
/* 職場環境 */
body.recruit .blue {
  padding: 2rem 0;
}
body.recruit div.photo {
  display: flex;
  flex-direction: column;
  margin: 2rem 0;
}
body.recruit div.photo figure {
  width: 100%;
  position: relative;
  margin-bottom: 1rem;
}
body.recruit div.photo figcaption {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  text-align: center;
  color: #ffffff;
  background-color: rgba(00,00,00,0.6);
  padding: 1rem 0;
}
body.recruit .blue dl {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 2rem auto;
}
body.recruit .blue dl dt {
  width: 100%;
  margin-bottom: 0.5rem;
}
body.recruit .blue dl dd {
  width: 100%;
  margin-bottom: 1rem;
  font-size: 4vw;
  line-height: 1.5em;
}
body.recruit .blue h5 {
  color: #0EB7A4;
  font-weight: bold;
  font-size: 6vw;
}
div.other figure {
  width: 100%;
  margin-bottom: 1rem;
}
div.other div {
  width: 100%;
}
div.other div ul {
  margin-top: 1rem;
  font-size: 4vw;
  line-height: 1.5em;
}
div.other div ul li {
  margin-bottom: 0.5rem;
}
div.other div ul li:before {
  content: "■";
}
body.recruit .blue + article {
  text-align: center;
}

/* ----------------------------------------------------------
 Page - Contact
---------------------------------------------------------- */
body.contact .art_title,
body.contact-confirm .art_title,
body.contact-completion .art_title {
  background-image: url(images/title-contact.jpg);
}
body.contact .inner,
body.contact-confirm .inner,
body.contact-completion .inner {
  width: 84%;
  margin: 2rem auto;
}
body.contact article.inner div {
  border: 1px solid #0EB7A4;
  border-radius: 0.5rem;
  padding: 1rem;
  position: relative;
  display: flex;
  flex-direction: column;
  margin: 3rem auto 4rem auto;
}
body.contact article.inner div:before {
  content: "";
  display: block;
  width: 140px;
  height: 5px;
  background-color: #0EB7A4;
  position: absolute;
  left: 50%;
  top: -2.5px;
  margin-left: -70px;
}
body.contact article.inner div h3 {
  font-size: 6vw;
  margin: 0 1rem;
}
body.contact article.inner div h3 span {
  display: inline-block;
  color: #0EB7A4;
  margin-right: 0.5rem;
  padding: 0;
}
body.contact article.inner div p {
  width: 100%;
  color: #ffffff;
  background-color: #0EB7A4;
  margin: 1rem 0 0 0;
  padding: 0.5rem;
  font-weight: bold;
  text-align: center;
}
.form {
  background-color: #EFEFEF;
  padding: 2rem 0;
}
body.contact-completion .form {
  background-color: #ffffff;
}
.form .formbox {
  margin: 2rem 0;
  padding: 1rem;
  border-radius: 0.5rem;
  background-color: #ffffff;
  text-align: center;
}
.form .formbox dl {
  display: flex;
  flex-direction: column;
  text-align: left;
  font-size: 4vw;
}
.form .formbox dl dt {
  width: 100%;
  padding: 0.5rem 0.25rem 0.25rem 0.25rem;
}
.form .formbox dl dt span {
  color: #ffffff;
  background-color: #0EB7A4;
  border-radius: 0.25rem;
  font-size: 4vw;
  padding: 0.25rem 0.5rem;
  margin-left: 0.5rem;
}
.form .formbox dl dd {
  width: 100%;
  padding: 0.25rem 0.25rem 1rem 0.25rem;
  border-bottom: 1px solid #cccccc;
}
.form .formbox dl dd input,
.form .formbox dl dd textarea {
  width: 100%;
  padding: 0.5rem;
  background-color: #E2F7F4;
  resize: vertical;
}
.form .formbox dl dd .mwform-tel-field input {
  width: initial;
}
.form h4,
.form h4 + p {
  font-size: 0.9rem;
}
body.contact footer .sec_contact,
body.contact-confirm footer .sec_contact,
body.contact-completion footer .sec_contact {
  display: none;
}

/* ----------------------------------------------------------
 Page - Privacy Policy
---------------------------------------------------------- */
body.privacy-policy .art_title {
  background-image: url(images/title-contact.jpg);
}
body.privacy-policy .art_title h2 {
  width: 100%;
}
body.privacy-policy .inner {
  width: 84%;
  margin: 2rem auto;
}
body.privacy-policy dl {
  margin: 2rem auto;
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  padding: 1rem;
  border: 1px solid #0EB7A4;
  border-radius: 0.5rem;
  font-size: 4vw;
  line-height: 1.75em;
}
body.privacy-policy dl dt {
  color: #0EB7A4;
  font-weight: bold;
  width: 100%;
  padding: 0.5rem 0 0 0;
}
body.privacy-policy dl dd {
  width: 100%;
  padding: 0 0 0.5rem 0;
  border-bottom: 1px solid #cccccc;
}
body.privacy-policy dl dt:last-of-type,
body.privacy-policy dl dd:last-of-type {
  border-bottom: 0;
}

/* ----------------------------------------------------------
 Page - Single お知らせ
---------------------------------------------------------- */
body.single .art_title,
body.archive .art_title {
  background-image: url(images/title-news.jpg);
  background-position: 50% center;
}
body.single footer article,
body.archive footer article,
body.date footer article {
  margin-top: 4rem;
}
body.single .inner,
body.archive .inner,
body.date .inner {
  width: 84%;
  margin: 2rem auto;
}
.sec_single h3 {
  font-size: 6vw;
  border-bottom: 1px solid #0EB7A4;
  padding-bottom: 0.5rem;
  margin-bottom: 0.25rem;
}
.sec_single .inner {
  display: flex;
  flex-direction: column;
}
/* Sidebar */
.sec_single .inner aside {
  order: 2;
  width: 100%;
}
.sec_single .inner aside > div {
  border: 1px solid #0EB7A4;
  border-radius: 0.5rem;
  padding: 1rem;
  margin-bottom: 2rem;
  position: relative;
}
.sec_single .inner aside > div:before {
  content: "";
  display: block;
  width: 80px;
  height: 5px;
  background-color: #0EB7A4;
  position: absolute;
  left: 50%;
  top: -2.5px;
  margin-left: -40px;
}
.sec_single .inner aside ul li {
  border-bottom: 1px dashed #cccccc;
  padding: 0.5rem 0;
}
.sec_single .inner aside ul li time {
  color: #0EB7A4;
  font-size: 4vw;
  font-weight: bold;
  display: block;
}
/* News */
.sec_single .inner article.right {
  order: 1;
  width: 100%;
  margin-bottom: 3rem;
}
.sec_single .inner article.right article {
  border-top: 1px solid #0EB7A4;
  padding: 1.5rem 0;
}
.sec_single .inner article.text time {
  color: #0EB7A4;
  font-size: 4vw;
  font-weight: bold;
  display: block;
  margin-bottom: 1rem;
}
body.single .sec_single .inner article.text p {
  margin-bottom: 1rem;
}
body.single .sec_single .inner article.text img {
  padding: 0.5rem;
  border: 1px solid #cccccc;
  width: 100% !important;
  height: auto !important;
}
.sec_single p.more {
  text-align: center;
}
.sec_single p.more span {
  display: inline-block;
  padding: 0.75rem 5rem;
  margin-top: 2rem;
  color: #0EB7A4;
  background-color: #ffffff;
  border: 1px solid #0EB7A4;
  font-weight: bold;
  position: relative;
}
.sec_single p.more span:before,
.sec_single p.more span:after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  height: 1px;
  background: #0EB7A4;
}
.sec_single p.more span:before {
  width: 60px;
  transform: translate(20px, 0px);
}
.sec_single p.more span:after {
  width: 10px;
  transform-origin: right center;
  transform: translate(20px, 0px) rotate(45deg);
}
/* category.php */
body.archive .sec_single .inner article.right article:last-of-type {
  border-bottom: 1px solid #0EB7A4;
}
.sec_single .inner article.right article h3 {
  border-bottom: 1px dashed #cccccc;
}
/* date.php */
body.date .sec_single .inner article.right > h3 {
  font-size: 6vw;
  color: #0EB7A4;
  margin-bottom: 2rem;
  border-bottom: 0;
}
/* pagination */
div.pagination {
  display: flex;
  justify-content: flex-start;
  clear:both;
  padding: 0;
  position:relative;
  background:none;
  margin: 1rem 0 0 0;
  vertical-align: middle;
}
div.pagination span,
.pagination a {
  display:block;
  float:left ;
  margin: 2px 2px 2px 0 ;
  padding:6px 9px 5px 9px ;
  text-decoration:none;
  width:auto;
  color:#fff;
  background-color: #666666;
  transition: .6s;
}
div.pagination a:hover{
  color: #ffffff;
  background: #0EB7A4; !important;
  transition: .6s;
}
div.pagination .current{
  padding:6px 9px 5px 9px ;
  background: #0EB7A4; !important;
  color: #fff;
}
div.pagination li {
  list-style-type: none;
}













































