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

html {
  font-size: 1rem;
  font-size: calc(10px * 1);
}
html body {
  min-width: 320px;
  font-size: 1.3rem;
  color: #333333;
  font-family: adobe-garamond-pro, ryo-display-plusn, "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "游明朝体", YuMincho, "Yu Mincho", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 400;
  line-height: 1.5;
}
html body h1, html body h2, html body h3, html body h4, html body h5 {
  font-weight: 500;
  line-height: 1;
}
html body #page_mainVisual .inner {
  height: 150px;
  margin-top: 56px;
}
html body #breadcrumb .inner .breadcrumb_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  padding: 0.75rem 1rem;
}
html body #breadcrumb .inner .breadcrumb_list-item .breadcrumb_list-item_link::before {
  float: left;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
  color: #333333;
  content: "/";
}
html body img {
  width: 100%;
  vertical-align: bottom;
}
html body .btn_link {
  position: relative;
  width: 100%;
  background: transparent;
  padding: 20px 0;
  display: inline-block;
  text-align: center;
  transition: all 0.2s linear;
  border: transparent 1px solid;
  border-color: #333333;
}
html body .btn_link:hover {
  background: #333333;
  color: #fff;
  outline: none;
}
html body .btn_link::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 22px;
  height: 1px;
  background: #333333;
}
html body .btn_link::after {
  content: "";
  position: absolute;
  top: 44.5%;
  right: 12px;
  border: 4px solid transparent;
  border-top-width: 4px;
  border-bottom-width: 4px;
  border-left-color: #333333;
  transition: all 0.2s linear;
}
html body .btn_link:hover::before {
  background: #fff;
  right: 25px;
}
html body .btn_link:hover::after {
  border-left-color: #fff;
  right: 20px;
}
html body .btn_link-white {
  border-color: #fff;
  color: #fff;
}
html body .btn_link-white:hover {
  background: #fff;
  color: #333333;
}
html body .btn_link-white::before {
  background: #fff;
}
html body .btn_link-white::after {
  border-left-color: #fff;
}
html body .btn_link-white:hover::before {
  background: #333333;
}
html body .btn_link-white:hover::after {
  border-left-color: #333333;
}
html body .area_txt {
  padding-top: 25px;
}
html body .area_txt .txt {
  line-height: 170%;
}
html body .area_txt-copy {
  font-size: 1.8rem;
  letter-spacing: 0.4rem;
  line-height: 170%;
  margin-bottom: 10px;
}
html body .txt-white {
  color: #fff;
}
html body .txt-gray {
  color: #666666;
}
html body .head {
  text-align: center;
  position: relative;
  margin-bottom: 28px;
}
html body .head .en {
  padding-bottom: 0.6rem;
  font-size: 4.5rem;
  letter-spacing: 0.3em;
  overflow-wrap: break-word;
}
html body .head .ja {
  font-size: 1.4rem;
  letter-spacing: 0.3em;
  line-height: 2.2;
}
html body .head::before {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 1px;
  background: #333333;
}
html body .mv-head {
  text-align: center;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
html body .mv-head .en {
  font-size: 3.8rem;
  letter-spacing: 0.3em;
}
html body .mv-head .ja {
  font-size: 1.5rem;
  letter-spacing: 0.3em;
  line-height: 2.2;
}
html body .mv-head::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 45px;
  height: 1px;
  background: #333333;
}
html body .head-white::before {
  background: #fff;
}
html body .inner {
  padding-right: 20px;
  padding-left: 20px;
}

.bgextend {
  animation-name: bgextendAnimeBase;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  position: relative;
  overflow: hidden;
  opacity: 0;
}
@keyframes bgextendAnimeBase {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.bgextend::before {
  animation-name: bgLRextendAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  transition-timing-function: ease-in;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #3f598f;
}
@keyframes bgLRextendAnime {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }
  50% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50.001% {
    transform-origin: right;
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}
.bgextend .bgappear {
  animation-name: bgextendAnimeSecond;
  animation-duration: 1s;
  animation-delay: 0.6s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes bgextendAnimeSecond {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.box {
  opacity: 0;
}

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
span.smoothText {
  overflow: hidden;
  display: block;
}

span.smoothTextTrigger {
  transition: 1.5s ease-in-out;
  transform: translate3d(0, 100%, 0) skewY(12deg);
  transform-origin: left;
  display: block;
}

span.smoothTextTrigger.smoothTextAppear {
  transform: translate3d(0, 0, 0) skewY(0);
}

.glowAnime span {
  opacity: 0;
}

.glowAnime.glow span {
  animation: glow_anime_on 3s ease-out forwards;
}

@keyframes glow_anime_on {
  0% {
    opacity: 0;
    text-shadow: 0 0 0 #fff, 0 0 0 #fff;
  }
  50% {
    opacity: 1;
    text-shadow: 0 0 10px #fff, 0 0 15px #fff;
  }
  100% {
    opacity: 1;
    text-shadow: 0 0 0 #fff, 0 0 0 #fff;
  }
}
#loading {
  transition: all 1s;
  transition-delay: 1.8s;
  background: #fff;
  position: fixed;
  z-index: 2000;
  inset: 0;
  display: grid;
  place-items: center;
}
#loading .loading_logo {
  width: 30rem;
  padding: 0 2rem;
  animation-name: blurAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}
@keyframes blurAnime {
  from {
    filter: blur(10px);
    transform: scale(1.02);
  }
  to {
    filter: blur(0);
    transform: scale(1);
  }
}

.loaded {
  opacity: 0;
  visibility: hidden;
}

.g-header {
  max-width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-width: 320px;
  z-index: 2000;
}
.g-header_info {
  position: relative;
  z-index: 1000;
  height: 56px;
  padding: 14px 20px 10px 13px;
  background-color: #fff;
}
.g-header_info-logo {
  width: calc(100% - 120px);
  max-width: 140px;
}
.g-header_info #hamburger {
  position: absolute;
  cursor: pointer;
  top: 0;
  right: 60px;
  width: 56px;
  height: 56px;
}
.g-header_info #hamburger .icon-bar {
  position: absolute;
  left: 15px;
  width: 20px;
  height: 1px;
  background-color: #333333;
  transition: all 0.4s;
}
.g-header_info #hamburger .icon-bar:first-child {
  top: 20px;
}
.g-header_info #hamburger .icon-bar:nth-child(2) {
  top: 28px;
}
.g-header_info #hamburger .icon-bar:nth-child(3) {
  top: 36px;
}
.g-header_info #hamburger.drawer-opened .icon-bar:first-child {
  top: 29px;
  transform: rotate(-45deg);
}
.g-header_info #hamburger.drawer-opened .icon-bar:nth-child(2) {
  opacity: 0;
}
.g-header_info #hamburger.drawer-opened .icon-bar:nth-child(3) {
  top: 29px;
  transform: rotate(45deg);
}
.g-header #drawer {
  position: fixed;
  z-index: 999;
  top: -120%;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #fff;
  transition: all 0.6s;
}
.g-header #drawer.drawer-opened {
  top: 0;
}
.g-header #drawer .container .drawer-body {
  padding: 135px 20px 50px 20px;
}
.g-header #drawer .container .drawer-body .drawer-nav-list {
  margin-bottom: 50px;
}
.g-header #drawer .container .drawer-body .drawer-nav-list_item {
  text-align: center;
  padding-bottom: 40px;
}
.g-header #drawer .container .drawer-body .drawer-nav-list_item a {
  color: #333333;
  font-size: 1.7rem;
  letter-spacing: 0.1em;
}
.g-header #drawer .container .drawer-body .drawer-nav-list_item a .nav_en {
  display: block;
  color: #666666;
  font-size: 1.2rem;
}
.g-header #drawer .container .drawer-body .drawer-nav-list_item:nth-child(4) {
  padding-bottom: 0;
}
.g-header .nav-contact {
  position: absolute;
  top: 0;
  right: 0;
  width: 56px;
  height: 56px;
  background: #3f598f;
  z-index: 1000;
}
.g-header .nav-contact_link {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
}
.g-header .nav-contact_link-ico {
  width: 26px;
}
.g-header .nav-contact_link-txt {
  display: none;
}

#requirement .inner {
  padding-top: 54px;
  padding-bottom: 75px;
  background: url(../images/img_recruit.jpg) no-repeat center/cover;
}
#requirement .inner .requirement-wrap .head {
  text-align: left;
}
#requirement .inner .requirement-wrap .head::before {
  left: 0;
  transform: translateX(0);
}
#requirement .inner .requirement-wrap .head .en {
  overflow-wrap: break-word;
  font-size: 4.4rem;
  letter-spacing: 0.2em;
}
#requirement .inner .requirement-wrap .btn_container .btn {
  margin-bottom: 15px;
}
#requirement .inner .requirement-wrap .btn_container .btn:nth-child(5) {
  margin-bottom: 0;
}
#requirement .inner .requirement-wrap .btn_container .btn_link {
  padding: 20px 0;
}

footer {
  background: #000;
}
footer .inner {
  padding-top: 40px;
  padding-bottom: 17px;
}
footer .inner .footer_info-logo {
  max-width: 210px;
  margin: 0 auto;
}
footer .inner .footer_info-address {
  text-align: center;
  padding-top: 20px;
  padding-bottom: 30px;
  line-height: 170%;
}
footer .inner .footer_contact {
  width: 250px;
  margin: 0 auto;
}
footer .inner .footer_copyright {
  margin-top: 30px;
  text-align: center;
}
footer .inner .footer_copyright .footer_copyright-txt {
  font-size: 1.1rem;
}

@media (min-width: 768px) {
  html body {
    min-width: 1042px;
    font-size: 1.4rem;
  }
  html body .max-width {
    max-width: 1100px;
    margin: 0 auto;
  }
  html body .inner {
    padding: 0 170px;
  }
  html body #page_mainVisual .inner {
    height: 300px !important;
    margin-top: 94px !important;
  }
  html body .area_txt {
    padding-top: 0;
  }
  html body .area_txt-copy {
    font-size: 2.7rem;
    margin-bottom: 15px;
  }
  html body .btn_link {
    padding: 40px 0;
  }
  html body .btn_link::before {
    right: 40px;
    width: 40px;
  }
  html body .btn_link::after {
    top: 46.5%;
    right: 32px;
  }
  html body .head {
    margin-bottom: 50px;
  }
  html body .head .en {
    font-size: 7rem;
  }
  html body .head .ja {
    font-size: 1.6rem;
  }
  html body .head::before {
    width: 50px;
  }
  html body .mv-head .en {
    font-size: 7rem;
  }
  html body .mv-head .ja {
    font-size: 2rem;
  }
  html body .mv-head::before {
    width: 60px;
  }
  .g-header {
    min-width: 1042px;
    display: flex;
    flex-wrap: wrap;
  }
  .g-header_info {
    width: 204px;
    height: 94px;
    padding: 26px 30px;
  }
  .g-header_info-logo {
    width: 100%;
    max-width: 100%;
  }
  .g-header_info #hamburger {
    display: none;
  }
  .g-header #drawer {
    position: static;
    width: calc(100% - 204px);
    height: 94px;
  }
  .g-header #drawer .container {
    height: 100%;
  }
  .g-header #drawer .container .drawer-body {
    height: 100%;
    padding: 0 130px 0 0;
  }
  .g-header #drawer .container .drawer-body .drawer-nav-list {
    margin-bottom: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
  }
  .g-header #drawer .container .drawer-body .drawer-nav-list_item {
    padding: 5px 20px;
  }
  .g-header #drawer .container .drawer-body .drawer-nav-list_item a {
    font-size: 1.4rem;
  }
  .g-header #drawer .container .drawer-body .drawer-nav-list_item a .nav_en {
    font-size: 1rem;
  }
  .g-header #drawer .container .drawer-body .drawer-nav-list_btn {
    display: none;
  }
  .g-header .nav-contact {
    width: 122px;
    height: 100%;
  }
  .g-header .nav-contact_link-ico {
    width: 40px !important;
    margin-top: 10px;
  }
  .g-header .nav-contact_link-txt {
    display: inline-block;
    font-size: 1.4rem;
    text-align: center;
  }
  .g-header .nav-contact_link-txt span {
    display: block;
    font-size: 1rem;
  }
  #requirement .inner {
    padding-top: 60px;
    padding-bottom: 110px;
  }
  #requirement .inner .requirement-wrap .head .en {
    font-size: 7rem;
    letter-spacing: 0.3em;
  }
  #requirement .inner .requirement-wrap .btn_container {
    display: flex;
    gap: 20px;
    justify-content: center;
  }
  #requirement .inner .requirement-wrap .btn_container .btn {
    margin-bottom: 0;
    width: 30%;
  }
  #requirement .inner .requirement-wrap .btn_container .btn:nth-child(4) {
    margin-bottom: 0;
  }
  #requirement .inner .requirement-wrap .btn_container .btn_link {
    padding: 28px 0;
  }
  #requirement .inner .requirement-wrap .btn_container .btn_link::before {
    right: 20px;
    width: 20px;
  }
  #requirement .inner .requirement-wrap .btn_container .btn_link::after {
    top: 45.5%;
    right: 16px;
  }
  #requirement .inner .requirement-wrap .btn_container .btn_link:hover::before {
    right: 10px;
  }
  #requirement .inner .requirement-wrap .btn_container .btn_link:hover::after {
    right: 5px;
  }
  footer .inner {
    padding-top: 70px !important;
    padding-bottom: 86px !important;
    margin: 0 auto;
    display: flex;
    gap: 20px;
    position: relative;
  }
  footer .inner .footer_info {
    flex: 1;
  }
  footer .inner .footer_info-logo {
    margin: 0;
  }
  footer .inner .footer_info-address {
    text-align: left;
    padding-top: 28px;
    padding-bottom: 0;
  }
  footer .inner .footer_contact {
    width: 260px;
    flex: 1;
  }
  footer .inner .footer_copyright {
    position: absolute;
    margin-top: 0;
    bottom: 26px;
    left: 50%;
    transform: translateX(-50%);
  }
  footer .inner .footer_copyright .footer_copyright-txt {
    font-size: 1.1rem;
  }
}/*# sourceMappingURL=common.css.map */