@charset "UTF-8";
/* CSS Document */
/*======= トップ画像エリア =======*/
.top-main {
  width: 100%;
  display: flex;
  height: 700px;
  overflow: hidden !important;
  box-sizing: border-box;
  position: relative;
  /* アニメーションキー */
}
@media screen and (max-width: 768px) {
  .top-main {
    height: 600px;
  }
}
@media screen and (max-width: 567px) {
  .top-main {
    height: 500px;
  }
}
.top-main__img {
  width: calc(100% - 80px);
  height: auto;
  position: relative;
}
@media screen and (max-width: 768px) {
  .top-main__img {
    width: 100%;
  }
}
.top-main__img img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
.top-main__scroll {
  /*スクロール*/
  width: 80px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
@media screen and (max-width: 768px) {
  .top-main__scroll {
    display: none;
  }
}
.top-main__scroll p {
  font-size: 10px;
  letter-spacing: 1px;
  writing-mode: vertical-rl;
  /* 縦書き (右から左) */
  text-orientation: mixed;
  /* 縦書きでも英数字を回転しない */
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0;
  color: black;
}
.top-main__scroll p:after {
  position: absolute;
  display: block;
  content: "";
  width: 0.5px;
  height: 0;
  /* 初期状態: 高さ0 */
  background: black;
  top: -225px;
  left: 50%;
  transform: translateX(-50%);
  animation: lineGrow 4s linear infinite;
  /* アニメーションを適用 */
}
@media screen and (max-width: 567px) {
  .top-main__scroll p:after {
    top: -115px;
    animation: lineGrow_SP 3s linear infinite;
  }
}
@keyframes lineGrow {
  0% {
    height: 0;
    /* ラインが表示されない */
  }
  100% {
    height: 200px;
    /* ラインが完全に伸びる */
  }
}
@keyframes lineGrow_SP {
  0% {
    height: 0;
    /* ラインが表示されない */
  }
  100% {
    height: 100px;
    /* ラインが完全に伸びる */
  }
}
.top-main__txt {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  z-index: 9;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .top-main__txt {
    overflow: hidden;
  }
}
.top-main__txt p {
  width: -moz-fit-content;
  width: fit-content;
  background: black; 
  color: white !important;
  font-size: clamp(1.8rem, 1.3714rem + 2.8571vw, 3.2rem);
  letter-spacing: 2px;
  font-weight: 500;
  padding: 0 25px;
  opacity: 0.95;
}
@media screen and (max-width: 768px) {
	.top-main__txt p {
background: rgba(0, 0, 0, 0.85); /* 背景半透明 */
	}
}
@media screen and (max-width: 360px) {
  .top-main__txt p {    
  font-size: 2rem;
	  letter-spacing:1px;
	  
  }
}
@media screen and (max-width:300px) {
  .top-main__txt p {
    display: none;
  }
}
.top-main__txt p.lead_01 {
  margin: -100px 25px 0 0;
  mix-blend-mode: normal;
}
@media screen and (max-width: 768px) {
  .top-main__txt p.lead_01 {
    margin: 0 10% 0 0;
  }
}
@media screen and (max-width: 567px) {
  .top-main__txt p.lead_01 {
    margin: -100px 10% 0 0;
  padding: 3px 25px 5px 25px;
  }
}
.top-main__txt p.lead_02 {
  margin: 50px -50px 0 0;
  mix-blend-mode: normal;
}
@media screen and (max-width: 768px) {
  .top-main__txt p.lead_02 {
    margin: 150px 0 0 0;
  }
}
@media screen and (max-width: 567px) {
  .top-main__txt p.lead_02 {
    margin: 50px 0 0 0;
  padding: 3px 25px 5px 25px;
  }
}
@media screen and (max-width: 360px) {
  .top-main__txt p.lead_02 {
    margin: 15px 0 0 0;
  }
}
.top-main .img-sankaku {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  z-index: 9;
  /* 乗算ブレンド */
  mix-blend-mode: multiply;
}
.top-main .img-sankaku img {
  width: 30%;
  max-width: 400px;
  height: auto;
  opacity: 1;
}

/*======= トップメイン下・字幕エリア =======*/
.top-sub {
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  margin-bottom: 75px;
  /* アニメーションキー */
}
@media screen and (max-width: 567px) {
  .top-sub {
    margin-bottom: 45px;
  }
}
.top-sub__ttl {
  position: relative;
  overflow: hidden !important;
  /* デバイス幅を超える部分を非表示に */
  height: 75px;
  /* 高さを固定 */
  padding: 15px 0;
}
@media screen and (max-width: 768px) {
  .top-sub__ttl {
    height: 60px;
    padding: 15px 0;
  }
}
.top-sub__ttl .image-wrapper {
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  display: flex;
  position: absolute;
  width: 5250px;
  /* 画像の幅をデバイス幅に応じて2倍以上に */
  animation: marquee 30s linear infinite;
  /* アニメーション適用 */
}
@media screen and (max-width: 567px) {
  .top-sub__ttl .image-wrapper {
    width: 4200px;
    animation: marquee_sp 30s linear infinite;
  }
}
.top-sub__ttl .image-wrapper img {
  width: auto;
  height: 75px;
  flex-shrink: 0;
  overflow: hidden !important;
  /* サイズが変わらないように固定 */
}
@media screen and (max-width: 768px) {
  .top-sub__ttl .image-wrapper img {
    height: 60px;
  }
}
@keyframes marquee {
  0% {
    transform: translateX(0);
    /* 開始位置 */
  }
  100% {
    transform: translateX(-2799.83px);
  }
}
@keyframes marquee_sp {
  0% {
    transform: translateX(0);
    /* 開始位置 */
  }
  100% {
    transform: translateX(-2100px);
  }
}
.top-sub__slider {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-flow: row wrap;
  padding-left: 15%;
  gap: 0;
  overflow-x: hidden;
}
.top-sub__slider li {
  width: 25%;
  aspect-ratio: 3/1.8;
  -o-object-fit: cover;
     object-fit: cover;
  padding: 0;
  margin: 0;
}
.top-sub__slider li .swiper-container-01,
.top-sub__slider li .swiper-container-02 {
  width: 100%;
  aspect-ratio: 3/1.8;
  /* 必要に応じて高さを調整 */
  overflow: hidden;
}
.top-sub__slider li .swiper-container-01 .swiper-slide img,
.top-sub__slider li .swiper-container-02 .swiper-slide img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  box-sizing: border-box;
  display: block;
  padding: 0;
  /* 画像をコンテナに合わせて表示 */
}
@media screen and (max-width: 820px) {
  .top-sub__slider {
    padding: 0;
  }
  .top-sub__slider li {
    width: 33.33333%;
  }
  .top-sub__slider li:nth-child(4) {
    display: none;
  }
}
@media screen and (max-width: 567px) {
  .top-sub__slider {
    padding: 0;
  }
  .top-sub__slider li {
    width: 50%;
  }
  .top-sub__slider li:nth-child(3), .top-sub__slider li:nth-child(4) {
    display: none;
  }
}

/*======= 五興について =======*/
.col_2_item .br_1260 {
  display: none;
}
@media screen and (max-width: 1259px) {
  .col_2_item .br_1260 {
    display: block;
  }
}
.col_2_item-img img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
  aspect-ratio: 2/1.8;
}
@media screen and (max-width: 820px) {
  .col_2_item-img img {
    aspect-ratio: 1/1.2;
    /* 中央（左右）上に配置 */
  }
}
.col_2_item-txt-img {
  aspect-ratio: 3/2.5;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
  /* 中央（左右）上に配置 */
}

/*======= データで見る五興 =======*/
@media screen and (max-width: 768px) {
  .in-numbers {
    max-width: initial;
  }
  .in-numbers h3 {
    max-width: 527px;
    margin: 0 auto;
  }
}
.in-numbers__data {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  box-sizing: border-box;
  max-width: 980px;
  margin: 15px auto 0;
}
@media screen and (max-width: 768px) {
  .in-numbers__data {
    max-width: 600px;
  }
}
.in-numbers__data li {
  width: 32%;
  box-sizing: border-box;
  background: #202020;
  position: relative;
  padding: 25px 0 25px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .in-numbers__data li:first-child {
    order: 1;
    width: 50%;
    border-right: 1px solid white;
  }
  .in-numbers__data li:nth-child(2) {
    order: 3;
    width: 100%;
    height: auto;
    border-top: 1px solid white;
  }
  .in-numbers__data li:last-child {
    order: 2;
    width: 50%;
  }
}
@media screen and (max-width: 359px) {
  .in-numbers__data li:first-child {
    order: 1;
    width: 100%;
    border-right: none;
    margin: 0 auto 15px;
  }
  .in-numbers__data li:nth-child(2) {
    order: 2;
    width: 100%;
    border-top: none;
    margin: 0 auto 15px;
  }
  .in-numbers__data li:last-child {
    order: 3;
    width: 100%;
    border-right: none;
    margin: 0 auto 15px;
  }
}
.in-numbers__data li div {
  flex-grow: 1;
}
.in-numbers__data li img:first-child {
  /*背景の画像*/
  position: absolute;
  bottom: 0;
  left: 5%;
  width: 90%;
  z-index: 1;
}
.in-numbers__data li strong {
  color: white;
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: 5px;
  padding-top: 25px;
}
@media screen and (max-width: 768px) {
  .in-numbers__data li strong {
    font-size: 2rem;
    letter-spacing: 2px;
  }
}
.in-numbers__data li p {
  width: 100%;
  color: white !important;
  z-index: 9;
  padding: 5px 20px 0;
  line-height: 1.6;
  max-width: 240px;
  margin: 0 auto;
  z-index: 99 !important;
}
@media screen and (max-width: 768px) {
  .in-numbers__data li p {
    font-size: 1.5rem;
  }
}
.in-numbers__data li img.sankaku {
  position: absolute;
  width: 40%;
  bottom: 0;
  left: 0;
  z-index: 99;
}
.in-numbers__data-item {
  display: flex;
  justify-content: center;
  align-items: baseline;
  z-index: 9;
  padding: 15px 0 10px;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .in-numbers__data-item {
    padding: 0 0 20px;
  }
}
.in-numbers__data-item .count-01,
.in-numbers__data-item .count-02 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: clamp(6rem, -9rem + 31.25vw, 11rem);
  line-height: 100px;
  height: 100px;
  color: white;
  width: -moz-fit-content;
  width: fit-content;
  padding-right: 25px;
  letter-spacing: -2px;
}
@media screen and (max-width: 860px) {
  .in-numbers__data-item .count-01,
  .in-numbers__data-item .count-02 {
    font-size: 10rem;
  }
}
@media screen and (max-width: 768px) {
  .in-numbers__data-item .count-01,
  .in-numbers__data-item .count-02 {
    font-size: 8rem;
    height: 80px;
    padding-right: 20px;
  }
}
.in-numbers__data-item .count-02 {
  letter-spacing: -5px;
  padding-right: 40px;
}
@media screen and (max-width: 768px) {
  .in-numbers__data-item .count-02 {
    padding-right: 35px;
    letter-spacing: -2px;
  }
}
.in-numbers__data-item span {
  position: absolute;
  color: white;
  font-size: 2.4rem;
  line-height: 1;
  font-weight: 600;
  display: flex;
  align-items: center;
  right: 0;
  bottom: 10%;
}
.in-numbers__data-item span b {
  display: none;
}
@media screen and (max-width: 768px) {
  .in-numbers__data-item span {
    font-size: 2rem;
  }
  .in-numbers__data-item span b {
    display: block;
    font-size: 1em;
    line-height: 1;
    color: white;
  }
}
.in-numbers__data-item span small {
  color: white;
  font-size: 0.5em;
  display: inline-block;
  margin: 0 0 0 -0.3em;
  letter-spacing: 0;
  writing-mode: vertical-rl;
  /* テキストを縦書きに */
  text-orientation: upright;
  /* 文字を正しい方向に */
}
@media screen and (max-width: 768px) {
  .in-numbers__data-item span small {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .in-numbers__data li:nth-child(2) img:first-child {
    height: 100%;
    width: auto;
    left: initial;
    right: 3%;
  }
  .in-numbers__data li:nth-child(2) .count-02 {
    letter-spacing: -2px;
  }
  .in-numbers__data li:nth-child(2) span {
    right: -1.5em;
  }
  .in-numbers__data li:nth-child(2) p {
    max-width: 300px;
  }
  .in-numbers__data li:nth-child(2) img.sankaku {
    width: 20%;
  }
}
@media screen and (max-width: 359px) {
  .in-numbers__data li:nth-child(2) img:first-child {
    height: auto;
    right: initial;
    position: absolute;
    bottom: 0;
    left: 5%;
    width: 90%;
    z-index: 1;
  }
  .in-numbers__data li:nth-child(2) img.sankaku {
    width: 40%;
  }
  .in-numbers__data li:nth-child(2) b {
    display: none;
  }
  .in-numbers__data li:nth-child(2) span {
    right: 0.5em;
  }
  .in-numbers__data li:nth-child(2) p {
    max-width: 240px;
  }
}

/*======= 五興の強み =======*/
.top-strength .red {
  font-weight: 700;
}
.top-strength .red b {
  font-size: 1.1em;
  font-weight: 700;
  color: #b71c26;
  letter-spacing: -2px;
}
.top-strength__img {
  position: relative;
  max-width: 680px;
  height: auto;
  margin: 25px auto;
}
.top-strength__img img {
  width: 100%;
  display: block;
  margin: 0 auto;
}
.top-strength__img-01, .top-strength__img-02, .top-strength__img-03 {
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 567px) {
  .top-strength .br_tb {
    display: none !important;
  }
  .top-strength .red {
    display: inline;
  }
}

/*======= 事業紹介 =======*/
.top-business {
  padding-bottom: 50px;
}
.top-business h3 {
  margin-bottom: 15px;
}
.top-business__item {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 45px;
  box-sizing: border-box;
}
@media screen and (max-width: 1024px) {
  .top-business__item {
    align-items: stretch;
  }
}
.top-business__item-img {
  width: 46%;
}
.top-business__item-img img {
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1024px) {
  .top-business__item-img {
    width: 40%;
  }
  .top-business__item-img img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media screen and (max-width: 768px) {
  .top-business__item-img {
    display: none;
  }
}
.top-business__item-txt-R, .top-business__item-txt-L {
  width: 50%;
  padding-right: 5%;
  box-sizing: border-box;
}
@media screen and (max-width: 1024px) {
  .top-business__item-txt-R, .top-business__item-txt-L {
    width: 56%;
  }
}
@media screen and (max-width: 768px) {
  .top-business__item-txt-R, .top-business__item-txt-L {
    width: 100%;
  }
  .top-business__item-txt-R .number-ttl span, .top-business__item-txt-L .number-ttl span {
    display: none;
  }
}
.top-business__item-txt-R .number-ttl, .top-business__item-txt-L .number-ttl {
  margin-bottom: 15px;
}
.top-business__item-txt-R .number-ttl img, .top-business__item-txt-L .number-ttl img {
  /*■■■*/
  width: 7px;
  padding-bottom: 0 !important;
}
.top-business__item-txt-R h5, .top-business__item-txt-L h5 {
  width: 100%;
  box-sizing: border-box;
  font-size: 2.8rem;
}
.top-business__item-txt-R h5 .svg-inline--fa, .top-business__item-txt-L h5 .svg-inline--fa {
  color: #b71c26;
  font-size: 0.9em;
}
.top-business__item-txt-R h5 span, .top-business__item-txt-L h5 span {
  margin: 10px 0;
  width: 90%;
  background: #202020;
  padding: 0 0 0 2em;
  font-size: 1.5rem;
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.1em;
  transform: skew(-15deg);
  /* 背景を45度斜体に */
  border-left: 8px solid #b71c26;
  /* 左端に赤いボーダー */
  color: white;
  /* テキストの色を目立たせる（必要なら） */
  display: flex;
  align-items: center;
}
@media screen and (max-width: 249px) {
  .top-business__item-txt-R h5 span, .top-business__item-txt-L h5 span {
    display: none;
  }
}
.top-business__item-txt-R img, .top-business__item-txt-L img {
  display: none;
}
@media screen and (max-width: 768px) {
  .top-business__item-txt-R img, .top-business__item-txt-L img {
    display: block;
    padding-bottom: 15px;
  }
}
@media screen and (max-width: 768px) {
  .top-business__item-txt-R, .top-business__item-txt-L {
    padding: 0;
  }
}
.top-business__item-txt-L {
  padding-right: 0;
  padding-left: 5%;
}
@media screen and (max-width: 768px) {
  .top-business__item-txt-L {
    padding: 0;
  }
}

/*--- 事例紹介 / ---*/
.top-gallery {
  width: 100%;
  overflow-x: hidden;
  padding-bottom: 125px;
}
@media screen and (max-width: 567px) {
  .top-gallery {
    padding: 0 5% 100px;
  }
}
.top-gallery__inner {
  position: relative;
  padding: 25px 0 50px;
  /* 左ボタン */
  /* 右ボタン */
  /* ボタン内のアイコンスタイル */
}
.top-gallery__inner .swiper-slide {
  transition: transform 0.5s ease, opacity 0.5s ease;
}
.top-gallery__inner .swiper-slide img {
  width: 100%;
  aspect-ratio: 3/1.8;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 567px) {
  .top-gallery__inner .swiper-slide img {
    aspect-ratio: 3/2;
  }
}
@media screen and (max-width: 567px) {
  .top-gallery__inner .swiper-slide img {
    aspect-ratio: 3/3;
  }
}
.top-gallery__inner .swiper-slide:not(.swiper-slide-active) {
  transform: scale(0.8);
  /* 80%サイズ */
  opacity: 0.5;
  /* 薄くする場合 */
}
@media screen and (max-width: 567px) {
  .top-gallery__inner .swiper-slide:not(.swiper-slide-active) {
    transform: scale(1);
    opacity: 1;
  }
}
.top-gallery__inner .swiper-button-prev {
  left: initial;
  right: calc(25% + 50px);
  top: initial;
  bottom: -15px;
  /* スライドの左寄りに配置 */
  z-index: 99;
  width: 40px;
}
@media screen and (max-width: 1024px) {
  .top-gallery__inner .swiper-button-prev {
    right: calc(15% + 50px);
  }
}
@media screen and (max-width: 768px) {
  .top-gallery__inner .swiper-button-prev {
    display: none;
  }
}
.top-gallery__inner .swiper-button-next {
  width: 40px;
  left: initial;
  right: 25%;
  top: initial;
  bottom: -15px;
  /* スライドの右寄りに配置 */
  z-index: 999;
}
@media screen and (max-width: 1024px) {
  .top-gallery__inner .swiper-button-next {
    right: 15%;
  }
}
@media screen and (max-width: 768px) {
  .top-gallery__inner .swiper-button-next {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .top-gallery__inner .swiper-button-prev::after,
  .top-gallery__inner .swiper-button-next::after {
    height: 35px;
    /* アイコンの高さ */
    width: 35px;
  }
}
.top-gallery .BTN-wrapper {
  margin-top: 25px;
}

/*--- お知らせ ---*/
.top-news__inner {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 819px) {
  .top-news .BTN_type02 {
    display: none;
  }
}
.top-news_txt {
  width: 70%;
  box-sizing: border-box;
}
@media screen and (max-width: 819px) {
  .top-news_txt {
    width: 100%;
  }
}
.top-news .BTN-wrapper {
  display: none;
}
@media screen and (max-width: 819px) {
  .top-news .BTN-wrapper {
    display: block;
  }
}

/*--- 採用情報 ---*/
.recruit-main {
  width: 100%;
  position: relative;
  overflow-x: hidden !important;
}
.recruit-main .SP_lead {
  width: 100%;
  padding: 0 5%;
  display: none;
  box-sizing: border-box;
}
@media screen and (max-width: 567px) {
  .recruit-main .SP_lead {
    display: block;
  }
}
.recruit-main__top {
  margin: 0 auto;
  position: relative;
  width: 100%;
  max-width: 1260px;
  overflow-x: hidden !important;
}
.recruit-main__top img.recruit_bg {
  width: 100%;
  height: 600px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  /* 起点を中央に設定 */
  opacity: 0;
  /* 初期状態: 非表示 */
  animation: diagonalReveal 1.5s ease forwards;
  /* アニメーション適用 */
  margin-bottom: 80px;
  display: block;
}
@media screen and (max-width: 1024px) {
  .recruit-main__top img.recruit_bg {
    height: 550px;
  }
}
@media screen and (max-width: 567px) {
  .recruit-main__top img.recruit_bg {
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
    aspect-ratio: 1/0.8;
    min-height: 400px;
  }
}
@keyframes diagonalReveal {
  0% {
    opacity: 0;
    -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
            clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    /* 左上で隠れる */
  }
  100% {
    opacity: 1;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    /* 画像全体が表示される */
  }
}
.recruit-main__top img.recruit-mens {
  position: absolute;
  right: 2%;
  bottom: 0;
  height: 80%;
  width: auto;
  z-index: 99;
  opacity: 0;
  /* 初期は透明 */
  animation: faDeIn 0.2s ease-in 0.8s forwards;
  /* 0.2秒のフェードインを1秒遅らせて開始 */
  /* フェードインアニメーションの定義 */
}
@media screen and (max-width: 768px) {
  .recruit-main__top img.recruit-mens {
    right: -8%;
    bottom: 0px;
  }
}
@media screen and (max-width: 567px) {
  .recruit-main__top img.recruit-mens {
    height: 75%;
    right: -8%;
    bottom: 50px;
  }
}
@media screen and (max-width: 299px) {
  .recruit-main__top img.recruit-mens {
    display: none;
  }
}
@keyframes faDeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.recruit-main__top-txt {
  width: 100%;
  max-width: 1480px;
  padding: 0 25px;
  box-sizing: border-box;
  position: absolute;
  z-index: 99;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
@media screen and (max-width: 1499px) {
  .recruit-main__top-txt {
    padding-left: 5%;
  }
}
@media screen and (max-width: 567px) {
  .recruit-main__top-txt {
    top: initial;
    bottom: 40%;
  }
}
.recruit-main__top-txt div {
  position: relative;
  margin: 0 auto;
  height: 100%;
}
.recruit-main__top-txt div h3 {
  font-size: 6rem;
  margin-top: 100px;
}
@media screen and (max-width: 1024px) {
  .recruit-main__top-txt div h3 {
    margin-top: 125px;
  }
}
@media screen and (max-width: 567px) {
  .recruit-main__top-txt div h3 {
    display: none;
  }
}
.recruit-main__top-txt div h5 {
  text-shadow: 2px 2px 0 white, -2px 2px 0 white, 2px -2px 0 white, -2px -2px 0 white;
  /* 左上 */
  filter: drop-shadow(0 2px 2px white);
  padding-bottom: 5px;
}
@media screen and (max-width: 859px) {
  .recruit-main__top-txt div h5 .br_tb {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .recruit-main__top-txt div h5 {
    font-size: 2.3rem;
  }
}
@media screen and (max-width: 567px) {
  .recruit-main__top-txt div h5 {
    font-size: clamp(1.8rem, 1.0222rem + 4.4444vw, 2.6rem);
  }
  .recruit-main__top-txt div h5:nth-child(3) {
    display: none;
  }
  .recruit-main__top-txt div h5 .br_sp {
    display: block !important;
  }
}
.recruit-main__top-txt div button {
  margin-top: 25px;
}
.recruit-main__top-txt div button a {
  letter-spacing: 1px;
}
.recruit-main__top-txt div button .svg-inline--fa {
  padding-left: 10px;
}

#top-SP {
  display: none;
}

@media screen and (max-width: 768px) {
  #top-PC {
    display: none !important;
  }
  #top-SP {
    display: block !important;
  }
}
.main-container {
  width: 100%;
  height: 700px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .main-container {
    height: 600px;
  }
}
@media screen and (max-width: 567px) {
  .main-container {
    height: 500px;
  }
}
.main-container .swiper-slide {
  position: relative;
  height: 100%;
}
.main-container .swiper-slide img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
@media screen and (max-width: 567px) {
  .main-container .swiper-slide img {
    -o-object-fit: cover;
       object-fit: cover;
    /* 画像がコンテナ全体に収まるように */
    -o-object-position: center;
       object-position: center;
    /* 中央に配置 */
    width: 100%;
  }
}
.main-container .swiper-slide p {
  position: absolute;
  bottom: 0;
  right: 25px;
  z-index: 999;
  color: white;
  font-size: 4rem;
  font-weight: 700;
}

/* 初期スタイル */
.top-main,
.top-sub {
  opacity: 0; /* 初期状態で非表示 */
  transition: opacity 0.5s ease-in; /* フェードインのアニメーション */
}

/* フェードイン時のスタイル */
.top-main.show,
.top-sub.show {
  opacity: 1; /* フェードイン後の表示 */
}/*# sourceMappingURL=top.css.map */



/* ======手作業で追加のcss====== */

/*.top-main__txt-SP {
  display: none;
}
@media screen and (max-width: 567px) {
	
	.top-main__txt {		
    display:none;
		
	}
  .top-main__txt-SP {
	  width:100%;	  
  background: black;
  padding: 8px 15px;
	text-align:center;
	  box-sizing:border-box;
	  display:block;
  }
}
.top-main__txt-SP p {
	width:fit-content;
  text-align: left;
	padding:0;
  margin: 0 auto;
  display: block;
  font-size: 2.4rem;
  letter-spacing: 1px;
  font-weight: 500;
  line-height: 1.2;
  color: white !important;
}*/