@charset "UTF-8";
/*====================================================================
PC/SP共通
====================================================================*/
* {
  box-sizing: border-box;
}

.js-fade {
  opacity: 0;
  visibility: hidden;
  transform: translateY(50px);
  transition: opacity 2s, visibility 2s, transform 2s;
}

.scroll {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

/* ゆっくり遷移する */
html {
  scroll-behavior: smooth;
  height: -webkit-fill-available;
  scroll-padding-top: 78px; /* ヘッダーの高さ */
}

body {
  font-family: "Noto Sans JP", "Roboto", sans-serif;
  min-height: 100vh;
  /* mobile viewport bug fix */
  min-height: -webkit-fill-available;
  overflow-x: hidden;
}

a {
  color: #337cbd;
  text-decoration: underline;
  letter-spacing: 1.5px;
}

p,
span {
  letter-spacing: 1px;
  color: #2f2f2f;
}

h2 {
  letter-spacing: 3px;
  color: #0f174e;
}

#header {
  position: fixed; /* 画面上部に固定 */
  top: 0; /* 上から0px */
  left: 0; /* 左から0px */
  width: 100%; /* 横幅を画面全体に */
  z-index: 10; /* 他の要素より上に表示 */
  background-color: #fff; /* ヘッダーの背景色 */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* 下に軽い影を追加 */
}
#header .header {
  align-items: center;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  padding: 1rem 2rem; /* カスタマイズしてください */
  width: 100%;
  height: 100%;
  max-width: 1300px;
}
#header .header__logo {
  text-decoration: none;
  height: auto;
  width: 220px;
}
#header .header__list {
  box-sizing: border-box;
  display: flex;
  margin: 0;
  padding: 0;
}
#header .header__list-item {
  list-style: none;
  text-decoration: none;
}
#header .header__list-item .arrow-icon {
  display: none;
}
#header .menu-button-wrapper {
  display: none;
}
#header .header__list-link {
  color: #0f174e;
  display: block;
  text-decoration: none;
  padding: 12px 0;
  transition: 0.2s;
  position: relative;
  font-weight: bold;
  margin: 0 21px;
}
#header .header__list-link::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: #0f174e;
  bottom: -1px; /*アンダーラインがaタグの下端から現れる*/
  transform: scale(0, 1); /*アンダーラインの縮尺比率。ホバー前はx方向に0*/
  transform-origin: left top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の左端*/
  transition: transform 0.3s; /*変形の時間*/
}
#header .header__list-link:hover {
  color: #166cdc;
}
#header .header__list-link:hover::after {
  transform: scale(1, 1); /*ホバー後、x軸方向に1（相対値）伸長*/
  background: #166cdc;
}
#header .hamburger-menu {
  position: relative;
}
@media screen and (max-width: 912px) {
  #header .hamburger-menu__list {
    background-color: #f5f5f5;
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    left: 0;
    padding: 2rem;
    position: absolute;
    transform: translateX(-100%);
    transition: 0.3s;
    top: 100%;
    width: 100%;
    z-index: 7;
    height: 100vh;
    overflow: auto;
  }
  #header #hamburger:checked ~ .hamburger-menu__list {
    transform: translateX(0%);
    transition: 0.3s;
    background-color: #f5f5f5;
  }
  #header .header__list-item {
    display: block;
    border-bottom: 0.5px solid #919191;
    width: 100%;
    margin: 0;
  }
  #header .header__list-item .arrow-icon {
    width: 12px;
    height: auto;
    flex-shrink: 0;
    display: inline;
  }
  #header .header__list-link {
    display: flex;
    justify-content: space-between; /* ← ここで右端に寄せる */
    align-items: center; /* 縦位置を中央に */
    padding: 28px 21px;
    margin: 0;
    color: #333;
    transition: 0.1s;
    border-bottom: none;
  }
  #header .header__list-link .arrow-icon {
    width: 21px;
    height: auto;
    flex-shrink: 0; /* 画像が縮まないように */
  }
  #header .header__list-link::after {
    display: none;
  }
  #header .header__list-link:hover {
    background: #fff;
    color: #166cdc;
  }
  #header .header__list-link:active {
    background: #fff;
    color: #166cdc;
  }
  #header .menu-button-wrapper {
    width: 100%;
    text-align: center;
    background: linear-gradient(to right, #1b55d6, #278bc3, #4dcdac);
    display: block;
    margin: auto;
    border-radius: 80px;
    color: #fff;
    font-weight: bold;
    position: relative;
    box-shadow: 0 0 9px gray;
    transition: background 0.6s, color 0.6s;
    font-size: 1.1em;
    padding: 21px 0;
    width: 100%;
    margin: auto;
  }
  #header .menu-button-wrapper::after, #header .menu-button-wrapper::before {
    content: "";
    position: absolute;
    top: 26px;
    right: 4px;
    width: 39px;
    height: 9px;
    background-size: contain;
    background-repeat: no-repeat;
    transition: opacity 0.6s;
  }
  #header .menu-button-wrapper::after {
    background-image: url(../image/arrow_white.png);
    opacity: 1;
  }
  #header .menu-button-wrapper::before {
    background-image: url(../image/arrow_navy.png);
    opacity: 0;
  }
  #header .menu-button-wrapper:hover {
    background: linear-gradient(to right, #ffffff, #ffffff);
    color: #166cdc;
  }
  #header .menu-button-wrapper:hover::after {
    opacity: 0;
  }
  #header .menu-button-wrapper:hover::before {
    opacity: 1;
  }
}
#header .hamburger-menu__input {
  display: none;
}
#header .hamburger-menu__bg {
  cursor: pointer;
  display: none;
  height: 100vh;
  left: 0;
  opacity: 0.8; /* カスタマイズしてください */
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 3;
  overflow: auto;
}
#header #hamburger:checked ~ .hamburger-menu__bg {
  display: block;
}
#header .hamburger-menu__button {
  display: none;
}
@media screen and (max-width: 912px) {
  #header .hamburger-menu__button {
    align-items: center;
    -moz-appearance: none;
    -webkit-appearance: none;
            appearance: none;
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-right: 24px;
  }
}
#header .hamburger-menu__button-mark {
  background-color: #000; /* カスタマイズしてください */
  display: block;
  height: 1px; /* カスタマイズしてください */
  transition: 0.3s; /* カスタマイズしてください */
  width: 28px; /* カスタマイズしてください */
  z-index: 3;
}
@media screen and (max-width: 912px) {
  #header #hamburger:checked ~ .hamburger-menu__button .hamburger-menu__button-mark:nth-of-type(1) {
    transform: translate(2px, 1px) rotate(45deg); /* カスタマイズしてください */
    transform-origin: 0%; /* カスタマイズしてください */
  }
  #header #hamburger:checked ~ .hamburger-menu__button .hamburger-menu__button-mark:nth-of-type(2) {
    opacity: 0;
  }
  #header #hamburger:checked ~ .hamburger-menu__button .hamburger-menu__button-mark:nth-of-type(3) {
    transform: translate(2px, 3px) rotate(-45deg); /* カスタマイズしてください */
    transform-origin: 0%; /* カスタマイズしてください */
  }
}
@media screen and (max-width: 912px) {
  #header #hamburger:checked ~ .hamburger-menu__button {
    background-color: black;
    width: 78px;
    height: 78px;
    margin-right: 0;
    padding: 28px 24px 28px 28px;
  }
  #header #hamburger:checked ~ .hamburger-menu__button .hamburger-menu__button-mark {
    background-color: white;
  }
}

@media screen and (max-width: 912px) {
  #header .header {
    height: 78px;
    padding: 0;
  }
  #header .header__logo {
    text-decoration: none;
    padding: 1rem; /* ロゴだけ余白をつける */
    display: flex;
    align-items: center;
  }
  #header .header__logo img {
    height: 45px;
    width: 206px;
    display: block;
  }
}
.content {
  padding-top: 80px; /* ヘッダーの高さに応じて調整 */
}
.content #mv-area {
  position: relative;
  height: 50vw;
  margin: auto;
  width: 100%;
  background: url("../image/head_bg.png") no-repeat;
  background-size: cover;
  /* アイコンが右から左に動く */
}
.content #mv-area .right-image {
  display: none;
}
.content #mv-area .arrow_animation_area {
  display: block;
}
.content #mv-area .arrow_animation_area {
  height: 50vw;
  overflow: hidden;
}
.content #mv-area .arrow_animation {
  position: relative;
  height: 100%;
}
.content #mv-area .arrow_animation_img {
  position: absolute;
  top: 0;
  right: 50%;
  transform: translateX(130%);
  opacity: 0.8; /* 初期の透明度 */
  transition: opacity 0.1s ease; /* フェードアウト効果 */
}
.content #mv-area .arrow_animation_img img {
  height: 50vw;
  width: auto;
}
.content #mv-area .text-area {
  max-width: 980px;
  font-weight: bold;
  color: #fff;
  margin-left: 6vw;
  margin-top: -43vw;
}
.content #mv-area .text-area .text-bold {
  font-size: 2vw;
  margin-bottom: 3vw;
  color: #fff;
}
.content #mv-area .text-area h1 {
  font-size: 4vw;
  line-height: 1.6;
  margin-bottom: 5vw;
}
.content #mv-area .text-area .head-btn {
  display: inline-block;
}
.content #mv-area .text-area .head-btn a {
  font-size: 2vw;
  padding: 2vw 0 2.1vw;
  width: 36vw;
  text-align: center;
  border: 0.3vw solid #fff;
  display: block;
  position: relative;
  z-index: 1;
  transition: 0.3s;
  border-radius: 72vw; /* 角を丸くする */
  overflow: hidden;
}
.content #mv-area .text-area .head-btn a::after {
  content: "";
  background-image: url(../image/arrow_white.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 3vw;
  height: 3vw;
  position: absolute;
  top: 2.5vw;
  right: 3.4vw;
}
.content #mv-area .text-area .head-btn a:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: #ffffff;
  border: 1px solid #fff;
  transform-origin: 100% 50%;
  transform: scaleX(0);
  transition: transform ease 0.3s;
}
.content #mv-area .text-area .head-btn a:hover {
  color: #166cdc;
}
.content #mv-area .text-area .head-btn a:hover::before {
  transform-origin: 0% 50%;
  transform: scaleX(1);
}
.content #mv-area .text-area .head-btn a:hover::after {
  background-image: url(../image/arrow_navy.png);
  transition-delay: 0.1s;
}
@media screen and (max-width: 750px) {
  .content #mv-area {
    height: 670px;
    background: url("../image/head_bg_sp.png") no-repeat;
    background-size: cover;
    width: 100%;
  }
  .content #mv-area .right-image {
    display: block;
    display: flex;
    justify-content: flex-end;
    padding-top: 9px;
    padding-right: 9px;
  }
  .content #mv-area .arrow_animation_area {
    display: none;
  }
  .content #mv-area .text-area {
    margin: 0 6vw;
    padding-top: 0px;
  }
  .content #mv-area .text-area .text-bold {
    font-size: 1em;
  }
  .content #mv-area .text-area h1 {
    font-size: 2.2em;
    margin-bottom: 100px;
  }
  .content #mv-area .text-area .head-btn {
    display: block;
  }
  .content #mv-area .text-area .head-btn a {
    font-size: 1.3em;
    padding: 21px 0;
    width: 100%;
    margin: auto;
    /* hoverは無効化（オーバーライド） */
  }
  .content #mv-area .text-area .head-btn a:hover {
    color: inherit;
  }
  .content #mv-area .text-area .head-btn a:hover::before {
    transform: scaleX(0);
  }
  .content #mv-area .text-area .head-btn a:hover::after {
    display: none;
  }
  .content #mv-area .text-area .head-btn a:active {
    color: #166cdc;
  }
  .content #mv-area .text-area .head-btn a:active::before {
    transform-origin: 0% 50%;
    transform: scaleX(1);
  }
  .content #mv-area .text-area .head-btn a:active::after {
    transition-delay: 0.1s;
    content: "";
    display: inline-block;
    background-image: url(../image/arrow_navy.png);
    background-size: contain;
    vertical-align: middle;
    background-repeat: no-repeat;
    top: 25px;
    right: 13px;
    width: 40px;
    height: 11px;
  }
  .content #mv-area .text-area .head-btn a::after {
    content: "";
    display: inline-block;
    background-image: url(../image/arrow_white.png);
    background-size: contain;
    vertical-align: middle;
    background-repeat: no-repeat;
    top: 25px;
    right: 13px;
    width: 40px;
    height: 11px;
  }
}
.content .common-caption {
  text-align: center;
  margin-bottom: 5vw;
  position: relative;
  font-weight: bold;
}
.content .common-caption .genre {
  margin-bottom: 36px;
  display: inline-block;
  font-size: 1.6vw;
  color: #2343a0;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.content .common-caption .genre:before {
  background-image: url(../image/minicap_ico_navy@2x.png);
  background-size: cover;
  content: "";
  display: block;
  width: 1.8vw;
  height: 2.3vw;
  background-position: center;
  background-repeat: no-repeat;
  margin-right: 0.8vw;
}
.content .common-caption span {
  margin-bottom: 9px;
  display: inline-block;
  font-size: 16px;
}
.content .common-caption h2 {
  font-size: 3.2vw;
  margin-bottom: 4vw;
  line-height: 1.4;
}
.content .common-caption .secondary-cap {
  font-size: 2vw;
  line-height: 1.6;
}
@media screen and (max-width: 750px) {
  .content .common-caption {
    margin-bottom: 32px;
  }
  .content .common-caption .genre {
    font-size: 0.8em;
    margin-bottom: 21px;
  }
  .content .common-caption .genre:before {
    width: 16px;
    height: 21px;
    margin-right: 8px;
  }
  .content .common-caption h2 {
    font-size: 1.4em;
    margin-bottom: 32px;
  }
  .content .common-caption .secondary-cap {
    font-size: 1.2em;
    line-height: 1.6;
  }
}
.content #about-area {
  padding: 120px 0;
}
.content #about-area .common-caption {
  text-align: center;
  margin-bottom: 2vw;
}
.content #about-area .common-caption h2 {
  padding: 0 5vw;
}
.content #about-area .common-caption .sp {
  display: none;
}
.content #about-area .about-sect {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.content #about-area .about-sect .about-list-cap {
  font-size: 1.8vw;
  padding: 1vw 0 1.2vw;
  width: 36vw;
  font-weight: bold;
  background: #2343a0;
  color: #fff;
  text-align: center;
  transform: translateY(50%);
  z-index: 1;
}
.content #about-area .about-list {
  width: 70vw;
  background: #ededed;
  border-radius: 0.5vw;
  text-align: center;
  display: flex;
  padding: 4vw;
  justify-content: space-around;
}
.content #about-area li {
  width: 25vw;
}
.content #about-area li img {
  max-width: 174px;
  height: auto;
  width: 75%;
}
.content #about-area li p {
  font-size: 1.8vw;
  font-weight: bold;
  margin-top: 32px;
  padding: 6px;
}
@media screen and (max-width: 750px) {
  .content #about-area {
    padding: 60px 0;
    margin: 0 6vw;
  }
  .content #about-area .common-caption {
    margin-bottom: 24px;
  }
  .content #about-area .common-caption .sp {
    display: block;
  }
  .content #about-area .about-sect {
    height: 100%;
  }
  .content #about-area .about-sect .about-list-cap {
    font-size: 1.2em;
    margin: auto;
    position: relative;
    left: 0;
    transform: none;
    width: 100%;
    padding: 12px;
  }
  .content #about-area .about-list {
    display: block;
    position: relative;
    left: 0;
    transform: none;
    top: 0;
    width: 100%;
    padding: 0 27px 16px 27px;
  }
  .content #about-area li {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid #b9b9b9;
  }
  .content #about-area li:last-child {
    padding-bottom: 0;
    border-bottom: none;
  }
  .content #about-area li img {
    width: 70px;
    height: auto;
  }
  .content #about-area li p {
    font-size: 1.1em;
    margin-top: 0;
    padding-left: 21px;
  }
}
.content #aboutus-area {
  color: #fff;
  height: 80vw;
  background: #fff;
  position: relative;
  overflow: hidden;
}
.content #aboutus-area::before {
  content: "";
  position: absolute;
  background: url(../image/bg_aboutus.png) no-repeat;
  background-size: contain;
  width: 122vw;
  height: 52vw;
  top: 25vw;
  right: -42vw;
  z-index: 0;
  pointer-events: none;
}
.content #aboutus-area .aboutus-wrap {
  position: relative;
  z-index: 1;
  padding: 6vw;
  background: linear-gradient(to right, #21419e, #579be5);
  width: 90%;
}
.content #aboutus-area .common-caption {
  text-align: left;
}
.content #aboutus-area .common-caption .secondary-cap {
  color: #fff;
}
.content #aboutus-area .common-caption h2 {
  color: #fff;
}
.content #aboutus-area .common-caption .genre {
  color: #fff;
  justify-content: left;
}
.content #aboutus-area .common-caption .genre:before {
  background-image: url(../image/minicap_ico_white@2x.png);
}
.content #aboutus-area .aboutus-sect p {
  font-size: 1.5vw;
  line-height: 1.8;
  color: #fff;
}
@media screen and (max-width: 750px) {
  .content #aboutus-area {
    position: relative;
    height: 850px;
    overflow: hidden;
    background: #fff;
    color: #fff;
  }
  .content #aboutus-area::before {
    content: none;
  }
  .content #aboutus-area .aboutus-wrap {
    position: relative;
    padding: 60px 6vw 150px 6vw;
    width: 100%;
    background: linear-gradient(to right, #21419e, #579be5);
    z-index: 0;
  }
  .content #aboutus-area .aboutus-wrap::before {
    content: "";
    position: absolute;
    top: 85%;
    right: -30%; /* px指定から%に */
    width: 106vw;
    height: auto; /* 自動高さで縦横比維持 */
    aspect-ratio: 1510/835; /* 縦横比固定 */
    background-image: url(../image/bg_aboutus.png);
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 1;
    pointer-events: none;
  }
  .content #aboutus-area .aboutus-wrap .aboutus-sect p .pc {
    display: none;
  }
  .content #aboutus-area .aboutus-wrap .common-caption {
    text-align: center;
  }
  .content #aboutus-area .aboutus-wrap .common-caption .genre {
    justify-content: center;
  }
  .content #aboutus-area .aboutus-wrap .common-caption .genre::before {
    width: 16px;
    height: 21px;
    margin-right: 8px;
  }
  .content #aboutus-area .aboutus-wrap .common-caption .secondary-cap {
    text-align: left;
  }
  .content #aboutus-area .aboutus-wrap .common-caption h2 {
    font-size: 1.6em;
  }
  .content #aboutus-area .aboutus-wrap .aboutus-sect p {
    font-size: 1em;
  }
}
.content #company-area {
  padding: 6vw;
}
.content #company-area .common-caption {
  text-align: left;
}
.content #company-area .common-caption .genre {
  justify-content: left;
}
.content #company-area .company-sect .table {
  display: flex;
  flex-wrap: wrap;
  font-size: 1.4vw;
  padding: 21px 36px;
  margin-top: -180px;
  margin-left: 15vw;
}
.content #company-area .company-sect .table dt {
  width: 30%;
  padding: 2vw 3px 1.9vw;
  border-bottom: 1.8px solid #acacac;
  color: #000000;
  line-height: 1.8;
  color: #2f2f2f;
}
.content #company-area .company-sect .table dt:first-child {
  border-top: 1.8px solid #acacac;
}
.content #company-area .company-sect .table dd {
  width: 70%;
  padding: 2vw 0 1.9vw 0;
  border-bottom: 1.8px solid #acacac;
  line-height: 1.8;
  overflow: hidden;
  color: #2f2f2f;
}
.content #company-area .company-sect .table dt:first-child,
.content #company-area .company-sect .table dt:first-child + dd {
  border-top: 1.8px solid #acacac;
}
@media screen and (max-width: 750px) {
  .content #company-area {
    padding: 60px 6vw;
  }
  .content #company-area .common-caption .genre {
    justify-content: center;
  }
  .content #company-area h2 {
    font-size: 1.6em;
    text-align: center;
  }
  .content #company-area .company-sect .table {
    font-size: 1em;
    margin-top: 0;
    margin-left: 0;
    padding: 0;
  }
  .content #company-area .company-sect .table dt {
    border-bottom: none;
    width: 100%;
    padding: 24px 3px 3px;
    font-size: 0.9em;
  }
  .content #company-area .company-sect .table dd {
    width: 100%;
    padding: 0 0 18px 3px;
    border-top: none;
    font-size: 1em;
    border-bottom: 1px solid #acacac;
  }
  .content #company-area .company-sect .table dt:first-child,
  .content #company-area .company-sect .table dt:first-child + dd {
    border-top: none;
  }
  .content #company-area .company-sect .table dt:first-child {
    border-top: 1px solid #acacac;
  }
}
.content #recruit-area {
  background: #f5f5f5;
  padding-top: 120px;
}
.content #recruit-area .common-caption {
  padding: 0 100px;
}
.content #recruit-area .common-caption h2 .sp {
  display: none;
}
.content #recruit-area .recruit-sect {
  text-align: center;
  line-height: 1.8;
}
.content #recruit-area .recruit-sect p {
  margin-bottom: 16px;
  padding: 0 100px;
  font-size: 1.6vw;
}
.content #recruit-area .recruit-sect .recruit-text-btn {
  color: #166cdc;
  opacity: 1;
  font-weight: bold;
  display: inline-block;
  margin-bottom: 1vw;
  border-bottom: 1px solid;
  font-size: 1.3vw;
}
.content #recruit-area .recruit-sect .recruit-text-btn:hover {
  opacity: 0.6;
  transition: 0.3s;
}
.content #recruit-area .recruit-sect .top {
  margin-top: 5vw;
}
.content #recruit-area .recruit-sect .recruit-btn {
  width: 54vw;
  text-align: center;
  background: linear-gradient(to right, #1b55d6, #278bc3, #4dcdac);
  display: block;
  margin: auto;
  border-radius: 40vw;
  color: #fff;
  font-weight: bold;
  position: relative;
  box-shadow: 0 0 9px gray;
  transition: background 0.6s, color 0.6s;
  font-size: 2vw;
  padding: 2vw 0 2.1vw;
}
.content #recruit-area .recruit-sect .recruit-btn::after, .content #recruit-area .recruit-sect .recruit-btn::before {
  content: "";
  position: absolute;
  width: 3.5vw;
  height: 3.5vw;
  top: 3vw;
  right: 4vw;
  background-size: contain;
  background-repeat: no-repeat;
  transition: opacity 0.6s;
}
.content #recruit-area .recruit-sect .recruit-btn::after {
  background-image: url(../image/arrow_white.png);
  opacity: 1;
}
.content #recruit-area .recruit-sect .recruit-btn::before {
  background-image: url(../image/arrow_navy.png);
  opacity: 0;
}
.content #recruit-area .recruit-sect .recruit-btn:hover {
  background: linear-gradient(to right, #ffffff, #ffffff);
  color: #166cdc;
}
.content #recruit-area .recruit-sect .recruit-btn:hover::after {
  opacity: 0;
}
.content #recruit-area .recruit-sect .recruit-btn:hover::before {
  opacity: 1;
}
@keyframes infinity-scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.content #recruit-area .recruit-sect .scroll-infinity {
  padding: 70px 0;
  opacity: 0.7;
}
.content #recruit-area .recruit-sect .scroll-infinity .scroll-infinity__wrap {
  overflow: hidden;
}
.content #recruit-area .recruit-sect .scroll-infinity .scroll-infinity__list {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  width: -moz-fit-content;
  width: fit-content;
}
.content #recruit-area .recruit-sect .scroll-infinity .scroll-infinity__list--left {
  animation: infinity-scroll-left 80s linear infinite;
}
.content #recruit-area .recruit-sect .scroll-infinity .scroll-infinity__item {
  flex: 0 0 auto;
  width: 25vw; /* 画面に4枚分表示 */
}
.content #recruit-area .recruit-sect .scroll-infinity .scroll-infinity__item > img {
  width: 100%;
  display: block;
}
@media screen and (max-width: 750px) {
  .content #recruit-area {
    padding-top: 60px;
  }
  .content #recruit-area .common-caption {
    padding: 0;
  }
  .content #recruit-area .common-caption h2 {
    margin: 0 6vw;
    padding: 0;
  }
  .content #recruit-area .common-caption h2 .sp {
    display: inline;
  }
  .content #recruit-area .recruit-sect {
    text-align: left;
  }
  .content #recruit-area .recruit-sect p {
    margin: 0 6vw;
    padding: 0 0 32px 0;
    font-size: 1em;
  }
  .content #recruit-area .recruit-sect a:active {
    opacity: 0.7;
  }
  .content #recruit-area .recruit-sect .recruit-text-btn {
    font-size: 1em;
  }
  .content #recruit-area .recruit-sect .top {
    margin-top: 21px;
    margin-bottom: 12px;
  }
  .content #recruit-area .recruit-sect .recruit-btn {
    font-size: 1.1em;
    padding: 21px 0;
    width: 90%;
    margin: auto;
  }
  .content #recruit-area .recruit-sect .recruit-btn::after, .content #recruit-area .recruit-sect .recruit-btn::before {
    top: 31px;
    right: 13px;
    width: 40px;
    height: 11px;
  }
  .content #recruit-area .recruit-sect .recruit-btn:active {
    background: linear-gradient(to right, #ffffff, #ffffff);
    color: #166cdc;
  }
  .content #recruit-area .recruit-sect .recruit-btn:active::after {
    opacity: 0;
  }
  .content #recruit-area .recruit-sect .recruit-btn:active::before {
    opacity: 1;
  }
  .content #recruit-area .recruit-sect .scroll-infinity {
    padding: 36px 0 60px;
  }
  .content #recruit-area .recruit-sect .scroll-infinity .scroll-infinity__item {
    width: 55.5555555556vw;
  }
}
.content #contact-area {
  background: url(../image/contact_bg.png) no-repeat;
  position: relative;
  overflow: hidden;
  padding: 114px 100px;
  background-size: cover;
}
.content #contact-area .common-caption {
  text-align: left;
}
.content #contact-area .common-caption h2 {
  margin-bottom: 50px;
  color: #fff;
}
.content #contact-area .common-caption .genre {
  color: #fff;
  justify-content: left;
}
.content #contact-area .common-caption .genre:before {
  background-image: url(../image/minicap_ico_white@2x.png);
}
.content #contact-area .common-caption .secondary-cap .contact-span {
  margin-bottom: 21px;
  display: inline-block;
  font-size: 1.8vw;
  padding: 9px 21px;
  border: 1px solid;
  border-radius: 2px;
  color: #fff;
}
.content #contact-area .common-caption p {
  font-size: 1.8vw;
  color: #fff;
}
.content #contact-area .contact-sect a {
  display: block;
  background: #fff;
  color: #166cdc;
  border-radius: 60vw;
  text-align: center;
  font-weight: bold;
  transition: background 0.3s, color 0.3s;
  position: relative;
  box-shadow: 0 0 8px rgb(255, 255, 255);
  width: 50vw;
  font-size: 2vw;
  padding: 2.3vw 0 2.4vw;
}
.content #contact-area .contact-sect a::after, .content #contact-area .contact-sect a::before {
  content: "";
  position: absolute;
  width: 3.5vw;
  height: 3.5vw;
  top: 3vw;
  right: 4vw;
  background-size: contain;
  background-repeat: no-repeat;
  transition: opacity 0.6s;
}
.content #contact-area .contact-sect a::after {
  background-image: url(../image/arrow_navy.png);
  opacity: 1;
}
.content #contact-area .contact-sect a::before {
  background-image: url(../image/arrow_white.png);
  opacity: 0;
}
.content #contact-area .contact-sect a:hover {
  background: #166cdc;
  color: #fff;
}
.content #contact-area .contact-sect a:hover::after {
  opacity: 0;
}
.content #contact-area .contact-sect a:hover::before {
  opacity: 1;
}
.content #other-area {
  padding: 60px 0;
  background-color: #f0f0f0;
  color: #2f2f2f;
}
.content #other-area h1.other-capt {
  padding: 32px;
  font-size: 1.8em;
  line-height: 1.4;
  font-weight: bold;
  letter-spacing: 1px;
}
.content #other-area .other-sect {
  margin: 0 32px;
  background: #fff;
  padding: 21px;
  border-radius: 6px;
}
.content #other-area .other-sect li {
  margin-bottom: 18px;
}
.content #other-area .other-sect li h3 {
  font-size: 1.4em;
  font-weight: bold;
  border-bottom: 1px #b9b9b9 solid;
  padding: 12px 0;
  margin-bottom: 18px;
  letter-spacing: 1px;
}
.content #other-area .other-sect li p {
  line-height: 1.7;
  font-size: 1em;
}
@media screen and (max-width: 750px) {
  .content #other-area {
    padding-top: 0;
  }
  .content #other-area .other-sect {
    margin: 0 4vw;
    padding: 12px;
  }
  .content #other-area .other-sect li h3 {
    font-size: 1.1em;
    line-height: 1.6;
  }
  .content #other-area .other-sect li p {
    font-size: 0.9em;
  }
  .content #other-area h1.other-capt {
    font-size: 1.5em;
    padding: 10vw 5vw 5vw;
  }
}

@media screen and (max-width: 750px) {
  .content {
    padding-top: 77px;
  }
  .content #contact-area {
    padding: 60px 5vw;
  }
  .content #contact-area .common-caption {
    text-align: center;
  }
  .content #contact-area .common-caption p {
    font-size: 1em;
  }
  .content #contact-area .common-caption h2 {
    margin-bottom: 32px;
  }
  .content #contact-area .common-caption .secondary-cap .contact-span {
    font-size: 1em;
    margin-bottom: 16px;
    padding: 6px 9px;
  }
  .content #contact-area .contact-sect a {
    padding: 21px 0;
    font-size: 1.1em;
    width: 90%;
    margin: auto;
  }
  .content #contact-area .contact-sect a::after, .content #contact-area .contact-sect a::before {
    content: "";
    position: absolute;
    top: 25px;
    right: 30px;
    width: 28px;
    height: 12px;
    background-size: contain;
    background-repeat: no-repeat;
    transition: opacity 0.6s;
  }
  .content #contact-area .contact-sect a::after {
    background-image: url(../image/arrow_navy.png);
    opacity: 1;
  }
  .content #contact-area .contact-sect a::before {
    background-image: url(../image/arrow_white.png);
    opacity: 0;
  }
  .content #contact-area .contact-sect a:hover {
    background: #166cdc;
    color: #fff;
  }
  .content #contact-area .contact-sect a:hover::after {
    opacity: 0;
  }
  .content #contact-area .contact-sect a:hover::before {
    opacity: 1;
  }
}
#footer {
  width: 100%;
  position: relative;
  overflow: hidden;
}
#footer .footer-inner {
  margin: 60px 32px;
  display: flex;
}
#footer .footer-inner .company .company-name {
  text-decoration: none;
  height: 84px;
  width: 385px;
  display: block;
  margin-bottom: 32px;
}
#footer .footer-inner .company .address {
  line-height: 1.8;
  font-family: sans-serif;
  font-size: 16px;
  margin-bottom: 50px;
}
#footer .footer-inner .company .link-list {
  margin-bottom: 60px;
}
#footer .footer-inner .company .link-list li {
  color: #7f7f7f;
  font-size: 14px;
  margin-bottom: 16px;
}
#footer .footer-inner .company .link-list li .ex-link::after {
  content: "";
  display: inline-block;
  background-image: url("../image/external_icon.png"); /* 画像パスを指定 */
  background-size: contain; /* 画像サイズをコンテナに収める */
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  margin-left: -6px;
  vertical-align: middle;
}
#footer .footer-inner .company .link-list li a:hover {
  opacity: 0.4;
  transition: 0.3s;
}
#footer .footer-inner .page-list {
  margin: 32px 0;
  display: flex;
  padding-left: 60px;
}
#footer .footer-inner .page-list li {
  font-size: 16px;
  margin-right: 36px;
  font-weight: bold;
  color: #0f174e;
}
#footer .footer-inner .page-list li a {
  transition: 0.1s;
}
#footer .footer-inner .page-list li a:hover {
  color: #166cdc;
}
#footer .copyright-inner {
  text-align: left;
  color: rgb(117, 108, 108);
  font-size: 12px;
}

@media screen and (max-width: 750px) {
  #footer .footer-inner {
    margin: 32px 6vw;
    display: flex;
    flex-direction: column;
  }
  #footer .footer-inner .page-list {
    order: 1;
    margin-bottom: 32px;
    display: block;
    padding-left: 0;
    margin-top: 0;
  }
  #footer .footer-inner .page-list li {
    font-size: 0.9em;
    line-height: 3;
  }
  #footer .footer-inner .page-list li a {
    transition: 0.1s;
  }
  #footer .footer-inner .page-list li a:active {
    opacity: 0.5;
  }
  #footer .footer-inner .company {
    order: 2;
  }
  #footer .footer-inner .company .company-name {
    margin-bottom: 12px;
    width: 60%;
    height: auto;
  }
  #footer .footer-inner .company .address {
    line-height: 1.5;
    font-family: sans-serif;
    font-size: 0.8em;
  }
  #footer .footer-inner .company .link-list li {
    margin-bottom: 21px;
  }
  #footer .footer-inner .company .link-list li a {
    font-size: 0.9em;
    line-height: 1.4;
  }
  #footer .copyright-inner {
    text-align: center;
    margin-top: 24px;
    font-size: 0.5em;
    color: #666;
  }
}
.scroll-to-top {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  width: 16px;
  height: auto;
  opacity: 0;
  transform: translateY(20px);
  visibility: hidden; /* 初期状態では非表示 */
  transition: opacity 0.5s ease, transform 0.5s ease, visibility 0s 0.5s; /* visibilityの遅延を設定 */
  z-index: 5;
}

.scroll-to-top.show {
  visibility: visible; /* 表示状態に変更 */
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0s; /* transitionの遅延をリセット */
}

.scroll-to-top img {
  width: 100%;
  height: 100%;
  transition: all 0.3s ease; /* ホバー時のスムーズな遷移 */
}

.scroll-to-top:hover img {
  content: url("../image/pagetop_on.png"); /* hover時に切り替え */
}/*# sourceMappingURL=style.css.map */