body {
  font-family: 'Noto Sans JP';
  font-size: 16px;
  background-color: #ffffff;
  overflow-x: hidden;
}
img { 
  image-rendering: auto;
}
li {
  list-style: none;
}
a {
  text-decoration: none;
  color: #000;
}
.-flex {
  display: flex;
}
.f-wrap {
  flex-wrap: wrap;
}
.sc {
  justify-content: center;
}
.sb {
  justify-content: space-between;
}
.sa {
  justify-content: space-around;
}
.se {
  justify-content: space-evenly;
}
.al-center {
  align-items: center;
}
.mt30 {
  margin-top: 30px;
}
.mt50 {
  margin-top: 50px;
}
.mr3{
    margin-right: 3px;
}
.mb10 {
    margin-bottom: 10px;
  }
.mb20 {
  margin-bottom: 20px;
}
.pt20 {
  padding-top: 20px;
}
.logo {
  max-height: 60px;
  max-width: 100%;
  z-index: 9999;
}
.sp-none {
  display: block;
}
.sp-block {
  display: none;
}
ul {
  padding: 0;
}
.inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}


/* ファーストビュー */
.first-view { /* 背景の初期状態は黒 */
  width: 100%;
  height: 100vh;
  background-color: #FFF;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInBackground .8s ease forwards; /* 背景アニメーション */
  background-position: center center; /* 背景画像の中央配置 */
}
.first-view .inner .title img {
  width: 100%;
  margin-top: 100px;
  margin-bottom: 8px;
  opacity: 0; /* 初期表示は透明（背景色のみ） */
  transform: translateY(20px); /* 少し下から上がる感じ */
  animation: fadeInImage .8s ease .8s forwards; /* 遅れてフェードイン */
}
@keyframes fadeInBackground { /* 背景フェードイン */
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    background-image: url("/assets/img/top/fv_bg_pc2.webp");
    background-position: center center; /* 背景画像を中央に固定 */
    /* background-size: contain; */ /* 宇宙のときに使用 */
    background-size: cover;
    background-repeat: no-repeat;
  }
}
@keyframes fadeInImage {/* SVGフェードイン */
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


/* アニメーション（シート内要素） */
@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* フェードイン効果を適用するクラス */
.fade-in {
  animation: fade-in 0.6s ease-in-out;
  opacity: 1;
}



/* セカンドビュー */
.second-view {
  width: 100%;
  position: relative;
  padding-bottom: 120px;
  overflow: hidden;
}
.second-view img {
  width: 100%;
  display: block;
}
.second-view .top-image {
  width: 100%;
  display: block;
}
.second-view .bottom-image {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 10;
}
.second-view .content {
  position: relative;
  z-index: 50;
  max-width: 1200px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.second-view h2 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 52px;
  font-weight: 700;
}
.second-view .line {
  margin: 20px 0;
  width: 100%;
  height: 0.5px;
  background-color: #888888;
}
.content-text {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: .5px;
  line-height: 32px;
  width: 100%;
}
.content-text p:not(:last-child) {
  margin-bottom: 16px;
}

.scroll-view {
  width: 100%;
  padding-top: 36px;
  padding-bottom: 12px;
  background-color: #004A8C;
}
.scroll-view .center {
  display: flex;
  justify-content: center;
}
.scroll-view img {
  width: 680px;
}


/* 採用情報案内コンテンツ */
.main-content {
  width: 100%;
  /* position: relative; */
  padding-bottom: 120px;
  overflow: hidden;
}
.main-content .top-image {
  width: 100%;
  /* position: absolute; */
  top: 0;
  left: 0;
}
.main-content .center {
  display: flex;
  justify-content: center;
}
.main-content .elements {
  /* position: absolute; */
  width: 100%;
}
.main-content .elements .space {
  display: flex;
  flex-direction: column;
  gap: 100px;
}
.recruit-cat {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-between;
  align-items: flex-start;
  gap: 80px;
}
.recruit-cat:nth-child(even) {
  flex-direction: row-reverse; /* 奇数番目の要素だけテキストと画像の位置を逆に */
}
.recruit-cat .front {
  display: flex;
  flex-direction: column;
  width: 50%;
  justify-content: space-between;
  align-items: flex-start;
  height: 405px;
}
.recruit-cat .front .text {
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
}
.recruit-cat .front .text .title {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.recruit-cat:nth-child(even) .front .text .title { /* 偶数番目のrecruit-cat要素に対するスタイル */
  text-align: right;
}
.recruit-cat .front .text .title h3 {
  font-size: 16px;
  font-weight: 600;
  font-family: "Noto Sans", sans-serif;
  color: #888888;
}
.recruit-cat .front .text .title-main {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  width: 100%;
  align-items: center;
  gap: 20px;
}
.recruit-cat:nth-child(even) .front .text .title-main { /* 偶数番目のrecruit-cat要素内のtitle-mainの子要素を入れ替える */
  display: flex;
  flex-direction: row-reverse;
}
.recruit-cat .front .text .title-main h2 {
  font-size: 46px;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
}
.recruit-cat .front .text .title-main .line {
  margin: 20px 0;
  height: 0.5px;
  background-color: #888888;
  flex-grow: 1;
}
.recruit-cat .front .text .detail {
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
}
.recruit-cat .front .text .detail p {
  font-size: 16px;
  font-weight: 400;
}
.recruit-cat .image {
  width: 50%;
  border-radius: 40px 0 40px 0;
  overflow: hidden;
}
.recruit-cat .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.recruit-cat .front .cat-btns {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 20px;
}
.recruit-cat .front .cat-btns a {
  /* width: 50%; */
}
.recruit-cat .front .cat-btns .btn-one {
  width: 60%;
}
.recruit-cat .front .cat-btns .btn-two {
  width: 40%;
}


.recruit-cat .front .cat-btns a .view-more {
  width: 100%;
  padding: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to right, #004A8C 0%, #0F5491 50%, #4F7EA8 100%);
  position: relative;
  border-radius: 100px;
  box-shadow: 1px 1px 4px #ababab;
}
.recruit-cat .front .cat-btns a .view-more span {
  color: #FFF;
  font-size: 16px;
  font-weight: 700;
}
.recruit-cat .front .cat-btns a .view-more img {
  position: absolute;
  right: 6%;
  top: 41%;
  width: 18px;
}





/* ↓ ボタンのホバーエフェクト ↓ */
.recruit-cat .front .cat-btns a .view-more { /* グラデーションが動くように */
  transition: background-position 0.4s ease, box-shadow 0.4s ease;
  background-size: 200% 100%;
  background-position: left;
}
.recruit-cat .front .cat-btns a .view-more:hover { /* ホバー時にグラデーションが右に動く */
  background-position: right;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}
.recruit-cat .front .cat-btns a .view-more span { /* ホバー時のテキストのカラー変化 */
  transition: color 0.4s ease;
}
.recruit-cat .front .cat-btns a .view-more:hover span {
  color: #e6e6e6;
}
.recruit-cat .front .cat-btns a .view-more img { /* 右矢印アイコンのホバー時スライドアニメーション */
  transition: transform 0.4s ease;
}
.recruit-cat .front .cat-btns a .view-more:hover img {  /* ホバー時にアイコンを右にスライド */
  transform: translateX(10px);
}
/* ↑ ボタンのホバーエフェクト ↑ */



.recruit-cat .front .cat-btns a .to-entry {
  width: 100%;
  padding: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to right, #bf1212 0%, #ffe400 50%, #ff0000 100%);
  position: relative;
  border-radius: 6px;
  box-shadow: 1px 1px 4px #ababab;
}
.recruit-cat .front .cat-btns a .to-entry span {
  color: #FFF;
  font-size: 16px;
  font-weight: 700;
}
.recruit-cat .front .cat-btns a .to-entry img {
  position: absolute;
  right: 6%;
  top: 41%;
  width: 18px;
}
/* ↓ ボタンのホバーエフェクト ↓ */
.recruit-cat .front .cat-btns a .to-entry { /* グラデーションが動くように */
  transition: background-position 0.4s ease, box-shadow 0.4s ease;
  background-size: 200% 100%;
  background-position: left;
}
.recruit-cat .front .cat-btns a .to-entry:hover { /* ホバー時にグラデーションが右に動く */
  background-position: right;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}
.recruit-cat .front .cat-btns a .to-entry span { /* ホバー時のテキストのカラー変化 */
  transition: color 0.4s ease;
}
.recruit-cat .front .cat-btns a .to-entry:hover span {
  color: #e6e6e6;
}
.recruit-cat .front .cat-btns a .to-entry img { /* 右矢印アイコンのホバー時スライドアニメーション */
  transition: transform 0.4s ease;
}
.recruit-cat .front .cat-btns a .to-entry:hover img {  /* ホバー時にアイコンを右にスライド */
  transform: translateX(10px);
}
/* ↑ ボタンのホバーエフェクト ↑ */




.second-view .en-h2 {
  font-weight: 500!important;
  font-family: "Oswald", sans-serif!important;
  font-size: 48px!important;
}
.en-content-text {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: .2px;
  line-height: 28px;
  width: 100%;
}
.en-content-text p:not(:last-child) {
  margin-bottom: 16px;
}
.recruit-cat .front .text .detail .en-p {
  font-size: 14px!important;
  font-weight: 400!important;
}





/* レスポンシブ：横幅768px以下 */
@media screen and (max-width: 768px) {
  .sp-none {
    display: none;
  }
  .sp-block {
    display: block;
  }
  .inner {
    padding: 0 20px;
  }
  .swiper-button-next, .swiper-button-prev{
    margin-top: -75%!important;
  }
  p {
    line-height: 1.5;
  }
  .column {
    flex-direction: column;
  }
  .l__flex-section .block__profile-img,
  .l__flex-section .block__profile,
  .price_menu ul li,
  .block__point,
  .access_box,
  .form-label,
  input, textarea{
    width: 100%;
  }
  .last {
    border-right: none;
  }
  .l__title h2 {
    font-size: 2rem;
  }
  .l__statement {
    font-size: 1.6rem;
    font-family: "Zen Old Mincho", serif;
    font-weight: 500;
  }
  .padding-left {
    padding-left: 20px;
  }
  .padding-right {
    padding-right: 20px;
  }
  .top_logo {
    max-width: 350px;
    width: 90%;
  }
  main {
    padding-bottom: 0;
  }
  main.top{
    padding-top: 40px;
  }




  /* ファーストビュー */
  .first-view { /* 背景の初期状態は黒 */
    width: 100%;
    height: 100vh;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInBackground .8s ease forwards; /* 背景アニメーション */
    background-position: center center; /* 背景画像の中央配置 */
  }
  .first-view .inner .title img {
    width: 100%;
    /* margin-top: 100px;
    margin-bottom: 8px; */
    opacity: 0; /* 初期表示は透明（背景色のみ） */
    transform: translateY(20px); /* 少し下から上がる感じ */
    animation: fadeInImage .8s ease .8s forwards; /* 遅れてフェードイン */
  }
  @keyframes fadeInBackground { /* 背景フェードイン */
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
      background-image: url("/assets/img/top/fv_bg_sp2.webp");
      background-position: center center; /* 背景画像を中央に固定 */
      /* background-size: contain; */ /* 宇宙のときに使用 */
      background-size: cover;
      background-repeat: no-repeat;
    }
  }

  
  /* ファーストビュー */
  .first-view .inner .title img {
    margin-top: 140px;
  }


    
  /* セカンドビュー */
  .second-view {
    padding-bottom: 60px;
  }
  .second-view img {
    width: 100%;
    display: block;
  }
  .second-view .top-image {
    width: 140%;
    max-width: 140%;
    display: block;
  }
  .second-view .bottom-image {
    /* width: 100%; */
    width: 200%;
    max-width: 200%;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 10;
  }
  .second-view .content {
    position: relative;
    z-index: 50;
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 12px;
  }
  .second-view h2 {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 28px;
    font-weight: 700;
  }
  .second-view .line {
    margin: 20px 0;
    width: 100%;
    height: 0.5px;
    background-color: #888888;
  }
  .content-text {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: .5px;
    line-height: 24px;
    width: 100%;
  }
  .content-text p:not(:last-child) {
    margin-bottom: 16px;
  }

  .scroll-view {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 8px;
    background-color: #004A8C;
  }
  .scroll-view .center {
    display: flex;
    justify-content: center;
  }
  .scroll-view img {
    width: 680px;
  }







  /* 採用情報案内コンテンツ */
  .main-content {
    width: 100%;
    /* position: relative; */
    padding-bottom: 60px;
    overflow: hidden;
  }
  .main-content .top-image {
    width: 100%;
    /* position: absolute; */
    top: 0;
    left: 0;
  }
  .main-content .center {
    display: flex;
    justify-content: center;
  }
  .main-content .elements {
    /* position: absolute; */
    width: 100%;
    padding-top: 20px;
  }
  .main-content .elements .space {
    /* display: flex;
    flex-direction: column; */
    gap: 52px;
  }
  .recruit-cat {
    /* display: flex; */
    flex-direction: column-reverse;
    /* width: 100%;
    justify-content: space-between;
    align-items: flex-start; */
    gap: 12px;
  }
  .recruit-cat:nth-child(even) {
    flex-direction: column-reverse; /* 奇数番目の要素だけテキストと画像の位置を逆に */
  }
  .recruit-cat .front {
    /* display: flex;
    flex-direction: column; */
    width: 100%;
    /* justify-content: space-between;
    align-items: flex-start; */
    /* height: 408px; */
    height: 472px;
  }
  .recruit-cat .front .text {
    /* display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: flex-start;
    align-items: flex-start; */
    gap: 8px;
  }
  /* .recruit-cat .front .text .title {
    display: flex;
    flex-direction: column;
    width: 100%;
  } */
  .recruit-cat:nth-child(even) .front .text .title { /* 偶数番目のrecruit-cat要素に対するスタイル */
    text-align: right;
  }
  .recruit-cat .front .text .title h3 {
    font-size: 14px;
    /* font-weight: 600;
    font-family: "Noto Sans", sans-serif;
    color: #888888; */
  }
  .recruit-cat .front .text .title-main {
    /* display: flex;
    flex-direction: row;
    justify-content: flex-start;
    width: 100%;
    align-items: center; */
    gap: 16px;
  }
  .recruit-cat:nth-child(even) .front .text .title-main { /* 偶数番目のrecruit-cat要素内のtitle-mainの子要素を入れ替える */
    display: flex;
    flex-direction: row-reverse;
  }
  .recruit-cat .front .text .title-main h2 {
    font-size: 36px;
    /* font-weight: 700;
    font-family: "Noto Sans JP", sans-serif; */
  }
  /* .recruit-cat .front .text .title-main .line {
    margin: 20px 0;
    height: 0.5px;
    background-color: #888888;
    flex-grow: 1;
  } */
  .recruit-cat .front .text .detail {
    /* display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: flex-start;
    align-items: flex-start; */
    gap: 12px;
  }
  /* .recruit-cat .front .text .detail p {
    font-size: 16px;
    font-weight: 400;
  } */
  .recruit-cat .image {
    width: 100%;
    /* border-radius: 40px 0 40px 0;
    overflow: hidden; */
  }
  /* .recruit-cat .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  } */
  /* .recruit-cat .front a {
    width: 100%;
  } */
  .recruit-cat .front .cat-btns {
    width: 100%;
    display: flex;
    flex-direction: column;
    /* justify-content: space-between; */
    gap: 12px;
  }
  .recruit-cat .front .cat-btns a {
    /* width: 100%; */
  }
  .recruit-cat .front .cat-btns .btn-one {
    width: 100%;
  }
  .recruit-cat .front .cat-btns .btn-two {
    width: 100%;
  }
  .recruit-cat .front .cat-btns a .view-more {
    /* width: 100%; */
    padding: 20px;
    /* display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to right, #004A8C 0%, #0F5491 50%, #4F7EA8 100%);
    position: relative;
    border-radius: 100px;
    box-shadow: 1px 1px 4px #ababab; */
  }
  .recruit-cat .front .cat-btns a .view-more span {
    /* color: #FFF; */
    font-size: 14px;
    /* font-weight: 700; */
  }
  .recruit-cat .front .cat-btns a .view-more img {
    top: 40%;
    width: 16px;
  }
  .recruit-cat .front .cat-btns a .to-entry {
    margin: 0 auto;
    width: 60%;
    padding: 20px;
    /* display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to right, #004A8C 0%, #0F5491 50%, #4F7EA8 100%);
    position: relative;
    border-radius: 100px;
    box-shadow: 1px 1px 4px #ababab; */
  }
  .recruit-cat .front .cat-btns a .to-entry span {
    /* color: #FFF; */
    font-size: 14px;
    /* font-weight: 700; */
  }
  .recruit-cat .front .cat-btns a .to-entry img {
    top: 40%;
    width: 16px;
  }

  /* 英語SP */
  .en-serif {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400!important;
  }
  .first-view .inner .title .en-fv-img {
    margin-top: 140px;
  }
  .second-view .en-h2 {
    font-weight: 500!important;
    font-family: "Oswald", sans-serif!important;
    font-size: 24px!important;
  }
  .en-content-text {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .5px;
    line-height: 24px;
    width: 100%;
  }
  .en-content-text p:not(:last-child) {
    margin-bottom: 16px;
  }
  .recruit-cat .front .text .detail .en-p {
    font-size: 14px!important;
    font-weight: 400!important;
  }
}