@charset "UTF-8";
h2,h3 {
    font-family: "Avenir", sans-serif;
    font-weight: 700;
}
h2 span,h3 span {
    font-family: "Noto Sans Japanese", sans-serif;
    font-weight: 500;
    font-size: 21px;
    display: block;
}

h3 {
  font-size: 55px;
  line-height: 1.4;
  letter-spacing: 5px;
}

h3 span {
  font-size: 22px;
  letter-spacing: 2px;
}
@media screen and (max-width: 768px) {
h3 {
  font-size: 36px;
  line-height: 1.4;
  letter-spacing: 2px;
}
  
h3 span {
  font-size: 18px;
  margin: 7px 0 0;
}
  }

/*メインビジュアル*/
.mainvisual {
  background: linear-gradient(to bottom, #56B9B4, #FFFFFF);
  height: 920px;
  position: relative;
  overflow: hidden;
}
.mainvisual h2 {
    max-width: 1160px;
    margin: 11rem auto 0;
    color: #fff;
    padding: 0 30px;
    font-size: 60px;
    line-height: 1.2;
    letter-spacing: 6px;
    position: relative;
    z-index: 3;
}
.mainvisual h2 span {
    font-size: 20px;
    margin: 0 0 20px;
    letter-spacing: 1px;
}



.kv_svg {
  position: relative;
  top: -15rem;
}

.kv_cnts {
  position: relative;
}


@media screen and (min-width: 1441px) {
  .kv_svg {
    left: calc(50% - 0px);
    width: 800px;
    top: 0rem;
  }

  .kv-cnts {
    left: calc(50% - 0px);
    width: 800px;
    top: -3rem;
  }

  #top1 {
    width: 250px;
    left: calc(50% - 0);
    top: 0rem;
    position: absolute;
    z-index: 1;
  }

  #top2 {
    width: 250px;
    left: calc(50% - 14rem);
    top: -13rem;
    position: absolute;
    z-index: 1;
  }

  #top3 {
    width: 250px;
    left: calc(50% - 1rem);
    top: -11rem;
    position: absolute;
    z-index: 1;
  }

  #top4 {
    width: 250px;
    left: calc(50% - -5rem);
    top: 3rem;
    position: absolute;
    z-index: 1;
  }
}

@media screen and (max-width: 1440px) {

  .kv_svg {
    left: calc(40% - 30px);
    width: 800px;
    top: 2rem;
  }

  #top1 {
    width: 250px;
    left: calc(50% - 0);
    top: 0rem;
    position: absolute;
    z-index: 1;
  }

  #top2 {
    width: 250px;
    left: calc(50% - 14rem);
    top: -13rem;
    position: absolute;
    z-index: 1;
  }

  #top3 {
    width: 250px;
    left: calc(50% - 0rem);
    top: -10rem;
    position: absolute;
    z-index: 1;
  }

  #top4 {
    width: 250px;
    left: calc(50% - -6rem);
    top: 2rem;
    position: absolute;
    z-index: 1;
  }

}


@media screen and (max-width: 768px) {
  .mainvisual {
    height: calc(100vh - 60px);
    margin: 0;
    padding: 0 20px;
    overflow: hidden;
  }
  .mainvisual h2 {
      padding: 12vh 0 0;
      font-size: 37px;
      letter-spacing: 1.5px;
      margin: 0;
  }
  .mainvisual h2 span {
      font-size: 14px;
      margin: 0 0 30px;
      line-height: 1.7;
  }

  .kv_svg {
    left: unset;
    right: 2%;
    width: 120%;
    top: 9rem;
  }

  .kv-cnts {
    width: 120%;
    right: 2%;
    top: 10rem;
  }

  #city {
    position: absolute;
    left: unset;
    right: unset;
    width: unset;
    top: unset;
  }

  #top1 {
    width: 30%;
    left: 2%;
    top: 0rem;
  }

  #top2 {
    width: 30%;
    left: 21%;
    top: -5.5rem;
  }

  #top3 {
    width: 30%;
    left: 48%;
    top: -6rem;
  }

  #top4 {
    width: 30%;
    left: 59%;
    top: 1.8rem;
  }

  
}

/*スクロール誘導*/
.scroll_down{
  position:absolute;
  top: 730px;
  left: calc(50% - 550px);
}

.scroll_down span{
  font-family: "Avenir", sans-serif;
  font-weight: 500;
  position: absolute;
  left: -20px;
  bottom: 136px;
  color: #00968E;
  font-size: 13px;
  letter-spacing: 2px;
  writing-mode: vertical-lr;
  text-decoration: none;
  text-transform: uppercase;
}

.scroll_down:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -34px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background:#00968E;
  animation:
    circlemove 2.0s ease-in-out infinite,
    cirlemovehide 2.0s ease-out infinite;
}

@keyframes circlemove{
  0%{bottom:200px;}
  100%{bottom:0px;}
}

@keyframes cirlemovehide{
  0%{opacity:0}
  50%{opacity:1;}
  80%{opacity:0.9;}
  100%{opacity:0;}
}

.scroll_down:after{
  content:"";
  position: absolute;
  bottom:0;
  left: -30px;
  width: 2px;
  height: 200px;
  background:#00968E;
}

@media screen and (max-width: 768px) {
  .scroll_down{
    position:absolute;
    bottom: 0;
    left: 20px;
  }
  
  .scroll_down:before {
    content: "";
    position: absolute;
    bottom: 140px;
    left: -4px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background:#00968E;
    animation:
      circlemove 2.0s ease-in-out infinite,
      cirlemovehide 2.0s ease-out infinite;
  }
  
  @keyframes circlemove{
    0%{bottom:140px;}
    100%{bottom:50px;}
  }
  
  @keyframes cirlemovehide{
    0%{opacity:0}
    50%{opacity:1;}
    80%{opacity:0.9;}
    100%{opacity:0;}
  }
  
  .scroll_down:after{
    content:"";
    position: absolute;
    bottom:50px;
    left:0;
    width:2px;
    height: 100px;
    background:#00968E;
  }
}

/*強み*/
.top-strengths {
    background-image: url(/assets/images/top/strengths_bg.png);
    background-position: center top -130px;
    background-size: 3200px;
    margin: 30px 0 0;
    position: relative;
    z-index: 2;
}
.top-strengths-inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 30px;
}

.top-strengths-inner ol {
  margin: 20px 0 0;
}
.top-strengths-inner ol li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 80px;
}
.top-strengths-inner ol li:nth-child(2) {
  margin: 0 0 100px;
}
.top-strengths-inner ol li article {
  background-color: #E8F7F6;
  padding: 30px 50px 50px;
  max-width: 620px;
  border-radius: 30px;
  position: relative;
}
.top-strengths-inner ol li:nth-child(odd) article::after {
  content: "";
  position: absolute;
  bottom: 40px;
  right: -50px;
  border-width: 20px 0 20px 50px;
  border-style: solid;
  border-color: transparent transparent transparent #E8F7F6; 
}
.top-strengths-inner ol li:nth-child(even) article::after {
  content: "";
  position: absolute;
  bottom: 40px;
  left: -50px;
  border-width: 20px 50px 20px 0;
  border-style: solid;
  border-color: transparent #E8F7F6 transparent transparent; 
}
.top-strengths-inner ol li:first-child img {
  margin: 0 10px 0 0;
  width: 375px;
}
.top-strengths-inner ol li:nth-child(2) img {
  margin: 0 0 40px;
  width: 450px;
}
.top-strengths-inner ol li:nth-child(3) img {
  margin: 0 0 20px;
  width: 390px;
}
.top-strengths-inner ol li article b {
  font-family: "Avenir", sans-serif;
  font-weight: 700;
  font-size: 70px;
  letter-spacing: 5px;
  color: #00968E;
  position: relative;
  top:-80px;
}
.top-strengths-inner ol li article h4 {
  font-weight: 700;
  font-size: 28px;
  letter-spacing: 2.5px;
  position: relative;
  top:-80px;
}
.top-strengths-inner ol li article p {
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.5px;
  margin: -60px 0 0;
}

@media screen and (max-width: 768px) {
.top-strengths {
  background-position: right -350px top -60px;
  background-size: 1300px;
  margin: 0;
}
.top-strengths-inner {
  max-width: calc(100% - 40px);
  margin: 0 auto;
  padding: 70px 0 0;
}
.top-strengths-inner ol {
  margin: 70px 0 0;
}
.top-strengths-inner ol li {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 0 80px;
  position: relative;
}
.top-strengths-inner ol li:nth-child(2) {
  margin: 0 0 90px;
}
.top-strengths-inner ol li article {
  padding: 40px 20px 70px;
  width: 100%;
  order: 1;
}
.top-strengths-inner ol li:nth-child(odd) article::after,
.top-strengths-inner ol li:nth-child(even) article::after {
  display: none;
}
.top-strengths-inner ol li:first-child img {
  margin: -70px 0 0;
  width: 50vw;
  z-index: 2;
  order: 2;
}
.top-strengths-inner ol li:nth-child(2) img {
  margin: -60px 0 0;
  width: 80vw;
  z-index: 2;
  order: 2;
}
.top-strengths-inner ol li:nth-child(3) img {
  margin: -40px 0 0;
  width: 60vw;
  z-index: 2;
  order: 2;
}
.top-strengths-inner ol li article b {
  font-size: 64px;
  letter-spacing: 2px;
  top:-80px;
  margin: 0 auto;
  display: block;
  text-align: center;
}
.top-strengths-inner ol li article h4 {
  font-size: 24px;
  letter-spacing: 0.5px;
  position: relative;
  top:-70px;
  text-align: center;
}
.top-strengths-inner ol li article p {
  margin: -45px 0 0;
  font-size: 14px;
  line-height: 1.7;
}
}

/*ビジネス*/
.top-business {
  background-image: url(/assets/images/top/business_bg.svg);
  background-size: cover;
  margin: 120px 0 0;
  padding: 0 0 50px;
}
.top-ttl-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 100px 30px 70px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-business ul {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 30px;
}
.top-business ul li {
  background-color: #fff;
  border-radius: 30px;
  padding: 50px;
  margin: 0 0 50px;
  display: flex;
  justify-content: start;
}
.top-business ul li h4 {
  color: #00968E;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  border-bottom:1px solid #00968E;
  margin: 0 0 20px;
  letter-spacing: 3px;
}

.top-business ul li:first-child h4 {
  background-image: url(/assets/images/top/icon_8tenpo.svg);
  background-size: 30px;
  background-position: left top;
  padding: 0 0 30px 50px;
}
.top-business ul li:nth-child(2) h4 {
  background-image: url(/assets/images/top/icon_1tsushin.svg);
  background-size: 34px;
  background-position: left top 2px;
  padding: 0 0 30px 55px;
}
.top-business ul li:nth-child(3) h4 {
  background-image: url(/assets/images/top/icon_2denki.svg);
  background-size: 28px;
  background-position: left top;
  padding: 0 0 30px 47px;
}

.top-business ul li:nth-child(1) .inner-img img {
  height: 300px;
}

.top-business ul li:nth-child(2) {
  align-items: center;
}

.top-business ul li:nth-child(3) {
  align-items: center;
}

.top-business ul li p {
  font-size: 16px;
  line-height: 2;
}

.top-business .inner-img img {
  width: 360px;
  height: 250px;
  aspect-ratio: 3 / 2;
  margin: 0 50px 0 0;
  border-radius: 20px;
  object-fit: cover;
}
.top-business a.view-btn {
  background-color: #fff;
  color: #00968E;
}
.top-business a.view-btn:hover {
  background-color: #E8F7F6;
}

@media screen and (max-width: 768px) {
.top-business {
  margin: 70px 0 0;
  padding: 0;
  overflow: hidden;
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position-x: 70%;
  height: 100%;
}
.top-ttl-inner {
  max-width: calc(100% - 40px);
  padding: 70px 0 30px;
  color: #fff;
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
  align-items:flex-start;
  }
.top-ttl-inner a {
  margin: 40px auto;
}
.top-business ul {
  max-width: calc(100% - 40px);
  margin: 0 auto 70px;
  padding: 0;
  }
.top-business ul li {
  padding: 30px;
  margin: 0 0 30px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  }
.top-business ul li h4 {
  font-size: 24px;
  margin: 0 0 15px;
  letter-spacing: 3px;
  text-align: center;
}
.top-business ul li:first-child h4 {
  background-size: 24px;
  background-position-x: calc(50% - 89px);
  padding: 0 0 15px 24px;
}
.top-business ul li:nth-child(2) h4 {
  background-size: 24px;
  background-position-x: calc(50% - 68px);
  padding: 0 0 15px 24px;
}
.top-business ul li:nth-child(3) h4 {
  background-size: 20px;
  background-position-x: calc(50% - 64px);
  padding: 0 0 15px 20px;
}
.top-business ul li p {
  font-size: 14px;
  line-height: 1.7;
}
.top-business .inner-img img 
 {
  width: 100%;
  margin: 0 0 20px;
}
}

/*会社概要*/
.top-company {
  position: relative;
}
.top-company::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 90%;
  background-color: #F4F4F4;
  z-index: -1; 
}
.top-company::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10%;
  background-color: #fff;
  z-index: -1;
}
.top-company h3 {
  max-width: 1160px;
  padding: 120px 30px 70px;
  margin: 0 auto;
  text-align: center;
}
.top-company ul {
  display: flex;
  justify-content: space-between;
  max-width: 1160px;
  padding: 0 30px;
  margin: 0 auto;
}
.top-company ul li {
  width: 31%;
  position: relative;
}
.top-company ul li img {
  width: 100%;
  object-position: top;
  object-fit: cover;
  aspect-ratio: 1 / 1;
  border-radius: 40px 40px 0 0;
  transition: transform 0.3s ease;
}
.top-company ul li:nth-child(3) img {
  object-position: bottom -100px;
}
.top-company ul li a:hover {
  opacity: 1;
}
.top-company ul li:hover img {
  transform: translateY(-20px);
}
.top-company ul li div {
  display: block;
  width: 100%;
  height: 100px;
  padding: 30px;
  color: #00968E;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 3px;
  background-color: #fff;
  border-radius: 40px 40px 0 0;
  box-shadow: 0px -10px 20px -5px rgba(229, 229, 229,0.7);
  z-index: 2;
  position: relative;
  bottom:0;
  margin: -100px 0 0;
}
.top-company ul li div:after {
  content: "⚫︎";
  position: absolute;
  right: 30px;
  top: 35%;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
.top-company {
  background-color: #F4F4F4;
}
.top-company::before,
.top-company::after {
  display: none; 
}
.top-company h3 {
  max-width: calc(100% - 40px);
  padding: 70px 0;
  margin: 0 auto;
}
.top-company ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: calc(100% - 40px);
  padding: 0;
  margin: -20px auto 0;
}
.top-company ul li {
  width: 100%;
  margin: 0 0 40px;
}
.top-company ul li img {
  width: 100%;
  aspect-ratio: 3 / 2;
}
.top-company ul li div {
  width: 100%;
  height: 75px;
  padding: 20px 50px;
  font-size: 20px;
  letter-spacing: 2px;
  margin: -70px 0 0;
  border-radius: 30px 30px 0 0;
}
}
/*ニュース*/
.top-news {
  max-width: 1160px;
  padding: 120px 30px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.top-news ul {
  max-width: 820px;
  margin: 10px 0 0;
}
.top-news ul li {
  background: url(/assets/images/common/arrow1.svg) no-repeat right 30px center;
  background-size: 30px;
  border-bottom: 1px solid #D9D9D9;
  padding: 0 40px 40px;
  margin: 0 0 40px;
}
.top-news ul li:last-child {
  margin: 0;
}
.top-news ul li a {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.top-news .news-tc {
  display: flex;
  align-items: center;
}
.top-news .time {
  color: #00968E;
  font-size: 18px;
  font-weight: 500;
  font-family: 'Avenir', Helvetica, sans-serif;
  position: relative;
  top: 2px;
}
.top-news .category {
  padding: 5px 20px;
  margin: 0 50px 0 30px;
  font-size: 14px;
  color: #00968E;
  background-color: #E8F7F6;
  border-radius: 50px;
  position: relative;
}
.top-news p.detail {
  width: 100%;
  margin: 20px 0 0 ;
  line-height: 2;
}
@media screen and (max-width: 768px) {
.top-news {
  max-width: calc(100% - 40px);
  padding: 70px 0;
  margin: 0 auto;
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
}
.top-news ul {
  max-width: 100%;
  margin: 50px 0 0;
}
.top-news ul li {
  background: url(/assets/images/common/arrow1.svg) no-repeat right bottom 20px;
  background-size: 24px;
  padding: 0 0 15px;
  margin: 0 0 30px;
}
.top-news ul li:last-child {
  margin: 0;
}
.top-news .time {
  font-size: 14px;
}
.top-news .category {
  padding: 5px 20px;
  margin: 0 0 0 20px;
  font-size: 14px;
}
.top-news p.detail {
  width: 100%;
  margin: 15px 0 0 ;
  padding: 0 35px 0 0;
  font-size: 14px;
}
}
/*採用*/
.recruit-contents {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 30px 380px;
  overflow: hidden;
}
.recruit-contents-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.recruit-contents-inner h3 {
  color: #00968E;
}
.recruit-contents-inner p {
  font-size: 16px;
  line-height: 2;
  margin: 70px 0;
}
.recruit-contents img {
  position: absolute;
  top: 100px;
  left:calc(50% - 210px);
  width: 1100px;
}
@media screen and (max-width: 768px) {
.recruit-contents {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px 330px;
  overflow: hidden;
}
.recruit-contents-inner p {
  font-size: 14px;
  line-height: 1.7;
  margin: 50px 0 30px;
}
.recruit-contents img {
  position: absolute;
  top: auto;
  bottom:0;
  left:20px;
  width: 500px;
}
}