.border-line {
  margin: 5vw auto;
  display: block;
  text-align: center;
}
.border-line img {
  margin: auto;
}

.top-section {
  position: relative;
  height: 846px;
}
.top-section .top-img {
  width: 100%;
  height: 100%;
}
.top-section .logo {
  position: absolute;
}

.jigyousyo-btn {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}
.jigyousyo-btn a {
  background-color: #004d43;
  color: white;
  padding: 1vw;
}
.jigyousyo-btn a:nth-child(2) {
  background-color: #005490;
}
.jigyousyo-btn a:nth-child(3) {
  background-color: #17bbd8;
}
.jigyousyo-btn a:nth-child(4) {
  background-color: #dda600;
}

.salesoffice_section {
  padding-left: 5vw;
  padding-bottom: 2vw;
  margin-bottom: 2vw;
}
.salesoffice_section .logo {
  margin: 3vw auto;
  text-align: center;
}
.salesoffice_section .logo img {
  max-width: 322px;
}
.salesoffice_section .office-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2vw;
  align-items: center;
  justify-items: center;
}
.salesoffice_section .office-wrapper .left-wrap .title {
  margin-bottom: 2vw;
}
.salesoffice_section .office-wrapper .left-wrap .title h3 {
  background-color: white;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  color: black;
  border-left: solid 10px #004d43;
  display: inline-block;
  padding: 0 5vw;
  margin-bottom: 1vw;
}
.salesoffice_section .office-wrapper .left-wrap .title h4 {
  color: #004d43;
}
.salesoffice_section .office-wrapper .left-wrap .content ul {
  display: flex;
  gap: 3vw;
  flex-direction: column;
}
.salesoffice_section .office-wrapper .left-wrap .content ul li {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2vw;
  align-items: start;
}
.salesoffice_section .office-wrapper .left-wrap .content ul li h5 {
  background-color: #004d43;
  color: white;
  text-align: center;
}
.salesoffice_section .office-wrapper .left-wrap .content ul li p {
  color: black;
}
.salesoffice_section .office-wrapper .right-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1vw;
}
.salesoffice_section .office-wrapper .right-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.salesoffice_section .office-wrapper .right-wrapper .wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1vw;
}
.salesoffice_section.saitama .office-wrapper .left-wrap .title h3 {
  border-left: solid 10px #005490;
}
.salesoffice_section.saitama .office-wrapper .left-wrap .title h4 {
  color: #005490;
}
.salesoffice_section.saitama .office-wrapper .left-wrap .content ul li h5 {
  background-color: #005490;
}
.salesoffice_section.hidaka .office-wrapper .left-wrap .title h3 {
  border-left: solid 10px #17bbd8;
}
.salesoffice_section.hidaka .office-wrapper .left-wrap .title h4 {
  color: #17bbd8;
}
.salesoffice_section.hidaka .office-wrapper .left-wrap .content ul li h5 {
  background-color: #17bbd8;
}
.salesoffice_section.jidosya .office-wrapper .left-wrap .title h3 {
  border-left: solid 10px #dda600;
}
.salesoffice_section.jidosya .office-wrapper .left-wrap .title h4 {
  color: #dda600;
}
.salesoffice_section.jidosya .office-wrapper .left-wrap .content ul li h5 {
  background-color: #dda600;
}
.job-description {
  background-image: url(../image/abot-back.png);
  background-size: cover;
  width: 100%;
  height: 100%;
  padding: 5vw 0;
}
.job-description .title {
  text-align: center;
  margin-bottom: 50px;
  color: white;
}
.job-description .job-wrapper .tab {
  display: flex;
  grid-template-columns: repeat(2, 1fr);
  justify-items: center;
  align-items: center;
  justify-content: center;
  gap: 150px;
  margin-bottom: 50px;
}
.job-description .job-wrapper .tab li a {
  color: #000;
  background-color: white;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: block;
  font-weight: 700;
  text-align: center;
  line-height: 70px;
  padding: 0 2vw;
}
.job-description .job-wrapper .tab li.active a {
  background-color: #6fd046;
}
.job-description .job-wrapper .area {
  display: none;
  opacity: 0;
  margin: 0 20vw;
  /* background: #fff; */
  padding: 50px 0px;
  padding-top: 100px;
}
.job-description .job-wrapper .area.is-active {
  display: block;
  animation-name: displayAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  margin: 0 auto;
}
.job-description .job-wrapper .area ul {
  padding: 0 3vw;
  display: flex;
  gap: 2vw;
  flex-direction: column;
}
.job-description .job-wrapper .area ul li {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 1vw;
}
.job-description .job-wrapper .area ul li .b {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 2vw 3vw;
  display: flex;
  align-items: center;
}
.job-description .job-wrapper .area ul li:nth-of-type(even) .b {
  background-color: #dafccc;
}

@keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media (max-width: 768px) {
  .top-section {
    height: 489px;
  }
  .top-section .top-img {
    -o-object-fit: cover;
       object-fit: cover;
  }
  .jigyousyo-btn {
    grid-template-columns: repeat(2, 1fr);
  }
  .salesoffice_section {
    padding-left: 0vw;
    padding-bottom: 2vw;
    margin-bottom: 2vw;
  }
  .salesoffice_section .logo {
    max-width: 215px;
  }
  .salesoffice_section .logo img {
    -o-object-fit: contain;
       object-fit: contain;
    width: 100%;
    height: 100%;
  }
  .salesoffice_section .office-wrapper {
    display: flex;
    flex-direction: column-reverse;
  }
  .salesoffice_section .office-wrapper .left-wrap {
    width: 95%;
    margin-top: 5vw;
  }
  .salesoffice_section .office-wrapper .left-wrap .title {
    text-align: center;
  }
  .salesoffice_section .office-wrapper .left-wrap .content ul li {
    grid-template-columns: auto;
  }
  .salesoffice_section .office-wrapper .left-wrap .content ul li h5 {
    background-color: #004d43;
    color: white;
    text-align: center;
  }
  .salesoffice_section .office-wrapper .left-wrap .content ul li p {
    color: black;
  }
  .salesoffice_section .office-wrapper .right-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1vw;
  }
  .salesoffice_section .office-wrapper .right-wrapper .wrapper {
    display: none;
  }
  .job-description .job-wrapper .tab {
    display: flex;
    flex-direction: column;
    gap: 0vw;
  }
  .job-description .job-wrapper .tab li {
    width: 100%;
  }
  .job-description .job-wrapper .tab li a {
    box-shadow: none;
    width: 100%;
  }
  .job-description .job-wrapper .area {
    margin: 0 5vw;
    padding-top: 0;
  }
  .job-description .job-wrapper .area.is-active {
    display: block;
    animation-name: displayAnime;
    animation-duration: 2s;
    animation-fill-mode: forwards;
    margin: 0 auto;
  }
  .job-description .job-wrapper .area ul {
    padding: 0;
  }
  .job-description .job-wrapper .area ul li {
    grid-template-columns: auto;
  }
  .job-description .job-wrapper .area ul li:nth-of-type(even) h6.b {
    background-color: transparent;
  }
  .job-description .job-wrapper .area ul li h6.b {
    background-color: transparent;
    color: white;
  }
  @keyframes displayAnime {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
}/*# sourceMappingURL=about.css.map */