@charset "utf-8";
/* CSS Document */
/*=============================================
======================共通スタイル=========================*/
body, html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 62.5%;
  line-height: 2;
  color: #333;
  scroll-behavior: smooth;
}
body {
  font-size: 1.6rem;
}
#container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #E0EBF4;
  width: 100%;
  height: calc(100% - 90px);
  min-height: 450px;
  box-sizing: border-box;
  padding-top: 80px;
}
a {
  color: #333;
  text-decoration: none;
  cursor: pointer !important;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
:root {
  --red: #E50012;
  --yellow: #FBC600;
  --blue: #0054A6;
}
.blue {
  color: var(--blue);
}
.yellow {
  color: var(--yellow);
}
.red {
  color: var(--red);
}
ul {
  list-style: none;
}
img {
  object-fit: cover;
}
.section-wrapper {
  padding: 120px 30px;
  max-width: 1440px;
  margin: 0 auto;
}
h3 {
  font-size: 3rem;
  margin-bottom: 10px;
}
/* hide reCAPTCHA v3 badge */
.grecaptcha-badge {
  visibility: hidden;
}
.u-recaptcha-policy {
  font-size: 1.0rem;
  text-align: center;
  color: #ccc;
  margin-top: 10px;
}
/*ページタイトル*/
.top-ttl-en {
  font-size: min(6vw, 8rem);
  font-weight: 700;
  line-height: 1;
}
.top-ttl-ja {
  font-size: min(2vw, 3rem);
  color: var(--blue);
  font-weight: 700;
  margin-top: 20px;
}
/*セクションタイトル*/
.ttl-en {
  font-size: min(6vw, 8rem);
  font-weight: 700;
  line-height: 1.2;
}
.ttl-ja {
  font-size: min(2vw, 3rem);
  font-weight: 700;
}
.ttl-en_white {
  font-size: min(6vw, 8rem);
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}
.ttl-ja_white {
  font-size: min(2vw, 3rem);
  font-weight: 700;
  color: #fff;
}
.ttl-wrapper {
  margin-bottom: 50px;
}
/*セクションサブタイトル*/
.sub-ttl {
  font-size: 3.0rem;
  margin-bottom: 50px;
  font-weight: 600;
}
.sub-ttl-en {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 50px;
}
/*セクション共通CSS*/
.top {
  padding-top: 120px;
}
.img-top {
  display: block;
  width: 100%;
  margin-top: 50px;
  object-fit: cover;
  min-height: 200px;
}
.top .ttl-wrapper {
  max-width: 1440px;
  padding: 0 30px;
  margin: 0 auto 60px;
}
/*アニメーション*/
.fade-in .bg-wrap, .fade-in .bg-wrap .inn {
  display: block;
}
.fade-in .bg-wrap {
  overflow: hidden;
  opacity: 0;
}
.fade-in .bg-wrap .inn {
  opacity: 0;
  transform: matrix(1, 0, 0, 1, 0, 100);
  transition: 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.fade-in.is-animated .bg-wrap {
  opacity: 1;
}
.fade-in.is-animated .bg-wrap .inn {
  opacity: 1;
  transform: matrix(1, 0, 0, 1, 0, 0);
}
@keyframes slideInFromBottom {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*ボタン*/
.btn:not(.news-btn):not(.business-btn):not(.member-btn) {
  width: 100%;
  max-width: 200px;
  height: 60px;
  padding: 0 10px 0 25px;
  position: relative;
  text-decoration: none;
  outline: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 9999px;
  color: #333;
  background-color: #fff;
  border: 1px solid #333;
  transition: all .3s ease;
  margin-top: 50px;
}
.btn .arrow {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background-color: #333;
  border-radius: 40px;
  overflow: hidden;
  transition: all .3s ease;
}
.btn .arrow .btn-span {
  position: relative;
  right: 2px;
  width: 16px;
  height: 6px;
  border-bottom: 1px solid #fff;
  border-right: 2px solid #fff;
  transform: skew(45deg);
  transition: all .3s ease;
}
.btn:not(.news-btn):not(.business-btn):not(.member-btn):hover {
  color: #fff;
  background-color: #333;
}
.btn:hover .arrow {
  background-color: #fff;
}
.btn:hover .arrow .btn-span {
  border-color: #333;
}
/*写真アニメーション*/
.img-wrapper {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1s ease-out, transform 0.5s ease-out;
}
.img-wrapper.show {
  opacity: 1;
  transform: translateY(0);
}
/*====================================================================
======================ヘッダー・フッター================================*/
/*ヘッダー*/
header {
  z-index: 9999;
  width: 100%;
  height: 80px;
  position: fixed !important;
  background: #fff;
  transition: 0.8s cubic-bezier(0.33, 0.09, 0.09, 1);
  transition-property: top, opacity;
}
header .fj-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
  max-width: none;
  padding: 0 0 0 2.5%;
  position: relative;
}
header .fj-inner .logo img {
  width: 65vw;
  max-width: 250px;
}
header .fj-inner nav {
  display: flex;
  align-items: center;
  margin-left: auto;
}
header .fj-inner nav .fj-menu {
  display: flex;
}
header .fj-inner nav .fj-menu > li {
  display: flex;
  align-items: center;
}
header .fj-inner nav .fj-menu > li > a {
  font-weight: bold;
  font-feature-settings: "palt";
  letter-spacing: 0.07em;
  padding: 0 20px 0 20px;
  display: flex;
  align-items: center;
}
.header-hidden, .news-hidden {
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.6s ease;
  display: none;
}
.header-show, .news-show {
  opacity: 1;
  transform: translateY(0);
  width: 100vw;
}
.header-show.fj-open {
  display: block;
}
.fj-menu li.current a {
  color: #003f98;
  border-bottom: 2px solid #003f98;
}
@media (hover: hover) and (pointer: fine) {
  header .fj-inner nav .fj-menu > li > a:hover {
    color: #003f98;
  }
}
header.fj-scroll {
  position: fixed;
  top: -168px;
  left: 0;
  opacity: 0;
  transition: 0.5s ease;
}
header.fj-fixed {
  position: fixed;
  top: 0;
  left: 0;
  opacity: 1;
}
header.fj-fixed .fj-inner h1::after {
  content: none;
}
header .contact-button {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  width: 120px;
  box-sizing: border-box;
  position: relative;
}
header .contact-button:last-of-type {
  margin-left: 1px;
}
header .contact-button a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  background-color: inherit;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  background-color: #333;
}
header .contact-icon {
  width: 24px;
  height: 24px;
  margin-bottom: 4px;
  display: block;
}
header .contact-icon-path {
  fill: #fff;
}
body.is-loading header {
  opacity: 0;
  pointer-events: none;
}
@media (hover: hover) and (pointer: fine) {
  header .fj-inner nav .fj-menu > li.contact-button > a:hover {
    background-color: var(--blue);
    color: #fff;
  }
}
.fj-menu li.contact-button.current a {
  background-color: var(--blue);
  color: #fff;
}
/*フッター*/
footer {
  padding: 60px 0;
  width: 90vw;
  max-width: 1650px;
  margin: 0 auto;
}
.footer-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: #eee solid 1px;
  margin-bottom: 50px;
  padding-bottom: 30px;
}
footer ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
footer ul li {
  list-style: none;
  margin: 0 10px;
  font-weight: 700;
}
.footer-info {
  text-align: center;
  letter-spacing: normal;
}
.footer-info .address {
  margin-top: 10px;
}
.footer-info small {
  margin-top: 30px;
  font-size: 1.0rem;
}
.footer-logo img {
  width: min(25vw, 400px);
}
.footer-menu li.current a {
  color: #003f98;
}
@media (hover: hover) and (pointer: fine) {
  .footer-menu ul li a:hover {
    color: #003f98;
  }
}
/*=============================================
======================お問合せ=========================*/
/*お問合せ*/
.contact {
  position: relative;
  overflow: hidden;
}
.contact .ttl-wrapper {
  margin-bottom: 0;
}
.contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/contact-bg.webp") no-repeat center/100% auto;
  transition: transform 1.2s ease;
  z-index: -1;
  background-size: auto;
}
.contact:hover::before {
  transform: scale(1.1);
}
.contact-wrapper {
  max-width: 1440px;
  padding: 0px 15px;
  margin: 60px auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.partner-recruit .contact-wrapper h2 {
  text-align: left;
}
.contact-wrapper p {
  color: #fff;
  padding-top: 20px;
}
.contact .arrow {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border: solid 1px #fff;
  border-radius: 40px;
  overflow: hidden;
  transition: all .3s ease;
}
.contact .arrow .btn-span {
  position: relative;
  right: 2px;
  width: 16px;
  height: 6px;
  border-bottom: 1px solid #fff;
  border-right: 2px solid #fff;
  transform: skew(45deg);
  transition: all .3s ease;
}
.contact:hover .arrow {
  background-color: #fff;
}
.contact:hover .arrow .btn-span {
  border-color: #333;
}
/*=============================================
======================協力会社募集=========================*/
/*協力会社募集*/
.partner .wanted {
  display: flex;
  background: #f2f2f2;
  width: 85%;
  max-width: 1280px;
  padding: 50px;
  margin: 50px auto 0;
  border-radius: 15px;
  align-items: center;
}
.partner .wanted img {
  height: 320px;
  object-fit: cover;
  margin-right: 50px;
  border-radius: 15px;
}
/*=============================================
======================共通スタイル SP=========================*/
@media (min-width: 1280px) and (max-width: 1400px) {
  header .fj-inner nav .fj-menu li a {
    padding: 0 7px;
    font-size: 15px;
  }
  header .fj-inner nav .fj-mypage {
    margin-left: 19px;
  }
}
@media screen and (max-width: 1280px) {
  header {
    background: none;
    height: 68px;
  }
  header::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
  }
  header .fj-inner {
    justify-content: space-between;
  }
  header .fj-inner h1 {
    border-bottom-right-radius: 20px;
    padding: 24.5px 2.5vw;
  }
  header .fj-inner h1 img {
    width: 98px;
  }
  header .fj-inner h1::after {
    top: 68px;
  }
  header .fj-inner nav {
    flex-direction: column;
    position: fixed;
    top: -100%;
    right: 0;
    background: #fff;
    width: 100%;
    max-width: 100%;
    padding: 130px 30px 60px;
    height: 100vh;
    z-index: -1;
    opacity: 1;
    overflow: auto;
    pointer-events: none;
  }
  header .fj-inner nav .fj-menu {
    flex-direction: column;
    order: 2;
    width: 100%;
  }
  header .fj-inner nav .fj-menu > li {
    border-top: 1px solid #cdcdcd;
    width: 100%;
  }
  header .fj-inner nav .fj-menu > li > a {
    display: flex;
    padding: 15px 0;
    font-size: 16px;
    position: relative;
    width: 100%;
  }
  header .fj-inner nav .fj-menu > li:not(.contact-button) > a::before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    background: #003f98;
    position: absolute;
    top: 50%;
    left: 140px;
    transform: translateY(-50%);
    border-radius: 50%;
  }
  header .fj-inner nav .fj-menu > li:not(.contact-button) > a::after {
    content: "";
    display: block;
    width: 10px;
    height: 8px;
    background: url(../img/arrow_right_white.svg) no-repeat center/contain;
    position: absolute;
    top: 50%;
    left: 145px;
    transform: translateY(-50%);
  }
  header .fj-inner nav .fj-menu > li:last-child {
    border-bottom: 1px solid #cdcdcd;
  }
  header .fj-inner #fj-menu_btn {
    display: block;
    position: absolute;
    top: 11px;
    right: 25px;
    border: 1px solid #003f98;
    width: 120px;
    height: 48px;
    border-radius: 10px;
    z-index: 100;
    cursor: pointer;
  }
  header .fj-inner #fj-menu_btn span {
    position: absolute;
    display: block;
    height: 4px;
    background: #003f98;
    left: 25px;
    transition: 0.3s ease;
  }
  header .fj-inner #fj-menu_btn span:nth-child(1) {
    width: 58px;
    top: 9px;
  }
  header .fj-inner #fj-menu_btn span:nth-child(2) {
    width: 46px;
    top: 20px;
  }
  header .fj-inner #fj-menu_btn span:nth-child(3) {
    width: 66px;
    top: 31px;
  }
  header.fj-open {
    position: fixed;
    left: 0;
  }
  header.fj-open nav {
    pointer-events: auto;
  }
  header.fj-open .fj-inner #fj-menu_btn span {
    left: 35px;
  }
  header.fj-open .fj-inner #fj-menu_btn span:nth-child(1) {
    top: 20px;
    width: 48px;
    transform: rotate(45deg);
  }
  header.fj-open .fj-inner #fj-menu_btn span:nth-child(2) {
    opacity: 0;
  }
  header.fj-open .fj-inner #fj-menu_btn span:nth-child(3) {
    top: 20px;
    width: 48px;
    transform: rotate(-45deg);
  }
  header.fj-fixed .fj-inner h1 {
    padding: 16.5px 2.5vw;
    border-bottom-right-radius: 20px;
  }
  header.fj-fixed .fj-inner h1 img.fj-horizontal {
    width: 175px;
  }
}
@media screen and (min-width: 961px) {
  .SP {
    display: none;
  }
  .PC {
    display: block;
  }
}
@media screen and (max-width: 960px) {
  h3 {
    font-size: 2.6rem;
    margin-bottom: 10px;
  }
  .SP {
    display: block;
  }
  .PC {
    display: none;
  }
  .section-wrapper {
    padding: 70px 15px;
  }
  .btn {
    margin: 30px auto 0;
  }
  .ttl-en {
    font-size: max(10vw, 4.3rem);
  }
  .ttl-en_white {
    font-size: max(10vw, 4.3rem);
  }
  .ttl-ja {
    font-size: max(3.0vw, 2.0rem);
  }
  .ttl-ja_white {
    font-size: max(3.0vw, 2.0rem);
  }
  .sub-ttl {
    font-size: max(3.5vw, 2.5rem);
    margin-bottom: 20px;
    line-height: 1.5;
  }
  .ttl-wrapper {
    margin-bottom: 30px;
  }
  .top {
    padding-top: 100px;
  }
  .top-ttl-en {
    font-size: max(10vw, 4.0rem);
  }
  .top-ttl-ja {
    font-size: max(3.0vw, 1.5rem);
  }
  .top .ttl-wrapper {
    margin-bottom: 0px;
    padding-left: 15px;
  }
  .img-top {
    height: 50vw;
    margin-top: 50px;
  }
  /* フッター */
  .footer-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-logo {
    margin-bottom: 20px;
  }
  .footer-menu ul {
    flex-direction: column;
    padding: 0;
  }
  .footer-menu ul li {
    margin: 10px 0;
  }
  footer {
    padding: 40px 5vw;
  }
  .footer-info p, .footer-info .address, .footer-info small {
    font-size: 0.9rem;
  }
  .footer-info small {
    display: block;
    margin-top: 20px;
  }
  /*協力会社募集*/
  .partner .wanted {
    width: 95vw;
    display: block;
    padding: 25px 20px;
    margin: 0 auto 70px;
  }
  .partner .wanted img {
    width: 100%;
    margin-right: 0px;
    border-radius: 10px;
  }
  .partner .wanted-ttl h3 {
    margin: 10px 0px 0px;
  }
  .partner .wanted-txt p {
    padding-top: 10px;
  }
}
@media screen and (max-width: 768px) {
  header .fj-inner {
    padding-left: 3%;
  }
  header .fj-inner h1 {
    padding: 17px 17px;
    border-bottom-right-radius: 20px;
  }
  header .fj-inner h1::after {
    width: 15px;
    height: 15px;
    top: 54px;
  }
  header .fj-inner h1 img {
    width: 69px;
  }
  header .fj-inner nav {
    padding-top: 130px;
  }
  header .fj-inner #fj-menu_btn {
    top: 20px;
    right: 3%;
    width: 60px;
    height: 34px;
    border-radius: 5px;
    border-width: 1px;
  }
  header .fj-inner #fj-menu_btn span {
    height: 2px;
    left: 12px;
  }
  header .fj-inner #fj-menu_btn span:nth-child(1) {
    width: 29px;
    top: 9px;
  }
  header .fj-inner #fj-menu_btn span:nth-child(2) {
    width: 23px;
    top: 15px;
  }
  header .fj-inner #fj-menu_btn span:nth-child(3) {
    width: 33px;
    top: 21px;
  }
  header.fj-open .fj-inner #fj-menu_btn span {
    left: 18px;
  }
  header.fj-open .fj-inner #fj-menu_btn span:nth-child(1), header.fj-open .fj-inner #fj-menu_btn span:nth-child(3) {
    width: 24px;
    top: 15px;
  }
  header.fj-fixed .fj-inner h1 {
    padding: 15px 3%;
  }
  header.fj-fixed .fj-inner h1 img.fj-horizontal {
    width: 230px;
  }
}
/*===========================================================
======================トップページ================================*/
/*MVデザイン*/
#animatedPathBlue, #animatedPathYellow, #animatedPathRed, #animatedTextBlue, #animatedTextYellow, #animatedTextRed {
  opacity: 0;
}
body.is-locked {
  overflow: hidden;
  height: 100%;
}
.index svg {
  height: 100%;
}
#animatedPathBlue {
  stroke: #0054A6;
  stroke-width: 90;
  fill: transparent;
  transform: scale(1.5);
  transform-origin: center center;
  display: block;
  margin: 0 auto;
}
#animatedTextBlue {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: min(200px, 50vw);
  fill: #333;
  opacity: 0;
}
#animatedPathYellow {
  stroke: #FBC600;
  stroke-width: 90;
  fill: transparent;
  transform: scale(1.5);
  transform-origin: center center;
  display: block;
  margin: 0 auto;
}
#animatedTextYellow {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: min(200px, 50vw);
  fill: #333;
  opacity: 0;
}
#animatedPathRed {
  stroke: #E50012;
  stroke-width: 90;
  fill: transparent;
  transform: scale(1.5);
  transform-origin: center center;
  display: block;
  margin: 0 auto;
}
#animatedTextRed {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: min(200px, 50vw);
  fill: #333;
  opacity: 0;
}
#backgroundImage {
  position: absolute;
  top: 10%;
  right: 0;
  z-index: -1;
  width: auto;
  height: 90%;
}
.heading {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.8;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
  z-index: 1;
}
.char {
  color: #333;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  font-size: min(12vw, 150px);
  white-space: break-spaces;
}
canvas {
  position: absolute;
  top: 0;
  left: 0;
}
/*ニュース*/
.index .news {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 99;
  width: min(90%, 1280px);
  margin: 0 auto;
  align-items: center;
  background: #f4f4f4;
  padding: 10px 20px;
  border-radius: 8px;
  margin-top: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.index .news-btn {
  padding-left: 20px;
  white-space: nowrap;
}
.index .news-ttl {
  padding-right: 20px;
  display: block;
  margin: 0 auto;
  font-size: 1.8rem;
}
.index .news-btn {
  display: flex;
  align-items: center;
  color: var(--blue);
  font-weight: 600;
}
.index .news-btn .arrow {
  margin-left: 10px;
}
.index .news-btn:hover .arrow {
  background-color: var(--blue);
  ;
}
.index .news-btn:hover .arrow .btn-span {
  border-color: #fff;
}
.ticker-wrapper {
  width: 65%;
  border-left: solid 1px #ddd;
}
.ticker {
  position: relative;
  height: 50px;
  border-radius: 5px;
  overflow: hidden;
}
.ticker li {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: translateY(100%);
  transition: all 1s ease;
}
.ticker li.active {
  opacity: 1;
  transform: translateY(0);
}
.ticker li.inactive {
  opacity: 0;
  transform: translateY(-100%);
}
.ticker li a {
  box-sizing: border-box;
  display: grid;
  place-content: center start;
  height: 100%;
  font-size: 16px;
  text-decoration: none;
  padding: 0 1.5em;
  line-height: 1;
}
.ticker li span {
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
/*ビジョン*/
.vision .section-wrapper {
  display: flex;
}
.vision-txt {
  flex: 5;
}
.vision-txt .sub-ttl {
  font-size: min(2.3vw, 3.0rem);
}
.vision-txt-txt {
  line-height: 2;
}
.vision-ttl {
  text-align: right;
  flex: 4;
}
.vision-img img {
  width: 100%;
  height: 400px;
  border-radius: 30px;
  margin-top: 30px;
}
/*事業内容*/
.index .business {
  background-color: var(--blue);
}
.index .business ul {
  list-style: none;
  display: flex;
  justify-content: space-between;
}
.index .business ul li {
  margin: 0 30px 100px;
  flex: 1;
  width: min(25vw, 400px);
  color: #fff;
}
.index .business ul li .img-wrapper {
  overflow: hidden;
  height: 400px;
  border-radius: 30px;
  margin: 0 auto 50px;
}
.index .business ul li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.index .business-contents-wrapper {
  display: flex;
  align-items: center
}
.index .business-contents-ttl {
  font-weight: 700;
  font-size: 2.5rem;
  display: inline-block;
  color: #fff;
}
.index .business .btn {
  color: var(--blue);
  border: solid 1px var(--blue);
  width: auto;
  background-color: transparent;
  padding: 0;
  height: auto;
  margin-top: 0;
  margin-left: 20px;
}
.index .business .arrow {
  background-color: #fff;
}
.index .business-slider li:hover .arrow {
  background-color: var(--yellow);
}
.index .business .btn .arrow .btn-span {
  border-bottom: 1px solid var(--blue);
  border-right: 1px solid var(--blue);
}
.index .business .btn:hover .arrow .btn-span {
  border-bottom: 1px solid #fff;
  border-right: 2px solid #fff;
}
/**協力会社**/
.index .partner-contents_txt {
  position: absolute;
}
.index .map, .service .map {
  width: 100%;
  margin: 0 0 0 auto;
}
.index .map {
  padding-top: 150px;
}
/*採用情報*/
.index .recruit {
  position: relative;
}
.index .recruit-box {
  position: absolute;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  max-width: 620px;
  padding: 40px;
  border-radius: 20px;
  right: 1.0vw;
  top: 50%;
  transform: translate(-50%, -50%);
}
.index .recruit-ttl {
  margin-bottom: 20px;
}
.index .recruit-txt {
  line-height: 2;
}
.index .recruit-txt .sub-ttl {
  font-size: 3.0rem;
  line-height: 1.5;
  margin-bottom: 20px;
}
.index .slider div {
  height: 750px;
  object-fit: cover;
}
.index .slider div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}
.index .recruit-line {
  position: absolute;
  width: 500px;
  right: 0;
  bottom: 0;
}
/*トップページSP*/
@media screen and (max-width: 768px) {
  #animatedTextBlue, #animatedTextYellow, #animatedTextRed {
    font-size: 450px;
  }
  #backgroundImage {
    top: 5%;
    height: 105%;
  }
  .main-visual svg {
    height: 150%;
    margin-top: -40vw;
  }
  .main-visual svg path {
    transform: scale(2.2);
    transform-origin: center top;
  }
}
@media screen and (max-width: 960px) {
  #backgroundImage {
    top: 0;
    width: 100%;
    height: 89vh;
    object-fit: cover;
    padding-top: 60px;
  }
  .index .news {
    width: 95%;
    display: block;
  }
  .ticker-wrapper {
    flex: 0.75;
    border: none;
    width: 100%;
  }
  .index .news-ttl {
    display: none;
  }
  .vision-txt .sub-ttl {
    font-size: min(5vw, 3.0rem);
  }
  .news .btn {
    flex: 0.2;
    margin-top: 0;
    width: auto;
    justify-content: flex-end;
  }
  /*.vision-txt-ttl {
    font-size: max(3.5vw, 3.0rem);
  }*/
  .vision-img img {
    height: 300px;
  }
  .index .business ul {
    display: block;
  }
  .index .business ul li {
    margin: 30px 0 0;
    width: auto;
  }
  .index .business ul li .img-wrapper {
    height: 420px;
    margin-bottom: 30px;
  }
  .index .business-contents-ttl {
    margin-bottom: 10px;
  }
  .index .partner-contents {
    padding: 0;
  }
  .index .map {
    margin: -100px 0 30px;
    padding-top: 0;
  }
  .index .partner-contents_txt {
    position: relative;
  }
  /*.logo-bg {
    width: 180%;
  }*/
  .index .recruit-box {
    top: 190%;
    padding: 15px;
    width: 95vw;
    position: relative;
    transform: none;
    margin: -100px auto 0;
    left: 0;
  }
  .index .slider div {
    height: 300px;
  }
  .recruit-line {
    width: min(50vw, 400px);
    bottom: 1px;
  }
}
/*===========================================================
======================会社概要ページ================================*/
/**メッセージ**/
.company .message {
  background-image: url("../img/top_bg_yellow.webp");
  background-size: 120% auto;
  background-position: -250px -200px;
  background-repeat: no-repeat;
}
.message-body {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.message-body_txt {
  width: 50%;
}
.message-body img {
  width: 40%;
  object-fit: cover;
  border-radius: 45px;
  flex-shrink: 0;
  position: sticky;
  top: 100px;
}
/**会社概要**/
.company .message .name {
  margin-top: 20px;
  text-align: right;
}
.company .message .name span {
  font-size: 2.0rem;
  font-weight: 600;
}
.company .profile-body table {
  border-collapse: collapse;
  max-width: 850px;
  margin: 0 auto;
  width: 90%;
}
.company .profile-body table tr th, .company .profile-body table tr td {
  padding: 20px 60px;
}
.company .profile-body table tr th {
  border-bottom: solid 1px #0054a6;
  color: #0054a6;
  font-weight: 600;
  white-space: nowrap;
}
.company .profile-body table tr td {
  border-bottom: solid 1px #cccccc;
}
.company .history .section-wrapper {
  padding: 0 15px;
}
.company .history-body {
  background: #f3f3f3;
  padding: 20px;
  border-radius: 20px;
}
.company .history-body .timeline-year {
  font-weight: 600;
  margin-bottom: 30px;
  display: block;
}
.company .history-body .history-timeline {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-bottom: 50px;
  align-items: center;
}
.company .history-body .history-timeline:last-child {
  flex-direction: row-reverse;
}
/**沿革**/
.timeline {
  list-style: none;
}
.company .history-body img {
  width: 30vw;
  object-fit: contain;
  border-radius: 15px;
}
.company .timeline-img {
  border-radius: 15px;
}
.timeline > li {
  margin-bottom: 60px;
}
.timeline > li {
  overflow: hidden;
  margin: 0;
  position: relative;
}
.timeline-date {
  width: 110px;
  float: left;
  margin-top: 20px;
  font-weight: 600;
}
.timeline-content {
  width: 75%;
  float: left;
  border-left: 3px #ccc solid;
  padding-left: 30px;
  padding-top: 20px;
}
.timeline-content:before {
  content: '';
  width: 15px;
  height: 15px;
  background: #fff;
  border: 2px #ccc solid;
  position: absolute;
  left: 104px;
  top: 24px;
  border-radius: 100%;
}
.company .access-info {
  display: flex;
  justify-content: center;
  padding-top: 50px;
}
.company .access-info_body {
  margin-left: 100px;
}
.company .access-info_body .access-info_box {
  background: #f3f3f3;
  padding: 15px;
  border-bottom: 20px;
  margin: 10px 0;
}
.company .access-info_body .access-info_ttl {
  font-weight: 600;
  padding-bottom: 10px;
}
.company .access-map {
  object-fit: contain;
}
@media screen and (max-width: 960px) {
  .company .img-top {
    object-position: 88% center;
  }
  /*.company-top {
    height: 50vw;
  }*/
  .company .message {
    background-size: 160vw auto;
    background-position: -200px -13vw;
  }
  .message-body {
    display: block;
  }
  .message-body img.SP {
    width: min(100%, 450px);
    display: block;
    margin: 0px auto 30px;
    position: relative;
    top: 0;
  }
  .message-body_txt {
    width: 100%;
  }
  /**プロフィール**/
  .profile .section-wrapper {
    padding-top: 0;
  }
  /**年表**/
  .company .history-body .history-timeline {
    display: block;
    padding: 0;
  }
  .company .history-body .timeline {
    display: block;
  }
  .company .history-body img {
    display: block;
    width: 100%;
    margin: 50px auto;
  }
  .timeline-content:before {
    left: 0px;
  }
  .timeline-content {
    margin-left: 6px;
    width: 100%;
  }
  .timeline-date {
    padding-left: 20px;
    width: 150px;
  }
  .company .history-body .timeline-year {
    margin-bottom: 0;
  }
  .company .access-info {
    display: block;
  }
  .company .access-info_body {
    margin-left: 0;
  }
  .access-info img {
    display: block;
    margin: 0 auto;
    width: 100%;
    max-width: 400px;
  }
  .company .access-info_body .access-info_ttl {
    padding-bottom: 0;
  }
  .contact-wrapper {
    display: block;
  }
  .contact .arrow {
    margin: 20px 0 0 auto;
  }
  .contact::before {
    background-position: 80% 50%;
  }
}
@media screen and (max-width: 960px) {
  .company .profile-body table {
    border-collapse: collapse;
    width: 100%;
  }
  .company .profile-body tr {
    display: block;
    margin-bottom: 1.5em;
  }
  .company .profile-body table tr th, .company .profile-body table tr td {
    display: block;
    text-align: left;
    padding: 0.3em 0;
    padding: 10px;
  }
  .company .profile-body table tr th {
    background: #f5faff
  }
  .company .profile-body table tr td {
    border-bottom: none;
  }
}
/*===========================================================
======================協力会社ページ================================*/
.partner-page .partner-contents, .partner-body {
  max-width: 1440px;
  margin: 0 auto;
}
.partner-page .partner-contents {
  padding-bottom: 0;
}
.partner-contents_txt {
  position: absolute;
}
.cls-1 {
  fill: none;
  stroke: #b2b2b2;
  stroke-miterlimit: 10;
  stroke-width: 4px;
}
.cls-2 {
  fill: gray;
}
.active {
  fill: var(--blue);
}
.partner-page .map-svg {
  width: 100%;
  max-width: 1100px;
  display: block;
  margin: 0 0 0 auto;
}
.partner-page .partner-body {
  padding-top: 0;
  padding-bottom: 0;
}
.partner-page .partner-ttl {
  background: #f6f6f6;
  border: solid 1px #dbdbdb;
  padding: 5px;
  border-radius: 10px;
  color: #515151;
  font-weight: 700;
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
}
.partner-page .partner-list {
  max-width: 1050px;
  margin: 0 auto;
}
.partner-page .partner-list li {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 50px 0;
}
.partner-page .partner-list li .partner-list_txt {
  width: 70%;
  display: flex;
  justify-content: start;
  gap: 30px;
}
.partner-page .partner-list li:not(:first-child) {
  border-top: 1px solid;
  border-image: linear-gradient(to right, #0054a6 40%, #ccc 20%) 1;
}
.partner-page .partner-ttl {
  margin: 50px 0 20px;
}
/*.partner-page .partner-list_img {
  flex: 1;
  object-fit: contain;
  display: flex;
  justify-content: center;
}
.partner-page .partner-list_img img {
  width: 45%;
  margin: 0 10px;
}*/
.partner-page .partner-list .partner-list_ttl {
  font-weight: 700;
  font-size: 2.5rem;
  width: 50%;
}
.partner-page .partner .partner {
  margin-top: 0;
}
.partner-page .partner .wanted {
  margin-bottom: 0;
}
@media screen and (max-width: 960px) {
  .partner-page .partner-contents {
    padding: 0;
  }
  .partner-contents_txt {
    position: relative;
  }
  .partner-page .map-svg {
    margin: 50px 0;
  }
  .partner-page .partner-list li {
    display: block;
    padding: 30px 0;
  }
  .partner-page .partner-list li:not(:first-child) {
    border-top: solid 1px #0054a6;
    border-image: none;
  }
  .partner-page .partner-ttl {
    margin: 30px 0;
  }
  .partner-page .partner-list li .partner-list_txt {
    width: 100%;
    text-align: center;
    display: block;
  }
  .partner-page .partner-list .partner-list_ttl {
    width: 100%;
  }
  .partner .partner {
    margin-top: 50px;
  }
}
/*===========================================================
======================お問合せページ================================*/
form {
  max-width: 860px;
  margin: 0 auto;
}
.form-txt {
  text-align: center;
}
.form-group {
  margin: 50px 0;
  display: flex;
  align-items: flex-start;
  width: 100%
}
.form-group .label {
  width: 30%;
  display: flex;
  align-items: center;
}
.form-group .label .required {
  background: red;
  color: #fff;
  text-align: center;
  padding: 3px 5px;
  border-radius: 3px;
  font-size: 1.0rem;
  line-height: 1;
  margin-left: 5px;
}
.wpcf7-form-control-wrap {
  width: 70%;
}
.form-group input, .form-group textarea {
  width: 100%;
  display: inline-block;
  padding: 10px 0;
  border: solid 1px #ccc;
  border-radius: 5px;
  background: #fff;
}
.form-group textarea {
  height: 300px;
}
form button, form input[type="submit"] {
  display: block;
  margin: 100px auto 0;
  padding: 20px 0;
  width: min(100%, 500px);
  color: #fff;
  font-weight: 700;
  font-size: 1.7rem;
  background: #003f98;
  border-radius: 10px;
  border: none;
  transition: box-shadow 0.3s ease;
}
form button, .form input[type="submit"]:hover {
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  filter: brightness(1.2);
}
.privacy {
  text-align: center;
}
.privacy a {
  color: #003f98;
  text-decoration: underline;
}
.mwform-tel-field, .mwform-zip-field {
  width: 100%;
}
.mwform-tel-field input[type="text"], .mwform-zip-field input[type="text"] {
  width: 30%;
}
/**確認画面スタイル**/
div#wpcf7cpcnf table {
  width: 70%;
  margin: 0 auto;
  text-align: left;
}
div#wpcf7cpcnf td {
  padding: 10px 0;
}
div#wpcf7cpcnf tr th {
  text-align: center;
}
div#wpcf7cpcnf .wpcf7cp-btns {
  display: flex;
  justify-content: center;
}
div#wpcf7cpcnf .wpcf7-form-control.wpcf7cp-cfm-edit-btn {
  display: block;
  padding: 20px 0;
  width: min(40%, 350px);
  color: #fff;
  font-weight: 700;
  font-size: 1.7rem;
  background: #747474;
  border-radius: 10px;
  border: none;
  transition: box-shadow 0.3s ease;
}
div#wpcf7cpcnf .wpcf7-form-control.wpcf7-submit.wpcf7cp-cfm-submit-btn {
  margin-bottom: 20px;
  display: block;
  padding: 20px 0;
  width: min(40%, 350px);
  color: #fff;
  font-weight: 700;
  font-size: 1.7rem;
  background: #003f98;
  border-radius: 10px;
  border: none;
  transition: box-shadow 0.3s ease;
}
/**サンクスページ**/
.back-top {
  color: var(--blue);
}
@media screen and (max-width: 960px) {
  .inquiry .form-group {
    display: block;
  }
  .inquiry .form-group {
    margin: 20px 0;
  }
  .form-group .label {
    width: 100%;
  }
  .inquiry .form-group input, .form-group textarea {
    width: 100%;
  }
  .form-group label {
    width: 100%;
    margin-bottom: 10px;
  }
  .inquiry form input[type="submit"] {
    margin-top: 40px;
  }
  div#wpcf7cpcnf table {
    width: 100%;
  }
  div#wpcf7cpcnf tr th {
    text-align: left;
  }
  div#wpcf7cpcnf .wpcf7cp-btns {
    display: block;
  }
  div#wpcf7cpcnf .wpcf7-form-control.wpcf7cp-cfm-edit-btn, div#wpcf7cpcnf .wpcf7-form-control.wpcf7-submit.wpcf7cp-cfm-submit-btn {
    width: 100%;
  }
}
/*===========================================================
======================募集要項================================*/
.line {
  text-align: center;
}
.line p {
  white-space: nowrap;
}
.line span {
  color: #06C755;
  font-weight: 700;
  font-size: 20px;
}
.line .line-btn {
  background: #06C755;
  color: #fff;
  text-decoration: none;
  padding: 14px 22px;
  font-size: 25px;
  font-weight: 600;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  width: min(35vw, 400px);
  margin: 0 auto;
}
.line .line-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}
.line .line-btn img {
  width: max(30px, 3vw);
  height: max(30px, 3vw);
  object-fit: contain;
}
/* スマホ最適化 */
@media screen and (max-width: 960px) {
  .line .line-btn {
    font-size: 20px;
    width: min(80vw, 400px);
    padding: 18px 22px;
  }
}
/*===========================================================
======================プラポリページ================================*/
.policy-list > li {
  margin: 30px 0;
}
.policy-list > li:first-child {
  margin-top: 0;
}
.policy-list > li:last-child {
  margin-bottom: 0;
}
.policy .policy-list_ttl {
  font-weight: 700;
  font-size: 1.8rem;
}
/*===========================================================
======================事業紹介ページ================================*/
.service .img-top {
  object-position: 80%;
}
.service .strength {
  background-image: url("../img/top_bg_red.webp"), url("../img/top_bg_red2.webp");
  background-size: 120% auto;
  background-position: -10px -300px, -10px calc(130% - 50px);
  background-repeat: no-repeat, no-repeat;
  padding-bottom: 100px;
}
.service .strength-wrapper {
  padding: 120px 0;
  max-width: none;
}
.service .strength .ttl-wrapper {
  max-width: 1440px;
  padding: 0px 30px 30px;
  margin: 0 auto;
}
.service .strength-body {
  display: flex;
  align-items: center;
  margin: 140px 0;
}
.service .strength-body:last-child {
  margin-bottom: 0;
}
.service .strength-body:first-child {
  margin-top: 0;
}
.strength-body:nth-child(even) {
  flex-direction: row-reverse;
}
.service .strength-body_txt {
  width: 50%;
  padding: 0 30px 10px;
}
.service .strength-body_txt .tag {
  display: flex;
  font-size: 8rem;
  color: var(--red);
  font-weight: 600;
}
.service .strength-body_txt .point {
  transform: rotate(90deg);
  font-size: 20px;
  padding: 5px;
  padding-top: 35px;
  line-height: 1;
}
.service .strength-body_txt .number {
  letter-spacing: -0.1rem;
  line-height: 1.5;
}
.service .strength-body_txt h3, .service .strength-body_txt p {
  padding-left: 40px;
}
.service ul li .img-wrapper {
  overflow: hidden;
  width: 50%;
}
.service ul li .img-wrapper img {
  width: 100%;
}
.service .business {
  color: #fff;
  background: var(--blue);
}
.service .business-body {
  display: flex;
  align-items: center;
  margin: 120px 0;
  scroll-margin-top: 100px;
}
.service .business-body img {
  width: 50%;
  border-radius: 30px;
  max-height: 510px;
  object-fit: cover;
}
.service .business-txt {
  padding-left: 50px;
  width: 70%;
}
.service .business-txt p {
  padding-bottom: 30px;
}
.service .business-txt_img {
  display: flex;
  gap: 10px;
  justify-content: space-between;
}
.service .business-txt_img img {
  flex: 1;
  width: calc((100% - 20px) / 3);
  border-radius: 15px;
}
.service-bg {
  width: 100%;
  object-fit: cover;
}
.service .partner {
  background-image: url("../img/top_bg_yellow2.webp");
  background-size: 120% auto;
  background-position: -10px calc(180% - 50px);
  background-repeat: no-repeat;
  padding-bottom: 100px;
  margin: 0 auto;
}
.service .partner .section-wrapper {
  padding-bottom: 0;
}
.service .partner-contents_txt {
  position: absolute;
}
.service .partner-contents_txt-p {
  max-width: 600px;
}
/*サービスページSP*/
@media screen and (max-width: 960px) {
  .service .strength {
    background-size: 170% auto;
    background-position: -140px -120px, -100px 103%;
    padding-bottom: 0px;
  }
  .service .strength-wrapper {
    padding: 70px 0;
  }
  .service .strength .ttl-wrapper {
    margin-bottom: 30px;
    padding: 0 15px;
  }
  .service .strength-body {
    display: block;
    margin: 60px 0;
  }
  .service .strength-body:nth-child(even) .img-wrapper {
    text-align: right;
  }
  .service ul li .img-wrapper {
    width: 100%;
  }
  .service .strength-body .img-wrapper img {
    width: 95%;
  }
  .service .strength-body_txt {
    width: 100%;
    padding: 0 15px 10px;
  }
  .service .strength-body_txt .tag {
    font-size: 7rem;
  }
  .service .business .section-wrapper {
    padding-bottom: 20px;
  }
  .service .business-body img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 20px;
  }
  .service .business-txt {
    padding-left: 0;
    width: 100%;
  }
  .service .business-txt .sub-ttl {
    margin-bottom: 10px;
  }
  .service .strength-body_txt .point {
    font-size: 1.8rem;
    padding-top: 80px;
  }
  .service .strength-body_txt .number {
    margin-left: -50px;
  }
  .service .business-body {
    display: block;
    margin: 30px 0;
  }
  .service .business-list:first-child {
    margin-top: 0;
  }
  .service .strength-body_txt h3, .service .strength-body_txt p {
    padding: 0;
  }
  .service .business-txt_img img {
    width: calc((100% - 20px) / 3);
    height: 150px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 30px;
  }
  .service-bg {
    height: 250px;
  }
  .service .partner {
    background-size: 170% auto;
    background-position: -100px 103%;
    padding-bottom: 10px;
  }
  .service .partner .section-wrapper {
    padding-bottom: 70px;
  }
  .service .partner-contents_txt {
    position: relative;
  }
  .service .partner .map {
    margin: -100px 0 20px 0;
  }
}
/*===========================================================
======================お知らせページ================================*/
.news.section {
  background-image: url("../img/top_bg_red3.webp"), url("../img/top_bg_red.webp");
  background-size: 130% auto;
  background-position: -15vw min(90vh, 550px), 50px -15vw;
  background-repeat: no-repeat, no-repeat;
  min-height: 500px;
}
.news .section-wrapper {
  padding-bottom: 50px;
}
.news-body_wrapper {
  max-width: 1050px;
  margin: 0px auto;
}
.news-list li {
  border-bottom: solid 1px #ccc;
  padding: 20px;
  margin-bottom: 30px;
  display: flex;
}
.news-list li a {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}
.news-tag-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.news-date {
  font-weight: 800;
  color: #b0b0b0;
  font-size: 2.0rem;
  margin-right: 20px;
}
.news-tag {
  background: #003f98;
  padding: 0px 20px;
  border-radius: 5px;
  color: #fff;
  font-weight: 700;
}
.news-ttl {
  font-weight: 600;
  font-size: 2.2rem;
}
.news-list li .arrow {
  width: 60px;
  height: 60px;
  min-width: 60px;
  display: grid;
  place-items: center;
  border: solid 1px #003f98;
  border-radius: 40px;
  overflow: hidden;
  transition: all .3s ease;
}
.news-list li .arrow .btn-span {
  position: relative;
  right: 2px;
  width: 16px;
  height: 6px;
  border-bottom: 1px solid #003f98;
  border-right: 2px solid #003f98;
  transform: skew(45deg);
  transition: all .3s ease;
}
.news-list li a:hover .arrow {
  background-color: #003f98;
}
.news-list li a:hover .arrow .btn-span {
  border-color: #fff;
}
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin: 60px 0;
  font-family: sans-serif;
}
.pagination a, .pagination .current {
  display: flex;
  justify-content: center;
  align-items: center;
  width: min(11vw, 50px);
  height: min(11vw, 50px);
  aspect-ratio: 1 / 1;
  text-decoration: none;
  color: #333;
  border: 1px solid #ddd;
  border-radius: 100px;
  transition: background 0.3s, color 0.3s;
  background: #fff;
}
.pagination a:hover {
  background-color: #f0f0f0;
}
.pagination a.active {
  background-color: #003f98;
  color: #fff;
  pointer-events: none;
}
.pagination a.prev, .pagination a.next {
  font-weight: bold;
}
.pagination .current {
  background: var(--blue);
  color: #fff;
}
.news-detail {
  background: #f8f8f8;
}
.news-detail .news-article {
  max-width: 750px;
  background: #fff;
  border-radius: 10px;
  padding: 0;
  margin: 100px auto;
}
.news-body {
  padding: 50px;
}
.news-detail_ttl {
  font-weight: 600;
  font-size: 2.8rem;
  margin-bottom: 30px;
  line-height: 1.5;
  margin-top: 10px;
}
.article-link {
  border-top: solid 1px #ccc;
  display: flex;
  justify-content: space-around;
  margin: 30px 0;
}
.article-link a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
  font-weight: 600;
  min-height: 80px;
}
.article-link a:not(:last-of-type) {
  border-right: solid 1px #ccc;
  padding: 30px 0px;
}
.article-link a:hover {
  color: #003f98;
}
@media screen and (max-width: 960px) {
  .news {
    background-position: -15vw max(550px, 70vh), 50px -15vw
  }
  .news-body_wrapper {
    width: 100%;
  }
  .news-body {
    padding: 30px 15px;
  }
  .news-top .news-body {
    background-position: 0px -120px, -100px 85vh;
    padding-bottom: 0;
  }
  .news-tag-wrapper {
    margin-bottom: 0;
  }
  .news-date {
    font-size: 1.6rem;
  }
  .news-tag {
    font-size: 1.4rem;
    padding: 0 10px;
  }
  .news-ttl {
    white-space: normal;
    font-size: 1.6rem;
    line-height: 1.7;
    margin: 10px 0;
  }
  .news-list li {
    padding: 0;
  }
  .news-list li .arrow {
    width: 45px;
    height: 45px;
    min-width: 45px;
  }
  .news .pagination {
    margin-bottom: 0;
    gap: 10px;
  }
  /**お知らせ詳細ページ*/
  .news-detail .news-article {
    margin: 80px auto;
    width: calc(100% - 30px);
    max-width: 750px;
  }
  .article-link {
    display: block;
  }
  .article-link a:not(:last-of-type) {
    border-right: none;
    padding: 20px;
    border-bottom: solid 1px #ccc;
  }
  .article-link a {
    padding: 20px 0;
  }
}
/*===========================================================
======================求職者募集要項ページ================================*/
.requirements-ttl {
  text-align: center;
}
/* --- 1. アンカーリンク（目次）の装飾 --- */
.job-nav-container {
  max-width: 920px;
  margin: 40px auto;
  padding: 20px;
  background-color: #f8f9fa; /* 薄いグレーでエリアを分ける */
  border-radius: 8px;
  text-align: center;
}
.nav-label {
  font-weight: bold;
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}
.job-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 20px 0;
}
.job-nav li a {
  display: block;
  padding: 3px 20px;
  background: #fff;
  border: 1px solid #003f98;
  color: #003f98;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 14px;
}
.job-nav li a:hover {
  background: #003f98;
  color: #fff;
}
/* --- 2. 各求人ボックス（カード型）の装飾 --- */
.job-box {
  max-width: 920px;
  margin: 0 auto 80px;
  background: #fff;
  overflow: hidden;
  scroll-margin-top: 100px;
}
/* 求人ごとのヘッダー（職種名を目立たせる） */
.job-header {
  background: #003f98;
  padding: 25px 40px;
  color: #fff;
}
.job_position {
  text-align: center;
  font-size: 25px;
  margin: 50px 0 10px;
}
.job-category {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 2px 10px;
  font-size: 12px;
  border-radius: 4px;
  margin-bottom: 8px;
}
.job-title {
  font-size: 20px;
  margin: 0;
  color: #fff;
  background-color: #084b9b;
  padding: 10px;
  text-align: center;
  border-radius: 10px;
}
/* テーブル内の調整 */
.job-content {
  padding: 20px 40px 40px;
}
.job-box table {
  width: 100%;
  margin: 0;
  border-collapse: collapse;
  border: 1px solid #eee;
}
.job-box table tr {
  border-bottom: 1px solid #eee;
}
.job-box table tr:last-child {
  border-bottom: none;
}
.job-box th {
  width: 25%;
  padding: 25px 15px;
  color: #003f98;
  font-weight: bold;
  vertical-align: top;
  text-align: left;
  background: #fcfcfc; /* 項目側に薄く色をつけて視認性アップ */
}
.job-box td {
  padding: 25px 20px;
  line-height: 1.8;
}
/* --- 3. 特定情報の強調（訴求力アップ） --- */
.highlight-blue {
  color: #003f98;
  font-weight: bold;
  background: linear-gradient(transparent 70%, #e6f0ff 70%); /* マーカー風 */
}
.salary-main {
  font-size: 20px;
  font-weight: bold;
  color: #d32f2f; /* 給与は少し目立つ色に */
}
.qualification-box {
  margin-top: 15px;
  padding: 15px;
  background: #f0f4f9;
  border-left: 4px solid #003f98;
  font-size: 14px;
}
.box-ttl {
  font-weight: bold;
  margin-bottom: 5px;
}
/* モバイル対応 */
@media screen and (max-width: 768px) {
  .job-header {
    padding: 20px;
  }
  .job-title {
    font-size: 20px;
  }
  .job-content {
    padding: 10px 20px 20px;
  }
  .job-box th, .job-box td {
    display: block;
    width: 100% !important;
  }
  .job-box th {
    padding: 15px 15px 5px;
    background: none;
  }
  .job-box td {
    padding: 5px 15px 20px;
  }
}
/*===========================================================
======================協力会社申し込みフォームページ================================*/
.partner-recruit h2 {
  text-align: center;
  margin-bottom: 20px;
}
.partner-recruit table {
  margin: 100px auto;
  width: 80%;
  max-width: 920px;
}
.partner-recruit table tr {
  border-bottom: solid 1px #ccc;
}
.partner-recruit table tr th {
  width: 30%;
  color: #003f98;
}
.partner-recruit table tr td {
  width: 70%;
}
.partner-recruit table tr th, .partner-recruit table tr td {
  padding: 20px 0;
  margin-bottom: 10px;
}
@media screen and (max-width: 960px) {
  .partner-recruit table {
    width: 100%;
    margin: 50px 0;
  }
}
@media screen and (max-width: 768px) {
  .partner-recruit table tr th, .partner-recruit table tr td {
    display: block;
    margin: 0 auto;
    width: 100%;
    text-align: center;
  }
  .partner-recruit table tr td {
    text-align: left;
  }
  .partner-recruit table tr th {
    padding-bottom: 0;
  }
}
/*===========================================================
======================採用ページ================================*/
.recruit .manager {
  background: var(--blue);
}
.manager-slider .arrow {
  min-width: 60px;
  max-width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border: solid 1px var(--yellow);
  background: var(--yellow);
  border-radius: 40px;
  overflow: hidden;
  transition: all .3s ease;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  cursor: pointer;
}
.manager-slider .arrow.prev {
  left: -30px;
  margin-left: 10px;
}
.manager-slider .arrow.next {
  right: -30px;
  margin-right: 10px;
}
.manager-slider .arrow .btn-span {
  position: relative;
  right: 2px;
  width: 16px;
  height: 6px;
  border-bottom: 1px solid #fff;
  border-right: 2px solid #fff;
  transform: skew(45deg);
  transition: all .3s ease;
}
.manager-slider .arrow:hover {
  background-color: #ffff;
}
.manager-slider .arrow:hover .btn-span {
  border-color: var(--yellow);
}
.manager-slider .arrow.prev {
  transform-origin: center center;
  position: absolute;
  transform: rotate(180deg) rotateX(180deg) translateY(-50%);
}
.manager .slick-initialized .slick-slide {
  display: flex;
  justify-content: space-between;
  margin: 0 50px;
}
.manager .slick-initialized .slick-slide img {
  width: 45%;
  height: 500px;
  border-radius: 30px;
}
.manager .slick-initialized .slick-slide .manager-list_txt {
  width: 50%;
  color: #fff;
}
.manager .manager-list_ttl {
  font-size: 4.0rem;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 20px;
}
.manager .manager-list_ttl .manager-list_tag {
  font-size: 2.0rem;
  font-weight: 500;
}
.departments-txt_wrapper {
  display: flex;
  margin-top: 20px;
}
.departments-list {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
.departments-list li {
  max-width: 530px;
  margin-bottom: 60px;
  width: 48%;
}
.departments-list li:nth-child(3), .departments-list li:nth-child(4) {
  margin-bottom: 0;
}
.departments-img {
  overflow: hidden;
  border-radius: 35px;
}
.departments-img {
  border-radius: 35px;
  margin-bottom: 60px;
}
.departments-img img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}
/* ホバーは親にかける */
.departments-body:hover img {
  transform: scale(1.1);
}
/*=============================================
================.recruit .jobページ共通パーツ===================*/
.requirements-wrapper .wanted {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-image: url("../img/requirements-img.webp");
  transition: background-size 1.2s ease;
  background-position: center center;
  background-size: 100%;
  background-repeat: no-repeat;
  width: 85%;
  max-width: 1200px;
  padding: 100px;
  margin: 0 auto;
  border-radius: 15px;
  color: #fff;
}
.requirements-wrapper .wanted:hover {
  background-size: 107%;
}
.requirements .arrow:hover {
  background-color: #fff;
}
.requirements .arrow:hover .btn-span {
  border-color: var(--blue);
}
.departments .arrow, .requirements .arrow {
  min-width: 60px;
  max-width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border: solid 1px var(--blue);
  border-radius: 40px;
  overflow: hidden;
  transition: all .3s ease;
}
.requirements .arrow {
  border: solid 1px #fff;
}
.departments .arrow .btn-span, .requirements .arrow .btn-span {
  position: relative;
  right: 2px;
  width: 16px;
  height: 6px;
  border-bottom: 1px solid var(--blue);
  border-right: 2px solid var(--blue);
  transform: skew(45deg);
  transition: all .3s ease;
}
.requirements .arrow .btn-span {
  border-bottom: 1px solid #fff;
  border-right: 2px solid #fff;
}
.departments .arrow:hover {
  background-color: var(--blue);
}
.departments .arrow:hover .btn-span {
  border-color: #fff;
}
.requirements {
  background: url("../img/requirements-bg.webp");
  padding: 70px 0;
}
.requirements-wrapper.section {
  margin: 0 auto;
}
/*インタビュー*/
.interview-link {
  background-image: url("../img/top_bg_red4.webp"), url("../img/top_bg_red2.webp");
  background-size: 120% auto;
  background-position: -10vw -30vw, 100px 245px;
  background-repeat: no-repeat, no-repeat;
}
.recruit .interview-list .slick-slide, .job .interview-list .slick-slide {
  margin: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.interview-slider .arrow, .member-slider .m-arrow {
  min-width: 60px;
  max-width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border: solid 1px var(--red);
  background: var(--red);
  border-radius: 40px;
  overflow: hidden;
  transition: all .3s ease;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  cursor: pointer;
}
.interview-slider .arrow.prev, .member-slider .m-arrow.prev {
  left: -30px;
  margin-left: 10px;
}
.interview-slider .arrow.next, .member-slider .m-arrow.next {
  right: -30px;
  margin-right: 10px;
}
.interview-slider .arrow .btn-span, .member-slider .m-arrow .btn-span {
  position: relative;
  right: 2px;
  width: 16px;
  height: 6px;
  border-bottom: 1px solid #fff;
  border-right: 2px solid #fff;
  transform: skew(45deg);
  transition: all .3s ease;
}
.interview-slider .arrow:hover, .member-slider .m-arrow:hover {
  background-color: #ffff;
}
.interview-slider .arrow:hover .btn-span, .member-slider .m-arrow:hover .btn-span {
  border-color: var(--red);
}
.interview-slider .arrow.prev, .member-slider .m-arrow.prev {
  transform-origin: center center;
  position: absolute;
  transform: rotate(180deg) rotateX(180deg) translateY(-50%);
}
@media screen and (max-width: 960px) {
  .recruit .recruit {
    background-size: 170% auto;
    background-position: -180px -20vw, -180px 110%;
    padding-bottom: 30px;
  }
  .recruit .sub-ttl, .job .sub-ttl {
    font-size: max(4.0vw, 3.0rem);
    margin-bottom: 10px;
  }
  .recruit .sub-ttl-en, .job .sub-ttl-en {
    font-size: max(2.5vw, 1.5rem);
    margin-bottom: 20px;
  }
  .manager .slick-initialized .slick-slide {
    display: block;
    margin: 0;
  }
  .manager .slick-initialized .slick-slide .manager-list_txt {
    width: 100%;
  }
  .manager .slick-initialized .slick-slide img {
    width: 100%;
  }
  .manager-list_ttl {
    margin-top: 20px;
  }
  .manager-slider .arrow {
    top: 250px;
  }
  .manager-slider .arrow.prev {
    left: 0px;
    margin-left: 0px;
  }
  .manager-slider .arrow.next {
    right: 0px;
    margin-right: 0px;
  }
  .departments-list {
    display: block;
  }
  .departments-list li {
    width: 100%;
    margin: 0 auto 30px;
  }
  .departments-list li:nth-child(3) {
    margin-bottom: 30px;
  }
  .departments-img {
    margin-bottom: 0;
  }
  .recruit .requirements-wrapper .wanted, .job .requirements-wrapper .wanted, .occupation .requirements-wrapper .wanted {
    display: block;
    width: auto;
    padding: 50px 15px;
    background-size: cover;
    margin: 0 15px;
  }
  .requirements .arrow {
    margin: 20px 0 0 auto;
  }
  .recruit .interview-list .slick-slide, .job .interview-list .slick-slide {
    margin: 0;
  }
  .recruit .interview-list img {
    object-position: 0px 0px;
  }
  .interview-link {
    background-position: -10vw -30vw, -10vw min(80vh, 650px);
  }
  .interview-slider .arrow {
    top: 30vh;
  }
  .interview-slider .arrow.prev {
    left: 0;
    margin-left: 0px;
  }
  .interview-slider .arrow.next {
    right: 0;
    /*margin-right: -30px;*/
  }
}
/*===========================================================
======================インタビューページ================================*/
.interview.section {
  position: relative;
  display: flex;
}
.interview .section-wrapper {
  width: 100%;
}
.interview .top-ttl picture, .interview .top-ttl img {
  width: 100%;
  height: auto;
  display: block;
  padding-top: 40px;
}
.sidebar-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 30%;
  height: 100%;
  background-color: var(--blue);
  z-index: 1;
}
.interview .top {
  padding-top: 0;
}
.interview .img-top {
  margin-top: 0;
  padding-top: 50px;
}
.interview .interview-container {
  max-width: 1440px;
  padding: 0 30px 120px;
  margin: 0 auto;
  display: flex;
  position: relative;
  z-index: 2;
  width: 100%;
}
.interview .sidebar {
  width: 30%;
  padding: 20px;
  padding-top: 120px;
  position: sticky;
  top: 0;
  left: 0;
  height: 100vh;
}
.interview .sidebar a {
  display: block;
  margin-bottom: 20px;
  text-decoration: none;
  color: #fff;
  opacity: 0.2;
  font-weight: bold;
  transition: color 0.3s;
}
.interview .sidebar a.active {
  opacity: 1;
}
.interview .interview-content {
  margin-left: 70px;
  width: 80%;
}
.interview .interview-section {
  padding: 50px 20px;
  border-bottom: 1px solid #ccc;
}
#section1 {
  padding-top: 0;
}
.interview .interview-section h2 {
  margin-bottom: 20px;
}
.interview .interview-section .answer-wrapper {
  margin-left: 60px;
}
.interview .interview-section .answer {
  color: var(--blue);
  font-size: 2.3rem;
  font-weight: 800;
  line-height: 1.5;
}
@media screen and (max-width: 960px) {
  .interview .img-top {
    height: auto;
    object-fit: cover;
  }
  .interview .interview-section {
    padding: 40px 0;
  }
  .interview .interview-content {
    margin-left: 0px;
    width: 100%;
  }
  .interview .interview-container {
    padding: 0;
  }
  .interview .interview-section .answer-wrapper {
    margin: 0;
  }
}
/**=======================================================
          部署紹介ページ
========================================================**/
/* ===== FV全体 ===== */
.recruit-fv {
  display: flex;
  width: 100%;
  padding-top: 80px;
  position: relative;
  overflow-y: visible;
  background: #f6f6f6;
}
/* 左コピー */
.recruit-fv-copy {
  width: 30%;
  display: flex;
  align-items: flex-start;
  margin-top: 20px;
  justify-content: center;
  position: absolute;
  z-index: 999;
}
.recruit-vertical-copy {
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: clamp(25px, 3vw, 40px);
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.8;
  white-space: nowrap;
  color: #0257aa;
  margin-right: 80px;
  display: flex;
  gap: 10px;
  flex-direction: column;
  align-items: flex-start;
}
.recruit-vertical-copy p {
  background: #fff;
  padding: 10px 0px;
  margin: 0;
  display: inline-block;
}
/* 右ビジュアル */
.recruit-fv-visual {
  width: 70%;
  position: relative;
}
/* 比率固定 */
.recruit-main-visual {
  aspect-ratio: 1920 / 950;
  width: 100%;
  height: auto;
  position: relative;
  overflow-x: hidden;
  padding-top: 50px;
}
.rectuit-recruit-main-visual {
  height: 50vw;
}
.recruit .recruit-fv-slider {
  overflow: visible !important;
}
/* 共通レイヤー設定 */
.recruit-main-visual img {
  position: absolute;
  inset: 0;
  height: 85%;
  width: 80%;
  object-fit: contain;
  right: 0;
  left: auto;
}
.recruit-main-visual svg {
  position: absolute;
  width: 150%;
  height: 150%;
}
/* 背景 */
.recruit-fv-bg {
  z-index: 2;
}
/* SVGライン */
.fv-line {
  position: absolute;
  z-index: 3;
  pointer-events: none;
  left: -12%;
  left: 0;
  top: -30%;
  width: 130%;
  height: 130%;
}
/* 人物 */
.fv-person {
  z-index: 4;
  object-fit: contain;
  width: auto;
  height: 110%;
  right: 10%;
  bottom: -5%;
  position: absolute;
}
/* NOAH TECH（横書き回転） */
.recruit-fv-clip {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.recruit-fv-occupation {
  position: absolute;
  font-size: 10vw;
  font-weight: 700;
  z-index: 10;
  top: min(35vw, 500px);
  left: 8%;
  /**光るアニメーション**/
  color: #fff;
  background-image: linear-gradient(70deg, rgb(211, 209, 209, 0.5) 45%, #fff 50%, rgb(211, 209, 209, 0.5) 55%);
  background-size: 500% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  animation: shine 10s infinite;
  line-height: 1.2;
}
.recruit-fv-occupation.recruit-top {
  top: min(42vw, 750px);
}
@keyframes shine {
  0% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
/* SVGライン設定 */
#recruit-animatedPathBlue, #recruit-animatedPathYellow, #recruit-animatedPathRed {
  opacity: 0;
  stroke-width: 120;
  fill: none;
  stroke-linecap: round;
  stroke-dasharray: 9999;
  stroke-dashoffset: 9999;
}
#recruit-animatedPathBlue {
  stroke: #0054A6;
}
#recruit-animatedPathYellow {
  stroke: #FBC600;
}
#recruit-animatedPathRed {
  stroke: #E50012;
}
/***FVスタイル終わり***/
.occupation .occupation-job {
  position: relative;
}
.occupation-job .ttl-wrapper {
  margin-bottom: 0px;
}
.occupation .sub-ttl {
  z-index: 1;
  margin-bottom: 10px;
}
.occupation .sub-ttl-en {
  color: #e8f4ff;
  font-size: min(8vw, 100px);
  position: absolute;
  top: -70px;
  z-index: -1;
}
.occupation-job_contents {
  margin: 50px 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.occupation-job_contents .img-wrapper {
  width: 50%;
  margin-right: 50px;
}
.occupation-job_contents img {
  width: 100%;
}
.occupation-job_contents2 img {
  margin-right: 0;
  margin-left: 50px;
}
.job_contents-list {
  width: 50%;
}
.job_contents-list li {
  margin: 30px 0;
  line-height: 1.7;
}
.job_contents-list li:first-child {
  margin-top: 0;
}
.job_contents-list li h4 {
  color: #0358ab;
  font-size: 20px;
}
.after-join {
  padding: 30px 15px;
  background: #eef7ff;
  border-radius: 15px;
  text-align: center;
}
.after-join h4 {
  color: #0054a6;
  font-size: 25px;
  margin-bottom: 10px;
}
/**メンバー**/
.member {
  background: #f6f6f6;
  position: relative;
}
.member-wrapper {
  z-index: 2;
  position: relative;
}
/* slickじゃない時だけflex */
.member-wrapper:not(.slick-slider) {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}
.member-wrapper .member-contents {
  padding: 50px 20px 0;
  width: calc((100% - 60px) / 3);
  min-width: 350px;
}
.member-wrapper .slick-slide {
  height: auto;
}
.member-wrapper .slick-track {
  display: flex;
  align-items: stretch;
}
.member-contents-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
/* 画像の基準枠 */
.member-image {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin-bottom: 20px;
}
.member-image .member-bg {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-radius: 30px;
}
/* 背景は必ず基準になる */
.member-bg {
  width: 100%;
  height: auto;
  display: block;
}
/* 人物：中央基準で%配置 */
.member-person {
  position: absolute;
  bottom: 0;
  left: 50%;
  height: 90%;
  transform: translateX(-50%) scale(1);
  transform-origin: center bottom;
  transition: transform 0.4s ease;
  z-index: 2;
  max-height: 600px;
  object-fit: contain;
}
/* ホバー時も位置は変えない */
.member-contents:hover .member-person {
  transform: translateX(-50%) scale(1.05);
}
/* 番号 */
.member-number {
  position: absolute;
  top: -15%;
  left: -5%;
  color: var(--blue);
  z-index: 3;
  font-size: clamp(25px, 12vw, 70px);
  font-weight: bold;
  letter-spacing: -0.04em;
}
.member-number.red {
  color: var(--red);
}
.member-number.yellow {
  color: var(--yellow);
}
.member-contents-txt {
  margin-right: 20px;
}
.member-contents-txt span {
  font-size: 20px;
}
.member-contents-txt p {
  font-size: 35px;
  font-weight: 800;
  line-height: 1;
}
.btn.member-btn .arrow {
  width: 60px;
  height: 60px;
  background-color: var(--blue);
}
/**文字が流れる**/
.member-marquee {
  width: 100%;
  overflow: hidden;
  position: absolute;
  left: 0;
  bottom: 150px;
  height: 260px;
  pointer-events: none;
}
.member-marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-loop 65s linear infinite;
}
.member-marquee-track span {
  font-size: 180px;
  font-weight: 700;
  color: #e3eef9;
  letter-spacing: 0.02em;
  white-space: nowrap;
  padding-right: 80px;
}
/* シームレスループ */
@keyframes marquee-loop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/**他部署**/
.hover-card__wrapper {
  display: flex;
  justify-content: space-around;
}
.hover-card {
  position: relative;
  width: 30%;
  height: 450px;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
}
.hover-card-title {
  position: absolute;
  top: 16px;
  left: 10px;
  z-index: 2;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  letter-spacing: 0.1em;
  writing-mode: vertical-rl;
  text-orientation: upright;
  padding-top: 35px;
}
.hover-card-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 30px;
  background-color: #fff;
}
/* グラデ背景 */
.hover-card-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #347fc9, #1260ac);
  z-index: 1;
  transition: opacity 0.6s ease;
}
/* ホバーで出てくる写真 */
.hover-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 0.6s ease, transform 0.8s ease;
  z-index: 0;
}
/* テキスト */
.hover-card-text {
  position: absolute;
  z-index: 2;
  color: #fff;
  font-size: 16px;
  line-height: 1.8;
  padding: 32px;
  font-weight: 500;
  margin-top: 75%;
}
/* ホバー時 */
.hover-card:hover .hover-card-bg {
  opacity: 0;
}
.hover-card:hover .hover-card-img {
  opacity: 1;
  transform: scale(1);
}
@media (max-width: 960px) {
  .member-wrapper .member-contents {
    min-width: 320px;
  }
  .member-image {
    margin: 20px auto;
  }
}
/**=======================================================
          採用ページ SP
========================================================**/
@media (max-width: 960px) {
  .occupation .occupation-job {
    margin-bottom: 30px;
  }
  .occupation-job_contents {
    flex-direction: column;
    align-items: center;
    margin: 0;
  }
  .occupation .sub-ttl-en {
    font-size: min(8vw, 60px);
    line-height: 1;
    top: -40px;
  }
  .occupation-job_contents .img-wrapper {
    width: 100%;
    margin-right: 0;
    max-width: 600px;
  }
  .occupation-job_contents img {
    width: 100%;
    margin: 0 auto;
  }
  .job_contents-list {
    width: 100%;
  }
  .after-join {
    text-align: left;
  }
  .member .ttl-wrapper {
    margin-bottom: 50px;
  }
  .member-wrapper {
    align-items: center;
    gap: 60px;
  }
  .member-contents-wrapper {
    margin-top: 20px;
  }
  .member-contents-wrapper .btn {
    margin: 10px 0 0 20px;
  }
  .member-image {
    max-width: 480px;
    margin: 0 auto;
  }
  .member-marquee {
    display: none;
  }
  .hover-card__wrapper {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .hover-card {
    width: 100%;
    max-width: 500px;
    height: 420px;
  }
  .hover-card-title {
    font-size: 32px;
  }
  .hover-card-text {
    margin-top: 65%;
  }
}
@media (max-width: 790px) {
  .member-wrapper .member-contents {
    width: 100%;
    padding-top: 0;
    margin: 10px 0;
  }
}
/*===========================================================
======================採用TOPページ================================*/
.recruit .recruit-fv {
  padding-top: 100px;
  background: #f6f6f6;
  height: auto;
}
.recruit .recruit-fv .slick-track {
  height: 50vw;
}
.recruit .recruit-fv-copy {
  margin-top: 80px;
}
.recruit .recruit-fv-slider {
  position: relative;
  overflow: hidden;
}
.recruit .recruit-fv-slider div {
  border-radius: 35px;
}
/***採用トップページテキスト部分****/
.recruit .recruit {
  position: relative;
  overflow: hidden;
}
.recruit .fv-line {
  z-index: -1;
  overflow-x: hidden;
}
.recruit .recruit-body_txt {
  display: flex;
  z-index: 999;
}
.recruit .recruit-body_txt .ttl-wrapper {
  margin-right: 30px;
  color: var(--blue);
}
.recruit .sub-ttl {
  font-size: 2.7rem;
  margin-bottom: 0px;
  line-height: 1.5;
}
.recruit .recruit-body_txt p {
  font-size: 1.8rem;
  font-weight: 700;
}
@media screen and (max-width: 960px) {
  /**採用トップページ**/
  .recruit .recruit-fv {
    height: max(550px, 90vw);
  }
  .recruit .recruit-fv .slick-track {
    height: 70vw;
    min-height: 470px;
  }
  .recruit-main-visual {
    padding-top: 0;
    width: 70vw;
  }
  .recruit-recruit-main-visual {
    height: auto;
  }
  .recruit-vertical-copy {
    margin-right: 0;
    writing-mode: lr;
  }
  .recruit .recruit-main-visual img {
    height: 85%;
    width: 95%;
    border-radius: 25px;
    object-fit: cover;
    right: 0;
    left: auto;
  }
  .recruit .recruit-fv-copy {
    padding-top: 0px;
	  margin-top: 0;
  }
  .recruit-fv-occupation {
    font-size: min(16vw, 100px);
    top: auto;
    bottom: 5%;
  }
  .recruit-fv-occupation.recruit-top {
    top: auto !important;
  }
  /**各職種ページ**/
  .recruit-main-visual img {
    right: 0;
  }
}
@media screen and (max-width: 960px) {
  /**各職種*ページ*/
  .recruit .recruit-body_txt {
    display: block;
  }
  .fv-line {
    width: 200%;
    height: 200%;
    top: -70%;
    left: -50vw;
  }
  .recruit-main-visual {
    aspect-ratio: 3/3.7;
    width: 95%;
    height: 90%;
    overflow: hidden;
    border-radius: 30px;
    margin: 30px auto auto;
    max-height: 600px;
  }
  .recruit-main-visual img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    left: 0;
  }
  .recruit-main-visual.construction img {
    object-position: left center;
  }
	.recruit-main-visual.general img {
		 object-position: center;
	}
  .recruit-main-visual_sales img {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  .recruit-fv-copy {
    margin-left: 5px;
    width: auto;
    margin-top: 0px;
  }
  .recruit-vertical-copy p {
    padding: 0px 10px;
  }
  .recruit-vertical-copy {
    gap: 5px;
  }
}
/**採用LINEボタン****/
.line-fixed-btn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  background: #06C755;
  color: #fff;
  text-decoration: none;
  padding: 14px 22px;
  font-size: 20px;
  font-weight: 600;
  border-radius: 10000px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  display: flex;
  gap: 10px;
  align-items: center;
}
.line-fixed-btn img {
  width: max(30px, 3vw);
  height: max(30px, 3vw);
  object-fit: contain;
}
.line-fixed-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}
/* スマホ最適化 */
@media (max-width: 768px) {
  .line-fixed-btn {
    right: 16px;
    bottom: 16px;
    padding: 12px 18px;
    font-size: 13px;
  }
}