@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600&family=Barlow:wght@600&family=Noto+Sans+JP:wght@300;400;500;700;900&display=swap"); /* 
Theme Name: Vista株式会社
Theme URI: vista-corporation.com
Description: Vista株式会社ホームページ
Version: 1.0
Author: Nishiwaki
Author URI: https://vista-corporation.com
*/
/* Font */
/* color */
/* block-btn-company */
/* block-btn */
/* Base Style*/
*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 62.5%;
}

:root {
  --vw: 1vw;
}

body {
  font-family: "Noto Sans JP", sans-serif, "游ゴシック", YuGothic, "メイリオ", Verdana, "Hiragino Kaku Gothic ProN", Meiryo;
  font-size: 1.6rem;
  line-height: 1.75;
  color: #000000;
  background-color: #ffffff;
}

html,
body {
  height: 100%;
}

a,
a:hover {
  text-decoration: none;
  color: #000000;
}

h2 {
  font-size: 5vw;
  line-height: 10rem;
  color: #000000;
}

h3 {
  font-size: 4rem;
}

h4 {
  font-size: 3rem;
  color: #3DBFF2;
}

h5 {
  font-size: 1.8vw;
  line-height: 6rem;
  color: #000000;
}

.fa-solid,
.fas {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #000000;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.link {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Loader */
.wrap {
  overflow: hidden;
}

#splash {
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100%;
  background: #ffffff;
  text-align: center;
  color: #3DBFF2;
}

#splash_logo {
  position: absolute;
  top: 30%;
  left: 50%;
  z-index: 999;
  width: 100%;
  transform: translate(-50%, -50%);
}

.logo {
  width: 10%;
  height: 10%;
}

#splash_text {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 999;
  width: 100%;
  transform: translate(-50%, -50%);
  color: #3DBFF2;
}

#splash_text svg {
  height: 2px;
}

#wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}

span.smoothText {
  overflow: hidden;
  display: block;
}

span.smoothTextTrigger {
  transition: 0.8s ease-in-out;
  transform: translate3d(0, 100%, 0) skewY(12deg);
  transform-origin: left;
  display: block;
}

span.smoothTextTrigger.smoothTextAppear {
  transform: translate3d(0, 0, 0) skewY(0);
}

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeUpTrigger {
  opacity: 0;
}

.delay-time02 {
  animation-delay: 0.2s;
}

.delay-time04 {
  animation-delay: 0.4s;
}

.fadeLeft {
  animation-name: fadeLeftAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeLeftTrigger {
  opacity: 0;
}

.disable-auto-tel a[href^="tel:"] {
  color: inherit;
  text-decoration: none;
  pointer-events: none;
}

/* Base (PC) */
.header {
  top: 0;
  display: flex;
  position: fixed;
  align-items: center;
  justify-content: space-between;
  z-index: 100;
  width: 100%;
  height: 80px;
  padding: 0 0 0 2rem;
  background-color: #ffffff;
  box-sizing: border-box;
}

.header h1 {
  float: left;
  padding: 5px 5px;
  margin: 0;
}

.header h1 a {
  display: block;
  height: 70px;
  width: 70px;
  font-size: 0;
  background: url(../images/logo.svg) left top/70px auto no-repeat;
}

.openbtn {
  position: fixed;
  z-index: 9999;
  right: 2rem;
  cursor: pointer;
  width: 100px;
  height: 100px;
}

.openbtn .openbtn-area {
  transition: all 0.6s;
}

.openbtn span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 14px;
  height: 3px;
  background-color: #000000;
  width: 45%;
}

.openbtn span:nth-of-type(1) {
  top: 30px;
}

.openbtn span:nth-of-type(2) {
  top: 50px;
  background-color: #3DBFF2;
}

.openbtn span:nth-of-type(3) {
  top: 70px;
}

.openbtn.active .openbtn-area {
  transform: rotateY(-360deg);
}

.openbtn.active span:nth-of-type(1) {
  top: 45px;
  left: 10px;
  transform: translateY(6px) rotate(-135deg);
  width: 50%;
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
  top: 57px;
  left: 10px;
  transform: translateY(-6px) rotate(135deg);
  width: 50%;
}

#g-nav {
  position: fixed;
  z-index: 999;
  top: -120%;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #EAE7E0;
  transition: all 0.6s;
}

#g-nav.panelactive {
  top: 0;
}

#g-nav.panelactive #g-nav-list {
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

#g-nav ul {
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0;
}

#g-nav li {
  list-style: none;
  text-align: center;
}

#g-nav li a {
  color: #000000;
  text-decoration: none;
  padding: 10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
}

.kv-wrap {
  width: 100%;
  height: 100%;
}
.kv-wrap .kv-cont {
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100 - 80px);
  width: 100%;
  margin-top: 80px;
}
.kv-wrap .kv-cont .kv-main {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  height: 100%;
  position: relative;
}
.kv-wrap .kv-cont .kv-main .kv-catch {
  position: absolute;
  top: 0;
  right: 0;
  width: 75%;
  height: 110px;
  padding: 30px 0 0 0;
  z-index: 5;
  text-align: right;
}
.kv-wrap .kv-cont .kv-main .kv-catch h2 {
  display: inline-block;
  margin: 0;
  font-size: 5.5rem;
  line-height: 8rem;
  font-weight: 900;
}
.kv-wrap .kv-cont .kv-main .kv-catch-e {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 75%;
  height: 100%;
  padding: 30px 0 0 0;
  z-index: 5;
}
.kv-wrap .kv-cont .kv-main .kv-catch-e h2 {
  display: inline-block;
  margin: 0;
  color: #3DBFF2;
  font-size: 10rem;
  line-height: 12rem;
  font-weight: 900;
}
.kv-wrap .kv-cont .kv-main .kv-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 75%;
  height: 80%;
  z-index: 4;
}
.kv-wrap .kv-cont .kv-main .kv-image .kv-image-bg {
  background-image: url(../images/top_pc.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 100%;
  margin: 0;
}
.kv-wrap .kv-cont .kv-main .kv-image .kv-image-bg h2 {
  position: absolute;
  bottom: 0;
  display: inline-block;
  margin: 0;
  color: #3DBFF2;
  font-size: 6rem;
  line-height: 6rem;
  font-weight: 900;
  z-index: 5;
}
.kv-wrap .kv-cont .kv-main .kv-back {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 75%;
  height: 75%;
  z-index: 3;
}
.kv-wrap .kv-cont .kv-main .kv-back .kv-back-bg {
  background-image: url(../images/back1.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right;
  height: 100%;
  margin: 0;
}
.kv-wrap .kv-cont .kv-main .scrolldown {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  z-index: 5;
}
.kv-wrap .kv-cont .kv-main .scrolldown span {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -15px;
  color: #000000;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  z-index: 5;
}
.kv-wrap .kv-cont .kv-main .scrolldown::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 30px;
  background: #000000;
  animation: pathmove 1.4s ease-in-out infinite;
  opacity: 0;
}
@keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }
  30% {
    height: 30px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 50px;
    opacity: 0;
  }
}

.company-cont {
  height: 800px;
  width: 100%;
  margin-top: 150px;
  background-color: #EAE7E0;
}
.company-cont .company-title {
  height: 200px;
  width: 100%;
  padding-top: 50px;
  text-align: center;
}
.company-cont .company-description {
  width: 100%;
  margin: 0;
}
.company-cont .company-description .company-text {
  height: 400px;
  width: 100%;
  text-align: center;
  vertical-align: middle;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: left;
  justify-content: center;
}
.company-cont .company-description .company-text .company-text-inner {
  width: 100%;
  padding: 50px 30%;
  margin: auto 0;
  line-height: 5rem;
}
.company-cont .company-description .company-text .company-text-inner p {
  margin: 0;
}

.block-btn-company-wrap {
  height: 100px;
  width: 100%;
}

.block-btn-company a {
  background: #ffffff;
  border-radius: 3px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  max-width: 220px;
  padding: 10px 25px;
  transition: 0.3s ease-in-out;
  font-weight: 500;
}
.block-btn-company a::before {
  content: "";
  position: absolute;
  bottom: -7px;
  right: -7px;
  width: 100%;
  height: 2px;
  background-color: #000000;
  transition: 0.2s ease 0s;
}
.block-btn-company a::after {
  content: "";
  position: absolute;
  top: 7px;
  right: -7px;
  width: 2px;
  height: 100%;
  background-color: #000000;
  transition: 0.2s ease 0.2s;
}
.block-btn-company a:hover::before {
  width: 0%;
}
.block-btn-company a:hover::after {
  height: 0%;
}
.block-btn-company a:hover {
  text-decoration: none;
  color: #ffffff;
  background-color: #3DBFF2;
}

.block-btn a {
  background: #EAE7E0;
  border-radius: 3px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  max-width: 220px;
  padding: 10px 25px;
  transition: 0.3s ease-in-out;
  font-weight: 500;
}
.block-btn a::before {
  content: "";
  position: absolute;
  bottom: -7px;
  right: -7px;
  width: 100%;
  height: 2px;
  background-color: #000000;
  transition: 0.2s ease 0s;
}
.block-btn a::after {
  content: "";
  position: absolute;
  top: 7px;
  right: -7px;
  width: 2px;
  height: 100%;
  background-color: #000000;
  transition: 0.2s ease 0.2s;
}
.block-btn a:hover::before {
  width: 0%;
}
.block-btn a:hover::after {
  height: 0%;
}
.block-btn a:hover {
  text-decoration: none;
  color: #ffffff;
  background-color: #3DBFF2;
}

.service-wrap {
  width: 100%;
  height: 100%;
}
.service-wrap .service-cont {
  width: 100%;
  margin: 80px 0;
}
.service-wrap .service-title {
  width: 100%;
  height: 100px;
  text-align: center;
}
.service-wrap .service-sub {
  width: 100%;
  margin: 50px 0;
}
.service-wrap .service-sub h3 {
  font-size: 3rem;
  margin: 0 5%;
}

.service-main {
  width: 100%;
  height: auto;
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: row;
  padding: 0 5%;
}
.service-main .service-item {
  width: 20vw;
  height: 20vw;
  text-align: center;
  background-color: #EAE7E0;
  box-sizing: border-box;
  position: relative;
}
.service-main .service-item a {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 0;
  -webkit-box-shadow: 20px 20px 0 #3DBFF2;
  box-shadow: 20px 20px 0 #3DBFF2;
  transition: -webkit-box-shadow 0.3s;
  transition: box-shadow 0.3s;
}
.service-main .service-item a:hover {
  -webkit-box-shadow: -20px -20px 0 #3DBFF2;
  box-shadow: -20px -20px 0 #3DBFF2;
}
.service-main .service-item h4 {
  color: #000000;
  font-size: 1.6rem;
  margin: 30px 0;
}
.service-main .service-item .service-image {
  width: 80%;
  text-align: center;
  margin: auto;
}
.service-main .service-item .service-image img {
  display: block;
  object-fit: contain;
  max-width: 80%;
  margin: auto;
}

.recruit-wrap {
  width: 100%;
  height: 100%;
}
.recruit-wrap .recruit-cont {
  width: 100%;
  margin: 80px 0 0;
}
.recruit-wrap .recruit-title {
  width: 100%;
  height: 100px;
  text-align: center;
}
.recruit-wrap .recruit-main {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  width: 100%;
  height: 1000px;
}
.recruit-wrap .recruit-main .recruit-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 50%;
  z-index: 4;
}
.recruit-wrap .recruit-main .recruit-image .recruit-image-bg {
  background-image: url(../images/recruit_pc.jpeg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 100%;
  margin: 0;
}
.recruit-wrap .recruit-main .recruit-image .recruit-image-bg h2 {
  position: absolute;
  bottom: 0;
  display: inline-block;
  margin: 0;
  color: #3DBFF2;
  font-size: 10rem;
  line-height: 12rem;
  font-weight: 900;
  z-index: 5;
}
.recruit-wrap .recruit-main .recruit-text {
  position: absolute;
  bottom: 200px;
  left: 0;
  width: 80%;
  height: 70%;
  z-index: 3;
}
.recruit-wrap .recruit-main .recruit-text .recruit-text-inner {
  background-image: url(../images/back2.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right;
  height: 100%;
  margin: 0;
}
.recruit-wrap .recruit-main .recruit-text .recruit-text-inner p {
  padding: 10% 50% 0 10%;
  margin: auto 0;
  line-height: 5rem;
}
.recruit-wrap .recruit-main .recruit-btn {
  position: absolute;
  bottom: 0px;
  height: 100px;
  width: 100%;
  padding: 10px 0 0;
}

.contact-wrap {
  width: 100%;
  height: 100%;
}
.contact-wrap .contact-cont {
  width: 100%;
  margin-top: 50px;
}
.contact-wrap .contact-cont .contact_container {
  display: flex;
  position: relative;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  height: auto;
  padding-right: 0px;
  padding-left: 0px;
  margin-right: auto;
  margin-left: auto;
}
.contact-wrap .contact-cont .contact-title {
  height: 100px;
  width: 100%;
  text-align: center;
}
.contact-wrap .contact-cont .contact-text {
  height: 200px;
  width: 100%;
  display: flex;
  justify-content: center;
  color: #3DBFF2;
  position: relative;
}
.contact-wrap .contact-cont .contact-text p {
  position: absolute;
  bottom: 50px;
  font-size: 2.5rem;
}
.contact-wrap .contact-cont .contact_item {
  display: flex;
  position: relative;
  width: 30%;
  height: 200px;
  margin-bottom: 3rem;
  margin-right: auto;
  margin-left: auto;
  background-color: #3DBFF2;
  align-items: center;
}
.contact-wrap .contact-cont .contact_item .link {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.contact-wrap .contact-cont .fa-solid {
  font-size: 40px;
  width: 50px;
  height: auto;
  text-align: center;
  vertical-align: bottom;
  padding-left: 3rem;
  padding-right: 3rem;
}
.contact-wrap .contact-cont .contact_item p {
  display: block;
  text-align: right;
  font-size: 1.6rem;
  vertical-align: right;
  margin: 0;
  margin-left: 5rem;
}

_:lang(x) + _:-webkit-full-screen-document .contact-cont .contact-area,
.contact-wrap .contact-cont .contact-area {
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
}
_:lang(x) + _:-webkit-full-screen-document .contact-cont .parallax-window,
.contact-wrap .contact-cont .parallax-window {
  min-height: 400px;
  background: transparent;
}

.news-wrap {
  width: 100%;
  height: 100%;
}
.news-wrap .news-cont {
  height: 100%;
  width: 100%;
  margin: 50px 0 0;
}
.news-wrap .news-cont .news-title {
  height: 100px;
  width: 100%;
  text-align: center;
}
.news-wrap .news-cont .news-area .news-list {
  width: 100%;
  height: 100%;
  display: inline-block;
  list-style: none outside;
  margin: 80px 0 0;
  padding: 0;
}
.news-wrap .news-cont .news-area .news-list .news-item {
  width: 90%;
  height: 90px;
  margin: 0 auto;
  padding: 20px 0;
  border-bottom: solid 2px #3DBFF2;
}
.news-wrap .news-cont .news-area .news-list .news-item .news-text {
  display: flex;
  line-height: 50px;
}
.news-wrap .news-cont .news-area .news-list .news-item .news-text a {
  transition: all 0.3s;
}
.news-wrap .news-cont .news-area .news-list .news-item .news-text .news-meta {
  display: flex;
  justify-content: stretch;
  width: 30%;
  height: 50px;
  text-align: center;
}
.news-wrap .news-cont .news-area .news-list .news-item .news-text .news-meta time {
  width: 60%;
}
.news-wrap .news-cont .news-area .news-list .news-item .news-text .news-meta p {
  width: 40%;
  margin: 0;
  background-color: #EAE7E0;
  line-height: 30px;
  margin: 10px 5px;
}
.news-wrap .news-cont .news-area .news-list .news-item .news-text .news-head {
  width: 70%;
  height: 50px;
  margin-left: 2vw;
}
.news-wrap .news-cont .news-btn {
  height: 200px;
  width: 100%;
  padding: 100px 0 0;
}

.footer-wrap {
  width: 100%;
  height: 100%;
  margin-top: 100px;
}
.footer-wrap .footer-cont {
  display: flex;
  position: relative;
  z-index: 2;
  width: 100%;
  background-color: #EAE7E0;
}
.footer-wrap .footer-cont .footer-profile {
  width: 50%;
  margin: 80px 0 80px 10%;
  color: #000000;
}
.footer-wrap .footer-cont .footer-profile h6 {
  font-size: 24px;
  padding-top: 30px;
  margin: 0;
  font-weight: 600;
}
.footer-wrap .footer-cont .footer-profile p {
  font-size: 14px;
  padding-top: 10px;
  margin: 0;
}
.footer-wrap .footer-cont .footer-menu {
  width: 50%;
  margin: 80px 10% 80px 0;
  display: flex;
  align-items: center;
}
.footer-wrap .footer-cont .footer-menu .footer-sitenav {
  text-align: center;
}
.footer-wrap .footer-cont .footer-menu .footer-nav {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
}
.footer-wrap .footer-cont .footer-menu .footer-nav li {
  display: inline-block;
  margin: 15px;
}
.footer-wrap .footer-cont .copyright {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  padding-bottom: 1vh;
}

/* ページトップ */
.pageTitle {
  display: flex;
  width: 100%;
  height: 10rem;
  margin-top: 10vh;
  margin-bottom: 5rem;
}

.pageTitle_text {
  position: relative;
  display: flex;
  flex-direction: column;
  margin-left: 3rem;
  width: 20%;
  height: 10rem;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  z-index: 3;
}

.pageTitle_text h2 {
  position: static;
  text-align: center;
  width: 100%;
  font-size: 40px;
}

.pageTitle_text span {
  position: static;
  text-align: center;
  width: 100%;
  font-size: 18px;
}

@media screen and (min-width: 520px) {
  .text-orange {
    display: block;
  }
  .text-inner {
    width: 50%;
    overflow: hidden;
  }
  .text {
    font-size: 40px;
  }
  .text-orange .text {
    width: 200%;
  }
  .text-black {
    display: block;
  }
}
@media screen and (min-width: 960px) {
  .bg {
    width: 80%;
    height: 80%;
    position: relative;
    overflow: hidden;
    margin-left: auto;
    z-index: 1;
  }
  .text-block {
    transform: none;
  }
  .text-black {
    bottom: 12.5%;
    left: -12.5%;
  }
  .text-orange {
    width: auto;
    bottom: 30%;
    left: 10%;
  }
  .text-inner {
    width: 100%;
  }
  .text {
    font-size: 54px;
    text-align: left;
    letter-spacing: 0.1em;
  }
  .text-orange .text {
    width: 100%;
  }
}
/* 404ページ */
.container-404 {
  margin-bottom: 10rem;
}
.container-404 p {
  text-align: center;
  padding: 0 20px;
}
.container-404 a {
  text-decoration: underline;
  color: #000000;
}

/* パンくず */
.breadcrumb {
  background-color: transparent;
  font-size: 14px;
  margin-left: 10rem;
}
.breadcrumb a {
  color: #000000;
}
.breadcrumb span {
  padding-right: 5px;
}
.breadcrumb i {
  padding-right: 5px;
}

/* 記事ページ */
.single-main {
  padding: 50px 0 0 0;
}

.single-container {
  width: 100%;
  padding-right: 10rem;
  padding-left: 10rem;
  margin-right: auto;
  margin-left: auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -3rem;
  margin-left: -3rem;
}

.col-12 {
  width: 100%;
}

.col-md-9 {
  width: 100%;
  min-height: 1px;
  padding-right: 3rem;
  padding-left: 3rem;
}

.article-title {
  font-size: 32px;
  font-weight: 600;
  text-align: center;
}

.article-header h2 {
  display: block;
  box-sizing: border-box;
  position: static;
}

.article-meta {
  display: flex;
  padding: 20px 0;
  align-items: center;
  justify-content: space-between;
}
.article-meta ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  padding-left: 0;
  font-size: 14px;
}
.article-meta ul li a {
  line-height: 1;
  display: inline-block;
  padding: 5px 10px;
  margin-right: 5px;
  font-size: 14px;
  color: #ffffff;
  background-color: #000000;
  text-decoration: none;
}

.postLinks {
  margin-top: 20px;
  padding: 20px 0;
  border-top: 1px solid #000000;
  display: flex;
}

.postLink {
  width: 50%;
}
.postLink a {
  font-size: 16px;
  text-decoration: none;
  color: #000000;
}

.postLink-next {
  text-align: right;
}

.col-md-3 {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 3rem;
  padding-left: 3rem;
}
.col-md-3 .archive-sec {
  border: 1px solid #000000;
  margin-bottom: 30px;
  background-color: #ffffff;
}
.col-md-3 .archive-sec a {
  text-decoration: none;
  color: #000000;
}

.archive-sec {
  border: 1px solid #000000;
  margin-bottom: 30px;
  background-color: #ffffff;
}
.archive-sec ul {
  list-style: none;
  padding-left: 10px;
  margin-top: 0;
  margin-bottom: 1rem;
}

.archive-title {
  font-size: 16px;
  padding: 20px 8px;
  line-height: 1;
  border-bottom: 1px solid #000000;
  background-color: #000000;
  color: #ffffff;
}

/* 記事一覧ページ */
.main-title {
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 5rem;
}

.col-md-4 {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
  margin-top: 10px;
}

.loop-news-pic {
  margin-bottom: 10px;
}
.loop-news-pic a {
  display: inline-block;
}
.loop-news-pic img {
  height: auto;
  max-width: 100%;
  display: block;
}

.loop-news-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 0;
  font-size: 12px;
}
.loop-news-meta ul {
  list-style: none;
  padding: 0;
  align-items: center;
  justify-content: space-between;
}
.loop-news-meta a {
  padding: 1px 5px;
  background-color: #000000;
  color: #ffffff;
}
.loop-news-meta .news-time {
  margin-left: 5px;
}

.loop-news-title {
  font-size: 18px;
  padding: 10px 0;
  line-height: 1.2;
}
.loop-news-title a {
  color: #000000;
}

.loop-news-desc a {
  color: #000000;
}
.loop-news-desc p {
  font-size: 13px;
  margin-bottom: 5px;
  line-height: 1.5;
  margin: 0 0 1em 0;
}

.wp-pagenavi {
  clear: both;
  margin: 10rem 0;
}
.wp-pagenavi a,
.wp-pagenavi span {
  text-decoration: none;
  border: 1px solid #000000;
  padding: 3px 5px;
  margin: 2px;
  color: #000000;
}

.wp-pagenavi span.current {
  font-weight: bold;
}

.wp-pagenavi a:hover,
.wp-pagenavi span.current {
  border-color: #EAE7E0;
}

@media screen and (min-width: 520px) {
  .main-title {
    font-size: 32px;
  }
}
/* お問い合わせ */
.form {
  position: relative;
  overflow-wrap: anywhere;
}
.form .btn {
  color: #ffffff;
  background-color: #000000;
  font-size: 16px;
  margin: 2rem;
  padding: 1rem;
}

.form-content {
  width: 100%;
  height: auto;
}
.form-content .mwform-tel-field input[type=text],
.form-content .mwform-tel-field .mwform-zip-field input[type=text] {
  width: 100px;
}
.form-content .mwform-tel-field input {
  padding: 1em 0.3em;
}
.form-content input {
  box-sizing: border-box;
  padding: 1em;
  border: 1px solid #000000;
  width: 100%;
}
.form-content textarea {
  box-sizing: border-box;
  padding: 1em;
  border: 1px solid #000000;
  width: 100%;
}

.form-label {
  margin: 1rem 0;
}
.form-label span {
  display: inline-block;
  font-size: 12px;
  padding: 0.5rem;
  margin-left: 1rem;
  color: #000000;
}

.form-row {
  margin-bottom: 2rem;
}

.form-row-center {
  justify-content: center;
}

/*会社案内ページ*/
.mission-wrap {
  width: 100%;
  height: 100%;
}
.mission-wrap .mission-cont {
  height: 100%;
  width: 100%;
  margin: 50px 0 0;
}
.mission-wrap .mission-cont .mission-title {
  height: 100px;
  width: 100%;
  padding-left: 10%;
}
.mission-wrap .mission-cont .mission-img-area {
  height: 70%;
  width: 100%;
}
.mission-wrap .mission-cont .mission-img-area .mission-img {
  text-align: center;
}
.mission-wrap .mission-cont .mission-img-area .mission-img img {
  width: 45%;
  heigth: auto;
}

.greeting-wrap {
  width: 100%;
  height: 100%;
}
.greeting-wrap .greeting-cont {
  height: 100%;
  width: 100%;
  margin: 50px 0 0;
}
.greeting-wrap .greeting-cont .greeting-title {
  height: 100px;
  width: 100%;
  padding-left: 10%;
}
.greeting-wrap .greeting-cont .greeting-wrapper {
  display: flex;
  width: 100%;
  margin-top: 50px;
  padding: 0 10%;
}
.greeting-wrap .greeting-cont .greeting-wrapper .greeting-text-area {
  width: 50%;
  padding-right: 5%;
}
.greeting-wrap .greeting-cont .greeting-wrapper .greeting-text-area .signatures {
  text-align: right;
}
.greeting-wrap .greeting-cont .greeting-wrapper .greeting-text-area .signatures p {
  font-size: 2rem;
  margin: 40px 0 0;
  color: #000000;
}
.greeting-wrap .greeting-cont .greeting-wrapper .greeting-text-area .signatures h5 {
  font-size: 3rem;
  color: #000000;
  margin: 0;
}
.greeting-wrap .greeting-cont .greeting-wrapper .greeting-img-area {
  height: 100%;
  width: 50%;
  margin: auto;
}
.greeting-wrap .greeting-cont .greeting-wrapper .greeting-img-area .greeting-img {
  text-align: center;
  vertical-align: middle;
}
.greeting-wrap .greeting-cont .greeting-wrapper .greeting-img-area .greeting-img img {
  width: 80%;
  heigth: auto;
}

.profile-wrap {
  width: 100%;
  height: 100%;
}
.profile-wrap .profile-cont {
  height: 100%;
  width: 100%;
  margin: 100px 0 0;
}
.profile-wrap .profile-cont .profile-title {
  height: 100px;
  width: 100%;
  padding-left: 10%;
}
.profile-wrap .profile-cont .profile-content {
  padding: 0 15%;
  margin-top: 50px;
  box-sizing: border-box;
}
.profile-wrap .profile-cont .profile-content table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-top: 1px solid #000000;
  border-right: 1px solid #000000;
  border-left: 1px solid #000000;
}
.profile-wrap .profile-cont .profile-content tr {
  position: relative;
  width: 100%;
  border-spacing: 0px;
  border-bottom: 1px solid #000000;
  height: auto;
}
.profile-wrap .profile-cont .profile-content th {
  vertical-align: top;
  width: 25%;
  height: 100%;
  padding: 2rem;
  border-bottom: 1px solid #000000;
  display: table-cell;
  background-color: #000000;
  color: #ffffff;
}
.profile-wrap .profile-cont .profile-content td {
  display: table-cell;
  width: 75%;
  height: 100%;
  padding: 2rem;
  border-bottom: 1px solid #000000;
}

.map-wrap {
  width: 100%;
  height: 100%;
}
.map-wrap .map-cont {
  height: 100%;
  width: 100%;
  margin: 100px 0 0;
}
.map-wrap .map-cont .map-title {
  height: 100px;
  width: 100%;
  padding-left: 10%;
}
.map-wrap .map-cont .map-wrapper {
  width: 100%;
}
.map-wrap .map-cont .map-wrapper .security {
  width: 100%;
  padding: 0 10%;
  margin-top: 50px;
  display: flex;
  flex-direction: row-reverse;
}
.map-wrap .map-cont .map-wrapper .security .security-text-area {
  width: 50%;
  text-align: center;
  padding: 0 20px;
  margin: auto;
}
.map-wrap .map-cont .map-wrapper .security .security-img-area {
  width: 50%;
}
.map-wrap .map-cont .map-wrapper .security .security-img-area .security-img {
  text-align: center;
  vertical-align: middle;
}
.map-wrap .map-cont .map-wrapper .security .security-img-area .security-img img {
  width: 80%;
  heigth: auto;
}
.map-wrap .map-cont .map-wrapper .googlemap-title {
  width: 100%;
  box-sizing: border-box;
  margin: 100px 0 30px;
  padding: 0 10%;
}
.map-wrap .map-cont .map-wrapper .googlemap-title .googlemap-title-inner {
  text-align: center;
}
.map-wrap .map-cont .map-wrapper .googlemap-title .googlemap-title-inner i {
  font-size: 2rem;
  display: inline-block;
}
.map-wrap .map-cont .map-wrapper .googlemap-title .googlemap-title-inner p {
  font-size: 2rem;
  display: inline-block;
}
.map-wrap .map-cont .map-wrapper .googlemap {
  max-width: 1200px;
  margin: auto;
}
.map-wrap .map-cont .map-wrapper .googlemap-inner {
  position: relative;
  width: 100%;
  padding-top: 75%;
}
.map-wrap .map-cont .map-wrapper .googlemap-inner iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 80%;
  height: 100%;
  margin: 0 10%;
}
.map-wrap .map-cont .map-wrapper .access {
  display: flex;
  justify-content: center;
  vertical-align: center;
  margin: 30px 10%;
}
.map-wrap .map-cont .map-wrapper .access ul {
  padding-inline-start: 2rem;
}
.map-wrap .map-cont .map-wrapper .access i {
  display: inline-block;
  padding: 0;
  font-size: 18px;
}
.map-wrap .map-cont .map-wrapper .access p {
  display: inline-block;
  font-size: 18px;
}
.map-wrap .map-cont .map-wrapper .train {
  padding-bottom: 2rem;
  margin: 0 30px;
}
.map-wrap .map-cont .map-wrapper .car {
  padding-bottom: 2rem;
  margin: 0 30px;
}

@media screen and (max-width: 960px) {
  .mission-wrap .mission-cont .mission-img-area .mission-img img {
    width: 70%;
  }
  .greeting-wrap .greeting-cont .greeting-wrapper {
    margin-top: 10px;
    flex-direction: column-reverse;
  }
  .greeting-wrap .greeting-cont .greeting-wrapper .greeting-text-area {
    width: 100%;
    margin-top: 5rem;
    padding: 0;
  }
  .greeting-wrap .greeting-cont .greeting-wrapper .greeting-text-area .signatures p {
    font-size: 1.8rem;
  }
  .greeting-wrap .greeting-cont .greeting-wrapper .greeting-text-area .signatures h5 {
    margin-top: 0.5rem;
    font-size: 2rem;
  }
  .greeting-wrap .greeting-cont .greeting-wrapper .greeting-img-area {
    width: 100%;
  }
  .profile-wrap .profile-cont {
    margin: 80px 0 0;
  }
  .profile-wrap .profile-cont .profile-content th {
    display: block;
    width: 100%;
  }
  .profile-wrap .profile-cont .profile-content td {
    display: block;
    width: 100%;
  }
  .map-wrap .map-cont .map-wrapper .security {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
  }
  .map-wrap .map-cont .map-wrapper .security .security-text-area {
    width: 100%;
    padding: 0;
    margin: 0 auto 3rem;
  }
  .map-wrap .map-cont .map-wrapper .security .security-img-area {
    width: 100%;
  }
  .map-wrap .map-cont .map-wrapper .security .security-img-area .security-img img {
    width: 60%;
    heigth: auto;
  }
  .map-wrap .map-cont .map-wrapper .googlemap-title {
    margin: 30px 0;
    padding: 0 10%;
  }
  .map-wrap .map-cont .map-wrapper .googlemap-title .googlemap-title-inner {
    position: relative;
    vertical-align: top;
    box-sizing: border-box;
  }
  .map-wrap .map-cont .map-wrapper .googlemap-title .googlemap-title-inner i {
    font-size: 1.6rem;
    display: inline;
    height: 2rem;
  }
  .map-wrap .map-cont .map-wrapper .googlemap-title .googlemap-title-inner p {
    font-size: 1.6rem;
    display: inline;
    height: 2rem;
  }
  .map-wrap .map-cont .map-wrapper .access {
    flex-direction: column;
    justify-content: center;
    vertical-align: center;
    margin: 30px 10%;
  }
  .map-wrap .map-cont .map-wrapper .train {
    width: 100%;
    padding-bottom: 2rem;
    margin: 0;
  }
  .map-wrap .map-cont .map-wrapper .car {
    width: 100%;
    padding-bottom: 2rem;
    margin: 0;
  }
}
@media screen and (max-width: 520px) {
  .mission-wrap .mission-cont .mission-img-area .mission-img img {
    width: 100%;
  }
  .greeting-wrap .greeting-cont .greeting-wrapper .greeting-text-area .greeting-text p {
    font-size: 1.4rem;
  }
  .profile-wrap .profile-cont .profile-content {
    margin-top: 20px;
  }
  .map-wrap .map-cont .map-wrapper .security {
    margin-top: 10px;
  }
  .map-wrap .map-cont .map-wrapper .security .security-text-area .sp {
    display: none;
  }
  .map-wrap .map-cont .map-wrapper .security .security-img-area .security-img img {
    width: 80%;
    heigth: auto;
  }
  .map-wrap .map-cont .map-wrapper .googlemap-title {
    margin: 30px 0 10px;
  }
}
/* 電気工事・通信工事 */
.services-detail {
  width: 100%;
  height: 100%;
}
.services-detail .services-detail-cont {
  height: 100%;
  width: 100%;
  margin: 50px 0 0;
}
.services-detail .services-detail-cont .services-detail-title {
  height: 100px;
  width: 100%;
  padding-left: 10%;
}
.services-detail .services-detail-cont .services-area {
  width: 100%;
  height: 100%;
  padding: 0 10%;
}
.services-detail .services-detail-cont .services-area .accordion-area {
  list-style: none;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.services-detail .services-detail-cont .services-area .accordion-area li {
  margin: 10px 0;
}
.services-detail .services-detail-cont .services-area .accordion-area li section {
  border: 1px solid #000000;
}
.services-detail .services-detail-cont .services-area .accordion-area li section .title {
  position: relative;
  cursor: pointer;
  font-size: 2rem;
  font-weight: normal;
  padding: 3% 3% 3% 50px;
  transition: all 0.5s ease;
  background: #000000;
  color: #ffffff;
  width: 100%;
  margin: 0;
}
.services-detail .services-detail-cont .services-area .accordion-area li section .title::before,
.services-detail .services-detail-cont .services-area .accordion-area li section .title::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 2px;
  background-color: #ffffff;
}
.services-detail .services-detail-cont .services-area .accordion-area li section .title::before {
  top: 48%;
  left: 15px;
  transform: rotate(0deg);
}
.services-detail .services-detail-cont .services-area .accordion-area li section .title::after {
  top: 48%;
  left: 15px;
  transform: rotate(90deg);
}
.services-detail .services-detail-cont .services-area .accordion-area li section .title.close::before {
  transform: rotate(45deg);
}
.services-detail .services-detail-cont .services-area .accordion-area li section .title.close::after {
  transform: rotate(-45deg);
}
.services-detail .services-detail-cont .services-area .accordion-area li section .box {
  display: none;
  width: 88%;
  height: 100%;
  margin: 6%;
  margin-top: 12rem;
}
.services-detail .services-detail-cont .services-area .accordion-area li section .box p {
  margin: 0;
}

.strengths {
  width: 100%;
  height: 100%;
}
.strengths .strengths-cont {
  width: 100%;
  height: auto;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: start;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 50px 0 0;
}
.strengths .strengths-cont .strengths-title {
  height: 100px;
  width: 100%;
  padding-left: 10%;
}
.strengths .strengths-cont .strengths-item {
  width: 30%;
  height: auto;
}
.strengths .strengths-cont .strengths-item .strengths-image {
  margin: 5rem auto 3rem;
  width: 100%;
  text-align: center;
}
.strengths .strengths-cont .strengths-item .strengths-image img {
  width: 50%;
  height: auto;
}
.strengths .strengths-cont .strengths-text {
  width: 100%;
  height: auto;
  text-align: center;
}
.strengths .strengths-cont .strengths-text h6 {
  font-size: 2rem;
  margin: 3rem 2rem;
  line-height: 3rem;
  color: #000000;
}
.strengths .strengths-cont .strengths-text p {
  margin: 3rem 2rem;
  line-height: 3rem;
}

.works {
  width: 100%;
  height: 100%;
}
.works .works-cont {
  height: 100%;
  width: 100%;
  margin: 50px 0 0;
}
.works .works-cont .works-title {
  height: 100px;
  width: 100%;
  padding-left: 10%;
}
.works .works-cont .works-area {
  height: 100%;
  width: 100%;
  padding: 0 15%;
  margin-top: 50px;
  box-sizing: border-box;
}
.works .works-cont .works-area table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-top: 1px solid #000000;
  border-right: 1px solid #000000;
  border-left: 1px solid #000000;
}
.works .works-cont .works-area tr {
  position: relative;
  width: 100%;
  border-spacing: 0px;
  border-bottom: 1px solid #000000;
  height: auto;
}
.works .works-cont .works-area th {
  vertical-align: top;
  width: 25%;
  height: 100%;
  padding: 2rem;
  border-bottom: 1px solid #000000;
  display: table-cell;
  background-color: #000000;
  color: #ffffff;
}
.works .works-cont .works-area td {
  display: table-cell;
  width: 75%;
  height: 100%;
  padding: 2rem;
  border-bottom: 1px solid #000000;
}

@media screen and (max-width: 960px) {
  .strengths .strengths-cont .strengths-title {
    height: auto;
    margin-bottom: 20px;
  }
  .works .works-cont {
    margin: 80px 0 0;
  }
  .works .works-cont .works-area th {
    display: block;
    width: 100%;
  }
  .works .works-cont .works-area td {
    display: block;
    width: 100%;
  }
}
@media screen and (max-width: 720px) {
  .strengths .strengths-cont {
    flex-direction: column;
    flex-wrap: nowrap;
  }
  .strengths .strengths-cont .strengths-item {
    width: 100%;
    height: auto;
  }
  .strengths .strengths-cont .strengths-item .strengths-image {
    margin: 5rem auto 3rem;
    width: 100%;
    text-align: center;
  }
  .strengths .strengths-cont .strengths-item .strengths-image img {
    width: 30%;
    height: auto;
  }
  .strengths .strengths-cont .strengths-text {
    width: 100%;
    height: auto;
    text-align: center;
  }
  .strengths .strengths-cont .strengths-text br {
    display: none;
  }
  .strengths .strengths-cont .strengths-text h6 {
    font-size: 2rem;
    margin: 3rem 2rem;
    line-height: 3rem;
    color: #000000;
  }
  .strengths .strengths-cont .strengths-text p {
    margin: 3rem 6rem;
    line-height: 3rem;
  }
}
@media screen and (max-width: 520px) {
  .works .works-cont .works-area {
    margin-top: 20px;
  }
}
/* MAX  960px*/
@media screen and (max-width: 960px) {
  .kv-wrap .kv-cont .kv-main .kv-catch h2 {
    font-size: 3.3rem;
  }
  .kv-wrap .kv-cont .kv-main .kv-image .kv-image-bg h2 {
    font-size: 3.3rem;
    line-height: 3.3rem;
  }
  .kv-wrap .kv-cont .kv-main .kv-back .kv-back-bg {
    background-image: url(../images/back1_t.png);
  }
  .company-cont {
    margin-top: 50px;
    height: 650px;
  }
  .company-cont .company-title {
    height: 150px;
  }
  .company-cont .company-description .company-text .company-text-inner {
    padding: 30px 10%;
  }
  .service-wrap .service-cont {
    height: 400px;
    width: 100%;
    margin: 30px 0;
  }
  .service-wrap .service-title {
    width: 100%;
    height: 100px;
    text-align: center;
  }
  .service-wrap .service-sub {
    width: 100%;
    margin: 20px 0;
  }
  .service-wrap .service-sub h3 {
    font-size: 3rem;
    margin: 0 5%;
  }
  .service-main {
    width: 100%;
    height: auto;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: row;
    padding: 0 5%;
  }
  .service-main .service-item {
    width: 20vw;
    height: 20vw;
    text-align: center;
    background-color: #EAE7E0;
    position: relative;
  }
  .service-main .service-item h4 {
    color: #000000;
    font-size: 1.2rem;
    margin: 10px 0;
  }
  .service-main .service-item .service-image {
    width: 80%;
    text-align: center;
    margin: auto;
  }
  .service-main .service-item .service-image img {
    display: block;
    object-fit: contain;
    max-width: 80%;
    margin: auto;
  }
  .recruit-wrap .recruit-cont {
    margin: 30px 0 0;
  }
  .recruit-wrap .recruit-main {
    height: 800px;
  }
  .recruit-wrap .recruit-main .recruit-text {
    height: 60%;
  }
  .recruit-wrap .recruit-main .recruit-text .recruit-text-inner p {
    padding: 10% 50% 0 5%;
    margin: auto 0;
    line-height: 5rem;
  }
  .recruit-wrap .recruit-main .recruit-btn {
    height: 100px;
  }
  .contact-wrap .contact-cont {
    margin-top: 30px;
  }
  .contact-wrap .contact-cont .contact_container {
    display: flex;
    position: relative;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    height: auto;
    padding-right: 0px;
    padding-left: 0px;
    margin-right: auto;
    margin-left: auto;
  }
  .contact-wrap .contact-cont .contact-title {
    height: 100px;
    width: 100%;
    text-align: center;
  }
  .contact-wrap .contact-cont .contact-text {
    height: 100px;
  }
  .contact-wrap .contact-cont .contact-text p {
    position: absolute;
    margin-top: 30px;
    bottom: 50px;
    font-size: 2.5rem;
  }
  .contact-wrap .contact-cont .fa-solid {
    font-size: 20px;
    width: 50px;
    height: auto;
    text-align: center;
    vertical-align: bottom;
    padding-left: 3rem;
    padding-right: 3rem;
  }
  .contact-wrap .contact-cont .contact_item p {
    display: block;
    text-align: left;
    font-size: 1.3rem;
    vertical-align: left;
    margin: 0;
    margin-left: 1rem;
  }
  .news-wrap .news-cont {
    margin: 30px 0 0;
  }
  .news-wrap .news-cont .news-title {
    height: 100px;
  }
  .news-wrap .news-cont .news-area .news-list {
    margin: 30px 0 0;
  }
  .news-wrap .news-cont .news-area .news-list .news-item .news-text .news-meta time {
    text-align: left;
    margin-left: 1rem;
  }
  .news-wrap .news-cont .news-area .news-list .news-item .news-text .news-meta p {
    width: 40%;
    margin: 0;
    background-color: #EAE7E0;
    line-height: 30px;
    margin: 10px 5px;
  }
  .news-wrap .news-cont .news-area .news-list .news-item .news-text .news-head {
    width: 70%;
    height: 50px;
    margin-left: 2vw;
  }
  .news-wrap .news-cont .news-area .news-list .news-item .news-text .news-head p {
    font-size: 1.2rem;
  }
  .footer-wrap {
    margin-top: 5vh;
  }
  .footer-wrap .footer-cont .footer-profile {
    width: 100%;
    margin: 40px 10% 80px;
  }
  .footer-wrap .footer-cont .footer-menu {
    display: none;
  }
}
/* MAX  795px*/
@media screen and (max-width: 795px) {
  .service-main .service-item h4 {
    font-size: 0.85rem;
  }
}
/* MAX  720px*/
@media screen and (max-width: 720px) {
  .header {
    height: 100px;
  }
  .openbtn {
    width: 50px;
    height: 50px;
  }
  .openbtn span:nth-of-type(1) {
    top: 15px;
  }
  .openbtn span:nth-of-type(2) {
    top: 23px;
    background-color: #3DBFF2;
  }
  .openbtn span:nth-of-type(3) {
    top: 31px;
  }
  .openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-135deg);
    width: 30%;
  }
  .openbtn.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(135deg);
    width: 30%;
  }
  .recruit-wrap .recruit-main .recruit-image {
    width: 90%;
    height: 40%;
  }
  .recruit-wrap .recruit-main .recruit-text {
    width: 100%;
    height: 50%;
  }
  .recruit-wrap .recruit-main .recruit-text .recruit-text-inner {
    background-image: url(../images/back2_s.png);
  }
  .recruit-wrap .recruit-main .recruit-text .recruit-text-inner p {
    padding: 35% 10% 0 10%;
    margin: auto 0;
    line-height: 3rem;
  }
  .contact-wrap .contact-cont .contact-title {
    height: 100px;
  }
  .contact-wrap .contact-cont .contact-text {
    height: 100px;
  }
  .contact-wrap .contact-cont .contact-text p {
    margin: 0;
    padding-top: 10px;
  }
  .contact-wrap .contact-cont .contact_item {
    display: flex;
    position: relative;
    width: 90%;
    height: 100px;
    margin-bottom: 3rem;
    margin-right: auto;
    margin-left: auto;
    background-color: #3DBFF2;
    align-items: center;
  }
  .contact-wrap .contact-cont .contact_item .link {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .contact-wrap .contact-cont .fa-solid {
    font-size: 40px;
    width: 50px;
    height: auto;
    text-align: center;
    vertical-align: bottom;
    padding-left: 3rem;
    padding-right: 3rem;
  }
  .contact-wrap .contact-cont .contact_item p {
    display: block;
    text-align: right;
    font-size: 1.6rem;
    vertical-align: right;
    margin: 0;
    margin-left: 5rem;
  }
  .news-wrap .news-cont .news-area .news-list .news-item {
    height: 120px;
  }
  .news-wrap .news-cont .news-area .news-list .news-item .news-text {
    display: block;
  }
  .news-wrap .news-cont .news-area .news-list .news-item .news-text .news-meta {
    width: 100%;
    height: 40px;
  }
  .news-wrap .news-cont .news-area .news-list .news-item .news-text .news-meta time {
    font-size: 1.2rem;
    line-height: 40px;
  }
  .news-wrap .news-cont .news-area .news-list .news-item .news-text .news-meta p {
    font-size: 1.2rem;
    margin: 0;
    line-height: 40px;
  }
  .news-wrap .news-cont .news-area .news-list .news-item .news-text .news-head {
    width: 100%;
    height: 40px;
  }
  .news-wrap .news-cont .news-area .news-list .news-item .news-text .news-head p {
    font-size: 1.2rem;
  }
}
/* MAX  520px*/
@media screen and (max-width: 520px) {
  .header {
    height: 10vh;
  }
  .kv-wrap .kv-cont {
    height: 80vh;
    height: calc(var(--vh, 1vh) * 80 - 80px);
  }
  .kv-wrap .kv-cont .kv-main .kv-catch h2 {
    font-size: 2.5rem;
  }
  .kv-wrap .kv-cont .kv-main .kv-image .kv-image-bg {
    background-image: url(../images/top_s.jpg);
  }
  .kv-wrap .kv-cont .kv-main .kv-image .kv-image-bg h2 {
    font-size: 2rem;
    line-height: 2rem;
  }
  .kv-wrap .kv-cont .kv-main .kv-back .kv-back-bg {
    background-image: url(../images/back1_t.png);
  }
  .service-wrap {
    width: 100%;
    height: 100%;
  }
  .service-wrap .service-cont {
    height: 350vw;
    width: 100%;
    margin: 30px 0;
  }
  .service-main {
    flex-direction: column;
    padding: 0;
  }
  .service-main .service-item {
    width: 70%;
    height: 70vw;
    margin: 10%;
    text-align: center;
    background-color: #EAE7E0;
    position: relative;
  }
  .service-main .service-item h4 {
    color: #000000;
    font-size: 1.6rem;
    margin: 30px 0;
  }
  .service-main .service-item .service-image {
    width: 80%;
    text-align: center;
    margin: auto;
  }
  .service-main .service-item .service-image img {
    display: block;
    object-fit: contain;
    max-width: 80%;
    margin: auto;
  }
  .contact-wrap .contact-cont .contact_container {
    flex-direction: column;
  }
  .contact_item p {
    font-size: 4vw;
    margin: 0 0 0 3rem;
  }
  .contact_item {
    width: 90vw;
  }
  .footer-wrap .footer-cont .footer-profile h6 {
    font-size: 24px;
  }
}

/*# sourceMappingURL=style.min.css.map */
