@charset "UTF-8";
/* ==========================================================================
   【変更】メインビジュアルを画面の最背面に固定する
   ========================================================================== */
.mv {
  width: 100%;
  height: 100vh;
  min-height: 768px; /* スライダーの最小高さに合わせる */
  position: fixed; /* 画面に固定 */
  top: 0;
  left: 0;
  z-index: 1; /* 背面に配置 */
}
/* ==========================================================================
   【追加】パララックスを綺麗に見せるためのラッパー
   ========================================================================== */
/* 
   .mv が fixed（固定）になると高さがゼロ扱いになり、
   後ろのコンテンツが最初から上に重なってしまいます。
   それを防ぐために、.mv と同じ高さの「透明なクッション」を配置します。
*/
.mv-spacer {
  width: 100%;
  height: 100vh;
  min-height: 768px;
  background: transparent;
  pointer-events: none; /* 下の要素のクリックなどを邪魔しない */
}
/* スライダー全体のサイズ設定 */
.main-slider {
  width: 100%;
  height: 100vh; /* 画面いっぱいの高さ */
  min-height: 768px; /* デザイン上の最小高さを担保 */
  overflow: hidden;
}
/* 各スライドの設定 */
.main-slider .slide-item {
  width: 100%;
  height: 100vh;
  min-height: 768px;
}
.main-slider .slide-item img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 画像をアスペクト比を保ったままいっぱいに広げる */
  vertical-align: bottom;
}
.mv:before {
  background: rgba(25, 30, 46, 0.2);
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  display: block;
  z-index: 1;
}
.main-copy {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  width: 100%; /* 横幅いっぱいに確保することでtext-alignを効かせる */
}
.main-copy span {
  display: block; /* 改行させる場合はblock、させない場合はinline-block */
  color: #fff;
  font-family: var(--font-en);
  font-size: 75px;
  font-weight: 700;
  line-height: 110%;
  text-transform: capitalize;
  position: relative;
}
@media screen and (max-width: 767px) {
  .main-copy span {
    text-align: center;
    font-family: Montserrat;
    font-size: 40px;
    line-height: 110%; /* 44px */
  }
}
.main-copy span:after {
  content: "動かす力をつくる。";
  color: var(--color-white);
  font-family: var(--font-jp);
  font-size: 31px;
  font-weight: 600;
  line-height: 150%; /* 46.5px */
  letter-spacing: 0.93px;
  bottom: -73px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .main-copy span:after {
    color: #FFF;
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%; /* 36px */
    letter-spacing: 0.72px;
    bottom: -44px;
  }
}
/* ==========================================================================
   【変更】スクロールで上に重なってくる領域の設定
   ========================================================================== */
.top-overview {
  padding: 180px 0 256px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* 以下の3つのプロパティを変更・確認してください */
  position: relative;
  z-index: 10; /* .mv（z-index: 1）より大きい数値にして上に重ねる */
  /*background-color: #191e2e;*/ /* ★重要: 背景色（または背景画像）を設定して下の.mvを隠す */
}
@media screen and (max-width: 767px) {
  .top-overview {
    padding: 60px 0 26px;
  }
}
.top-overview:before {
  background-image: url(../image/top/overviewmask.png);
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  /*  z-index: 10;*/
  display: block;
  z-index: 1;
  background-size: cover;
}
p.overview-en {
  color: var(--color-white);
  text-align: center;
  font-family: var(--font-en);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 24px */
  letter-spacing: 0.48px;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
  margin-bottom: 5px;
}
.top-overview-title {
  color: var(--color-white);
  text-align: center;
  font-family: var(--font-jp);
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 60px */
  position: relative;
  z-index: 2;
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .top-overview-title {
    color: #FFF;
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 24px;
    margin-bottom: 30px;
  }
}
.overview-txt {
  position: relative;
  z-index: 2;
  color: #FFF;
  font-family: var(--font-jp);
  font-size: 17px;
  font-style: normal;
  font-weight: 500;
  line-height: 210%; /* 35.7px */
  letter-spacing: 0.51px;
  width: 443px;
  margin: 0 auto 80px;
}
@media screen and (max-width: 767px) {
  .overview-txt {
    width: clamp(331px, 88.26vw, 1160px);
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 200%; /* 32px */
    letter-spacing: 0.48px;
    margin: 0 auto 50px;
  }
}
.overview-txt p {
  position: relative;
  z-index: 3;
}
.overview-image01 {
  width: 338px;
  height: 415px;
  position: absolute;
  border-radius: 10px;
  left: calc(-89px - 338px);
  top: 0;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .overview-image01 {
    width: 150px;
    height: 183px;
    left: 19px;
  }
}
.overview-image02 {
  width: 221px;
  height: 271px;
  position: absolute;
  border-radius: 10px;
  top: 56px;
  right: -396px;
}
@media screen and (max-width: 767px) {
  .overview-image02 {
    width: 130px;
    height: 160px;
    top: 30px;
    right: 22px;
    z-index: 2;
  }
}
.overview-image03 {
  width: 166px;
  height: 203px;
  position: absolute;
  border-radius: 10px;
  bottom: -197px;
  right: -123px;
}
@media screen and (max-width: 767px) {
  .overview-image03 {
    width: 102px;
    height: 125px;
    right: 107px;
    left: auto;
    z-index: 2;
    top: 210px;
  }
}
.overview-image01, .overview-image02, .overview-image03 {
  /* 既存のプロパティはそのまま */
  will-change: transform;
  /* transitionを入れると、ガタつきがなくなりヌルっと動きます */
  transition: transform 0.1s linear;
}
/* 念のため画像がコンテナからはみ出さないように */
.overview-image01 img, .overview-image02 img, .overview-image03 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .bo-sp-image {
    position: relative;
    height: 335px;
    margin-top: 40px;
  }
}
/* パララックスセクション */
/* 外枠：高さを固定し、はみ出しを隠す */
.parallax-window {
  position: relative;
  width: 100%;
  height: 650px; /* デザインに合わせて調整（768pxなど） */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 6;
}
@media screen and (max-width: 767px) {
  .parallax-window {
    height: 300px;
  }
}
/* 中の画像：枠より少し大きく配置する */
.parallax-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%; /* 枠より20%大きくして動く余裕を作る */
  object-fit: cover;
  z-index: -1;
  will-change: transform; /* ブラウザの動作を軽くする */
}
@media screen and (max-width: 767px) {
  .parallax-img {
    height: 140%;
  }
}
.para-content {
  color: #fff;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.top-overviewbtn {
  position: relative;
  z-index: 10;
  width: 210px;
  height: 64px;
  margin: 0 auto;
}
.top-overviewbtn a span {
  color: 003894;
  font-family: "Noto Sans JP";
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%; /* 24px */
  letter-spacing: 0.45px;
}
p.copybottom {
  color: #FFF;
  font-family: "Montserrat", sans-serif;
  font-size: 110px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 3.3px;
  position: absolute;
  z-index: 11;
  bottom: -74px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  p.copybottom {
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 48px */
    letter-spacing: 0.96px;
    bottom: -22px;
  }
}
/* トップページプロダクト */
.top-products {
  background-color: #003894;
  padding: 150px 0;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .top-products {
    padding: 60px 0 80px;
	  padding-bottom: 0;
  }
}
.top-products-title {
  color: var(--color-white);
  font-family: var(--font-jp);
  font-size: 17px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%; /* 27.2px */
  letter-spacing: 0.51px;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .top-products-title {
    color: #FFF;
    font-family: "Noto Sans JP";
    font-size: 15px;
    letter-spacing: 0.45px;
    margin-bottom: 20px;
  }
}
.top-products-title span {
  color: var(--color-white);
  font-family: var(--font-en);
  font-size: 80px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%; /* 80px */
  display: block;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .top-products-title span {
    color: #FFF;
    font-family: Montserrat;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%; /* 40px */
  }
}
.top-products .flex {
  gap: 103px;
  justify-content: flex-start;
}
@media screen and (max-width: 767px) {
  .top-products .flex {
    flex-wrap: wrap;
    gap: 40px;
  }
}
.top-products-txt {
  color: #fff;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%; /* 28.8px */
  letter-spacing: 0.48px;
  width: 656px;
}
@media screen and (max-width: 767px) {
  .top-products-txt {
    width: 100%;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 180%; /* 28.8px */
    letter-spacing: 0.48px;
    margin-bottom: 0;
  }
  .top-products .btn-white {
    width: 242px;
    height: 64px;
  }
  .top-products .btn-white span {
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: 160%; /* 24px */
    letter-spacing: 0.45px;
    white-space: nowrap;
  }
}


@media screen and (max-width: 767px) {
	.business-section{
		margin-top: 80px;
	padding-bottom: 20px;
	}
	
	}


/* トップページ動画 */
section.top-movie-wrapper {
  width: 100%;
  padding: 140px 0 120px;
  background-image: url(../image/top/topmovieback.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  section.top-movie-wrapper {
    width: 100%;
    padding: 80px 0 60px;
    background-image: url(../image/top/topmovieback.jpg);
  }
}
h2.topmovie-title {
  margin-bottom: 29px;
}
h2.topmovie-title {
  color: var(--color-black);
  font-family: var(--font-jp);
  font-size: 17px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%; /* 27.2px */
  letter-spacing: 0.51px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  h2.topmovie-title {
    color: #191E2E;
    text-align: center;
    font-size: 15px;
    letter-spacing: 0.45px;
    width: clamp(331px, 88.26vw, 1160px);
    margin: 0 auto 20px;
  }
}
h2.topmovie-title span {
  color: #003894;
  text-align: center;
  font-family: var(--font-en);
  font-size: 80px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%; /* 80px */
  display: block;
}
@media screen and (max-width: 767px) {
  h2.topmovie-title span {
    font-size: 40px;
  }
}
.top-movie-wrapper p.txt {
  color: #191e2e;
  font-family: var(--font-jp);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%; /* 28.8px */
  letter-spacing: 0.48px;
  text-align: center;
  width: 562px;
  margin: 0 auto 60px;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .top-movie-wrapper p.txt {
    /* width: 100%;*/
    width: clamp(331px, 88.26vw, 1160px);
    margin-bottom: 20px;
  }
}
.top-movie-container {
  /* 最大幅を 1280px に変更 */
  /* 推奨値はデザインカンプの基準幅（例: 1440px）に合わせて調整が必要ですが、
     一旦 88.26vw のまま、上限だけを 1280px に引き上げます */
  width: clamp(331px, 88.26vw, 1280px);
  /* 中央寄せ */
  margin-inline: auto;
  /* 小さい画面でのハミ出し防止 */
  max-width: 100%;
  border-radius: 10px;
  padding: 70px 60px 60px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .top-movie-container {
    padding: 40px 0;
    width: 100%;
  }
}
.top-movie-container .video-list-grid {
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  /* 全体のレイアウト調整 */
  .video-slider-wrapper {
    position: relative;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
  }
}
/* PC時のスタイル（既存のグリッド表示を想定） */
@media (min-width: 768px) {
  .video-list-grid {
    display: flex;
    gap: 20px;
  }
  .video-card {
    width: calc(33.333% - 14px);
  }
  .slider-arrows {
    display: none; /* PCでは矢印を非表示 */
  }
}
/* スマホ時のスタイル（Slick有効時） */
@media (max-width: 767px) {
  .video-list-grid {
    display: block; /* slickのバグを防ぐためblockに */
  }
  .video-card {
    margin: 0 10px; /* スライド同士の余白 */
    outline: none;
  }
  .video-thumb {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
  }
  .video-thumb img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain !important;
  }
  /* 再生アイコン（中央配置） */
  .play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
  }
  /* 矢印ボタンのスタイリング */
  .slider-arrows {
    position: absolute;
    top: 50%; /* 全体の50%の位置（※タイトルも含めた中央になります） */
    left: 0;
    right: 0;
    transform: translateY(-50%); /* 自身の高さの半分上にずらして完全中央に */
    display: flex;
    justify-content: space-between;
    pointer-events: none; /* ボタン以外をタップできるように */
    z-index: 10;
  }
  .slick-prev-custom, .slick-next-custom {
    pointer-events: auto; /* ボタン自体はタップ可能に */
    background: #003894; /* 濃い青色の背景（画像参考） */
    color: #ffffff;
    border: none;
    width: 40px;
    height: 40px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background 0.2s;
    position: relative;
  }
  .top-movie-container .slick-prev-custom::before, .top-movie-container .slick-next-custom::before {
    content: "";
    display: block;
    width: 16px;
    height: 14px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
  .top-movie-container .slick-next-custom::before {
    background-image: url(../image/productfacility/arrow.svg);
  }
  .top-movie-container .slick-prev-custom::before {
    background-image: url(../image/productfacility/arrow.svg);
    transform: translate(-50%, -50%) rotate(180deg);
  }
  .slick-prev-custom {
    margin-left: 10px;
  }
  .slick-next-custom {
    margin-right: 10px;
  }
}
/* トップページ会社概要 */
.top-company-wrapper {
  padding: 150px 0 123px;
  position: relative;
  z-index: 10;
  background: #fff;
}
@media (max-width: 767px) {
  .top-company-wrapper {
    padding: 80px 0 123px;
    position: relative;
    z-index: 10;
    background: #fff;
    padding-bottom: 0;
  }
}
.top-company-container {
  /* clamp(最小値, 推奨値, 最大値) */
  /* 推奨値は 331 / 375 * 100 = 88.26vw */
  width: clamp(331px, 88.26vw, 1207px);
  /* 中央寄せ */
  margin-inline: auto;
  /* 念のため、非常に小さい画面で331px固定だとハミ出すのを防ぐ */
  max-width: 100%;
}
.top-company-wrapper .flex {
  justify-content: space-between;
  gap: 0 95px;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .top-company-wrapper .flex {
    flex-wrap: wrap;
  }
}
.leftarea {
  width: 528px;
}
@media screen and (max-width: 767px) {
  .leftarea {
    width: 100%;
    margin-bottom: 80px;
  }
}
.top-company-title span {
  color: var(--color-blue);
  font-family: var(--font-en);
  font-size: 80px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%; /* 80px */
  display: block;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .top-company-title span {
    color: #003894;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%; /* 40px */
  }
}
.top-company-title {
  color: #191E2E;
  font-family: var(--font-jp);
  font-size: 17px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%; /* 27.2px */
  letter-spacing: 0.51px;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .top-company-title {
    color: #191E2E;
    font-family: "Noto Sans JP";
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: 160%; /* 24px */
    letter-spacing: 0.45px;
    margin-bottom: 40px;
  }
}
ul.top-company-link {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #bebebe;
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  ul.top-company-link {
    margin-bottom: 40px;
  }
}
ul.top-company-link li {
  width: 100%;
  border-bottom: 1px solid #bebebe;
}
ul.top-company-link li a {
  color: var(--color-black);
  font-family: var(--font-jp);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%; /* 38.4px */
  letter-spacing: 0.72px;
  padding: 25px 0;
  position: relative;
  display: flex;
  justify-content: space-between;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  ul.top-company-link li a {
    color: #191E2E;
    font-family: "Noto Sans JP";
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 160%; /* 35.2px */
    letter-spacing: 0.66px;
    padding: 24px 0;
  }
  ul.top-company-link li a div span {
    font-size: 16px;
  }
}
ul.top-company-link li a:hover {
  color: var(--color-blue);
}
ul.top-company-link li a:hover .btn-blue-arrow {
  background-color: #fff;
  border: 1px solid #003894;
  transition: all 0.3s ease;
}
ul.top-company-link li a:hover .btn-blue-arrow:after {
  background-image: url(../image/common/newsarrowsvg.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.rightarea {
  width: 580px;
  position: relative;
}
@media (max-width: 767px) {
  .rightarea {
    position: relative;
    width: 100vw; /* 画面いっぱいに広げる場合 */
    max-width: 375px; /* PCなどで広がりすぎないためのストッパー */
    margin: 0 auto;
    /* 全体の高さを算出 
    一番上の画像の上端(0)から202pxの位置に、高さ228pxの2番目の画像が来るため、
    全体の必要最低限の高さは 202px + 228px = 430px となります。
  */
    height: 114.67vw; /* 430px / 375px * 100 */
  }
}
/* 共通設定 */
.top-companyimage01, .top-companyimage02, .top-companyimage03 {
  position: absolute;
  will-change: transform; /* ブラウザの最適化 */
  transform: translateY(var(--parallax-y, 0)); /* JSから制御 */
}
@media screen and (max-width: 767px) {
  .top-companyimage01, .top-companyimage02, .top-companyimage03 {
    position: absolute;
    object-fit: cover; /* 画像が歪まないようにトリミング */
  }
}
.top-companyimage01 {
  width: 580px;
  height: 399px;
  left: 0;
  top: 0;
}
@media screen and (max-width: 767px) {
  .top-companyimage01 {
    width: 88.27vw; /* 331px / 375px * 100 */
    height: 60.80vw; /* 228px / 375px * 100 */
    top: 0;
    left: 0;
  }
}
.top-companyimage02 {
  width: 360px;
  height: 230px;
  top: 360px;
  left: 177px;
}
@media screen and (max-width: 767px) {
  .top-companyimage02 {
    width: 54.67vw;
    height: 34.93vw;
    top: 62.87vw;
    right: 4.53vw;
    z-index: 2;
    left: auto;
  }
}
.top-companyimage03 {
  width: 230px;
  height: 150px;
  left: 33px;
  top: 599px;
}
@media screen and (max-width: 767px) {
  .top-companyimage03 {
    width: 39.73vw; /* 149px / 375px * 100 */
    height: 25.87vw; /* 97px / 375px * 100 */
    bottom: -10vw;
    left: 5.87vw; /* 22px / 375px * 100 */
    top: auto;
  }
}
.top-companyimage01, .top-companyimage02, .top-companyimage03 {
  /* 中略 */
  transition: transform 0.2s ease-out; /* スクロールに少し遅れて吸い付くような動きになります */
}
/* トップページニュース */
.top-news-wrapper {
  padding: 150px 0 160px;
  background-color: #fff;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .top-news-wrapper {
    padding: 60px 0 110px;
  }
}
.top-news-container {
  /* clamp(最小値, 推奨値, 最大値) */
  /* 推奨値は 331 / 375 * 100 = 88.26vw */
  width: clamp(331px, 88.26vw, 1063px);
  /* 中央寄せ */
  margin-inline: auto;
  /* 念のため、非常に小さい画面で331px固定だとハミ出すのを防ぐ */
  max-width: 100%;
}
.top-news-title {
  /* color: var(--color-black);*/
  font-family: var(--font-jp);
  color: #191e2e;
  /*  font-family: "Noto Sans JP";*/
  font-size: 17px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%; /* 27.2px */
  letter-spacing: 0.51px;
  margin-bottom: 57px;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .top-news-title {
    font-family: "Noto Sans JP";
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: 160%; /* 24px */
    letter-spacing: 0.45px;
    margin-bottom: 40px;
  }
}
.top-news-title span {
  color: var(--color-blue);
  text-align: left;
  font-family: var(--font-en);
  font-size: 80px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%; /* 80px */
  display: block;
}
@media screen and (max-width: 767px) {
  .top-news-title span {
    color: #003894;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%; /* 40px */
    margin-bottom: 10px;
  }
}
/* レイアウト */
.news-flex-container {
  display: flex;
  /* gap: 60px; */
  /* max-width: 1000px; */
  margin: 0 auto 80px;
  /* padding: 40px 20px; */
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .news-flex-container {
    flex-wrap: wrap;
    margin: 0 auto 40px;
  }
}
/* サイドバー */
.company-sidebar {
  /* width: 200px; */
  flex-shrink: 0;
}
.news-category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .top-news-container .news-category-list {
    margin-bottom: 40px;
  }
}
.news-category-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  cursor: pointer;
  color: #333;
  font-weight: bold;
  transition: color 0.3s;
}
.news-category-item a {
  display: flex;
  align-items: center;
  gap: 12px;
}
/* ラジオボタン風の円 */
.category-circle {
  width: 16px;
  height: 16px;
  border: 1px solid #ccc;
  border-radius: 50%;
  position: relative;
  background: #fff;
}
.news-category-item.is-active .category-circle {
  border-color: #003894; /* 濃い青 */
}
.news-category-item.is-active .category-circle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: #003894;
  border-radius: 50%;
}
.news-category-item.is-active .category-name {
  color: #003894;
}
/* ニュースリスト */
.news-list {
  flex-grow: 1;
  border-top: 1px solid #ddd;
  width: 818px;
}
@media screen and (max-width: 768px) {
  .news-list {
    width: 100%;
    width: clamp(331px, 88.26vw, 1160px);
    margin: 0 auto;
  }
}
.news-item {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 25px 0;
  border-bottom: 1px solid #ddd;
  position: relative;
  transition: background-color 0.3s;
}
.news-item__meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .news-item__meta {
    margin-bottom: 8px;
  }
}
.news-date {
  color: #191e2e;
  font-feature-settings: "palt"on;
  font-family: "Noto Sans JP";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 200%; /* 30px */
  letter-spacing: 0.45px;
}
.news-tag {
  color: #003894;
  font-family: "Noto Sans JP";
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%; /* 20.8px */
  letter-spacing: 0.39px;
  padding: 0 8px;
  border: 1px solid #003894;
}
.news-title {
  color: #191e2e;
  font-feature-settings: "palt"on;
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 200%; /* 36px */
  letter-spacing: 0.54px;
  margin: 0;
  padding-right: 40px;
  transition: all 0.3s ease;
  position: relative;
}
/* 右矢印 */
.news-arrow {
  position: absolute;
  right: 15px;
  width: 21px;
  height: 18px;
  bottom: 32px;
}
.news-arrow::after {
  content: ""; /* フォントアイコンがない場合は記号で代用可 */
  display: inline-block;
  /*  background-image: url(../image/top/topnewsarrow.svg);*/
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 21px;
  height: 18px;
}
.news-title:hover .news-arrow {
  right: 0;
}
/* 採用トップページ */
.top-recruit-wrapper {
  padding: 110px 0 80px;
  background-image: url(../image/top/recrut-back-blue.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 20px 20px 0 0;
  position: relative;
  z-index: 10;
  margin-top: -30px;
}
@media screen and (max-width: 767px) {
  .top-recruit-wrapper {
    padding: 76px 0 84px;
    background-image: url(../image/top/recrut-back-blue_sp.png);
    background-size: cover;
    background-size: 110%;
  }
}
.top-recruit-container {
  /* clamp(最小値, 推奨値, 最大値) */
  /* 推奨値は 331 / 375 * 100 = 88.26vw */
  width: clamp(331px, 88.26vw, 1280px);
  /* 中央寄せ */
  margin-inline: auto;
  /* 小さい画面でのハミ出し防止 */
  max-width: 100%;
}
.top-recruit-container h2 {
  color: var(--color-white);
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 82px;
  font-style: italic;
  font-weight: 600;
  line-height: 100%; /* 82px */
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .top-recruit-container h2 {
    text-align: center;
    font-family: Montserrat;
    font-size: 40px;
    font-style: italic;
    font-weight: 600;
    line-height: 100%; /* 40px */
    margin-bottom: 30px;
  }
}
.top-recruit-container h3 {
  color: #fff;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 37px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 55.5px */
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .top-recruit-container h3 {
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; /* 36px */
    margin-bottom: 30px;
  }
}
.top-recruit-container p {
  color: #fff;
  font-feature-settings: "palt"on;
  font-family: "Noto Sans JP";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 250%; /* 37.5px */
  width: 492px;
  margin: 0 auto 40px;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .top-recruit-container p {
    width: 100%;
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 180%; /* 28.8px */
    letter-spacing: 0.48px;
  }
}
.top-recruit-btn-area {
  margin: 0 auto;
  width: 210px;
  height: 64px;
}
.top-recruit-btn-area a span {
  color: #003894;
  font-family: "Noto Sans JP";
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%; /* 24px */
  letter-spacing: 0.45px;
}
.top-recruit-btn-area a:hover span {
  color: #fff;
}
/* トップページ採用のスライダー */
.recrit-slide-area .slider-wrap {
  overflow: hidden;
  width: 100%;
  margin-top: 70px;
}
.recrit-slide-area .track {
  display: flex;
  align-items: center;
  gap: 15px;
  width: max-content;
  animation: scroll 28s linear infinite;
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.recrit-slide-area .card {
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
}
.recrit-slide-area .card.wide {
  width: 350px;
  height: 264px;
}
.recrit-slide-area .card.tall {
  width: 264px;
  height: 350px;
}
.recrit-slide-area .card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}