@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Work+Sans:wght@500&family=Noto+Sans+JP:wght@100;200;300;400;500;600;700;800;900&family=Noto+Serif+JP:wght@200;300;400;500;600;700;900&family=Roboto+Condensed:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap");
* {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 32px;
}

strong {
  font-weight: 700;
}

.none {
  display: none !important;
}

.header {
  height: 76px;
  width: 100%;
  font-family: "Libre Baskerville", "Noto Serif JP", serif;
}
@media screen and (min-width: 1300px) {
  .header {
    height: 100px;
  }
}
.header#header {
  color: #ffffff;
}
.header#fix-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  transform: translateY(-100%);
  transition: 0.3s;
  z-index: 5000;
  background-color: rgba(255, 255, 255, 0.8509803922);
}
@media screen and (max-width: 1299px) {
  .header#fix-header {
    transform: translateY(0) !important;
    box-shadow: rgba(0, 0, 0, 0.1607843137) 0px 6px 9px;
  }
}
.header#fix-header nav .menu > li > a:hover {
  color: #0b4d88;
}
.header#fix-header nav .menu > li > a::after {
  background-color: #0b4d88;
}
.header#fix-header nav .menu > li:last-child a {
  color: #0b4d88;
}
@media screen and (min-width: 960px) {
  .header#fix-header nav .menu > li:last-child a:hover {
    color: #ffffff;
  }
}
.header__inner {
  display: flex;
  margin: 0 auto;
  width: 90%;
  height: 100%;
  justify-content: space-between;
  align-items: center;
}
.header .logo_wrap {
  display: block;
  width: 115px;
  flex-shrink: 0;
}
@media screen and (min-width: 1300px) {
  .header .logo_wrap {
    width: 170px;
  }
}
.header .logo_wrap a {
  display: block;
  width: 100%;
}
.header .logo_wrap a img {
  max-width: 100%;
}
.header nav {
  width: 100%;
  margin-right: 20px;
}
@media screen and (min-width: 1300px) {
  .header nav {
    height: 100%;
  }
}
.header nav .lang {
  display: flex;
  margin-left: auto;
  margin-right: 0;
  width: 110px;
  font-size: 18px;
}
@media screen and (min-width: 1300px) {
  .header nav .lang {
    margin-bottom: 16px;
  }
}
.header nav .lang a {
  display: block;
  width: 50%;
  text-align: center;
  text-decoration: none;
  background-color: #ffffff;
  color: #0b4d88;
}
.header nav .lang a.active {
  color: #ffffff;
  background-color: #0b4d88;
}
@media screen and (min-width: 960px) {
  .header nav .lang a:not(.active):hover {
    color: rgba(11, 77, 136, 0.5607843137);
  }
}
.header nav .menu {
  display: none;
  align-items: flex-end;
  justify-content: right;
  padding: 0;
  gap: 40px;
}
@media screen and (min-width: 1300px) {
  .header nav .menu {
    display: flex;
  }
}
.header nav .menu > li {
  list-style: none;
}
.header nav .menu > li > a {
  display: block;
  text-decoration: none;
  transition: 0.3s ease-out;
  position: relative;
}
.header nav .menu > li > a::after {
  content: "";
  width: 0%;
  height: 1px;
  background-color: #ffffff;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: color 0s, width 0.3s ease-out;
}
.header nav .menu > li > a:hover {
  color: #0b4d88;
}
.header nav .menu > li > a:hover::after {
  width: 100%;
  background-color: #0b4d88;
}
.header nav .menu > li:last-child a {
  padding-left: 10px;
  z-index: 0;
}
.header nav .menu > li:last-child a:hover {
  color: #ffffff;
}
.header nav .menu > li:last-child a:hover::after {
  background-color: #0b4d88;
  width: 100%;
}
.header nav .menu > li:last-child a::after {
  height: 100%;
  width: 3px;
  z-index: -1;
}
.header nav .menu > li:last-child a span {
  position: relative;
  z-index: 0;
  padding-right: 10px;
}
.header .spmenu-open {
  background-color: #0b4d88;
  width: 60px;
  height: 60px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  padding: 5px 0 20px;
  box-sizing: border-box;
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
}
@media screen and (min-width: 1300px) {
  .header .spmenu-open {
    display: none;
  }
}
.header .spmenu-open span {
  width: 30px;
  height: 1px;
  background-color: #ffffff;
  display: block;
}
.header .spmenu-open p {
  position: absolute;
  font-size: 14px;
  color: #ffffff;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  line-height: 30px;
}

@media screen and (max-width: 1299px) {
  #header {
    visibility: hidden;
  }
}

.breadcrumb-wrap {
  min-height: 45px;
  margin-top: 40px;
}
@media screen and (min-width: 1300px) {
  .breadcrumb-wrap {
    margin-top: 0;
  }
}
.breadcrumb-wrap ul {
  padding: 0;
  list-style: none;
  display: flex;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  align-items: center;
  height: 100%;
  font-size: 13px;
  min-height: 45px;
}
@media screen and (min-width: 960px) {
  .breadcrumb-wrap ul {
    width: 80%;
  }
}
.breadcrumb-wrap ul li:not(:first-child)::before {
  content: ">";
  display: inline-block;
  margin: 0 5px;
}
.breadcrumb-wrap ul li:not(:first-child):last-child {
  color: #0b4d88;
}
.breadcrumb-wrap ul li:not(:first-child):last-child::before {
  color: #0b4d88;
}
.breadcrumb-wrap ul a {
  text-decoration: none;
}

.spmenu {
  position: fixed;
  top: 0;
  right: 0;
  transform: translateX(100%);
  visibility: hidden;
  transition: 0.3s ease-out;
  z-index: 9999;
}
.spmenu.open {
  transform: translateX(0%);
  visibility: visible;
}
@media screen and (min-width: 1300px) {
  .spmenu {
    display: none;
  }
}
.spmenu__bg {
  position: fixed;
  z-index: 9998;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #0b4d88;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease-out;
}
.spmenu__bg.open {
  opacity: 0.53;
  visibility: visible;
}
.spmenu__inner {
  background-color: #d8e4ef;
  color: #4c4948;
  width: 250px;
  padding: 16px 25px;
  box-sizing: border-box;
}
.spmenu__head {
  display: flex;
  justify-content: space-between;
}
.spmenu__head img {
  width: 110px;
}
.spmenu__head .spmenu-close {
  display: block;
  width: 50px;
  height: 50px;
  position: relative;
}
.spmenu__head .spmenu-close::before {
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  background-color: #0b4d88;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.spmenu__head .spmenu-close::after {
  content: "";
  display: block;
  width: 1px;
  height: 30px;
  background-color: #0b4d88;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.spmenu .menu {
  padding: 0;
  margin-top: 40px;
}
.spmenu .menu li {
  list-style: none;
}
.spmenu .menu li a {
  display: flex;
  border-bottom: 1px #a6bacc solid;
  justify-content: space-between;
  align-items: center;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: 28px;
  text-decoration: none;
  height: 60px;
}

.footer .footer_contact {
  padding: 75px 0;
  text-align: center;
}
@media screen and (min-width: 960px) {
  .footer .footer_contact {
    padding: 100px 0 150px;
  }
}
.footer .footer_contact p {
  width: 85%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 14px;
}
@media screen and (min-width: 960px) {
  .footer .footer_contact p {
    margin-bottom: 35px;
  }
}
.footer .footer_contact p span {
  display: inline-block;
}
.footer .footer_contact a {
  display: block;
  width: 85%;
  max-width: 570px;
  margin: 0 auto;
  padding: 13px 0;
  font-family: "Libre Baskerville", "Noto Serif JP", serif;
  color: #de8000;
  font-size: 32px;
  border: 1px #de8000 solid;
  background-color: #ffffff;
  transition: 0.3s;
  text-decoration: none;
}
@media screen and (min-width: 960px) {
  .footer .footer_contact a:hover {
    color: #ffffff;
    background-color: #de8000;
  }
}
.footer .recruit_link {
  display: block;
  text-decoration: none;
  position: relative;
  z-index: 0;
  font-family: "Noto Serif JP", serif;
}
@media screen and (min-width: 960px) {
  .footer .recruit_link:hover::before {
    background-size: 110% auto;
  }
}
.footer .recruit_link::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -2;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url(./../img/footer_recruit.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% auto;
  transition: 0.3s;
}
.footer .recruit_link::after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #000000;
  opacity: 0.36;
}
.footer .recruit_link__inner {
  color: #ffffff;
  padding: 8px 5% 12px;
}
@media screen and (min-width: 960px) {
  .footer .recruit_link__inner {
    padding: 55px 5% 105px;
  }
}
.footer .recruit_link .title {
  font-size: 48px;
  font-family: "Libre Baskerville", "Noto Serif JP", serif;
  text-align: center;
  display: block;
  line-height: normal;
}
@media screen and (min-width: 960px) {
  .footer .recruit_link .title {
    font-size: 100px;
  }
}
.footer .recruit_link .subtitle {
  display: block;
  font-size: 16px;
  text-align: center;
  line-height: normal;
  font-weight: 400;
}
@media screen and (min-width: 960px) {
  .footer .recruit_link .subtitle {
    font-size: 20px;
  }
}
.footer .recruit_link p {
  margin-top: 16px;
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  text-align: center;
}
@media screen and (min-width: 960px) {
  .footer .recruit_link p {
    margin-top: 50px;
    font-size: 24px;
  }
}
.footer .recruit_link p span {
  display: inline-block;
}
.footer__inner {
  background-color: #f0f0f0;
  font-family: "Libre Baskerville", "Noto Serif JP", serif;
}
.footer__inner .menu {
  color: #4c4948;
  list-style: none;
  width: 85%;
  margin: 0 auto;
  padding: 25px 0 35px;
  font-size: 20px;
}
@media screen and (min-width: 960px) {
  .footer__inner .menu {
    display: flex;
    justify-content: center;
    gap: 50px;
    padding: 80px 0 50px;
    flex-wrap: wrap;
  }
}
.footer__inner .menu li {
  margin-bottom: 12px;
}
.footer__inner .menu li a {
  text-decoration: none;
}
.footer__inner .footer_company {
  color: #748d9b;
  text-align: center;
  border-top: 1px #d0d0d0 solid;
  font-family: "Noto Serif JP", serif;
  padding: 10px 0;
}
@media screen and (min-width: 960px) {
  .footer__inner .footer_company {
    border-top: none;
  }
}
.footer__inner .footer_privacy {
  color: #748d9b;
  text-align: center;
  padding-bottom: 15px;
}
.footer__inner .footer_privacy a {
  text-decoration: none;
}

@media screen and (max-width: 959px) {
  .grecaptcha-badge {
    bottom: 85px !important;
  }
}

.page_banner {
  width: 100%;
  height: 210px;
  display: block;
  background-color: #0b4d88;
  margin-top: -76px;
  position: relative;
  z-index: -1;
}
@media screen and (min-width: 960px) {
  .page_banner {
    height: 480px;
  }
}
@media screen and (min-width: 1300px) {
  .page_banner {
    margin-top: -100px;
  }
}
.page_banner::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #0b4d88;
  opacity: 0.43;
  position: absolute;
  top: 0;
  left: 0;
  mix-blend-mode: multiply;
}
.page_banner img {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.page_banner h1,
.page_banner .h1_title {
  background-color: #ffffff;
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  color: #0b4d88;
  box-shadow: rgba(0, 0, 0, 0.1607843137) 0 7px 20px;
  min-width: 230px;
  min-height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-size: 24px;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 20px;
  box-sizing: border-box;
  white-space: nowrap;
}
@media screen and (min-width: 960px) {
  .page_banner h1,
  .page_banner .h1_title {
    min-width: 400px;
    min-height: 180px;
    font-size: 40px;
    padding: 0 60px;
  }
}
.page_banner h1::before,
.page_banner .h1_title::before {
  content: "";
  display: block;
  background-color: #de8000;
  height: 4px;
  width: 50px;
  margin-bottom: 20px;
}

h2 {
  font-family: "Roboto Condensed", "Noto Sans JP", sans-serif;
  color: #0b4d88;
  font-size: 14px;
  margin-bottom: 25px;
}
@media screen and (min-width: 960px) {
  h2 {
    margin-bottom: 60px;
  }
}
h2 strong {
  color: #de8000;
  font-size: 24px;
}

h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 25px auto 10px;
  width: 85%;
}
@media screen and (min-width: 960px) {
  h3 {
    font-size: 24px;
    width: 100%;
    margin-bottom: 30px;
  }
}

.viewmore_btn {
  display: flex;
  text-decoration: none;
  width: -moz-fit-content;
  width: fit-content;
  align-items: center;
  font-size: 18px;
  font-weight: 700;
  font-family: "Libre Baskerville", "Noto Serif JP", serif;
  color: #0b4d88;
  border-bottom: 1px #0b4d88 solid;
  padding: 5px 0;
  margin-top: 20px;
}
@media screen and (min-width: 960px) {
  .viewmore_btn {
    margin-top: 40px;
  }
}
.viewmore_btn::after {
  content: "→";
  display: block;
  color: inherit;
  margin-left: 20px;
}

.hover_in.load {
  transform: translateY(100px);
  visibility: hidden;
  opacity: 0;
}
.hover_in.load.hover_active {
  transition: 1s ease-in-out;
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.content__inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
  width: 85%;
}
.content__inner > * {
  margin-bottom: 1.5em;
}
.content__inner > *:first-child {
  margin-top: 45px;
}
@media screen and (min-width: 960px) {
  .content__inner > *:first-child {
    margin-top: 190px;
  }
}
.content__inner h2 {
  font-size: 20px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  margin: 1.5em auto;
}
@media screen and (min-width: 960px) {
  .content__inner h2 {
    font-size: 24px;
  }
}
.content__inner h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 1em auto;
}
@media screen and (min-width: 960px) {
  .content__inner h3 {
    font-size: 20px;
  }
}
.content__inner h4 {
  font-size: 16px;
  font-weight: 700;
  margin: 1em auto 0.5em;
}
.content__inner h5 {
  font-size: 14px;
  margin: 0.5em auto;
}
.content__inner h6 {
  font-size: 10px;
  margin: 0.5em auto;
}

@media screen and (min-width: 960px) {
  .center_404 {
    text-align: center;
  }
}

.link_404 {
  display: block;
  width: 120px;
  position: relative;
  border-bottom: 1px #0b4d88 solid;
  color: #0b4d88;
  font-size: 18px;
  font-weight: 700;
  text-align: left;
  padding: 5px 0;
  text-decoration: none;
  margin: 70px auto 0;
}
@media screen and (min-width: 960px) {
  .link_404 {
    margin: 60px auto 0;
  }
}
.link_404::after {
  content: "→";
  display: block;
  font-weight: 700;
  color: #0b4d88;
  font-size: 18px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  pointer-events: none;
}/*# sourceMappingURL=style.css.map */