@charset "UTF-8";
/*
Theme Name: new
*/
* {
  box-sizing: border-box;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
}

body {
  overflow-x: hidden;
}

a:hover {
  opacity: 0.7;
}

img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

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

p,
li,
a {
  font-weight: 500;
}

.pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp {
    display: block;
  }
}

.btn {
  width: 92%;
  max-width: 360px;
  display: block;
  text-align: center;
  background: #fff;
  padding: 1em 0;
  border-radius: 5em;
  color: #000;
  text-decoration: none;
  margin-top: 40px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .btn {
    margin: 30px auto 0;
  }
}
.btn::after {
  content: "";
  display: block;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  width: 0.75em;
  height: 0.75em;
  position: absolute;
  right: 2.5em;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

header {
  position: fixed;
  width: 100%;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  padding: 1em;
}
header .header-inner {
  width: 100%;
  max-width: 1040px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
header .header-inner .logo img {
  height: 45px;
  width: auto;
}
@media screen and (max-width: 768px) {
  header .header-inner .logo img {
    height: 42px;
  }
}
@media screen and (max-width: 768px) {
  header .header-inner nav {
    width: 32px;
    height: 32px;
    position: relative;
  }
}
header .header-inner nav span.hamberger {
  display: none;
}
@media screen and (max-width: 768px) {
  header .header-inner nav span.hamberger {
    display: block;
    width: 22px;
    height: 3px;
    background: #666;
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translateX(50%) translateY(-50%);
    transition: all 0.3s ease;
  }
  header .header-inner nav span.hamberger::before, header .header-inner nav span.hamberger::after {
    transition: all 0.3s ease;
    position: absolute;
    right: 0;
    width: 22px;
    height: 3px;
    background: #666;
  }
  header .header-inner nav span.hamberger::before {
    content: "";
    top: -10px;
  }
  header .header-inner nav span.hamberger::after {
    content: "";
    top: 10px;
  }
}
header .header-inner nav span.hamberger.open {
  background: transparent;
}
header .header-inner nav span.hamberger.open::before, header .header-inner nav span.hamberger.open::after {
  top: 0;
}
header .header-inner nav span.hamberger.open::before {
  transform: rotate(135deg);
}
header .header-inner nav span.hamberger.open::after {
  transform: rotate(-135deg);
}
@media screen and (max-width: 768px) {
  header .header-inner nav ul.open {
    right: 100vw;
  }
}
header .header-inner nav ul {
  transition: all 0.3s ease;
  display: flex;
  gap: 1em;
}
@media screen and (max-width: 768px) {
  header .header-inner nav ul {
    width: 100vw;
    height: calc(100vh - 35px);
    background: rgba(255, 255, 255, 0.9);
    position: absolute;
    top: 45px;
    right: -1em;
    flex-direction: column;
    gap: 0;
  }
}
@media screen and (max-width: 768px) {
  header .header-inner nav ul li:last-of-type a {
    border-bottom: solid 1px #ccc;
  }
}
header .header-inner nav ul li a {
  color: black;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  header .header-inner nav ul li a {
    padding: 1em 0;
    display: block;
    text-align: center;
    border-top: solid 1px #ccc;
  }
}

main {
  padding-top: 75px;
}
@media screen and (max-width: 768px) {
  main {
    padding-top: 70px;
  }
}
main .mv {
  padding: 0;
  background: #edf2ff;
}
main section {
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  main section {
    padding: 50px 0;
  }
}
main section .sectionInner {
  width: 92%;
  max-width: 1040px;
  margin: 0 auto;
}
main .intro {
  background: #edf2ff;
  display: flex;
  justify-content: center;
  align-items: start;
}
@media screen and (max-width: 768px) {
  main .intro {
    flex-direction: column;
  }
}
main .intro-text {
  flex-basis: 50%;
  padding-left: calc(50vw - 540px + 1em);
}
@media screen and (max-width: 768px) {
  main .intro-text {
    flex-basis: 100%;
  }
}
main .intro-text p {
  padding: 0 1em;
  line-height: 2em;
}
main .intro-img {
  flex-basis: 50%;
}
@media screen and (max-width: 768px) {
  main .intro-img {
    padding: 1em;
  }
}
main .job-list {
  background: url(./img/bg.webp) no-repeat center center;
  background-size: cover;
}
main .job-list .container .job-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
}
@media screen and (max-width: 768px) {
  main .job-list .container .job-grid {
    flex-direction: column;
    gap: 2em;
  }
}
main .job-list .container .job-grid .job-card {
  flex-basis: calc((100% - 2em) / 3);
  text-decoration: none;
}
main .job-list .container .job-grid .job-card-text {
  padding: 1.5em 1.5em 3.5em;
  position: relative;
}
main .job-list .container .job-grid .job-card-text::after {
  content: "";
  position: absolute;
  bottom: 1.5em;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 1em;
  height: 1em;
  border: solid #fff;
  border-width: 0px 2px 2px 0px;
}
main .job-list .container .job-grid .job-card-text h3 {
  color: #fff;
  text-align: center;
}
main .job-list .container .job-grid .job-card-text p {
  color: #fff;
  line-height: 1.5em;
  margin-top: 1em;
}
main .prosthetist {
  background: #009189;
}
main .prosthetist .btn {
  color: #009189;
}
main .prosthetist .btn::after {
  border-color: #009189;
}
main .engineer {
  background: #0068aa;
}
main .engineer .btn {
  color: #0068aa;
}
main .engineer .btn::after {
  border-color: #0068aa;
}
main .radiologist {
  background: #008fae;
}
main .radiologist .btn {
  color: #008fae;
}
main .radiologist .btn::after {
  border-color: #008fae;
}
main .information-manager {
  background: #9a4d80;
}
main .information-manager .btn {
  color: #9a4d80;
}
main .information-manager .btn::after {
  border-color: #9a4d80;
}
main .data-scientist {
  background: #382a57;
}
main .data-scientist .btn {
  color: #382a57;
}
main .data-scientist .btn::after {
  border-color: #382a57;
}
main .cv {
  background: #edf2ff;
}
main .cv a {
  display: block;
  margin: 0 auto;
  width: 92%;
  max-width: 600px;
}
main .cv2 {
  padding: 0;
  background: #edf2ff;
  display: flex;
  gap: 1em;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  main .cv2 {
    flex-direction: column;
    gap: 2em;
    padding-bottom: 50px;
  }
}
main .cv2 .btn {
  margin: 0 0 60px;
  width: 92%;
  max-width: 360px;
}
@media screen and (max-width: 768px) {
  main .cv2 .btn {
    margin: 0 auto;
  }
}
main .cv2 .btn:nth-of-type(1) {
  background: #f38839;
  color: #fff;
}
main .cv2 .btn:nth-of-type(1)::after {
  border-color: #fff;
}
main .cv2 .btn:nth-of-type(2) {
  background: #60c1c7;
  color: #fff;
}
main .cv2 .btn:nth-of-type(2)::after {
  border-color: #fff;
}
main .job-detail {
  background: #edf2ff;
}
main .job-detail h2,
main .job-detail h3,
main .job-detail p,
main .job-detail li {
  color: #fff;
}
main .job-detail .job-detail-header {
  display: flex;
  justify-content: space-between;
  position: relative;
}
@media screen and (max-width: 768px) {
  main .job-detail .job-detail-header {
    flex-direction: column-reverse;
  }
}
main .job-detail .job-detail-header .job-detail-header-text {
  flex-basis: 50%;
  padding: 60px;
  position: relative;
}
@media screen and (max-width: 768px) {
  main .job-detail .job-detail-header .job-detail-header-text {
    padding: 0 1em 2em;
  }
}
main .job-detail .job-detail-header .job-detail-header-text::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 60px;
  width: 33%;
  height: 1px;
  background: #fff;
}
@media screen and (max-width: 768px) {
  main .job-detail .job-detail-header .job-detail-header-text::after {
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 2px;
  }
}
main .job-detail .job-detail-header .job-detail-header-text h2 {
  font-size: 2.5em;
}
@media screen and (max-width: 768px) {
  main .job-detail .job-detail-header .job-detail-header-text h2 {
    font-size: 2em;
    text-align: center;
  }
}
main .job-detail .job-detail-header .job-detail-header-text .en {
  font-weight: bold;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  main .job-detail .job-detail-header .job-detail-header-text .en {
    text-align: center;
  }
}
main .job-detail .job-detail-header .job-detail-header-img {
  flex-basis: 50%;
  position: relative;
}
main .job-detail .job-detail-header .job-detail-header-img img {
  position: absolute;
  bottom: 0;
}
@media screen and (max-width: 768px) {
  main .job-detail .job-detail-header .job-detail-header-img img {
    position: relative;
    bottom: 2em;
    margin-left: 5%;
    width: 95%;
  }
}
main .job-detail .job-detail-description h3 {
  font-size: 1.75em;
  margin: 2.5em 0;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  main .job-detail .job-detail-description h3 {
    font-size: 1.5em;
  }
}
main .job-detail .job-detail-description h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.3);
  font-size: 3.5em;
  color: transparent;
  font-family: "Roboto";
}
@media screen and (max-width: 768px) {
  main .job-detail .job-detail-description h3::after {
    font-size: 2.5em;
  }
}
main .job-detail .job-detail-description h3.jobs::after {
  content: "JOBS";
}
main .job-detail .job-detail-description h3.work::after {
  content: "WORK";
}
main .job-detail .job-detail-description h3.message::after {
  content: "MESSAGE";
}
main .job-detail .job-detail-description-content {
  display: flex;
  justify-content: space-between;
  padding: 0 60px;
}
@media screen and (max-width: 768px) {
  main .job-detail .job-detail-description-content {
    padding: 0 1em;
    flex-direction: column;
  }
}
main .job-detail .job-detail-description-content-img {
  flex-basis: calc(50% - 40px);
}
@media screen and (max-width: 768px) {
  main .job-detail .job-detail-description-content-img {
    margin-bottom: 1.5em;
  }
}
main .job-detail .job-detail-description-content-text {
  flex-basis: 50%;
}
main .job-detail .job-detail-description-content-text p {
  line-height: 2em;
}
main .job-detail .job-detail-description-content-text ul li {
  font-size: 1.125em;
  margin-bottom: 0.5em;
}
main .job-detail .job-detail-description-content-text ul li::before {
  content: "● ";
}
main .job-detail .job-detail-description-content-text ul p {
  line-height: 1.5em;
  margin-bottom: 0.75em;
  padding-left: 1.25em;
}
main .job-detail .job-detail-description .flex-reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  main .job-detail .job-detail-description .flex-reverse {
    flex-direction: column;
  }
}
main .job-detail .job-detail-description-graduates {
  padding: 60px;
}
@media screen and (max-width: 768px) {
  main .job-detail .job-detail-description-graduates {
    padding: 50px 1em;
  }
}
main .job-detail .job-detail-description-graduates-inner {
  border: solid 1px #fff;
  padding: 0 3em;
}
@media screen and (max-width: 768px) {
  main .job-detail .job-detail-description-graduates-inner {
    padding: 0 1em;
  }
}
main .job-detail .job-detail-description-graduates-inner .graduates-card {
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  main .job-detail .job-detail-description-graduates-inner .graduates-card {
    flex-direction: column;
  }
}
main .job-detail .job-detail-description-graduates-inner .graduates-card .graduate {
  margin-bottom: 40px;
}
main .job-detail .job-detail-description-graduates-inner .graduates-card .graduate p {
  margin-top: 0.75em;
  font-weight: 600;
}
main .job-detail .data-scientist {
  padding-bottom: 60px;
}
main .sns {
  background: #edf2ff;
  padding: 0 0 80px;
}
main .sns .sns-inner {
  width: 92%;
  max-width: 1040px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1em;
}
@media screen and (max-width: 768px) {
  main .sns .sns-inner {
    flex-wrap: wrap;
    gap: 1em;
  }
  main .sns .sns-inner a {
    flex-basis: calc((100% - 2em) / 3);
  }
}

footer .footer-inner {
  padding: 40px 0;
  display: flex;
  width: 92%;
  max-width: 1040px;
  margin: 0 auto;
  gap: 1em;
}
@media screen and (max-width: 768px) {
  footer .footer-inner {
    flex-direction: column;
    gap: 2em;
  }
}
footer .footer-inner-logo {
  flex-basis: 25%;
}
footer .footer-inner-text .tel {
  position: relative;
  padding-left: 3em;
}
footer .footer-inner-text .tel span {
  position: absolute;
  left: 0;
  top: 0;
}
footer .credit {
  text-align: center;
  padding: 0.75em 0;
  background: #eee;
  color: #666;
}/*# sourceMappingURL=style.css.map */