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

#splash-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  padding: 20px;
}

/*========= 画面遷移のための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: #ffffff;
}

.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;
  /*ナビのスタート位置と形状*/
  top: 0;
  left: 0;
  /*ナビの高さ*/
  background: rgba(25, 46, 88, 0.9);
  /*動き*/
}

/*アクティブクラスがついたら位置を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, 600ms);
  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, 600ms);
  --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: #ECF2FE;
  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(236, 242, 254, 0.5);
}
.animated-text-cover.a-transparent.active::after,
.animated-text.a-transparent.active::after {
  background-color: rgba(236, 242, 254, 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: 0.75s;
  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: 0.75s;
  animation-delay: 0.45s;
  animation-fill-mode: forwards;
}

@keyframes bgextendAnimeSecond {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* サブページ：本文・画像ブロックのスクロールイン（GSAP .subReveal と併用） */
.subReveal {
  opacity: 0;
}

/* .block-content 直下の要素にサイト幅を指定 */
.block-content > * {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

/* .block-content 直下の .alignwide の場合 */
.block-content > .alignwide {
  max-width: 1400px;
}

/* .block-content 直下の .alignfull の場合 */
.block-content > .alignfull {
  max-width: 100%;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

body {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
  color: #1A2F5A;
}

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

.btn a {
  background: linear-gradient(#ccc, #666);
}

.btn,
a.btn,
button.btn {
  position: relative;
  display: inline-block;
  padding: 0.5rem 3rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}
@media (max-width: 991.98px) {
  .btn,
  a.btn,
  button.btn {
    text-align: center;
  }
}

a.btn-gradient {
  font-weight: normal;
  color: #fff;
  border-radius: 100vh;
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.2);
  background-image: -webkit-gradient(linear, left top, right top, color-stop(40%, #ccc), to(#666));
  background-image: -webkit-linear-gradient(left, #ccc 40%, #666 100%);
  background-image: linear-gradient(90deg, #ccc 40%, #666 100%);
}

a.btn-gradient:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 100vh;
  content: "";
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  background-image: -webkit-gradient(linear, left top, right top, from(#90b821), color-stop(#565E6C), to(#2b86c5));
  background-image: -webkit-linear-gradient(left, #ccc, #666);
  background-image: linear-gradient(90deg, #ccc, #666);
}

a.btn-gradient span {
  position: relative;
  z-index: 1;
}

a.btn-gradient:hover {
  color: #fff;
}

a.btn-gradient:hover:after {
  opacity: 0;
}

/*==================================================
　ヘッダー
===================================*/
header {
  z-index: 1000;
}
header a:hover {
  color: #333;
}
header img.logo {
  max-width: 100%;
}
@media (max-width: 767.98px) {
  header img.logo {
    width: 100%;
  }
}
header .animated-line {
  padding: 0 0.5em 10px 0.5em;
  position: relative;
}
header .animated-line::before {
  background: #fff;
  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: #565E6C;
}
header .logo-name {
  font-size: 20px;
}
@media (max-width: 991.98px) {
  header .logo-name {
    font-size: 16px;
  }
}
header.sub {
  background-color: rgba(255, 255, 255, 0.9);
}

/*==================================================
　トップカバー
===================================*/
.cover {
  width: 100%;
  position: relative;
  background-size: cover;
  overflow: hidden;
}
@media (max-width: 991.98px) {
  .cover {
    width: 100%;
    height: 600px;
  }
  .cover img {
    aspect-ratio: 9/16;
    object-fit: cover;
  }
}

.catch-copy {
  position: absolute;
  top: 50%;
  left: 10em;
  color: #ffffff;
  transform: translateY(-50%);
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}
@media (max-width: 991.98px) {
  .catch-copy {
    left: 3em;
  }
}
.catch-copy .main-copy {
  font-size: 56px;
  font-style: italic;
}
@media (max-width: 991.98px) {
  .catch-copy .main-copy {
    font-size: 30px;
    letter-spacing: 0;
  }
}
.catch-copy .sub-copy {
  margin-top: 1em;
  font-size: 22px;
  font-style: italic;
  display: block;
}
@media (max-width: 991.98px) {
  .catch-copy .sub-copy {
    font-size: 16px;
  }
}

/*==================================================
　サブカバー
===================================*/
.sub-cover {
  position: relative;
  width: 100%;
  height: 280px;
  background: url("../images/company/cover.webp") no-repeat top center;
  background-size: cover;
}
.sub-cover.sub-cover-company {
  background: url("../images/company/cover.webp") no-repeat top center/cover;
}
.sub-cover.sub-cover-contact {
  background: url("../images/contact/cover.webp") no-repeat top center/cover;
}
.sub-cover.sub-cover-strengths {
  background: url("../images/strengths/cover.webp") no-repeat top left/cover;
}
.sub-cover.sub-cover-news {
  background: url("../images/recruit/cover.webp") no-repeat top center/cover;
}
@media (max-width: 991.98px) {
  .sub-cover {
    width: 100%;
    height: 150px;
  }
}
.sub-cover .page-title {
  position: absolute;
  color: #ffffff;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.sub-cover .ja {
  font-size: 40px;
  margin-bottom: 10px;
}
@media (max-width: 991.98px) {
  .sub-cover .ja {
    font-size: 28px;
  }
}
.sub-cover .en {
  font-size: 20px;
}
@media (max-width: 991.98px) {
  .sub-cover .en {
    font-size: 14px;
  }
}

.title .ja {
  font-size: 40px;
  letter-spacing: 0.1em;
}
@media (max-width: 767.98px) {
  .title .ja {
    font-size: 30px;
    display: block;
  }
}
.title .en {
  font-size: 16px;
  vertical-align: middle;
}
@media (max-width: 767.98px) {
  .title .en {
    font-size: 14px;
  }
}

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

/*==================================================
　アニメーション背景
===================================*/
.animatedBgLR {
  display: flex;
  align-items: center;
  height: 100%;
}

/*==================================================
　フッター
===================================*/
footer {
  position: relative;
  background: url(../images/footer/footer_bg.webp) no-repeat bottom center;
  background-size: cover;
  height: 560px;
}
@media (max-width: 991.98px) {
  footer {
    height: 450px;
  }
}
footer .footer-info {
  position: absolute;
  bottom: 25%;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 991.98px) {
  footer .footer-info {
    width: 100%;
  }
}
footer .en {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
}
@media (max-width: 991.98px) {
  footer .en {
    width: 100%;
  }
}
footer .en img {
  width: 100%;
  height: auto;
  display: block;
}

/*# sourceMappingURL=common.css.map */
