@charset "UTF-8";
.bold {
  font-weight: bold;
}

/*--------------------------
font-size
---------------------------*/
/*行間計算*/
/*--------------------------
content-width
---------------------------*/
body, * {
  font-family: "Noto Sans JP", Noto Sans JP , sans-serif;
}

main {
  padding-top: 100px;
}

@media screen and (max-width: 975px) {
  main {
    padding-top: 60px;
  }
}

html {
  font-size: 62.5%;
}

.sp {
  display: none;
}

@media screen and (max-width: 767px) {
  html {
    font-size: 50%;
  }
  .sp {
    display: block;
  }
  .sp-hide {
    display: none;
  }
}

a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

a:hover {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0.7;
}

/* 共通 */
header {
  position: fixed;
  z-index: 99;
  width: 100vw;
  background-color: #fff;
}

.header__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100px;
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 975px) {
  .header__wrap {
    padding: 0 5%;
  }
}

@media screen and (max-width: 975px) {
  .header__wrap {
    height: 80px;
  }
}

.head-logo__wrap {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 15px 0;
}

.head-logo__wrap img {
  height: 70px;
  width: auto;
}

@media screen and (max-width: 975px) {
  .head-logo__wrap img {
    height: 50px;
  }
}

.head-nav__wrap {
  margin-left: auto;
  position: relative;
}

@media screen and (max-width: 975px) {
  .head-nav__wrap {
    display: none;
  }
}

.head-nav__wrap::after {
  content: "";
  height: 100px;
  width: 240px;
  position: absolute;
  background-image: url(../img/header-obj.svg);
  background-size: cover;
  background-repeat: no-repeat;
  top: 0;
  right: 0;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}

.head-nav__wrap::before {
  content: "";
  height: 100px;
  position: absolute;
  width: 30vw;
  background-color: #008080;
  top: 0;
  right: -230px;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}

.head-nav__wrap nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.head-nav__wrap .head__nav {
  height: 100px;
  display: table;
  text-align: center;
}

.head-nav__wrap .head__nav a {
  padding: 0 20px 0 20px;
  height: 100px;
  display: table-cell;
  vertical-align: middle;
  line-height: 1.75;
  font-size: 1.8rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
}

.head-nav__wrap .head__nav a:hover::after {
  position: absolute;
  content: "";
  height: 15px;
  width: 100%;
  background-color: #008080;
  bottom: 0;
  left: 0;
}

.head-nav__wrap .head__nav a.active::after {
  position: absolute;
  content: "";
  height: 15px;
  width: 100%;
  background-color: #008080;
  bottom: 0;
  left: 0;
}

/* 
hamburger(ハンバーガーアイコン)
=================================== */
.hamburger {
  display: none;
  position: absolute;
  right: 20px;
  top: 20px;
  width: 50px;
  height: 40px;
  cursor: pointer;
  z-index: 300;
}

@media screen and (max-width: 975px) {
  .hamburger {
    display: block;
  }
}

.hamburger__line {
  position: absolute;
  width: 50px;
  height: 3px;
  right: 0;
  background-color: #008080;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.hamburger__line--1 {
  top: 1px;
}

.hamburger__line--2 {
  top: 18px;
}

.hamburger__line--3 {
  top: 36px;
}

/*ハンバーガーがクリックされたら*/
.open .hamburger__line--1 {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 11px;
}

.open .hamburger__line--2 {
  opacity: 0;
}

.open .hamburger__line--3 {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 11px;
}

/* 
  sp-nav(ナビ)
  =================================== */
.sp-nav {
  line-height: 1.2069;
  font-size: 2.9rem;
  text-align: center;
  padding: 100px 10px 0 10px;
  position: fixed;
  right: -100%;
  /*ハンバーガーがクリックされる前はWindow右側に隠す*/
  top: 0;
  width: 70%;
  /* 出てくるスライドメニューの幅 */
  height: 100vh;
  background-color: #fff;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 200;
  overflow-y: auto;
  /* メニューが多くなったらスクロールできるように */
}

.sp-nav li {
  margin-top: 10px;
  background-color: #10a29a;
  color: #fff;
  line-height: 50px;
}

/*ハンバーガーがクリックされたら右からスライド*/
.open .sp-nav {
  right: 0;
}

/* 
  black-bg(ハンバーガーメニュー解除用bg)
  =================================== */
.black-bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 5;
  background-color: #000;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  cursor: pointer;
  z-index: 100;
}

/*ハンバーガーメニューが開いたら表示*/
.open .black-bg {
  opacity: 0.3;
  visibility: visible;
}

footer {
  background-image: url(../img/footer-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
}

footer img {
  max-width: 264px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 0 auto;
  padding-top: 66px;
}

.footer-nav__wrap {
  margin: 66px;
}

.footer-nav__wrap nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  max-width: 1120px;
}

.foot__nav a {
  line-height: 1.75;
  font-size: 1.8rem;
  display: block;
}

.foot__nav:not(:first-child) {
  margin-left: auto;
}

.footer__copy {
  line-height: 1.25;
  font-size: 1.6rem;
  text-align: center;
  padding: 36px 10px;
  margin-top: 88px;
}

@media screen and (max-width: 767px) {
  footer img {
    max-width: 180px;
    margin-top: 0px;
  }
  .footer-nav__wrap {
    margin: 24px;
  }
  .footer-nav__wrap nav {
    display: block;
  }
  .foot__nav a {
    text-align: center;
  }
  .foot__nav:not(:first-child) {
    margin: 12px 0 0 0;
  }
  .footer__copy {
    margin-top: 24px;
    padding: 12px;
  }
}

/* Top */
.top-kv {
  background-image: url(../img/top-kv-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.top-kv__wrap {
  padding: 186px 0;
}

.top-kv__wrap h1 {
  line-height: 1.78378;
  font-size: 3.7rem;
  letter-spacing: 0.6rem;
  text-align: center;
  color: #fff;
  display: block;
  margin: 0 auto;
  position: relative;
  padding: 56px 0;
  text-shadow: 4px 4px 4px rgba(0, 0, 0, 0.6);
}

.top-kv__wrap h1::after {
  position: absolute;
  content: "";
  background-image: url(../img/top-kv-obj.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 746px;
  height: 260px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@media screen and (max-width: 767px) {
  .top-kv__wrap {
    padding: 120px 0;
  }
  .top-kv__wrap h1::after {
    background-image: url(../img/top-kv-obj-sp.svg);
    max-width: 337.5px;
    max-height: 337.5px;
    width: 90vw;
    height: 90vw;
  }
}

.top-about {
  height: 580px;
  position: relative;
}

.top-about__bg {
  max-width: 1362px;
  width: 100%;
  background-image: url(../img/top-about-bg.png);
  height: 100%;
  background-size: cover;
  background-position: right;
  margin-left: auto;
  position: absolute;
  right: 0;
}

.top-about-text__wrap {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  height: 100%;
}

@media screen and (max-width: 975px) {
  .top-about-text__wrap {
    padding: 0 5%;
  }
}

.top-about-text__bg {
  position: absolute;
  background-image: url(../img/top-about-text-bg.png);
  background-size: cover;
  background-position: left;
  top: 188px;
  max-width: 860px;
  width: 100%;
  height: 245px;
  left: 0;
  margin-left: calc(calc(100vw - 1600px) /2);
}

.top-about-text__bg p {
  line-height: 2.10526;
  font-size: 1.9rem;
  padding-top: 84px;
  padding-left: 220px;
  position: relative;
  display: block;
}

.top-about-text__bg p::before {
  position: absolute;
  content: "";
  max-width: 618px;
  width: 100%;
  height: 214px;
  background-image: url(../img/top-about-title.png);
  background-size: contain;
  top: -140px;
  left: 140px;
}

.top-about-text__bg p::after {
  background-color: #333;
  position: absolute;
  content: "";
  width: 30vw;
  height: 240.6px;
  top: 0;
  left: 1px;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.6);
          box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.6);
  z-index: -1;
}

@media screen and (max-width: 1439px) {
  .top-about-text__bg {
    margin-left: 0;
    top: 240px;
  }
}

@media screen and (max-width: 975px) {
  .top-about {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .top-about__bg {
    position: relative;
    height: 390px;
    background-repeat: no-repeat;
    margin-top: -120px;
  }
  .top-about-text__wrap {
    position: relative;
    height: 100%;
    padding: 0;
    padding-top: 100px;
  }
  .top-about-text__bg {
    position: relative;
    margin-left: 0;
    top: 0;
    left: 0;
    background-position-x: 90%;
    background-repeat: no-repeat;
  }
  .top-about-text__bg p {
    padding: 50px 0 0 0;
    text-align: center;
  }
  .top-about-text__bg p::before {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    left: 50%;
    top: -68px;
    background-repeat: no-repeat;
    width: 100%;
    height: 100px;
  }
}

.top-links {
  background-image: url(../img/top-links-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}

.top-links__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 100px 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  position: relative;
}

.top-links__wrap:before, .top-links__wrap:after {
  position: absolute;
  content: "";
  width: 405px;
  height: 226px;
  background-image: url(../img/top-links-obj.png);
  background-size: contain;
  background-repeat: no-repeat;
  top: 50%;
}

.top-links__wrap:before {
  left: -80px;
  -webkit-transform: translate(-100%, -50%);
          transform: translate(-100%, -50%);
}

.top-links__wrap:after {
  right: -80px;
  -webkit-transform: translate(100%, -50%);
          transform: translate(100%, -50%);
}

.top__link {
  position: relative;
}

.top__link img {
  width: 415px;
  height: auto;
}

.top__link:first-child {
  margin-right: -80px;
}

.top__link:last-child {
  margin-left: -80px;
}

.top-link-text__wrap {
  text-align: center;
  position: absolute;
  width: 100%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  left: 40%;
}

.top__link--ja {
  line-height: 1.2069;
  font-size: 2.9rem;
}

.top__link--en {
  line-height: 1.75;
  font-size: 1.8rem;
  color: #979797;
}

@media screen and (max-width: 975px) {
  .top-links__wrap {
    display: block;
    padding: 60px 0;
  }
  .top-links__wrap:before, .top-links__wrap:after {
    display: none;
  }
  .top__link {
    display: block;
    height: 100%;
  }
  .top__link img {
    width: 300px;
  }
  .top__link:first-child {
    margin: 0;
  }
  .top__link:last-child {
    margin: 0;
  }
}

.top-recruit {
  overflow: hidden;
  height: 434px;
  background-color: #333;
  position: relative;
}

.top-recruit::after {
  content: "AREAPLAN";
  position: absolute;
  color: #fff;
  opacity: 0.3;
  font-size: 200px;
  font-weight: bold;
  bottom: -30px;
  right: -20px;
}

.top-recruit-bg__wrap img {
  width: auto;
  height: 434px;
  -webkit-transform: translateX(-20%);
          transform: translateX(-20%);
}

.top-recruit-bg__wrap div {
  width: 100%;
  background-image: url(../img/top-recruit-over-obj.png);
  background-size: 100%;
}

.top-recruit-bg__cover {
  position: absolute;
}

.top-recruit-text__wrap {
  position: absolute;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  left: 50%;
  height: 100%;
  z-index: 1;
}

@media screen and (max-width: 975px) {
  .top-recruit-text__wrap {
    padding: 0 5%;
  }
}

.top-recruit__text--en {
  color: #fff;
  opacity: 0.3;
  display: block;
  line-height: 1.23077;
  font-size: 2.6rem;
  font-weight: 500;
}

.top-recruit__text--ja {
  color: #fff;
  display: block;
  line-height: 1.46667;
  font-size: 4.5rem;
  letter-spacing: 0.6rem;
  padding-top: 12px;
  font-weight: 500;
}

.top-recruit-text__cover {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-top: 100px;
}

.top-recruit-btn__wrap {
  background-color: #666666;
  padding: 20px 170px 20px 38px;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border: 3px solid #008080;
  margin-top: 40px;
}

.top-recruit-btn__wrap p {
  color: #fff;
  line-height: 1.45455;
  font-size: 2.2rem;
  position: relative;
}

.top-recruit-btn__wrap p::after {
  position: absolute;
  content: "＞";
  line-height: 1.45455;
  font-size: 2.2rem;
  right: -148px;
}

@media screen and (max-width: 975px) {
  .top-recruit::after {
    font-size: 52px;
    bottom: -10px;
    right: -10px;
  }
  .top-recruit-btn__wrap {
    padding: 20px 120px 20px 38px;
  }
  .top-recruit-btn__wrap p::after {
    right: -90px;
  }
  .top-recruit-text__cover {
    margin: 100 auto 0 auto;
  }
}

.top-work {
  background-image: url(../img/top-work-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  padding: 145px 0;
}

.top-work__bg {
  position: relative;
}

.top-work__bg::before {
  content: "";
  position: absolute;
  background-image: url(../img/top-work-obj.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 636px;
  height: 208px;
  bottom: 20px;
  left: -170px;
}

.top-work__bg img {
  max-width: 1156px;
  width: 100%;
  height: auto;
  display: block;
  margin-left: auto;
}

.top-work__txt {
  position: absolute;
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

@media screen and (max-width: 975px) {
  .top-work__txt {
    padding: 0 5%;
  }
}

.top-work__txt h2 {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-image: url(../img/top-work-title-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 64px 192px 106px 206px;
  font-weight: 500;
}

.top-work__ja {
  display: block;
  line-height: 1.46667;
  font-size: 4.5rem;
  letter-spacing: 0.6rem;
  color: #10a29a;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.top-work__en {
  display: block;
  line-height: 2.10526;
  font-size: 1.9rem;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.top-work__btn {
  position: absolute;
  top: 220px;
  left: 230px;
  display: block;
  max-width: 420px;
  width: 100%;
  background-image: url(../img/top-work-btn.png);
  background-size: cover;
}

.top-work__btn p {
  line-height: 1.45455;
  font-size: 2.2rem;
  color: #fff;
  display: block;
  line-height: 104px;
  text-align: center;
}

.top-work__content02 {
  padding-top: 100px;
}

.top-work__content02 .top-work__bg::before {
  right: -170px;
  left: unset;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}

.top-work__content02 .top-work__bg img {
  margin-right: auto;
  margin-left: 0;
}

.top-work__content02 .top-work__txt {
  -webkit-transform: scale(-1, 1) translateX(50%);
          transform: scale(-1, 1) translateX(50%);
}

.top-work__content02 .top-work__txt h2 {
  margin-right: auto;
  padding: 64px 122px 106px 276px;
}

.top-work__content02 .top-work__ja {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
  width: 100%;
}

.top-work__content02 .top-work__en {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}

.top-work__content02 .top-work__btn p {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}

@media screen and (max-width: 975px) {
  .top-work {
    padding: 80px 0;
  }
  .top-work__bg::before {
    content: none;
  }
  .top-work__txt {
    position: relative;
  }
  .top-work__txt h2 {
    background-image: unset;
    padding: 0;
    margin-top: 24px;
  }
  .top-work__btn {
    position: relative;
    top: unset;
    left: unset;
    margin: 24px auto 0 auto;
    max-width: 350px;
  }
  .top-work__btn p {
    line-height: 90px;
  }
  .top-work__content02 {
    padding-top: 32px;
  }
  .top-work__content02 .top-work__txt h2 {
    padding: 0;
    margin-left: auto;
    margin-right: 0;
    display: block;
  }
}

.top-inq__wrap {
  padding: 60px 0;
  background: linear-gradient(75deg, #10a29a 0%, #10a29a, 50%, #008080 50%, #008080 100%);
}

.top-inq__wrap a {
  line-height: 1.45455;
  font-size: 2.2rem;
  color: #fff;
  background-color: #ea6527;
  border: 2px solid #fff;
  line-height: 74px;
  max-width: 538px;
  width: 100%;
  border-radius: 37px;
  display: block;
  margin: 0 auto;
  text-align: center;
  letter-spacing: 1.2px;
}

@media screen and (max-width: 767px) {
  .top-inq__wrap {
    padding: 80px 0;
  }
  .top-inq__wrap a {
    width: 90%;
    line-height: 60px;
    border-radius: 30px;
  }
}

/* single 共通 */
.single h2 {
  line-height: 1.78378;
  font-size: 3.7rem;
  letter-spacing: 0.6rem;
  color: #fff;
  position: relative;
  z-index: 1;
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  display: block;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media screen and (max-width: 975px) {
  .single h2 {
    padding: 0 5%;
  }
}

.single h2::before {
  position: absolute;
  content: "";
  width: 940px;
  height: 104px;
  background-image: url(../img/single-h2-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  top: 50%;
  left: 100px;
}

@media screen and (max-width: 975px) {
  .single h2 {
    font-size: 2.6rem;
  }
  .single h2::before {
    width: 335px;
    height: 38px;
  }
}

.single-kv {
  background-image: url(../img/single-kv-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 140px 0;
  position: relative;
  z-index: 1;
}

.single-kv__ttl {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}

@media screen and (max-width: 975px) {
  .single-kv__ttl {
    padding: 0 5%;
  }
}

.single-kv__ttl img {
  width: 100%;
  height: auto;
}

.single-kv__ttl h1 {
  position: absolute;
  top: 45%;
  left: 50%;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  text-shadow: 4px 4px 4px rgba(0, 0, 0, 0.6);
  line-height: 1.78378;
  font-size: 3.7rem;
  letter-spacing: 0.6rem;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.single-kv__ttl::before {
  position: absolute;
  content: "";
  height: 123.94px;
  width: 1140px;
  background-image: url(../img/single-kv-obj.png);
  background-size: cover;
  left: -1030px;
}

.single-accent {
  position: relative;
  height: 280px;
}

.single-accent p {
  position: absolute;
  top: -60px;
  left: -20px;
  color: #10a29a;
  opacity: 0.3;
  font-size: 190px;
  font-weight: 400;
}

@media screen and (max-width: 975px) {
  .single-kv {
    padding: 100px 0;
    position: relative;
  }
  .single-kv__ttl img {
    display: none;
  }
  .single-kv__ttl::before {
    display: none;
  }
  .single-accent {
    position: relative;
    height: 80px;
  }
  .single-accent p {
    top: -20px;
    left: -20px;
    font-size: 60px;
  }
}

/* single */
.company-ttl {
  color: #10a29a;
  line-height: 1.57143;
  font-size: 4.2rem;
  letter-spacing: 0.6rem;
  text-align: center;
}

.gree p {
  line-height: 2.10526;
  font-size: 1.9rem;
  padding-top: 74px;
  display: block;
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 975px) {
  .gree p {
    padding: 0 5%;
  }
}

.gree .gree__name {
  text-align: right;
  padding-top: 36px;
}

.company {
  background-image: url(../img/company-bg.png);
  margin-top: 180px;
}

.company-wrap {
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  padding-top: 100px;
  padding-bottom: 140px;
}

@media screen and (max-width: 975px) {
  .company-wrap {
    padding: 0 5%;
  }
}

.company-row {
  border-bottom: 2px solid #008080;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 2.10526;
  font-size: 1.9rem;
  padding-top: 24px;
  padding-bottom: 24px;
  background-color: rgba(255, 255, 255, 0.7);
  padding-left: 12px;
}

.company-label {
  display: block;
  width: 242px;
}

.company-datail {
  width: 100%;
}

.access {
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  margin-top: 200px;
  margin-bottom: 240px;
}

@media screen and (max-width: 975px) {
  .access {
    padding: 0 5%;
  }
}

.map__wrap h3 {
  line-height: 1.78378;
  font-size: 3.7rem;
  letter-spacing: 0.6rem;
  color: #fff;
  background-image: url(../img/company-h3-bg.png);
  background-size: cover;
  padding-left: 24px;
  max-width: 700px;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: unset;
}

.map__wrap h3:first-of-type {
  margin-top: 120px;
}

.map__wrap h3:last-of-type {
  margin-top: 120px;
}

.map__wrap h3 span {
  line-height: 2.10526;
  font-size: 1.9rem;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

.map {
  border: 2px solid #008080;
}

.map iframe {
  width: 100%;
  height: 492px;
}

@media screen and (max-width: 975px) {
  .company-wrap {
    padding-bottom: 120px;
  }
  .company-row {
    display: block;
    padding: 12px 12px 12px 12px;
  }
  .access {
    margin-top: 60px;
    margin-bottom: 80px;
  }
  .map__wrap h3 {
    padding-left: 8px;
  }
  .map__wrap h3:first-of-type {
    margin-top: 36px;
  }
  .map__wrap h3:last-of-type {
    margin-top: 36px;
  }
  .map__wrap h3 span {
    display: block;
  }
}

section.business:nth-of-type(3) {
  margin-top: 120px;
}

section.business:nth-of-type(n+4) {
  margin-top: 220px;
}

.business-txt__wrap {
  overflow: hidden;
  height: 254px;
  position: relative;
  margin-top: 80px;
}

.business-txt__wrap p {
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  line-height: 2.10526;
  font-size: 1.9rem;
  position: relative;
  z-index: 2;
  padding-top: 60px;
}

@media screen and (max-width: 975px) {
  .business-txt__wrap p {
    padding: 0 5%;
  }
}

.business-txt__wrap img {
  position: absolute;
  left: -1000px;
}

.business-txt__wrap02 img {
  position: absolute;
  left: unset;
  right: -1000px;
}

.business {
  background-repeat: no-repeat;
  background-size: contain;
}

.business__con {
  margin-left: auto;
}

.business__con--01 {
  background-image: url(../img/business-bg-01.png);
}

.business__con--02 {
  background-image: url(../img/business-bg-02.png);
}

.business__con--02 .business-txt__wrap p {
  text-align: right;
  margin-top: 30px;
}

.business__con--03 {
  background-image: url(../img/business-bg03.png);
}

.business__con--03 .business-img__wrap {
  margin-bottom: 240px;
}

.business-txt__wrap03 {
  background-color: #fff;
  height: 320px;
}

.business-txt__wrap03 p {
  padding-top: 72px;
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  line-height: 2.10526;
  font-size: 1.9rem;
}

@media screen and (max-width: 975px) {
  .business-txt__wrap03 p {
    padding: 0 5%;
  }
}

.business-con01 {
  display: block;
  margin-left: auto;
  margin-top: -60px;
}

.business-con02 {
  display: block;
  margin-right: auto;
  margin-left: unset;
  margin-top: -160px;
}

.business-img__wrap {
  overflow: hidden;
  margin-top: -120px;
}

.business-img__wrap img {
  width: 100%;
}

@media screen and (max-width: 1439px) {
  .business__con {
    width: 100%;
  }
}

@media screen and (min-width: 1640px) {
  .business {
    background-size: cover;
  }
  .business__con--01 .business-txt__wrap img {
    left: -640px;
  }
  .business__con--02 .business-txt__wrap img {
    right: -640px;
  }
}

@media screen and (max-width: 975px) {
  .business {
    background-size: cover;
    padding-bottom: 36px;
  }
  .business-txt__wrap p {
    text-align: left;
    padding: 10px;
    background-color: #fff;
  }
  .business-txt__wrap img {
    display: none;
  }
  .business__con--02 .business-txt__wrap p {
    text-align: left;
  }
  .business__con {
    margin-top: 0;
    width: 90%;
  }
  section.business:nth-of-type(3) {
    margin-top: 60px;
  }
  section.business:nth-of-type(n+4) {
    margin-top: 80px;
  }
  .business-txt__wrap03 {
    background-color: unset;
    height: 320px;
  }
  .business-txt__wrap03 p {
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: #fff;
    margin-bottom: 50px;
  }
  .business__con--03 .business-img__wrap {
    margin-bottom: 0;
    margin-top: 0;
  }
  .business__con--03 {
    margin-bottom: 120px;
  }
}

.table__wrap {
  margin: 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  overflow-x: auto;
  border: 2px solid #969696;
}

.works {
  margin-bottom: 240px;
  background-image: url(../img/work-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 180px;
}

.works h2 {
  margin-top: 120px;
}

.works .table__wrap {
  margin-top: 100px;
  border: 2px solid #969696;
}

.works table {
  display: block;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  max-width: 1120px;
  width: 1120px;
  line-height: 1.75;
  font-size: 1.8rem;
  background-color: #969696;
  width: 100%;
  padding: 2px;
}

.works thead {
  color: #fff;
}

.works thead tr th {
  background-color: #008080;
  display: table-cell;
  line-height: 80px;
  text-align: center;
  border: 2px solid #969696;
}

.works thead tr th:nth-child(1) {
  min-width: 108px;
}

.works thead tr th:nth-child(2) {
  text-align: left;
  text-align: center;
  min-width: 200px;
}

.works thead tr th:nth-child(3) {
  min-width: 650px;
}

.works thead tr th:nth-child(4) {
  min-width: 150px;
}

.works tbody tr td {
  display: table-cell;
  vertical-align: middle;
  background-color: #fff;
  border: 2px solid #969696;
  text-align: left;
  padding-left: 10px;
}

.works tbody tr td.table--col2 {
  text-align: left;
  padding-left: 10px;
}

.works tbody tr td.table--n {
  line-height: 48px;
}

@media screen and (max-width: 975px) {
  .works {
    margin-bottom: 120px;
  }
  .works h2 {
    margin-top: 60px;
  }
  table {
    overflow-x: scroll;
  }
  .table__wrap {
    width: 90%;
    overflow-x: auto;
  }
}

.recruit {
  margin-top: 240px;
  background-image: url(../img/recruit-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.recruit__wrap {
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  margin-top: 120px;
  padding-bottom: 240px;
  margin-bottom: 200px;
}

@media screen and (max-width: 975px) {
  .recruit__wrap {
    padding: 0 5%;
  }
}

.recruit__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-top: 2px solid #000;
  line-height: 2.10526;
  font-size: 1.9rem;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

.recruit__row:last-child {
  border-bottom: 2px solid #000;
}

.recruit__row p {
  display: block;
  line-height: 98px;
  padding-left: 32px;
  padding-right: 32px;
}

.recruit__row p span {
  display: block;
}

.recruit__row p span:not(:first-child) {
  border-top: 1px solid #000;
  padding-top: 22px;
  margin-top: 22px;
}

.recruit__row p:first-child {
  width: 35%;
  white-space: nowrap;
  background-color: rgba(204, 230, 230, 0.8);
}

.recruit__row p:last-child {
  width: 65%;
  background-color: rgba(255, 255, 255, 0.8);
  line-height: 2;
  display: block;
  padding-top: 31px;
  padding-bottom: 31px;
}

@media screen and (max-width: 975px) {
  .recruit {
    padding-bottom: 60px;
    margin-bottom: 60px;
  }
  .recruit__row {
    display: block;
  }
  .recruit__row p {
    display: block;
    line-height: 98px;
    padding-left: 32px;
    padding-right: 32px;
  }
  .recruit__row p:first-child {
    width: 100%;
  }
  .recruit__row p:last-child {
    width: 100%;
  }
}

.margin-minu {
  margin-left: -3px;
}

.form {
  margin-top: 120px;
}

.form h2::before {
  left: 220px;
}

.tell h2::before {
  left: 220px;
}

.caution {
  color: red;
}

form {
  display: block;
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  margin-top: 120px;
}

@media screen and (max-width: 975px) {
  form {
    padding: 0 5%;
  }
}

form p {
  text-align: center;
  line-height: 2.10526;
  font-size: 1.9rem;
  margin-top: 80px;
}

.form-line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 24px;
}

.form-line label {
  display: block;
  line-height: 1.45455;
  font-size: 2.2rem;
  color: #fff;
  padding: 0px 24px;
  background-color: #008080;
  line-height: 80px;
  width: calc(38% - 40px);
  margin-right: 40px;
}

.form-line .form-textarea__label {
  line-height: 700px;
}

.form-line input[type="text"], .form-line input[type="number"], .form-line input[type="tel"], .form-line input[type="email"] {
  display: block;
  line-height: 1.45455;
  font-size: 2.2rem;
  border: 2px solid #999;
  background-color: #eee;
  width: calc(72% - 40px);
  padding: 0px 24px;
}

.form-line textarea {
  display: block;
  line-height: 1.45455;
  font-size: 2.2rem;
  width: calc(72% - 40px);
  padding: 0px 24px;
  border: 2px solid #999;
  background-color: #eee;
  height: 700px;
  line-height: 30px;
}

input[type="submit"] {
  display: block;
  line-height: 1.45455;
  font-size: 2.2rem;
  color: #fff;
  text-align: center;
  background-color: #008080;
  width: 484px;
  height: 82px;
  line-height: 82px;
  border-radius: 41px;
  margin: 60px auto 0 auto;
}

/*tell*/
.tell {
  margin-top: 240px;
  background-color: rgba(0, 128, 128, 0.2);
  margin-bottom: 220px;
}

.tel__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  padding: 80px 0 120px 0;
}

@media screen and (max-width: 975px) {
  .tel__wrap {
    padding: 0 5%;
  }
}

.tel__box {
  background-color: #fff;
  width: calc(50% - 26px);
  padding-top: 42px;
  padding-bottom: 42px;
}

.tel__box:last-child {
  margin-left: auto;
}

.tel__box p {
  line-height: 1.2069;
  font-size: 2.9rem;
  text-align: center;
  padding-bottom: 36px;
}

.tel__box a {
  background-color: #008080;
  color: #fff;
  line-height: 1.71429;
  font-size: 3.5rem;
  letter-spacing: 0.6rem;
  line-height: 1;
  padding: 32px;
  text-align: center;
  display: block;
  margin: 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

@media screen and (max-width: 975px) {
  .form h2::before, .tell h2::before {
    width: 525px;
    height: 58px;
    left: 180px;
  }
  .form {
    margin-top: 60px;
  }
  .tell {
    margin-top: 120px;
    background-color: rgba(0, 128, 128, 0.2);
    margin-bottom: 100px;
    padding-bottom: 80px;
  }
  .tel__wrap {
    display: block;
    max-width: 1120px;
    width: 100%;
    margin: 0 auto;
    margin-top: 80px;
    padding-bottom: 80px;
  }
}

@media screen and (max-width: 975px) and (max-width: 975px) {
  .tel__wrap {
    padding: 0 5%;
  }
}

@media screen and (max-width: 975px) {
  .tel__box {
    background-color: #fff;
    width: 100%;
    padding-top: 42px;
    padding-bottom: 42px;
  }
  .tel__box:last-child {
    margin-top: 24px;
  }
  .tel__box a {
    line-height: 1.23077;
    font-size: 2.6rem;
  }
}

@media screen and (max-width: 767px) {
  .form h2::before, .tell h2::before {
    left: 55px;
  }
  form {
    margin-top: 36px;
  }
  form p {
    margin-top: 40px;
  }
  .form-line {
    display: block;
    margin-bottom: 24px;
  }
  .form-line label {
    display: block;
    line-height: 1.45455;
    font-size: 2.2rem;
    color: #fff;
    padding: 0px 24px;
    background-color: #008080;
    line-height: 80px;
    width: 100%;
    margin-right: 40px;
  }
  .form-line .form-textarea__label {
    line-height: 80px;
  }
  .form-line input[type="text"], .form-line input[type="number"], .form-line input[type="tel"], .form-line input[type="email"] {
    width: 100%;
    padding: 0px 24px;
    min-height: 80px;
  }
  .form-line textarea {
    height: 300px;
    line-height: 80px;
    width: 100%;
  }
  input[type="submit"] {
    width: 100%;
    height: 60px;
    line-height: 60px;
    border-radius: 30px;
    margin: 60px auto 0 auto;
  }
}

.privacy__wrap {
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  padding-bottom: 128px;
}

@media screen and (max-width: 975px) {
  .privacy__wrap {
    padding: 0 5%;
  }
}

.privacy__wrap h2 {
  line-height: 1.37931;
  font-size: 2.9rem;
  border-bottom: 2px solid #008080;
  border-left: 26px solid #008080;
  line-height: 66px;
  padding-left: 24px;
}

.privacy__wrap p {
  line-height: 2.10526;
  font-size: 1.9rem;
  padding-top: 48px;
  padding-bottom: 124px;
}

@media screen and (max-width: 767px) {
  .privacy__wrap {
    padding-bottom: 80px;
  }
  .privacy__wrap h2 {
    line-height: 1.23077;
    font-size: 2.6rem;
    border-bottom: 2px solid #008080;
    border-left: 12px solid #008080;
    line-height: 66px;
    padding-left: 12px;
  }
  .privacy__wrap p {
    line-height: 2.10526;
    font-size: 1.9rem;
    padding-top: 24px;
    padding-bottom: 80px;
  }
}
