@charset "UTF-8";
* {
  box-sizing: border-box;
}

body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  line-height: 150%;
}

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

a {
  color: #333333;
  text-decoration: none;
}

.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* 画面に入ったとき付与される */
.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
}
header .header_box {
  display: flex;
  align-items: center;
  height: 70px;
  background: white;
  position: relative;
  z-index: 10;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
  border: solid 1px #707070;
}
header .logo img {
  width: auto;
  height: 50px;
  padding-left: 10px;
}
header .left {
  flex-grow: 1;
}
header .left a {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
}
header .right {
  background: white;
  border-top: solid 1px #707070;
  border-bottom: solid 1px #707070;
}
header .right ul {
  display: flex;
  align-items: center;
  height: 68px;
}
header .right ul li {
  margin-right: 30px;
  font-weight: 600;
}
header .entry {
  padding: 0 20px;
  background: white;
  height: 70px;
  border-top: solid 1px #707070;
  border-bottom: solid 1px #707070;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
header .entry a {
  background: #003f75;
  color: #ffed5f;
  padding: 10px 20px;
  border-radius: 9999px;
  font-family: Copperplate, "Copperplate Gothic Light", fantasy;
  font-style: normal;
  font-weight: 800;
  font-size: 24px;
  letter-spacing: 2px;
  box-shadow: 3px 3px 0px #508cbf;
  display: inline-block;
  transition: 0.2s;
}
header .entry a:hover {
  transform: scale(1.05, 1.05);
}

.hover_box {
  height: 70px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.hover_box .hover {
  display: block;
}
.hover_box .hover_pop {
  position: absolute;
  width: -moz-fit-content;
  width: fit-content;
  white-space: nowrap;
  z-index: -10;
  background: #003f75;
  padding: 20px 40px;
  padding-top: 90px;
  margin-left: 50px;
  top: 0px;
  transform: translateY(-100px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 0;
  visibility: hidden;
}
.hover_box .hover_pop ul {
  display: block;
  padding-left: 20px;
  position: static;
  height: auto;
}
.hover_box .hover_pop ul li {
  margin-bottom: 10px;
  color: white;
  font-size: 14px;
  position: relative;
}
.hover_box .hover_pop ul li::before {
  position: absolute;
  content: "▶︎  ";
  top: 0px;
  left: -20px;
}
.hover_box .hover_pop ul a {
  color: white;
  padding-bottom: 2px;
  font-weight: 400;
  font-size: 14px;
}
.hover_box .hover_pop ul a {
  display: inline-block;
  position: relative;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
}
.hover_box .hover_pop ul a:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
  transform: translate(-100%, 0);
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.4s;
  content: "";
}
.hover_box .hover_pop ul a:hover:after {
  transform: translate(0, 0);
}
.hover_box .hover_pop ul li:last-child {
  margin-bottom: 0;
}
.hover_box .hover {
  cursor: default;
}
.hover_box:hover .hover_pop {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.hover_box .hover_pop:hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.link {
  width: 1200px;
  margin: 100px auto;
  max-width: 90%;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px;
  display: flex;
}
.link .left {
  width: 300px;
}
.link .left img {
  width: 200px;
}
.link .left a {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
}
.link .left a:hover {
  transform: scale(1.05, 1.05);
}
.link .right a {
  width: 300px;
  background: #003f75;
  text-align: center;
  margin: 0 auto;
  color: #ffed5f;
  font-family: Copperplate, "Copperplate Gothic Light", fantasy;
  font-style: normal;
  font-weight: 800;
  font-size: 30px;
  display: block;
  text-align: center;
  display: flex;
  justify-content: center;
  transition: 0.2s;
}
.link .right a:hover {
  transform: scale(1.05, 1.05);
}
.link a {
  background: white;
  text-align: center;
  font-weight: 600;
  display: flex;
  align-items: center;
  height: 80px;
  border-radius: 9999px;
  overflow: hidden;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.foot_img {
  margin-top: 100px;
  width: 40%;
  margin-left: auto;
}

footer {
  background: #01398c;
  color: white;
  padding: 50px 0;
  font-size: 18px;
  position: relative;
}
footer a {
  color: white;
}
footer .footer_box {
  width: 1200px;
  margin: 0px auto;
  max-width: 90%;
  display: flex;
}
footer .footer_box .logo {
  margin-bottom: 10px;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
}
footer .footer_box .logo img {
  width: 150px;
}
footer .footer_box .left {
  width: 50%;
  line-height: 180%;
}
footer .footer_box .right {
  width: 50%;
  display: flex;
  flex-wrap: wrap;
  line-height: 160%;
}
footer .footer_box .right .link_box {
  width: 50%;
  margin-bottom: 30px;
}
footer .footer_box .right .link_box .top {
  font-weight: 800;
  margin-bottom: 5px;
}
footer .footer_box .right ul {
  padding-left: 30px;
  list-style: "− ";
}

.hamburger {
  position: fixed;
  top: 10px;
  right: 20px;
  z-index: 1002;
  width: 53px;
  padding: 0 5px;
  height: 53px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  background: #003f75;
  border-radius: 5px;
}

.hamburger span {
  display: block;
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s ease;
  width: 30px;
  margin: 0 auto;
  margin-bottom: 6.5px;
}

.menu_on,
.menu_off {
  font-size: 14px;
  line-height: 100%;
  font-family: Copperplate, "Copperplate Gothic Light", fantasy;
  font-style: normal;
  font-weight: 800;
  letter-spacing: -0.1em;
  text-align: center;
  padding-top: 5px;
  padding-bottom: 3px;
  color: white;
}

.hamburger .menu_off {
  display: none;
}

.hamburger.active {
  background: white;
}
.hamburger.active .menu_off {
  display: block;
  color: #003f75;
}
.hamburger.active .menu_on {
  display: none;
}
.hamburger.active span {
  background: #003f75;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(45deg) translate(9px, 9px);
}

.hamburger.active span:nth-child(4) {
  opacity: 0;
}

.hamburger.active span:nth-child(5) {
  transform: rotate(-45deg) translate(4px, -5px);
}

.side-menu {
  position: fixed;
  top: 0;
  right: -400px;
  width: 400px;
  max-width: 100%;
  height: 100%;
  overflow-y: scroll;
  background: #003f75;
  z-index: 1001;
  box-shadow: -3px 0 10px rgba(0, 0, 0, 0.1);
  transition: right 0.3s ease;
  padding-top: 0;
  color: white;
}

.side-menu.active {
  right: 0;
}

.side-menu .logo img {
  width: 150px;
  height: auto;
}

.side-flex {
  display: flex;
  align-items: center;
  padding: 10px;
  height: 50px;
}
.side-flex .logo {
  margin-top: 20px;
}

.menu_list {
  width: 80%;
  margin: 0 auto;
  margin-top: 70px;
}
.menu_list .top {
  font-weight: 600;
  padding: 10px 5%;
  font-size: 18px;
}
.menu_list a {
  color: white;
}
.menu_list ul {
  padding-left: 60px;
  position: relative;
  z-index: 900;
}
.menu_list li {
  padding-bottom: 10px;
  list-style: "− ";
}
.menu_list .link_box {
  padding: 20px 0;
  border-bottom: solid 1px white;
  position: relative;
}
.menu_list .link_box img {
  position: absolute;
  bottom: -40px;
  right: -5%;
  width: 110px;
  background: #003f75;
  padding: 10px;
}

.head_link {
  background: white;
  padding: 50px 0;
  margin-top: 50px;
}
.head_link .left {
  width: 250px;
  max-width: 90%;
  margin: 0 auto;
  margin-bottom: 20px;
}
.head_link .left img {
  width: 150px;
}
.head_link .left a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  transition: 0.2s;
}
.head_link .left a:hover {
  transform: scale(1.05, 1.05);
}
.head_link .right {
  margin: 0 auto;
}
.head_link .right a {
  max-width: 90%;
  width: 250px;
  background: #003f75;
  text-align: center;
  margin: 0 auto;
  color: #ffed5f;
  font-family: Copperplate, "Copperplate Gothic Light", fantasy;
  font-style: normal;
  font-weight: 800;
  font-size: 20px;
  display: block;
  text-align: center;
  display: flex;
  justify-content: center;
  transition: 0.2s;
}
.head_link .right a:hover {
  transform: scale(1.05, 1.05);
}
.head_link a {
  background: white;
  text-align: center;
  font-weight: 600;
  display: flex;
  align-items: center;
  height: 70px;
  border-radius: 9999px;
  overflow: hidden;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.company.anchor {
  padding-top: 20px;
  margin-top: -20px;
}

#work.anchor {
  padding-top: 30px;
  margin-top: -30px;
}

.pc {
  display: block !important;
}

.sp {
  display: none !important;
}

header .head_link .right {
  border-top: 0;
  border-bottom: 0;
}

@media screen and (min-width: 1101px) {
  .hamburger {
    display: none;
  }
  .side-menu {
    display: none;
  }
  body.menu-open::before {
    display: none;
  }
}
@media screen and (max-width: 1100px) {
  .header_box .right {
    display: none;
  }
  .header_box .entry {
    display: none;
  }
  header .header_box {
    background: transparent;
    box-shadow: none;
    border: 0;
  }
}
@media screen and (max-width: 700px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
  #job.anchor {
    padding-top: 50px;
    margin-top: -50px;
  }
  footer .footer_box .left {
    width: 100%;
  }
  footer .footer_box .right {
    display: none;
  }
  footer .footer_box .logo {
    margin-bottom: 30px;
  }
  .foot_img {
    width: 60%;
    margin-top: 0px;
  }
  .link {
    display: none;
  }
}
@media screen and (max-width: 600px) {
  .side-menu {
    width: 100%;
    right: -100%;
  }
}/*# sourceMappingURL=index.css.map */