@charset "UTF-8";
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: YakuHanJP_Narrow, "Inter", "Noto Sans JP", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.08em;
  line-height: 1.8;
  font-feature-settings: "palt";
  font-size: 1.6rem;
  color: #333;
  background-color: #f7f7f7;
}

img {
  width: 100%;
}

.pc {
  display: inline-block;
}

.sp {
  display: none;
}

/* ハンバーガーメニュー */
.hamburger-overlay {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  width: 48px;
  height: 48px;
  border: none;
  background: transparent;
  cursor: pointer;
}
.hamburger-overlay .hamburger-overlay__line {
  position: absolute;
  left: 11px;
  width: 26px;
  height: 2px;
  background-color: #333;
  transition: all 0.6s;
}
.hamburger-overlay .hamburger-overlay__line:nth-of-type(1) {
  top: 14px;
}
.hamburger-overlay .hamburger-overlay__line:nth-of-type(2) {
  top: 23px;
}
.hamburger-overlay .hamburger-overlay__line:nth-of-type(3) {
  top: 32px;
}

.hamburger-overlay.active .hamburger-overlay__line {
  background-color: #fff;
}
.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(1) {
  transform: translateY(9px) rotate(-45deg);
}
.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(2) {
  opacity: 0;
}
.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(3) {
  transform: translateY(-9px) rotate(45deg);
}

.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #0099d9;
  visibility: hidden;
  opacity: 0;
  transition: all 0.6s;
  z-index: 900;
}
.nav-overlay.active {
  visibility: visible;
  opacity: 1;
}

.nav-overlay__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}

.nav-overlay__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-overlay__item {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s;
}

.nav-overlay.active .nav-overlay__item {
  opacity: 1;
  transform: translateY(0);
}
.nav-overlay.active .nav-overlay__item:nth-child(1) {
  transition-delay: 0.1s;
}
.nav-overlay.active .nav-overlay__item:nth-child(2) {
  transition-delay: 0.2s;
}
.nav-overlay.active .nav-overlay__item:nth-child(3) {
  transition-delay: 0.3s;
}
.nav-overlay.active .nav-overlay__item:nth-child(4) {
  transition-delay: 0.4s;
}

.nav-overlay__link {
  display: inline;
  padding: 1em;
  color: #fff;
  font-size: min(5vw, 2.4rem);
  transition: color 0.3s;
  margin: auto;
  width: -moz-fit-content;
  width: fit-content;
}
.nav-overlay__link:hover {
  color: #4a90e2;
}

/* ハンバーガーメニュー */
.wrap {
  max-width: 100rem;
  width: 86%;
  margin: auto;
}

header {
  padding-block: 1%;
}
header .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .wrap .logo {
  width: 20%;
}
header .wrap nav {
  display: flex;
  width: 70%;
  gap: 6%;
  justify-content: flex-end;
}
header .wrap nav a {
  display: flex;
  white-space: nowrap;
}
header .wrap nav a.recruit {
  background-color: #0099d9;
  color: #fff;
  border-radius: 99rem;
  padding: 0.2em 1.2em;
}

main .content {
  padding-block: 5% 4%;
}
main .content .wrap h2 {
  font-size: min(6vw, 4rem);
  font-weight: 500;
  text-align: center;
  line-height: 0.8;
  letter-spacing: 0.1em;
  margin-bottom: 4%;
}
main .content .wrap h2 small {
  font-size: 0.35em;
  color: #0099d9;
  letter-spacing: 0;
}
main .content .wrap .lead {
  margin-bottom: 4%;
}
main .content .wrap .inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2em 2.9%;
}
main .content .wrap .inner a {
  width: 31.4%;
  display: flex;
  flex-direction: column;
  border: 1px solid #bbb;
  border-radius: 4px;
}
main .content .wrap .inner a .img {
  width: 100%;
  border-radius: 4px 4px 0 0;
}
main .content .wrap .inner a .img img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
}
main .content .wrap .inner a .text {
  padding: 1em 1.4em;
  background-color: #fff;
  font-size: 1.4rem;
  color: #fff;
  border-radius: 0 0 4px 4px;
  background-color: #0099d9;
  flex: 1;
}
main .content .wrap .inner a .text .ttl {
  text-align: justify;
}
main .content .wrap .inner a .text .more {
  text-align: right;
}
main .content .wrap a.btn {
  width: -moz-fit-content;
  width: fit-content;
  color: #0099d9;
  border: 1px #0099d9 solid;
  border-radius: 99rem;
  background-color: #fff;
  padding: 0.4em 4em;
  display: block;
  margin: 4% auto 0;
}
main .content .wrap .pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 2em;
  gap: 0 2em;
  margin-top: 8%;
}
main .content .wrap .pagination .page_list {
  display: flex;
  align-items: center;
  gap: 0 2em;
}
main .content .wrap .pagination .page_list a {
  display: block;
  text-align: center;
}
main .content .wrap .pagination .page_list a.active {
  background-color: #0099d9;
  color: #fff;
  width: 2em;
  height: 2em;
  border-radius: 50%;
}
main .content .wrap.voice {
  margin-top: 10%;
}
main.company .content .wrap, main.recruit .content .wrap {
  max-width: 80rem;
  width: 86%;
  margin: auto;
}
main.company .content .wrap h1, main.recruit .content .wrap h1 {
  font-size: min(5vw, 3.2rem);
  font-weight: 500;
  margin-bottom: 1em;
  line-height: 1.6;
}
main.company .content .wrap h2, main.recruit .content .wrap h2 {
  font-size: min(4.4vw, 2.4rem);
  background-color: #fff;
  padding: 0.8em 1em;
  border-left: #333 solid 2px;
  text-align: left;
  line-height: 1.6;
  margin-block: 2em 1.2em;
}
main.company .content .wrap h3, main.recruit .content .wrap h3 {
  font-size: min(4vw, 2rem);
  color: #0099d9;
  font-weight: 500;
  margin-block: 0 0.4em;
}
main.company .content .wrap .img, main.recruit .content .wrap .img {
  width: 100%;
}
main.company .content .wrap .img img, main.recruit .content .wrap .img img {
  width: 100%;
  height: auto;
  aspect-ratio: 80/53;
  -o-object-fit: cover;
     object-fit: cover;
}
main.company .content .wrap p, main.recruit .content .wrap p {
  text-align: justify;
  margin-block: 0 2em;
  line-height: 2;
}
main.company .content .wrap p.prof, main.recruit .content .wrap p.prof {
  font-size: min(4vw, 2rem);
  font-weight: 500;
  margin-block: 2em;
}
main.company .content .wrap table, main.recruit .content .wrap table {
  width: 100%;
  margin-block: 2em 4em;
}
main.company .content .wrap table tr:not(:last-child), main.recruit .content .wrap table tr:not(:last-child) {
  border-bottom: 1px solid #ccc;
}
main.company .content .wrap table tr th, main.recruit .content .wrap table tr th {
  width: 30%;
  background-color: #f2f2f2;
  padding: 1em 1.4em;
  font-weight: 500;
}
main.company .content .wrap table tr td, main.recruit .content .wrap table tr td {
  background-color: #fff;
  width: 70%;
  padding: 1em 1.4em;
}
main.company .content .wrap .summary, main.recruit .content .wrap .summary {
  font-size: min(4vw, 2rem);
  margin-bottom: 1em;
}
main.company .content .wrap .point, main.recruit .content .wrap .point {
  background-color: #eaf1f5;
  padding: 1.8em 2.4em;
  margin-block: 4em;
}
main.company .content .wrap .point dt, main.recruit .content .wrap .point dt {
  font-size: min(4.4vw, 2.4rem);
  font-weight: 500;
  margin-bottom: 0.4em;
  color: #0099d9;
}
main.company .content .wrap .tag, main.recruit .content .wrap .tag {
  margin-bottom: 10%;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6em;
}
main.company .content .wrap .tag li, main.recruit .content .wrap .tag li {
  display: inline-block;
  border: 1px #aaa solid;
  padding: 0 0.6em;
  border-radius: 4px;
}
main.company .content .wrap .recruit_btn, main.recruit .content .wrap .recruit_btn {
  background-color: #0099d9;
  padding-block: 6%;
}
main.company .content .wrap .recruit_btn > div, main.recruit .content .wrap .recruit_btn > div {
  font-size: min(4vw, 2rem);
  color: #fff;
  text-align: center !important;
  line-height: 1.6;
}
main.company .content .wrap .recruit_btn a, main.recruit .content .wrap .recruit_btn a {
  display: block;
  font-size: min(6vw, 3.2rem);
  background-color: #fff;
  border-radius: 99rem;
  color: #0099d9;
  width: 50%;
  margin: 0.6em auto 0;
  padding-block: 0.4em;
  text-align: center;
}
main.company .content .wrap_w, main.recruit .content .wrap_w {
  max-width: 100rem;
  width: 86%;
  margin: auto;
  border-top: 1px solid #aaa;
  margin-top: 10%;
  padding-block: 4em 0;
}
main.company .content .wrap_w h4, main.recruit .content .wrap_w h4 {
  font-size: min(6vw, 2.8rem);
  text-align: center;
  font-weight: 500;
  margin-bottom: 1em;
  letter-spacing: 0.1em;
}
main.company .content .wrap_w .inner, main.recruit .content .wrap_w .inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2em 2.9%;
}
main.company .content .wrap_w .inner a, main.recruit .content .wrap_w .inner a {
  width: 31.4%;
  display: flex;
  flex-direction: column;
  border: 1px solid #bbb;
  border-radius: 4px;
}
main.company .content .wrap_w .inner a .img, main.recruit .content .wrap_w .inner a .img {
  width: 100%;
  border-radius: 4px 4px 0 0;
}
main.company .content .wrap_w .inner a .img img, main.recruit .content .wrap_w .inner a .img img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
}
main.company .content .wrap_w .inner a .text, main.recruit .content .wrap_w .inner a .text {
  padding: 1em 1.4em;
  background-color: #fff;
  font-size: 1.4rem;
  background-color: #0099d9;
  border-radius: 0 0 4px 4px;
  color: #fff;
  flex: 1;
}
main.company .content .wrap_w .inner a .text .ttl, main.recruit .content .wrap_w .inner a .text .ttl {
  text-align: justify;
}
main.company .content .wrap_w .inner a .text .more, main.recruit .content .wrap_w .inner a .text .more {
  text-align: right;
}
main.company .content .wrap_w a.btn, main.recruit .content .wrap_w a.btn {
  width: -moz-fit-content;
  width: fit-content;
  color: #0099d9;
  border: 1px #0099d9 solid;
  border-radius: 99rem;
  background-color: #fff;
  padding: 0.4em 4em;
  display: block;
  margin: 4% auto 0;
}

footer {
  background-color: #0099d9;
  padding-block: 4%;
  color: #fff;
  margin-top: 5%;
}
footer .wrap {
  display: flex;
  justify-content: space-between;
}
footer .wrap .box {
  display: flex;
  flex-direction: column;
  gap: 1.6em 0;
  width: 30%;
}
footer .wrap nav {
  font-size: 1.4rem;
  width: 50%;
  text-align: right;
  font-weight: 600;
}
footer .wrap nav p {
  display: inline;
  margin-left: 1em;
}
footer .copyright {
  max-width: 100rem;
  width: 86%;
  margin: auto;
  text-align: right;
  font-size: 1.2rem;
  letter-spacing: 0;
}

@media screen and (max-width: 768px) {
  body {
    font-size: 3.6vw;
  }
  .pc {
    display: none !important;
  }
  .sp {
    display: inline-block;
  }
  /* ハンバーガーメニュー */
  .hamburger-overlay {
    top: 3vw;
    right: 3vw;
  }
  header {
    padding-block: 4%;
    position: fixed;
    top: 0;
    background-color: #f7f7f7;
  }
  header .wrap .logo {
    width: 40%;
  }
  header .wrap .recruit {
    background-color: #0099d9;
    color: #fff;
    border-radius: 99rem;
    padding: 0.2em 1.2em;
  }
  header .wrap nav {
    width: 100%;
  }
  main .content {
    padding-block: 24% 6%;
  }
  main .content .wrap h2 {
    margin-bottom: 6%;
  }
  main .content .wrap .lead {
    margin-bottom: 10%;
  }
  main .content .wrap .inner a {
    width: 100%;
  }
  main .content .wrap .inner a .text {
    font-size: unset;
  }
  main .content .wrap a.btn {
    font-size: 4.4vw;
    margin: 8% auto 0;
  }
  main .content .wrap.voice {
    margin-top: 20%;
  }
  main.company .content .wrap table, main.recruit .content .wrap table {
    width: 100%;
    margin-block: 2em 4em;
  }
  main.company .content .wrap table tr:not(:last-child), main.recruit .content .wrap table tr:not(:last-child) {
    border-bottom: 1px solid #ccc;
  }
  main.company .content .wrap table tr th, main.recruit .content .wrap table tr th {
    width: 30%;
    background-color: #f2f2f2;
    padding: 1em 1.4em;
    font-weight: 500;
  }
  main.company .content .wrap table tr td, main.recruit .content .wrap table tr td {
    background-color: #fff;
    width: 70%;
    padding: 1em 1.4em;
  }
  main.company .content .wrap_w, main.recruit .content .wrap_w {
    margin-top: 16%;
  }
  main.company .content .wrap_w .inner a, main.recruit .content .wrap_w .inner a {
    width: 100%;
  }
  main.company .content .wrap_w .inner a .text, main.recruit .content .wrap_w .inner a .text {
    font-size: unset;
  }
  main.company .content .wrap_w a.btn, main.recruit .content .wrap_w a.btn {
    font-size: 4.4vw;
    margin: 8% auto 0;
  }
  footer {
    padding-block: 12%;
    margin-top: 10%;
  }
  footer .wrap {
    flex-direction: column;
    width: 80%;
  }
  footer .wrap .box {
    width: 100%;
  }
  footer .wrap nav {
    display: flex;
    flex-wrap: wrap;
    font-size: unset;
    width: 100%;
    text-align: center;
    gap: 1.6em 0;
    margin-block: 3em;
  }
  footer .wrap nav p {
    width: 50%;
    margin-left: unset;
  }
  footer .copyright {
    text-align: center;
  }
}/*# sourceMappingURL=style.css.map */