* {
  margin: 0;
  padding: 0;
  font-weight: 500;
  box-sizing: border-box;
}

html {
  font-size: 10px;
}

body {
  color: #272727;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 28px;
}
body.fixed {
  position: fixed;
  width: 100%;
  height: 100%;
}

img {
  vertical-align: bottom;
  width: 100%;
  height: auto;
}

ul, ol {
  list-style: none;
}

a {
  text-decoration: none;
}

.en {
  font-family: "Roboto", sans-serif;
}

.sp-only {
  display: block;
}
@media (min-width: 768px) {
  .sp-only {
    display: none;
  }
}

.pc-only {
  display: none;
}
@media (min-width: 768px) {
  .pc-only {
    display: block;
  }
}

.common_button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 167px;
  height: 53px;
  border-radius: 27px;
  color: #fff;
  font-weight: 500;
  background-image: linear-gradient(90deg, #a5e1f0, #4469e2);
}
@media (min-width: 768px) {
  .common_button {
    transition: 0.3s;
  }
}
@media (min-width: 768px) {
  .common_button:hover {
    opacity: 0.5;
  }
}

.section-title {
  display: flex;
  align-items: center;
  column-gap: 5px;
}
.section-title .en {
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.2;
}
.section-title .ja {
  font-size: 1.7rem;
  font-weight: bold;
  line-height: 1.4705882353;
}
.section-title::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
}
.section-title:not(.color-white) {
  color: #272727;
}
.section-title:not(.color-white)::before {
  background-color: #00AABE;
}
.section-title.color-white {
  color: #fff;
}
.section-title.color-white::before {
  background-color: #fff;
}

.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  height: 94px;
  padding: 16px 15px 0;
  z-index: 9999;
}
@media (min-width: 768px) {
  .header {
    padding: 16px 20px 0 30px;
  }
}
@media (min-width: 1135px) {
  .header {
    height: 138px;
  }
}
@media (min-width: 1200px) {
  .header {
    padding: 26px 50px 0 60px;
  }
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__inner .logo {
  width: 180px;
}
@media (min-width: 1135px) {
  .header__inner .logo {
    width: 270px;
  }
}
.header__inner .logo a {
  display: flex;
}
.header__inner .logo a img {
  width: 100%;
  height: auto;
}
.header__inner .nav {
  background-color: #fff;
}
@media (max-width: 1134px) {
  .header__inner .nav {
    width: 100%;
    visibility: hidden;
    opacity: 0;
    position: fixed;
    z-index: -9999;
    top: 0;
    left: 0;
    transition: 0.3s opacity;
  }
}
@media (max-width: 1134px) {
  .header__inner .nav.is-show {
    visibility: visible;
    opacity: 1;
    padding: 100px 15px 30px 15px;
    z-index: -10;
  }
}
@media (min-width: 1135px) {
  .header__inner .nav {
    visibility: visible;
    display: inline-block;
    border-radius: 40px;
    padding: 0 15px 0 50px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  }
}
.header__inner .nav ul {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 1134px) {
  .header__inner .nav ul {
    row-gap: 40px;
  }
}
@media (min-width: 1135px) {
  .header__inner .nav ul {
    flex-direction: row;
    align-items: center;
    height: 80px;
    column-gap: 40px;
    padding-top: 3px;
  }
}
.header__inner .nav ul li a:not(.contact) {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  row-gap: 2px;
  line-height: 1.4705882353;
  font-weight: bold;
  position: relative;
  color: #272727;
}
@media (min-width: 768px) {
  .header__inner .nav ul li a:not(.contact) {
    font-size: 1.7rem;
  }
}
.header__inner .nav ul li a:not(.contact)::before {
  display: block;
  padding-left: 7px;
  color: #000;
  line-height: 1.1538461538;
  font-family: "Roboto", sans-serif;
}
@media (min-width: 768px) {
  .header__inner .nav ul li a:not(.contact)::before {
    font-size: 1.3rem;
  }
}
.header__inner .nav ul li a:not(.contact)::after {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #00AABE;
  position: absolute;
  left: 0;
  top: 5px;
}
.header__inner .nav ul li a.mission::before {
  content: "Mission";
}
.header__inner .nav ul li a.company::before {
  content: "Company";
}
.header__inner .nav ul li a.news::before {
  content: "News";
}
.header__inner .nav ul li a.access::before {
  content: "Access";
}
.header__inner .nav ul li a.recruit::before {
  content: "Recruit";
}
@media (min-width: 768px) {
  .header__inner .nav ul li a.contact {
    margin-left: 5px;
  }
}
.header__inner .hamburger {
  width: 56px;
  height: 56px;
  display: block;
}
@media (min-width: 1136px) {
  .header__inner .hamburger {
    display: none;
  }
}
.header__inner .hamburger.is-active button span:nth-child(1) {
  transform: rotate(45deg) translateY(0);
}
.header__inner .hamburger.is-active button span:nth-child(2) {
  transform: rotate(-45deg) translateY(0);
}
.header__inner .hamburger button {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 12px;
  border-radius: 50%;
  border: none;
  background-color: #fff;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
.header__inner .hamburger button:hover {
  cursor: pointer;
}
.header__inner .hamburger button span {
  display: block;
  width: 30px;
  height: 3px;
  background-color: #00AABE;
  transition: 0.3s;
  position: absolute;
}
.header__inner .hamburger button span:nth-child(1) {
  transform: translateY(-6px);
}
.header__inner .hamburger button span:nth-child(2) {
  transform: translateY(6px);
}

.footer {
  width: 100%;
  background-color: #F8F8F8;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 38px;
}
@media (min-width: 768px) {
  .footer {
    height: 47px;
  }
}
.footer p {
  color: #272727;
  font-size: 1.2rem;
}

.main {
  padding-top: 94px;
}
@media (min-width: 1036px) {
  .main {
    padding-top: 138px;
  }
}
.main section {
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 768px) {
  .main section {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.main section .inner {
  max-width: 900px;
  margin: 0 auto;
}

.animation-section {
  opacity: 0;
  transform: translateY(50px);
  transition-delay: 0.3s;
  transition-property: opacity, transform;
  transition-duration: 0.6s;
}
@media (min-width: 768px) {
  .animation-section {
    transform: translateY(100px);
    transition-delay: 0.6s;
  }
}
.animation-section.is-show {
  opacity: 1;
  transform: translateY(0);
}

.animation-slide {
  opacity: 0;
  transform: translateY(40%);
}
.animation-slide.is-show {
  animation: slide 0.6s ease-in-out forwards;
}

.animation-slide-recruit {
  opacity: 0;
  transform: translateY(20%);
}
.animation-slide-recruit.is-show {
  animation: slide-recruit 0.6s ease-in-out forwards;
}

@keyframes slide {
  0% {
    opacity: 0;
    transform: translateY(40%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slide-recruit {
  0% {
    opacity: 0;
    transform: translateY(20%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.page-top .kv {
  width: 100%;
  position: relative;
  background-color: #fff;
  font-size: 7.25vw;
  aspect-ratio: 375/543;
  overflow: hidden;
}
@media (min-width: 768px) {
  .page-top .kv {
    aspect-ratio: 1440/670;
    font-size: 3.47vw;
  }
}
.page-top .kv .person, .page-top .kv .catch, .page-top .kv .building {
  position: absolute;
}
.page-top .kv .person {
  width: 100%;
  top: 0;
  left: 0;
  right: auto;
}
@media (min-width: 768px) {
  .page-top .kv .person {
    left: auto;
    right: 0;
    width: 50.9722222222%;
  }
}
.page-top .kv .building {
  width: 100%;
  left: 0;
  bottom: 0;
}
.page-top .kv .catch {
  display: flex;
  flex-direction: column;
  font-size: 1em;
  row-gap: 0.4em;
  top: 2.24em;
  left: 0.6em;
}
@media (min-width: 768px) {
  .page-top .kv .catch {
    row-gap: 0.28em;
    top: 1.52em;
    left: 3em;
  }
}
.page-top .kv .catch p {
  font-weight: bold;
  line-height: 1.44;
}
@media (min-width: 768px) {
  .page-top .kv .catch p {
    line-height: 1.44;
  }
}
@media (max-width: 767px) {
  .page-top .kv .catch__pc-only {
    display: none;
  }
}
@media (min-width: 768px) {
  .page-top .kv .catch__sp-only {
    display: none;
  }
}

.page-top #mission {
  padding-top: 60px;
}
@media (min-width: 768px) {
  .page-top #mission {
    padding-top: 100px;
  }
}
.page-top #mission .mission__wrap {
  display: flex;
  flex-direction: column;
  row-gap: 18px;
  margin-top: 18px;
}
@media (min-width: 768px) {
  .page-top #mission .mission__wrap {
    margin-top: 28px;
    flex-direction: row;
    justify-content: space-between;
  }
}
.page-top #mission .mission__wrap .title {
  width: 250px;
}
@media (min-width: 768px) {
  .page-top #mission .mission__wrap .title {
    width: 23.1111111111%;
  }
}
.page-top #mission .mission__wrap .text {
  width: 100%;
}
@media (min-width: 768px) {
  .page-top #mission .mission__wrap .text {
    width: 71.2222222222%;
  }
}
.page-top #mission .mission__wrap .text p {
  font-size: 1.8rem;
  line-height: 2;
}
.page-top #mission .mission__policy {
  display: flex;
  flex-direction: column;
  padding: 30px 18px;
  border-radius: 23px;
  background-color: #F8F8F8;
  margin-top: 40px;
  row-gap: 25px;
}
@media (min-width: 768px) {
  .page-top #mission .mission__policy {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 40px 30px 50px;
    margin-top: 100px;
  }
}
@media (min-width: 993px) {
  .page-top #mission .mission__policy {
    padding: 40px 50px 50px;
  }
}
.page-top #mission .mission__policy h3 {
  font-weight: bold;
  text-align: center;
  font-size: 2.8rem;
  line-height: 1.4285714286;
}
@media (min-width: 768px) {
  .page-top #mission .mission__policy h3 {
    width: 100%;
    font-size: 3.5rem;
    line-height: 1.4571428571;
  }
}
.page-top #mission .mission__policy .policy {
  display: flex;
  flex-direction: row;
}
@media (max-width: 767px) {
  .page-top #mission .mission__policy .policy {
    width: 315px;
    margin: 0 auto;
    align-items: center;
    column-gap: 15px;
  }
}
@media (min-width: 768px) {
  .page-top #mission .mission__policy .policy {
    width: 27.5%;
    flex-direction: column;
    row-gap: 27px;
  }
}
.page-top #mission .mission__policy .policy .copy {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
  border-radius: 50%;
  position: relative;
  color: #fff;
  font-weight: bold;
  background-image: linear-gradient(-45deg, #5C88D8, #57DCEC);
  text-align: center;
  width: 145px;
}
@media (min-width: 768px) {
  .page-top #mission .mission__policy .policy .copy {
    width: 100%;
  }
}
.page-top #mission .mission__policy .policy .copy:not(.small) {
  font-size: 2rem;
  line-height: 1.45;
}
@media (min-width: 768px) {
  .page-top #mission .mission__policy .policy .copy:not(.small) {
    font-size: 2.8rem;
    font-size: min(2.8rem, 3vw);
    line-height: 1.4285714286;
  }
}
.page-top #mission .mission__policy .policy .copy.small {
  font-size: 1.6rem;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .page-top #mission .mission__policy .policy .copy.small {
    font-size: 2.4rem;
    font-size: min(2.4rem, 2.5vw);
    line-height: 1.4583333333;
  }
}
.page-top #mission .mission__policy .policy .copy::after {
  content: "";
  display: block;
  width: calc(100% - 12px);
  height: calc(100% - 12px);
  aspect-ratio: 1/1;
  background: transparent;
  border: 1px solid #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}
.page-top #mission .mission__policy .policy .ex {
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: bold;
}
@media (min-width: 768px) {
  .page-top #mission .mission__policy .policy .ex {
    text-align: center;
    font-size: 1.8rem;
    line-height: 1.4444444444;
  }
}

.page-top #company {
  margin-top: 40px;
  padding-top: 60px;
  background-color: #DFF0F2;
}
@media (min-width: 768px) {
  .page-top #company {
    margin-top: 100px;
    padding-top: 90px;
    padding-bottom: 90px;
  }
}
.page-top .company__wrap {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
  margin-top: 30px;
}
@media (min-width: 768px) {
  .page-top .company__wrap {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 35px;
  }
}
.page-top .company__wrap .info {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid white;
}
.page-top .company__wrap .info dt, .page-top .company__wrap .info dd {
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.5;
  padding-top: 15.5px;
  padding-bottom: 15.5px;
  border-bottom: 1px solid white;
}
.page-top .company__wrap .info dt {
  width: 36.231884058%;
}
@media (min-width: 768px) {
  .page-top .company__wrap .info dt {
    width: 27.7777777778%;
  }
}
.page-top .company__wrap .info dd {
  width: 63.768115942%;
}
@media (min-width: 768px) {
  .page-top .company__wrap .info dd {
    width: 72.2222222222%;
  }
}
@media (min-width: 768px) {
  .page-top .company__wrap .info {
    width: 50%;
  }
}
.page-top .company__wrap .map {
  aspect-ratio: 385/273;
  position: relative;
}
@media (min-width: 768px) {
  .page-top .company__wrap .map {
    width: 42.7777777778%;
  }
}
.page-top .company__wrap .map iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.page-top #contact {
  padding: 90px 15px 30px;
}
@media (min-width: 768px) {
  .page-top #contact {
    padding: 125px 30px 60px;
  }
}
.page-top .contact__wrap {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  background: linear-gradient(90deg, #a5e1f0, #4469e2);
  padding: 6px 15px 20px;
}
@media (min-width: 768px) {
  .page-top .contact__wrap {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px 0 15px;
    height: 186px;
    column-gap: 47px;
    transition: 0.3s;
  }
}
@media (min-width: 768px) {
  .page-top .contact__wrap:hover {
    opacity: 0.5;
  }
}
.page-top .contact__wrap h2 {
  font-family: "Roboto", sans-serif;
  font-weight: 200;
  font-size: 7.4rem;
  line-height: 1.1756756757;
  color: #fff;
  opacity: 0.4;
}
@media (min-width: 768px) {
  .page-top .contact__wrap h2 {
    flex-shrink: 0;
    font-size: 9.6rem;
    line-height: 0.8571428571;
  }
}
.page-top .contact__wrap p {
  font-size: 1.6rem;
  line-height: 1.5;
  color: #fff;
  font-weight: 500;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .page-top .contact__wrap p {
    justify-content: space-between;
  }
}
@media (min-width: 768px) {
  .page-top .contact__wrap p {
    column-gap: 43px;
    font-size: 1.8rem;
    line-height: 1.5;
  }
}
.page-top .contact__wrap p::after {
  content: "";
  display: block;
  width: 50px;
  height: 50px;
  background-image: url("../img/icon_arrow2.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  .page-top .contact__wrap p .sp {
    display: none;
  }
}

.page-top #news {
  padding-top: 60px;
}
@media (min-width: 768px) {
  .page-top #news {
    padding-top: 75px;
  }
}
.page-top .news__wrap {
  display: flex;
  flex-direction: column;
  margin-top: 25px;
}
@media (min-width: 768px) {
  .page-top .news__wrap {
    flex-direction: row;
    column-gap: 30px;
    justify-content: space-between;
    margin-top: 6px;
  }
}
@media (max-width: 767px) {
  .page-top .news__wrap .more {
    margin: 25px auto 0;
    order: 2;
  }
}
@media (min-width: 768px) {
  .page-top .news__wrap .more {
    width: 167px;
    margin-top: 18px;
  }
}
.page-top .news__wrap .list {
  border-top: 1px solid #D9D9D9;
}
@media (max-width: 767px) {
  .page-top .news__wrap .list {
    order: 1;
  }
}
@media (min-width: 768px) {
  .page-top .news__wrap .list {
    width: 74%;
  }
}
.page-top .news__wrap .list li a {
  font-size: 1.4rem;
  line-height: 1.4285714286;
  font-weight: normal;
  color: #272727;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #D9D9D9;
  padding: 15px 50px 15px 10px;
}
@media (max-width: 767px) {
  .page-top .news__wrap .list li a {
    row-gap: 5px;
  }
}
@media (min-width: 768px) {
  .page-top .news__wrap .list li a {
    flex-direction: row;
    padding: 20px 58px 20px 25px;
    column-gap: 20px;
  }
}
.page-top .news__wrap .list li a:not(.link_none) {
  position: relative;
  transition: 0.2s box-shadow;
}
@media (min-width: 768px) {
  .page-top .news__wrap .list li a:not(.link_none):hover {
    border-radius: 5px;
    box-shadow: 0 0 6px #DBDBDB;
    border: none;
  }
}
.page-top .news__wrap .list li a:not(.link_none)::after {
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 17px;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-image: url("../img/icon_arrow.svg");
}
@media (min-width: 768px) {
  .page-top .news__wrap .list li a:not(.link_none)::after {
    width: 40px;
    height: 40px;
  }
}
.page-top .news__wrap .list li a.link_none {
  pointer-events: none;
}

.page-recruit .main .charm h2 {
  width: 273px;
  margin: 0 auto;
  padding: 0 0 26px;
}
@media (min-width: 768px) {
  .page-recruit .main .charm h2 {
    width: 548px;
    padding: 54px 0 30px;
  }
}
.page-recruit .main .charm__wrap {
  background-color: #DFF0F2;
  padding: 35px 15px;
}
@media (min-width: 768px) {
  .page-recruit .main .charm__wrap {
    padding: 55px 0 70px;
  }
}
.page-recruit .main .charm__wrap-list {
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  max-width: 795px;
  margin: 0 auto;
  position: relative;
  row-gap: 12px;
}
@media (min-width: 768px) {
  .page-recruit .main .charm__wrap-list {
    padding: 0 30px;
    row-gap: 35px;
    justify-content: space-between;
  }
}
.page-recruit .main .charm__wrap-list li {
  position: relative;
  z-index: 1;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  border-radius: 10px;
}
@media (max-width: 767px) {
  .page-recruit .main .charm__wrap-list li {
    min-height: 110px;
    padding-left: 143px;
    display: flex;
    align-items: center;
    padding-right: 18px;
  }
}
@media (min-width: 768px) {
  .page-recruit .main .charm__wrap-list li {
    width: 47.619047619%;
    aspect-ratio: 350/220;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    border-radius: 20px;
  }
}
.page-recruit .main .charm__wrap-list li .image {
  position: absolute;
}
@media (max-width: 767px) {
  .page-recruit .main .charm__wrap-list li .image {
    top: 50%;
    transform: translateY(-50%);
  }
}
@media (min-width: 768px) {
  .page-recruit .main .charm__wrap-list li .image {
    padding: 18px 0 0;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}
.page-recruit .main .charm__wrap-list li .image.charm-01 {
  width: 87px;
}
@media (max-width: 767px) {
  .page-recruit .main .charm__wrap-list li .image.charm-01 {
    left: 27px;
  }
}
@media (min-width: 768px) {
  .page-recruit .main .charm__wrap-list li .image.charm-01 {
    width: 109px;
  }
}
.page-recruit .main .charm__wrap-list li .image.charm-02 {
  width: 108px;
}
@media (max-width: 767px) {
  .page-recruit .main .charm__wrap-list li .image.charm-02 {
    left: 20px;
  }
}
@media (min-width: 768px) {
  .page-recruit .main .charm__wrap-list li .image.charm-02 {
    width: 180px;
  }
}
.page-recruit .main .charm__wrap-list li .image.charm-03 {
  width: 81px;
}
@media (max-width: 767px) {
  .page-recruit .main .charm__wrap-list li .image.charm-03 {
    left: 30px;
  }
}
@media (min-width: 768px) {
  .page-recruit .main .charm__wrap-list li .image.charm-03 {
    width: 112px;
  }
}
.page-recruit .main .charm__wrap-list li .image.charm-04 {
  width: 98px;
}
@media (max-width: 767px) {
  .page-recruit .main .charm__wrap-list li .image.charm-04 {
    left: 17px;
  }
}
@media (min-width: 768px) {
  .page-recruit .main .charm__wrap-list li .image.charm-04 {
    width: 158px;
  }
}
.page-recruit .main .charm__wrap-list li .text {
  position: relative;
  z-index: 2;
  font-weight: bold;
  color: #272727;
  font-size: 1.8rem;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .page-recruit .main .charm__wrap-list li .text {
    text-align: center;
    line-height: 1.5;
    padding-bottom: 18px;
  }
}
.page-recruit .main .charm__wrap-list li .text .small {
  font-size: 1.4rem;
  line-height: 1.5;
  display: block;
  margin-top: 5px;
  font-weight: bold;
}
@media (min-width: 768px) {
  .page-recruit .main .charm__wrap-list li .text .small {
    font-size: 1.6rem;
    line-height: 1.5;
  }
}
@media (max-width: 767px) {
  .page-recruit .main .charm__wrap-list li .text .pc {
    display: none;
  }
}
.page-recruit .main .charm__wrap-list::before {
  content: "";
  display: block;
  position: absolute;
  width: 674px;
  height: 448px;
  background-image: url("../img/bg.svg");
  background-size: contain;
  background-repeat: no-repeat;
  left: 0;
  top: 0;
  transform: translateX(-64.6884272997%);
}
@media (max-width: 767px) {
  .page-recruit .main .charm__wrap-list::before {
    display: none;
  }
}
.page-recruit .main .recruit {
  padding: 70px 15px 80px;
}
@media (min-width: 768px) {
  .page-recruit .main .recruit {
    padding: 110px 30px 100px;
  }
}
.page-recruit .main .recruit__wrap {
  max-width: 660px;
  margin: 0 auto;
}
.page-recruit .main .recruit__wrap-table {
  display: flex;
  flex-wrap: wrap;
  margin: 20px auto 0;
  border-top: 1px solid #D9D9D9;
}
@media (min-width: 768px) {
  .page-recruit .main .recruit__wrap-table {
    margin: 30px auto 0;
  }
}
.page-recruit .main .recruit__wrap-table dt, .page-recruit .main .recruit__wrap-table dd {
  font-size: 1.5rem;
  line-height: 1.5;
  border-bottom: 1px solid #D9D9D9;
}
@media (min-width: 768px) {
  .page-recruit .main .recruit__wrap-table dt, .page-recruit .main .recruit__wrap-table dd {
    font-size: 1.8rem;
    line-height: 1.5;
  }
}
.page-recruit .main .recruit__wrap-table dt {
  width: 95px;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 10px;
}
@media (min-width: 768px) {
  .page-recruit .main .recruit__wrap-table dt {
    display: flex;
    align-items: center;
    width: 282px;
    padding-top: 25px;
    padding-bottom: 25px;
    padding-left: 72px;
  }
}
.page-recruit .main .recruit__wrap-table dd {
  width: calc(100% - 95px);
  padding-top: 20px;
  padding-bottom: 20px;
}
@media (min-width: 768px) {
  .page-recruit .main .recruit__wrap-table dd {
    width: calc(100% - 282px);
    padding-top: 25px;
    padding-bottom: 25px;
  }
}
.page-recruit .main .recruit__wrap-table dd.num {
  counter-reset: section;
}
.page-recruit .main .recruit__wrap-table dd.num p {
  display: flex;
}
.page-recruit .main .recruit__wrap-table dd.num p::before {
  content: "(" counter(section) ")";
  counter-increment: section;
}
@media (min-width: 768px) {
  .page-recruit .main .recruit__wrap-table dd.num p .sp {
    display: none;
  }
}
.page-recruit .main .recruit__wrap-entry {
  width: 100%;
  max-width: 382px;
  height: 86px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, #a5e1f0, #4469e2);
  font-size: 2rem;
  color: #fff;
  font-weight: 500;
  border-radius: 8px;
  padding: 0 17px 0 20px;
  justify-content: space-between;
  margin: 35px auto 0;
}
@media (min-width: 768px) {
  .page-recruit .main .recruit__wrap-entry {
    transition: 0.3s;
    padding: 0 17px 0 30px;
    margin: 52px auto 0;
  }
}
.page-recruit .main .recruit__wrap-entry::after {
  content: "";
  display: block;
  width: 50px;
  height: 50px;
  background-image: url("../img/icon_arrow2.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  .page-recruit .main .recruit__wrap-entry:hover {
    opacity: 0.5;
  }
}
.page-recruit .main .recruit h3 {
  font-size: 2.4rem;
  line-height: 1.4583333333;
  color: #272727;
  text-align: center;
  font-weight: bold;
}
@media (min-width: 768px) {
  .page-recruit .main .recruit h3 {
    font-size: 3rem;
    line-height: 1.3333333333;
  }
}
