@charset "UTF-8";
/*===========================================================*/
/*機能編 4-2-4　背景色が伸びる（左から右）　 */
/*===========================================================*/
/*========= ローディング画面のためのCSS ===============*/
#splash {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 9999999;
  text-align: center;
  background: #ccc;
  background: #fff;
}

#splash-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  padding: 20px;
}
#splash-logo img.logo {
  width: 370px;
  max-width: 90vw;
  height: auto;
}
@media (max-width: 575.98px) {
  #splash-logo img.logo {
    width: 260px;
    max-width: 75vw;
  }
}

/*========= 画面遷移のためのCSS ===============*/
/*画面遷移アニメーション*/
.splashbg {
  display: none;
}

body.appear .splashbg {
  display: block;
  content: "";
  position: fixed;
  z-index: 9999;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  transform: scaleX(0);
  background-color: #333333;
  /*伸びる背景色の設定*/
  animation-name: PageAnime;
  animation-duration: 0.6s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}

@keyframes PageAnime {
  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);
  }
}
/*画面遷移の後現れるコンテンツ設定*/
#main_content {
  opacity: 0;
}

/*bodyにappearクラスがついたら出現*/
body.appear #main_content {
  animation-name: PageAnimeAppear;
  animation-duration: 1s;
  animation-delay: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes PageAnimeAppear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*====== 9-1-1 縦線が動いてスクロールを促す =======*/
/*スクロールダウン全体の場所*/
.scrolldown1 {
  /*描画位置※位置は適宜調整してください*/
  position: absolute;
  left: 50%;
  top: 30px;
  /*全体の高さ*/
  height: 100px;
}

/*Scrollテキストの描写*/
.scrolldown1 span {
  /*描画位置*/
  position: absolute;
  left: -15px;
  top: -15px;
  /*テキストの形状*/
  color: #000;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
}

/* 線の描写 */
.scrolldown1::after {
  content: "";
  /*描画位置*/
  position: absolute;
  top: 0;
  /*線の形状*/
  width: 1px;
  height: 30px;
  background: #000;
  /*線の動き1.4秒かけて動く。永遠にループ*/
  animation: pathmove 1.4s ease-in-out infinite;
  opacity: 0;
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }
  30% {
    height: 30px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 50px;
    opacity: 0;
  }
}
/*==================================================
　5-2-6 3本線が回転して×に
===================================*/
#humberger {
  position: fixed;
  width: 50px;
  height: 50px;
  z-index: 2000;
  top: 15px;
  right: 15px;
  cursor: pointer;
}

/*ボタン外側※レイアウトによってpositionや形状は適宜変更してください*/
.openbtn6 {
  position: relative;
  /*ボタン内側の基点となるためrelativeを指定*/
  cursor: pointer;
  width: 50px;
  height: 50px;
}

/*ボタン内側*/
.openbtn6 span {
  display: inline-block;
  transition: all 0.4s;
  /*アニメーションの設定*/
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background: #333;
}

.openbtn6 span:nth-of-type(1) {
  top: 15px;
  width: 45%;
}

.openbtn6 span:nth-of-type(2) {
  top: 23px;
  width: 35%;
}

.openbtn6 span:nth-of-type(3) {
  top: 31px;
  width: 20%;
}

/*activeクラスが付与されると線が回転して×になる*/
.openbtn6.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-135deg);
  width: 30%;
}

.openbtn6.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn6.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(135deg);
  width: 30%;
}

/*========= メニュー画面 ===============*/
#g-nav {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 1010;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 6em 1.5em 0;
}
#g-nav .nav-menu {
  border-bottom: solid 1px #bfbfbf;
}
#g-nav .nav-menu a span.en {
  font-size: 20px;
  font-weight: bold;
  font-family: "Josefin Sans", sans-serif;
  letter-spacing: 0.05em;
  padding-right: 25px;
  vertical-align: middle;
}
#g-nav .nav-menu a span.ja {
  font-size: 14px;
  font-weight: normal;
  vertical-align: middle;
}
#g-nav .contact-btn {
  background: linear-gradient(-30deg, #5f5bcc, #ef3b48);
  color: #ffffff;
  padding: 1em 5em;
  text-align: center;
  border-radius: 50px;
}
#g-nav .contact-btn span {
  font-weight: 500;
}
#g-nav {
  /*ナビの高さ*/
  background: #fff;
  /*動き*/
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive {
  left: 0;
}

/*==================================================
  　メインテキストアニメーション  
===================================*/
.animated-text-cover,
.animated-text {
  display: inline-block;
  opacity: 0;
}
.animated-text-cover.active, .animated-text-cover.active::after,
.animated-text.active,
.animated-text.active::after {
  animation-delay: var(--animation-delay, 2s);
  animation-iteration-count: var(--iterations, 1);
  animation-duration: var(--duration, 800ms);
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
}
.animated-text-cover.active,
.animated-text.active {
  opacity: 1;
  --animation-delay: var(--delay, 0);
  --animation-duration: var(--duration, 800ms);
  --animation-iterations: var(--iterations, 1);
  position: relative;
  animation-name: clip-text;
  cursor: default;
}
.animated-text-cover.active::after,
.animated-text.active::after {
  content: "";
  position: absolute;
  z-index: 999;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #655AC6;
  transform: scaleX(0);
  transform-origin: 0 50%;
  pointer-events: none;
  animation-name: text-revealer;
}
.animated-text-cover.a-white.active::after,
.animated-text.a-white.active::after {
  background-color: rgba(255, 255, 255, 0.5);
}
.animated-text-cover.a-transparent.active::after,
.animated-text.a-transparent.active::after {
  background-color: rgba(255, 255, 255, 0.5);
}

@keyframes clip-text {
  from {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
  }
  to {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
}
@keyframes text-revealer {
  0%, 50% {
    transform-origin: 0 50%;
  }
  60%, 100% {
    transform-origin: 100% 50%;
  }
  60% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}
/*==================================================
印象編 4 最低限おぼえておきたい動き
===================================*/
/*背景色が伸びて出現（左から）*/
.animatedBgLR {
  position: relative;
  display: inline-block;
  height: 100%;
}

.animatedBgLR.active::before {
  animation-name: bgLRextendAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 30px;
}

@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);
  }
}
/*中の要素*/
.animatedBgLR > * {
  opacity: 0;
}

.animatedBgLR.active > * {
  animation-name: bgextendAnimeSecond;
  animation-duration: 1s;
  animation-delay: 0.6s;
  animation-fill-mode: forwards;
}

@keyframes bgextendAnimeSecond {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
header {
  background-color: #ffffff;
  width: 100%;
  overflow: visible;
}
header img.logo {
  width: 400px;
}
header > .row > .col-auto:last-child > .row {
  margin-right: 0;
}
header .entry-btn {
  display: inline-block;
  background: linear-gradient(-30deg, #5f5bcc, #ef3b48);
  color: #ffffff;
  padding: 0.8em 3em;
  text-align: center;
  border-radius: 50px;
  white-space: nowrap;
  flex-shrink: 0;
}
header .entry-btn span {
  font-weight: bold;
}
header .animated-line {
  padding: 0 0.5em 10px 0.5em;
  position: relative;
}
header .animated-line::before {
  background: #002060;
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
  margin: auto;
  transform-origin: center top;
  transform: scale(0, 1);
  transition: transform 0.3s;
}
header .animated-line:hover::before,
header .animated-line.active::before {
  transform-origin: center top;
  transform: scale(1, 1);
}
header .animated-line:hover,
header .animated-line.active {
  color: #002060;
}

/*==================================================
　トップカバー
===================================*/
.cover {
  position: relative;
  height: calc(100svh - 5rem);
  min-height: 280px;
}
@media (min-width: 576px) {
  .cover {
    height: calc(100svh - 6rem);
  }
}
@media (min-width: 992px) {
  .cover {
    height: calc(100svh - 7.5rem);
    min-height: 360px;
  }
}
.cover .row,
.cover .cover__desktop {
  height: 100%;
}
.cover .cover__mobile {
  height: 100%;
}
.cover .cover__mobile .carousel-inner,
.cover .cover__mobile .carousel-item {
  height: 100%;
}
.cover .cover__mobile .carousel-item {
  transition-duration: 0.7s;
  transition-timing-function: ease-in-out;
}
.cover .row > .col {
  overflow: hidden;
  height: 100%;
}
.cover .cover-image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom center;
     object-position: bottom center;
  clip-path: inset(0 100% 0 0);
  opacity: 0;
  will-change: clip-path, opacity;
}
.cover .cover-image--placeholder {
  background-color: #bdbdbd;
}
@media (prefers-reduced-motion: reduce) {
  .cover .cover-image {
    clip-path: none;
    opacity: 1;
  }
}
.cover .catch-copy {
  position: absolute;
  bottom: 10%;
  left: 8%;
  right: auto;
  width: auto;
  color: #000000;
  text-shadow: none;
  transform: none;
  z-index: 4;
}
@media (max-width: 767.98px) {
  .cover .catch-copy {
    bottom: 15%;
  }
}
.cover .catch-copy .main-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-weight: 500;
  white-space: normal;
}
.cover .catch-copy .main-copy .copy-line {
  display: inline-block;
  background: #ffffff;
  color: #000000;
  padding: 0.2em 0.6em;
  line-height: 1.5;
  font-size: 40px;
}
.cover .catch-copy .main-copy .copy-line + .copy-line {
  margin-top: 0.15em;
}
.cover .catch-copy .main-copy .copy-line--indent {
  margin-left: 3em;
}
.cover .catch-copy .main-copy .copy-line .copy-line-gradient {
  background: linear-gradient(-30deg, #5f5bcc, #ef3b48);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
@media (max-width: 991.98px) {
  .cover .catch-copy .main-copy .copy-line {
    font-size: 28px;
  }
}
@media (max-width: 767.98px) {
  .cover .catch-copy .main-copy .copy-line {
    font-size: 20px;
  }
  .cover .catch-copy .main-copy .copy-line--indent {
    margin-left: 2em;
  }
}
.cover .catch-copy::after {
  content: "";
  position: absolute;
  z-index: 3;
  bottom: 0;
  right: -30%;
  left: auto;
  width: 346px;
  height: 100px;
  background-image: url(../images/top/recruit_en.webp);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: translate(20%, 20%);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
}
@media (max-width: 767.98px) {
  .cover .catch-copy::after {
    background-image: url(../images/top/recruit_en_sp.webp);
    width: 166px;
    height: 48px;
    transform: translate(15%, 25%);
    bottom: -35%;
    right: 10%;
  }
}
.cover .catch-copy.recruit-en-visible::after {
  opacity: 1;
  transform: translate(20%, 20%);
}
@media (max-width: 767.98px) {
  .cover .catch-copy.recruit-en-visible::after {
    transform: translate(15%, 25%);
  }
}
.cover .cover-entry-btn {
  position: absolute;
  bottom: 15%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.cover .cover-entry-btn .entry-btn {
  background: linear-gradient(-30deg, #5f5bcc, #ef3b48);
  color: #ffffff;
  padding: 1em 5em;
  text-align: center;
  border-radius: 50px;
  display: inline-block;
  white-space: nowrap;
}
@media (max-width: 767.98px) {
  .cover .cover-entry-btn .entry-btn {
    padding: 0.5em 2em;
  }
}
.cover .cover-entry-btn .entry-btn span {
  font-weight: 500;
}

.cover-line {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 270px;
  z-index: 3;
  pointer-events: none;
}
@media (max-width: 767.98px) {
  .cover-line {
    bottom: 15%;
    height: 150px;
  }
}
.cover-line svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}
.cover-line__path {
  fill: none;
  stroke: rgba(255, 255, 255, 0.9);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: blur(1px);
}
.cover-line__path:nth-of-type(2) {
  stroke: rgba(255, 255, 255, 0.7);
}

/*==================================================
　サブカバー
===================================*/
.sub {
  position: relative;
  background: url(../images/common/dot_bg.webp) repeat;
  height: 240px;
}
@media (max-width: 767.98px) {
  .sub {
    height: 150px;
  }
}
.sub .catch-copy {
  position: absolute;
  top: 50%;
  left: 15%;
  transform: translateY(-50%);
  color: #000000;
  text-shadow: none;
}
.sub .main-copy {
  padding-left: 100px;
}
@media (max-width: 767.98px) {
  .sub .main-copy {
    padding-left: 50px;
  }
}
.sub .main-copy .en {
  font-size: 85px;
  letter-spacing: 0.1em;
  font-family: "Josefin Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
}
@media (max-width: 767.98px) {
  .sub .main-copy .en {
    font-size: 40px;
    letter-spacing: 0;
  }
}
.sub .main-copy .ja {
  font-size: 20px;
  display: block;
  color: #404040;
}
@media (max-width: 767.98px) {
  .sub .main-copy .ja {
    font-size: 16px;
  }
}
.sub .main-copy::before {
  content: "";
  background: url(../images/common/page_title_bg.webp) no-repeat;
  position: absolute;
  top: 20%;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 767.98px) {
  .sub .main-copy::before {
    background: url(../images/common/page_title_bg_sp.webp) no-repeat;
  }
}

.interview-cover {
  position: relative;
  background: url(../images/common/dot_bg.webp) repeat;
  height: 400px;
  overflow: hidden;
}
@media (max-width: 767.98px) {
  .interview-cover {
    height: auto;
  }
}
.interview-cover .catch-copy {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  z-index: 2;
}
@media (max-width: 767.98px) {
  .interview-cover .catch-copy {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
.interview-cover .interview-img {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
@media (max-width: 767.98px) {
  .interview-cover .interview-img {
    max-width: 100%;
    height: auto;
    -o-object-fit: initial;
       object-fit: initial;
  }
}
.interview-cover .wrap {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10em;
}
@media (max-width: 991.98px) {
  .interview-cover .wrap {
    left: 0;
  }
}
@media (max-width: 767.98px) {
  .interview-cover .wrap {
    position: static;
    transform: none;
  }
}
.interview-cover .wrap .interview-copy {
  font-size: 30px;
  font-weight: 500;
}
@media (max-width: 767.98px) {
  .interview-cover .wrap .interview-copy {
    font-size: 20px;
  }
}
.interview-cover .wrap .cat span {
  font-size: 16px;
  background: #655AC6;
  display: inline-block;
  padding: 3px 15px;
}
@media (max-width: 767.98px) {
  .interview-cover .wrap .cat span {
    font-size: 14px;
    padding: 3px 10px;
  }
}
.interview-cover .wrap .name {
  font-size: 30px;
}
@media (max-width: 767.98px) {
  .interview-cover .wrap .name {
    font-size: 24px;
  }
}
.interview-cover .wrap .name span {
  font-size: 16px;
  color: #6c757d;
  padding-left: 20px;
}
.interview-cover .wrap-sp {
  position: static;
  padding-top: 300px;
}
.interview-cover .wrap-sp .interview-copy {
  font-size: 30px;
  font-weight: 500;
}
.interview-cover .wrap-sp .cat span {
  font-size: 16px;
  background: #655AC6;
  display: inline-block;
  padding: 3px 15px;
}
.interview-cover .wrap-sp .name {
  font-size: 30px;
}
.interview-cover .wrap-sp .name span {
  font-size: 14px;
  color: #6c757d;
  padding-left: 20px;
}

/*==================================================
　サブカバー
===================================*/
.btn-light {
  color: #002060;
  border-radius: 0;
  position: relative;
  min-width: 300px;
  padding: 1em 3em;
  font-size: 0.9em;
  border: 1px solid #002060;
}
.btn-light::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 20px;
  height: 20px;
  background: #002060;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}
.btn-light:hover {
  background: #002060;
  color: #ffffff;
}

.section-title .ja {
  font-size: 42px;
  font-weight: 500;
  vertical-align: middle;
  letter-spacing: 0.08em;
  margin-bottom: 15px;
}
@media (max-width: 767.98px) {
  .section-title .ja {
    display: block;
    font-size: 30px;
    margin-bottom: 0;
  }
}
.section-title .en {
  font-size: 18px;
  font-family: "Josefin Sans", sans-serif;
  letter-spacing: 0.08em;
  vertical-align: middle;
}
@media (max-width: 991.98px) {
  .section-title .en {
    font-size: 16px;
  }
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1em;
}

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

a.btn {
  color: #002060;
  background-color: #ffffff;
  border: solid 2px #002060;
  border-radius: 50px;
  padding: 15px 100px;
}

/*==================================================
　ページトップ
===================================*/
.page-top {
  position: fixed;
  bottom: 1em;
  right: 1em;
}

/*==================================================
　お知らせ
===================================*/
.news .article {
  border-bottom: solid 1px #cccccc;
}

/*==================================================
　フッター
===================================*/
.footer-contact {
  background: #434343;
}
.footer-contact .index {
  font-size: 28px;
  font-weight: bold;
}
@media (max-width: 991.98px) {
  .footer-contact .index {
    font-size: 20px;
    text-align: center;
  }
}
@media (max-width: 991.98px) {
  .footer-contact p {
    text-align: center;
  }
}
.footer-contact .tel {
  text-align: center;
  font-size: 36px;
  font-weight: bold;
}
.footer-contact .tel span {
  font-size: 20px;
  padding-right: 10px;
}
.footer-contact .mail {
  text-align: center;
  font-size: 20px;
}

footer {
  background: #2d3133;
}
footer img.logo {
  width: 400px;
}
@media (max-width: 575.98px) {
  footer img.logo {
    width: 300px;
  }
}
@media (max-width: 991.98px) {
  footer .footer-logo {
    width: 80px;
  }
}
footer .logo-text {
  font-size: 20px;
}
@media (max-width: 991.98px) {
  footer .logo-text {
    font-size: 18px;
  }
}

.footer_bnr {
  position: fixed;
  bottom: 1em;
  left: 1em;
}

.interview .box {
  background-color: #f8f9fa;
  border-radius: 10px;
  position: relative;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.2);
}
.interview .photo {
  width: 100%;
  height: 270px;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
}
.interview .photo img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 10px 10px 0 0;
}
.interview .text .cat span {
  font-size: 14px;
  background: #655ac6;
  display: inline-block;
  padding: 3px 15px;
}
.interview .text .name {
  font-size: 20px;
}
.interview .text .name span {
  font-size: 14px;
  color: #6c757d;
  padding-left: 20px;
}/*# sourceMappingURL=common.css.map */