*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: min(0.5vw, 10px);
}
@media screen and (max-width: 767px) {
  html {
    font-size: 2.6666666667vw;
  }
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
}

img {
  display: block;
  max-width: 100%;
}

ul, ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

.evt {
  visibility: hidden;
}

.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 3rem, 0);
  }
  30% {
    opacity: 0.5;
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInUp {
  animation-duration: 0.8s;
  animation-name: fadeInUp;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(3rem, 0, 0);
  }
  30% {
    opacity: 0.5;
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInRight {
  animation-duration: 0.8s;
  animation-name: fadeInRight;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-3rem, 0, 0);
  }
  30% {
    opacity: 0.5;
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInLeft {
  animation-duration: 0.8s;
  animation-name: fadeInLeft;
}

@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}
.inner {
  position: relative;
  width: min(100%, 174rem);
  margin: 0 auto;
  padding: 0 2rem;
}

h2 {
  color: #1cc0e2;
  padding-bottom: 4rem;
  font-size: 7rem;
  font-weight: 700;
}
h2 span {
  color: #fff;
  display: block;
  position: relative;
  padding-left: 1.5em;
  font-size: 3rem;
  font-weight: 500;
}
h2 span::before {
  content: "";
  background: #1cc0e2;
  position: absolute;
  inset: 50% auto auto 0;
  translate: 0 -50%;
  width: 1em;
  height: 2px;
}
@media screen and (max-width: 767px) {
  h2 {
    font-size: 3rem;
  }
  h2 span {
    font-size: 1.4rem;
  }
}

#header {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), transparent);
  position: fixed;
  inset: 0 auto auto 0;
  width: 100%;
  z-index: 2;
  transition: 0.2s;
}
#header .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 17rem;
}
@media screen and (max-width: 767px) {
  #header .row {
    height: 8rem;
  }
}
#header .site_ttl {
  width: 45rem;
}
@media screen and (max-width: 767px) {
  #header .site_ttl {
    width: 24rem;
  }
}
#header .links {
  display: flex;
  gap: 3rem;
}
@media screen and (max-width: 767px) {
  #header .links {
    display: none;
  }
}
#header .links a {
  display: block;
  width: 31rem;
  padding: 2rem 0;
  font-size: 3rem;
  font-weight: 500;
  text-align: center;
  transition: 0.2s;
}
#header .links a.recruit {
  background: #104195;
  color: #fff;
}
@media screen and (min-width: 768px) {
  #header .links a.recruit:hover {
    background: #fff;
    color: #104195;
  }
}
#header .links a.entry {
  background: #001e3f;
  color: #1cc0e2;
}
@media screen and (min-width: 768px) {
  #header .links a.entry:hover {
    background: #1cc0e2;
    color: #001e3f;
  }
}

#footer .f_entry {
  padding-top: 10rem;
  margin-bottom: -18rem;
}
@media screen and (max-width: 767px) {
  #footer .f_entry {
    padding-top: 5rem;
    margin-bottom: -4rem;
  }
}
#footer .f_entry .box {
  background: url(../img/f_entry.jpg) no-repeat center/cover;
  color: #fff;
  position: relative;
  padding: 6rem 2rem 12rem;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  #footer .f_entry .box {
    padding: 3rem 2rem 6rem;
  }
}
#footer .f_entry .ttl {
  padding-bottom: 4rem;
  font-size: 9rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #footer .f_entry .ttl {
    padding-bottom: 2rem;
    font-size: 4rem;
  }
}
#footer .f_entry .txt {
  padding-bottom: 10rem;
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #footer .f_entry .txt {
    padding-bottom: 5rem;
    font-size: 1.6rem;
  }
}
#footer .f_entry .btn a {
  background: #1cc0e2;
  display: block;
  width: min(100%, 70rem);
  margin: 0 auto;
  padding: 3rem 0;
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  transition: 0.2s;
}
@media screen and (min-width: 768px) {
  #footer .f_entry .btn a:hover {
    background: #fff;
    color: #1cc0e2;
  }
}
@media screen and (max-width: 767px) {
  #footer .f_entry .btn a {
    padding: 2rem;
    font-size: 1.6rem;
  }
}
#footer .f_other {
  background: #001e3f;
  color: #fff;
  padding: 24rem 0 4rem;
}
@media screen and (max-width: 767px) {
  #footer .f_other {
    padding: 8rem 0 2rem;
  }
}
#footer .f_other .gotop {
  background: #1a3553;
  display: block;
  position: absolute;
  inset: -24rem -8rem auto auto;
  width: 6rem;
  height: 6rem;
  z-index: 1;
}
#footer .f_other .gotop::before {
  content: "\f077";
  font-weight: 600;
  font-family: "Font Awesome 6 Free";
  position: absolute;
  inset: 50% auto auto 50%;
  translate: -50% -50%;
  font-size: 3rem;
}
@media screen and (max-width: 767px) {
  #footer .f_other .gotop {
    position: fixed;
    inset: auto 0 0 auto;
    width: 4rem;
    height: 4rem;
  }
  #footer .f_other .gotop::before {
    font-size: 2rem;
  }
}
#footer .f_other .catch {
  display: table;
  margin: 0 auto 6rem;
  font-size: 8rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  #footer .f_other .catch {
    margin: 0 auto 3rem;
    font-size: 4rem;
  }
}
#footer .f_other .catch span {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: 3rem;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  #footer .f_other .catch span {
    margin-top: 1rem;
    font-size: 1.2rem;
  }
}
#footer .f_other .catch i {
  font-style: normal;
  letter-spacing: 1.5em;
}
#footer .f_other .catch i:nth-child(2) {
  margin-right: -1.5em;
}
@media screen and (max-width: 767px) {
  #footer .f_other .catch i {
    letter-spacing: 1em;
  }
  #footer .f_other .catch i:nth-child(2) {
    margin-right: -1em;
  }
}
#footer .f_other .site_ttl {
  width: 40rem;
  margin: 0 auto 6rem;
}
@media screen and (max-width: 767px) {
  #footer .f_other .site_ttl {
    width: 24rem;
    margin: 0 auto 3rem;
  }
}
#footer .f_other .links {
  display: flex;
  justify-content: center;
  gap: 2rem 3rem;
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  #footer .f_other .links {
    flex-direction: column;
  }
}
#footer .f_other .links a {
  display: block;
  width: 31rem;
  padding: 2rem 0;
  font-size: 3rem;
  font-weight: 500;
  text-align: center;
  transition: 0.2s;
}
@media screen and (max-width: 767px) {
  #footer .f_other .links a {
    width: 100%;
    font-size: 1.6rem;
  }
}
#footer .f_other .links a.official {
  background: #fff;
  color: #000;
}
@media screen and (min-width: 768px) {
  #footer .f_other .links a.official:hover {
    background: #000;
    color: #fff;
  }
}
#footer .f_other .links a.entry {
  background: #1cc0e2;
  color: #fff;
}
@media screen and (min-width: 768px) {
  #footer .f_other .links a.entry:hover {
    background: #fff;
    color: #1cc0e2;
  }
}
#footer .f_other .copy {
  color: #747d8a;
  font-size: 1.6rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #footer .f_other .copy {
    font-size: 1rem;
  }
}

.top_mv {
  background: url(../img/top_mv.jpg) no-repeat center/cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  height: 100vh;
}
.top_mv h1 {
  color: #fff;
  display: inline-block;
  position: relative;
  font-size: 15rem;
  font-weight: 500;
  line-height: 2;
}
.top_mv h1 span {
  background: #001e3f;
  color: #1cc0e2;
  position: absolute;
  inset: 50% auto auto 0;
  translate: 0 -50%;
  width: 100%;
  padding: 2rem 5rem;
  font-size: 3.8rem;
  font-weight: 700;
  line-height: 1;
  -moz-text-align-last: justify;
       text-align-last: justify;
}
@media screen and (max-width: 767px) {
  .top_mv h1 {
    font-size: 4rem;
  }
  .top_mv h1 span {
    padding: 0.5rem 1.5rem;
    font-size: 1.2rem;
  }
}

.top_info {
  background: #f7f8fc;
  padding: 10rem 0 14rem;
}
@media screen and (max-width: 767px) {
  .top_info {
    padding: 6rem 0;
  }
}
.top_info h2 span {
  color: #000;
}
.top_info .txt {
  padding-bottom: 6rem;
  font-size: 2.5rem;
}
@media screen and (max-width: 767px) {
  .top_info .txt {
    padding-bottom: 3rem;
    font-size: 1.6rem;
  }
}
.top_info .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4.5rem;
}
.top_info .grid li {
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 7rem 0;
}
.top_info .grid .icon {
  margin: auto;
}
.top_info .grid .icon.a {
  width: 11.2rem;
}
.top_info .grid .icon.b {
  width: 13.9rem;
}
.top_info .grid .icon.c {
  width: 13.2rem;
}
.top_info .grid .icon.d {
  width: 9.1rem;
}
.top_info .grid .icon.e {
  width: 16.7rem;
}
.top_info .grid .icon.f {
  width: 15.1rem;
}
.top_info .grid p {
  padding-top: 3rem;
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .top_info .grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  .top_info .grid li {
    padding: 4rem 0;
  }
  .top_info .grid .icon.a {
    width: 5.6rem;
  }
  .top_info .grid .icon.b {
    width: 7rem;
  }
  .top_info .grid .icon.c {
    width: 6.6rem;
  }
  .top_info .grid .icon.d {
    width: 4.6rem;
  }
  .top_info .grid .icon.e {
    width: 8.3rem;
  }
  .top_info .grid .icon.f {
    width: 7.6rem;
  }
  .top_info .grid p {
    padding-top: 2rem;
    font-size: 1.6rem;
  }
}

.top_job {
  background: #104195;
  color: #fff;
  padding-top: 10rem;
}
@media screen and (max-width: 767px) {
  .top_job {
    padding-top: 6rem;
  }
}
.top_job .cap {
  padding-bottom: 6rem;
  font-size: 2.5rem;
}
@media screen and (max-width: 767px) {
  .top_job .cap {
    padding-bottom: 3rem;
    font-size: 1.6rem;
  }
}
.top_job .row {
  display: flex;
  position: relative;
  inset: 0 auto auto 50%;
  translate: -50% 0;
  width: 100vw;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .top_job .row {
    flex-direction: column;
  }
}
.top_job .row .content {
  flex: 1;
  padding: 14rem 0 14rem;
}
@media screen and (max-width: 767px) {
  .top_job .row .content {
    padding: 6rem 0;
  }
}
.top_job .row .content.part {
  background: url(../img/top_job_part.jpg) no-repeat center/cover;
  margin-bottom: 14rem;
}
.top_job .row .content.part .box {
  background: url(../img/top_job_part_box.jpg) no-repeat center/cover;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .top_job .row .content.part {
    margin: 0 2rem 2rem 0;
    padding: 6rem 0 6rem 2rem;
  }
}
.top_job .row .content.manager {
  background: url(../img/top_job_manager.jpg) no-repeat center/cover;
  margin-top: 14rem;
}
.top_job .row .content.manager .box {
  background: url(../img/top_job_manager_box.jpg) no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  .top_job .row .content.manager {
    margin: 0 0 0 2rem;
    padding: 6rem 2rem 6rem 0;
  }
}
.top_job .row .content .box {
  width: min(100%, 85rem);
  padding: 14rem 0;
}
@media screen and (max-width: 767px) {
  .top_job .row .content .box {
    padding: 6rem 0;
  }
}
.top_job .row .content .type {
  position: relative;
  margin-bottom: 3rem;
  padding-bottom: 4rem;
  font-size: 4rem;
  font-weight: 700;
  text-align: center;
}
.top_job .row .content .type span {
  display: block;
  padding-top: 2rem;
  font-size: 3rem;
  font-weight: 500;
}
.top_job .row .content .type::before {
  content: "";
  background: #fff;
  position: absolute;
  inset: auto auto 0 50%;
  translate: -50% 0;
  width: 4.5rem;
  height: 2px;
}
@media screen and (max-width: 767px) {
  .top_job .row .content .type {
    margin-bottom: 1rem;
    padding-bottom: 2rem;
    font-size: 2.2rem;
  }
  .top_job .row .content .type span {
    padding-top: 1rem;
    font-size: 1.4rem;
  }
}
.top_job .row .content .work {
  padding-bottom: 6rem;
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .top_job .row .content .work {
    padding-bottom: 3rem;
    font-size: 1.6rem;
  }
}
.top_job .row .content .btn a {
  display: block;
  width: 34.2rem;
  margin: 0 auto;
  padding: 2rem;
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  border: 1px solid #fff;
  transition: 0.2s;
}
@media screen and (min-width: 768px) {
  .top_job .row .content .btn a:hover {
    background: #fff;
    color: #000;
  }
}
@media screen and (max-width: 767px) {
  .top_job .row .content .btn a {
    width: calc(100% - 4rem);
    font-size: 1.6rem;
  }
}

.top_location {
  background: #104195;
  color: #fff;
  padding-top: 10rem;
}
@media screen and (max-width: 767px) {
  .top_location {
    padding-top: 6rem;
  }
}
.top_location .row {
  display: flex;
}
@media screen and (max-width: 767px) {
  .top_location .row {
    flex-direction: column;
  }
}
.top_location .row .txt_content {
  flex: 1;
}
.top_location .row .txt_content .address {
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .top_location .row .txt_content .address {
    padding-bottom: 3rem;
    font-size: 1.6rem;
  }
}
.top_location .row .map_content {
  width: min(100%, 116rem);
}
.top_location .row .map_content .map {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
}
.top_location .row .map_content .map iframe {
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 100%;
  border: none;
}

.top_gallery {
  background: #104195;
  color: #fff;
  padding-top: 10rem;
}
@media screen and (max-width: 767px) {
  .top_gallery {
    padding-top: 6rem;
  }
}
.top_gallery .slider {
  position: relative;
  inset: 0 auto auto 50%;
  translate: -50% 0;
  width: 100vw;
}
.top_gallery .slider img {
  width: 100%;
}
.top_gallery .slider .slide-arrow {
  position: absolute;
  translate: 0 -50%;
  width: 5.8rem;
  height: 5.8rem;
  border: 1px solid #fff;
  border-radius: 100%;
  z-index: 1;
  cursor: pointer;
}
.top_gallery .slider .slide-arrow::before {
  position: absolute;
  inset: 50% auto auto 50%;
  translate: -50% -50%;
  font-size: 2rem;
}
.top_gallery .slider .slide-arrow.prev-arrow {
  inset: 50% auto auto 3rem;
}
.top_gallery .slider .slide-arrow.prev-arrow::before {
  content: "\f100";
  font-weight: 600;
  font-family: "Font Awesome 6 Free";
}
.top_gallery .slider .slide-arrow.next-arrow {
  inset: 50% 3rem auto auto;
}
.top_gallery .slider .slide-arrow.next-arrow::before {
  content: "\f101";
  font-weight: 600;
  font-family: "Font Awesome 6 Free";
}

.top_recruit {
  background: #104195;
  padding: 10rem 0;
}
@media screen and (max-width: 767px) {
  .top_recruit {
    padding: 6rem 0;
  }
}
.top_recruit .data_lists + .data_lists {
  margin-top: 6rem;
}
@media screen and (max-width: 767px) {
  .top_recruit .data_lists + .data_lists {
    margin-top: 2rem;
  }
}
.top_recruit .data_lists dl {
  background: #fff;
  display: flex;
  flex-wrap: wrap;
  font-size: 2rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .top_recruit .data_lists dl {
    font-size: 1.6rem;
  }
}
.top_recruit .data_lists dt, .top_recruit .data_lists dd {
  padding: 2rem 3rem;
}
.top_recruit .data_lists dt:nth-last-child(-n+2), .top_recruit .data_lists dd:nth-last-child(-n+2) {
  border-bottom: none;
}
@media screen and (max-width: 767px) {
  .top_recruit .data_lists dt, .top_recruit .data_lists dd {
    padding: 2rem;
  }
}
.top_recruit .data_lists dt {
  width: 20%;
  border-bottom: 1px solid #104195;
}
@media screen and (max-width: 767px) {
  .top_recruit .data_lists dt {
    width: 100%;
    padding-bottom: 0;
    font-weight: 700;
    text-align: center;
    border-bottom: none;
  }
}
.top_recruit .data_lists dd {
  width: 80%;
  border-bottom: 1px solid #1cc0e2;
}
.top_recruit .data_lists dd span {
  background: #1cc0e2;
  color: #fff;
  display: inline-block;
  padding: 0.5rem 1rem;
  line-height: 1;
}
.top_recruit .data_lists dd i {
  color: #104195;
  font-style: normal;
}
@media screen and (max-width: 767px) {
  .top_recruit .data_lists dd {
    width: 100%;
    padding-top: 1rem;
  }
}/*# sourceMappingURL=style.css.map */