@charset "utf-8";

.br-pc {
  display: block;
}
.br-sp {
  display: none;
}

html,
body {
  overflow-x: hidden;
}
/*------- ファーストビュー
------------------------------------------------------------*/

/* キャッチコピー 英語*/
.fv-headline {
  position: absolute;
  z-index: 100;
  top: 28vh;
  left: 10%;

  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 150px;
  color: #004ea2;
  line-height: 1em;
}
/* キャッチコピー日本語 */
.fv-headline-jp {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 34px;
  letter-spacing: 0.1em;
  width: 580px;
  height: 80px;
  margin-top: 20px;
  margin-left: 10px;
  position: relative; /* スタックのため */
}
/* 背景の白い台形画像（透過） */
.fv-white {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.fv-white img {
  opacity: 0.7;
  display: block;
}

/* 前面のテキスト（非透過） */
.fv-jp {
  position: absolute;
  top: 46%;
  left: 40px;
  transform: translateY(-50%);
  color: #333;
  z-index: 2;
}
/* ボディコピー */
.fv-bodycopy {
  position: absolute;
  z-index: 100;
  right: 4%;
  bottom: 7vh;

  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 21px;
  line-height: 2em;
}
/* ブルー三角形-下（透過） */
.blue-triangle-2 {
  position: absolute;
  z-index: 100;
  width: 800px;
  right: 0;
  bottom: -15vh;
}
.blue-triangle-2 img {
  opacity: 0.5;
}

/* 動画 */
.movie-section {
  position: absolute;
  top: 158px;
  right: 0;
  width: 95%;
  height: 90vh;
  z-index: 0;
  pointer-events: none;
}
main.be-small .movie-section{
  top: 96px;
}
.movie {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
}
.movie::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 90vh;
  background-color: rgba(0, 0, 0, 0.05); /* 背景の暗さ調整 */
  background-image: radial-gradient(
      rgba(255, 255, 255, 0.5) 30%,
      transparent 31%
    ),
    radial-gradient(rgba(255, 255, 255, 0.5) 30%, transparent 31%);
  background-size: 6px 6px;
  background-position: 0 0, 3px 3px;
  z-index: 1;
  pointer-events: none;
}
.movie video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 90vh;
  object-fit: cover;
  z-index: 0;
}
/* 動画ここまで */
.top-space {
  height: 100vh;
}

/*--------------------------------------------------------
お知らせ
--------------------------------------------------------*/
.news-section {
  margin-top: 230px;
}
.news-section02 {
  margin-top: 80px;
}
.news-contanier {
  max-width: 1200px;
  width: 80%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 auto;
}
/* タイトル */
.news-title {
  width: 35%;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 34px;
  color: #004ea2;
  letter-spacing: 0.1em;
}
/* ボタン */
.news-button {
  display: inline-flex;
  align-items: center;
  background-color: #004ea2; /* 初期背景色 */
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  padding: 16px 45px;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  cursor: pointer;
  margin-top: 20px;

  transition: background-color 1s ease;
  overflow: hidden; /* 中身のスライドがはみ出さないように */
}
.news-button-inner {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: transform 1s ease;
}
.news-button:hover .news-button-inner {
  transform: translateX(20px);
}
/* ホバー時に背景色だけ変える（ボタン本体） */
.news-button:hover {
  background-color: #64b5f6;
}
/* 矢印 */
.arrow-circle {
  display: inline-block;
  width: 32px;
  height: 32px;
  background-color: #fff;
  border-radius: 50%;
  position: relative;
  transition: background-color 1s ease;
}
.arrow-circle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -50%);
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 12px solid #004ea2;
  transition: border-left-color 1s ease;
}
/* ホバー時*/
.news-button:hover .arrow-circle::before {
  border-left-color: #29abe2;
}
.news-item {
  width: 65%;
}
.news-item.w100 {
  width: 100%;
  margin-bottom: 100px;
}

.news-item:last-child {
  border-bottom: 1px solid #999;
}

.news-item.w100:last-child {
  border-bottom: none;
}

.news-item-detail {
  display: flex;
  justify-content: start;
  border-top: 1px solid #999;
  padding: 20px 0;
  color: #333;
  text-decoration: none;
  transition: color 1s ease, opacity 1s ease;
}

.news-item.w100 .news-item-detail:last-of-type {
  border-bottom: 1px solid #999;
  margin-bottom: 100px;
}

/* ホバー */
.news-item-detail:hover {
  color: #29abe2;
}
.news-date {
  font-size: 20px;
  min-width: 180px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-style: normal;
  padding: 16px;
  line-height: 1.8;
}
.news-text {
  font-size: 20px;
  flex-grow: 1;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  padding: 16px;
  line-height: 2rem;
}
.newsdetail .news-text {
  padding: 0;
}
.news-text figure {
  margin: 0 auto 5%;
  width: 100%;
}
.news-text figure img {
    height: auto;
    width: auto;
    max-width: 100%;
    margin: 0 auto;
}

/*--------------------------------------------------------
事業紹介
--------------------------------------------------------*/
.business-section {
  position: relative;
  margin-bottom: 200px;
}
.business-title {
  margin-top: 140px;
  width: 100%;
}
.business-title-eg {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 100px;
  text-align: center;
  color: #e6e6e6;
}
.business-title-jp {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 28px;
  color: #004ea2;
  text-align: center;
  margin-top: -30px;
  letter-spacing: 0.1em;
  margin-bottom: 80px;
}
.business-container {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 auto;
}
.business-img {
  width: 42%;
}
.business-img img {
  height: 400px;
  object-fit: cover;
}
.business-text {
  width: 43%;
  margin-right: 10%;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 22px;
  line-height: 2em;
  letter-spacing: 0.01em;
  margin-top: 20px;
  text-align: justify;
}
.business-body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 20px;
  line-height: 2em;
  letter-spacing: 0.01em;
  margin-top: 40px;
  text-align: justify;
}
/* 上：三角形 */
.small-triangle {
  width: 300px;
  height: 150px;
  background-color: #004ea2;
  clip-path: polygon(0 100%, 100% 0, 0 0);
  margin-top: -430px;
  opacity: 0.6;
  margin-bottom: 320px;
}
.business-container-2 {
  width: 84%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 40px auto 80px;
}
.business-detail {
  width: 18%;
  display: block;
  text-decoration: none;
  color: #000;
  transition: opacity 1s ease;
}
.business-detail img {
  transition: filter 1s ease;
}
.business-detail:hover img {
  filter: brightness(60%);
}
/* 各ブロック：三角形 */
.triangle-detail {
  width: 50%;
  height: 8vh;
  background-color: #5ca3d4;
  clip-path: polygon(0 100%, 100% 100%, 100% 0);
  margin-top: -6.5vh;
  margin-left: 54%;
  opacity: 0.5;
  margin-bottom: 20px;
}
.business-detail-item {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 22px;
  letter-spacing: 0.1em;

  display: flex;
  align-items: center; /* 垂直方向（上下）の中央揃え */
  justify-content: center; /* 水平方向（左右）の中央揃え ← これが必要！ */
  gap: 8px;
  transition: transform 1s ease;
}
.business-detail:hover .business-detail-item {
  transform: translateX(20px);
}
.btn-icon {
  width: 28px;
  height: 28px;
  background-color: #004ea2;
  border-radius: 50%;
  position: relative;
  transition: background-color 1s ease;
}
.btn-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-30%, -50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 0 7px 10px;
  border-color: transparent transparent transparent white;
}
/* ブルー三角形-下（透過） */
.blue-triangle-business {
  position: absolute;
  z-index: -10;
  width: 80%;
  right: 0;
  bottom: -10vh;
}
.blue-triangle-business img {
  opacity: 0.5;
}
/*--------------------------------------------------------
工事経歴
--------------------------------------------------------*/
/* ブルー三角形-上） */
.blue-triangle-history {
  width: 20%;
}

.history-title {
  margin-top: -100px;
  width: 100%;
}
.history-title-eg {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 100px;
  text-align: right;
  color: #e6e6e6;
  line-height: 1em;
  margin-right: 8%;
}
.history-title-jp {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 28px;
  color: #004ea2;
  text-align: right;
  margin-top: -30px;
  letter-spacing: 0.1em;
  margin-bottom: 40px;
  margin-right: 8%;
}
.history-pickup {
  width: 80%;
  max-width: 1200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto 60px;
}
.history-pic {
  width: 45%;
  margin: 40px;
  position: relative;
  height: 300px;
}
.history-pic img {
  height: 300px;
  object-fit: cover;
}
/* ピックアップ：ラベル */
.pickup-label {
  width: 180px;
  height: 50px;
  background-color: #004ea2;

  text-align: center;
  line-height: 50px;
  clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);

  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.05em;
  font-size: 26px;
  color: white;

  position: absolute;
  top: -10px;
  right: -30px;
}
.history-text {
  width: 35%;
  margin: 40px;
  padding-top: 0px;
}
.history-category {
  background-color: #e6e6e6;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 28px;
  letter-spacing: 0.1em;
  padding: 14px 40px;
  margin-bottom: 10px;
}
.history-detail {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 20px;
  letter-spacing: 0.1em;
  padding: 20px 40px;
  border-bottom: solid 1px #e6e6e6;
}
/* ボタン */
.pickup-button {
  display: inline-flex;
  align-items: center;
  background-color: #004ea2; /* 初期背景色 */
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  padding: 16px 60px;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  cursor: pointer;
  margin-top: 37px;

  transition: background-color 1s ease;
  overflow: hidden; /* 中身のスライドがはみ出さないように */
}
.pickup-button-inner {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: transform 1s ease;
}
.pickup-button:hover .pickup-button-inner {
  transform: translateX(20px);
  color: #fff;
}
/* ホバー時に背景色だけ変える（ボタン本体） */
.pickup-button:hover {
  background-color: #64b5f6;
}

/* バナーエリア */
.history-banner {
  width: 100%;
  background-color: #004ea2;
  padding: 100px;
}
.history-content {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto;
}
.history-btn {
  width: 30%;
  position: relative;
}
.history-btn-title {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, 0); /* ← X軸：中央寄せ、Y軸：動かさない */
  font-size: 24px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #fff;
  line-height: 1.2em;
  width: 90%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto;
  transition: transform 1s ease;
}
.history-btn:hover .history-btn-title {
  transform: translate(calc(-50% + 20px), 0);
}
.history-btn img {
  transition: filter 1s ease;
}
.history-btn:hover img {
  filter: brightness(60%);
}

.history-btn-catg2 {
  margin-top: -15px;
}
.arrow-circle2 {
  display: inline-block;
  width: 28px;
  height: 28px;
  margin-left: 12px;
  background-color: #fff;
  border-radius: 50%;
  position: relative;
}
.arrow-circle2::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -50%);
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 12px solid #004ea2;
}

/*--------------------------------------------------------
当社の強み
--------------------------------------------------------*/
.strg-section {
  width: 100%;
  margin: 160px auto;
}
.strg-back {
  width: 94%;
  margin-left: 6%;
  height: 680px;
  background-image: url("../images/strg-back.jpg");
  background-size: cover;

  position: relative;
}
/* タイトル */
.strg-title {
  padding-top: 80px;
  width: 84%;
  margin-left: 16%;
}
.strg-title-eg {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 100px;
  text-align: left;
  color: #fff;
  line-height: 1em;
}
.strg-title-jp {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 28px;
  color: #004ea2;
  text-align: left;
  margin-top: -30px;
  letter-spacing: 0.1em;
  margin-bottom: 40px;
  margin-right: 8%;
}
/* グレー三角形 */
.gray-triangle {
  width: 360px;
  height: 160px;
  background-color: #e6e6e6;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  position: absolute;
  top: -20px;
  left: -20px;
  opacity: 0.7;
}
.strg-text {
  margin: 60px auto;
  width: 600px;
  font-size: 22px;
  line-height: 2em;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
}
.strg-btn {
  margin: 40px auto;
  width: 600px;
  font-size: 22px;
  line-height: 2em;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  background-color: #004ea2;
  color: #fff;
  text-align: center;
  padding: 15px;

  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center; /* ← アイコンとテキストを縦方向中央揃え */
  justify-content: center; /* ← 横方向中央揃え */
  flex-wrap: nowrap; /* ← 改行させない */
  gap: 0px; /* ← テキストとアイコンの間隔 */
  transition: background-color 1s ease;
}
/* ホバー時：背景色変更 */
.strg-btn:hover {
  background-color: #29abe2;
}
.arrow-circle-strg {
  display: inline-block;
  width: 28px;
  height: 28px;
  margin-left: 8px;
  margin-top: 2px;
  background-color: #fff;
  border-radius: 50%;
  position: relative;
}
.arrow-circle-strg::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -50%);
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 12px solid #004ea2;
}
.strg-btn-text,
.arrow-circle-strg {
  transition: transform 1s ease;
}

/* ホバー時：両方を20px右へ */
.strg-btn:hover .strg-btn-text,
.strg-btn:hover .arrow-circle-strg {
  transform: translateX(20px);
}

/*--------------------------------------------------------
求人情報
--------------------------------------------------------*/
.recruit-title {
  width: 94%;
  margin-right: 6%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 100px;
}
/* タイトル */
.recruit-title-eg {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 180px;
  color: #64b5f6;
  line-height: 1em;
}
.recruit-title-jp {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 28px;
  color: #004ea2;
  text-align: left;
  margin-top: 100px;
  margin-right: 10px;
  letter-spacing: 0.1em;
}
.recruit-content {
  position: relative;
  width: 94%;
  margin-right: 6%;
  background-color: #64b5f6;
  margin-top: -30px;
}
.recruit-inner {
  width: 86%;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 100px;
  padding-bottom: 40px;
}
.recruit-catch {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 32px;
  color: #fff;
  text-align: center;
  letter-spacing: 0.1em;
}
.recruit-body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 22px;
  color: #fff;
  text-align: center;
  letter-spacing: 0.1em;
  margin-top: 40px;
  line-height: 1.8em;
}
.recruit-container-1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 60px;
}
.recruit-container-1-box {
  position: relative;
}
.recruit-container-1-pic {
  width: 46%;
  border: solid 3px #004ea2;
}
.recruit-btn {
  position: absolute;
  z-index: 10;
  bottom: 0;
  right: 0;

  width: 340px;
  font-size: 22px;
  line-height: 2em;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  background-color: #004ea2;
  color: #fff;
  text-align: center;
  padding: 15px;
  border: solid 3px #004ea2;

  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center; /* ← 縦方向センターに追加 */
  overflow: hidden;
}
.recruit-btn-inner {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.8s ease;
}
.recruit-link:hover .recruit-btn-inner {
  transform: translateX(20px);
}
.recruit-link img {
  transition: filter 1s ease;
}
.recruit-link:hover img {
  filter: brightness(60%); /* 数値が小さいほど暗い（100% = 元の明るさ） */
}
.recruit-container-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 60px;
}
.recruit-container-2-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  width: 100%;
  justify-content: center;
}
/* スライドさせる対象にトランジション */
.recruit-content-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: transform 0.8s ease;
}
/* テキストの色変更に備えてアニメーション */
.recruit-btn-text {
  transition: color 0.8s ease;
}
/* ホバー時：スライド＆文字色変更 */
.recruit-container-2-item:hover .recruit-content-wrapper {
  transform: translateX(20px);
}

.recruit-btn-1 {
  width: 100%;
  font-size: 28px;
  line-height: 1.6em;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  background-color: #004ea2;
  color: #fff;
  text-align: center;
  padding: 30px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center; /* ← アイコンとテキストを縦方向中央揃え */
  justify-content: center; /* ← 横方向中央揃え */
  flex-wrap: nowrap; /* ← 改行させない */
  gap: 0px; /* ← テキストとアイコンの間隔 */
  transition: background-color 1s ease;
  position: relative;
}

.recruit-btn-2 {
  width: 46%;
  font-size: 22px;
  line-height: 1.6em;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  background-color: #004ea2;
  color: #fff;
  text-align: center;
  padding: 30px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center; /* ← アイコンとテキストを縦方向中央揃え */
  justify-content: center; /* ← 横方向中央揃え */
  flex-wrap: nowrap; /* ← 改行させない */
  gap: 0px; /* ← テキストとアイコンの間隔 */
  transition: background-color 1s ease;
  position: relative;
}

/* ボタンの右上三角形 */
.triangle-recruit {
  position: absolute;
  width: 80px;
  height: 50px;
  background-color: #e6e6e6;
  clip-path: polygon(0 0, 100% 0, 0 100%);

  top: 0;
  left: 0;
  opacity: 0.3;
}
.recruit-btn-3-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%; /* 必要に応じて */
}
.recruit-btn-3 {
  margin: 100px auto;
  width: 600px;
  font-size: 22px;
  line-height: 2em;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  background-color: #fff;
  color: #004ea2;
  text-align: center;
  padding: 15px;

  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: center;
  transition: background-color 1s ease;
}
/* 外側リンク調整（すでにある場合はOK） */
.recruit-link-3 {
  display: inline-block;
  text-decoration: none;
  color: inherit;
}
/* 横並びにして中央寄せ */
.recruit-content-wrapper-3 {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: transform 0.8s ease;
}

/* ホバー時に中身だけスライド */
.recruit-link-3:hover .recruit-content-wrapper-3 {
  transform: translateX(20px);
}
.recruit-link-3:hover .recruit-btn-3 {
  background-color: #d3e6f6;
}
.arrow-circle-recruit {
  display: inline-block;
  width: 28px;
  height: 28px;
  margin-left: 12px;
  margin-top: 2px;
  background-color: #004ea2;
  border-radius: 50%;
  position: relative;
}
.arrow-circle-recruit::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -50%);
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 12px solid #fff;
}
.triangle-recruit-2 {
  position: absolute;
  right: -20px;
  bottom: -20px;
  width: 500px;
  height: 280px;
  background-color: #e6e6e6;
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  opacity: 0.7;
}

/*--------------------------------------------------------
  企業情報
--------------------------------------------------------*/
.company-content {
  width: 100%;
  height: 700px;
  background-image: url("../images/company-back.jpg");
  background-size: cover;
  margin-top: 160px;
}
.company-title {
  width: 84%;
  margin: 0 auto;
}
.company-title-eg {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 100px;
  text-align: right;
  color: #e6e6e6;
  padding-left: 100px;
  padding-top: 80px;
}
.company-title-jp {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 28px;
  color: #004ea2;
  text-align: right;
  margin-top: -30px;
  letter-spacing: 0.1em;
  margin-bottom: 80px;
}
.company-container {
  width: 86%;
  max-width: 1600px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
}
.company-item-wrapper {
  width: 23%;
}
.company-item {
  position: relative;
}
.company-btn {
  position: absolute;
  z-index: 10;
  top: 35%;

  width: 100%;
  font-size: 22px;
  line-height: 2em;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  background-color: #004ea2;
  opacity: 0.8;
  color: #fff;
  text-align: center;
  padding: 15px;
  border: solid 3px #004ea2;

  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: center;
}

.company-btn-inner {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: transform 1s ease;
}
.company-link img {
  transition: filter 1s ease;
}

.company-link:hover img {
  filter: brightness(60%);
}
/* ホバー時に中身だけ右にスライド */
.company-link:hover .company-btn-inner {
  transform: translateX(20px);
}
/* ホバー時：背景色変更 */
.strg-btn:hover {
  background-color: #29abe2;
}

.arrow-circle-company {
  display: inline-block;
  width: 28px;
  height: 28px;
  margin-left: 8px;
  margin-top: 3px;
  background-color: #fff;
  border-radius: 50%;
  position: relative;
}
.arrow-circle-company::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -50%);
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 12px solid #004ea2;
}
.arrow-circle-company {
  transition: transform 1s ease;
}

/*--------------------------------------------------------
  施工会社募集
--------------------------------------------------------*/
.partner-section {
  width: 86%;
  max-width: 1400px;
  margin: 160px auto;
  background-color: #004ea2;
}
.partner-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 90%;
  margin: 0 auto;
}
.partner-pic {
  width: 45%;
  padding-top: 80px;
  padding-bottom: 80px;
  height: 330px;
}
.partner-pic img {
  height: 330px;
  object-fit: cover;
}
.partner-text {
  width: 50%;
  padding-top: 80px;
  padding-bottom: 80px;
}
.partner-catch {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 34px;
  color: #004ea2;
  text-align: center;
  letter-spacing: 0.1em;
  background-color: #fff;
  width: 100%;
  padding: 20px;
}
.partner-body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 20px;
  color: #fff;
  text-align: left;
  letter-spacing: 0.1em;
  width: 100%;
  padding: 20px;
  line-height: 2em;
  margin-top: 20px;
}
.partner-link {
  display: inline-block;
  text-decoration: none;
  color: inherit;
}
.partner-btn {
  margin-top: 30px;
  width: 360px;
  font-size: 22px;
  line-height: 2em;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  background-color: #fff;
  color: #004ea2;
  text-align: center;
  padding: 15px;

  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  transition: background-color 1s ease;
}
/* 中身を横並びにして動かす */
.partner-btn-inner {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: transform 1s ease;
}

/* ホバーで背景色と中身のスライド */
.partner-link:hover .partner-btn {
  background-color: #d3e6f6;
}
.partner-btn:hover .partner-btn-inner {
  transform: translateX(20px);
}
/*--------------------------------------------------------
  お問い合わせ
--------------------------------------------------------*/
.contact-section {
  width: 100%;
  margin: 0 auto;
  background-color: #d3e6f6;
  padding-bottom: 100px;
}
.contact-title {
  padding-top: 140px;
  width: 100%;
}
.contact-body {
  margin-bottom: 60px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 22px;
  text-align: center;
}
.contact-title-eg {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 100px;
  text-align: center;
  color: #fff;
}
.contact-title-jp {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 28px;
  color: #004ea2;
  text-align: center;
  margin-top: -30px;
  letter-spacing: 0.1em;
  margin-bottom: 80px;
}
.contact-inner {
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;

  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 auto;
}
.contact-item {
  width: 46%;
  background-color: #004ea2;
  transition: background-color 1s ease;
}
.contact-item:hover {
  background-color: #64b5f6;
}
.contact-item.tel {
  pointer-events: none;
}
.bottom-contact-btn {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
}
.bottom-contact-pict {
  display: block;
  margin: 60px auto 40px;
  width: 140px;
  transition: none;
}
.bottom-contact-text {
  color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 20px;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 40px;
  letter-spacing: 0.1em;
  transition: none; /* filter削除 */
}
/* 電話番号 */
.bottom-tel {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.bottom-tel-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px; /* アイコンと番号の間のスペース */
  margin-top: 110px;
}
.bottom-icon {
  width: 36px; /* 必要に応じて調整 */
  height: auto;
}
.bottom-tel-number {
  font-size: 42px; /* 必要に応じて調整 */
  color: #fff; /* 白にしたい場合 */
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.08em;
}

/*--------------------------------------------------------
  フッター
--------------------------------------------------------*/
.site-map {
  width: 86%;
  max-width: 1200px;
  margin: 100px auto 60px;
  display: flex;
  justify-content: space-between; /* カラムを左右に配置 */
  gap: 40px; /* カラム間スペース */
  letter-spacing: 0.1em;
}
.site-map-column {
  flex: 1;
}
.map-block {
  margin-bottom: 32px;
}
.map-title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 22px;
  color: #004ea2;

  display: flex;
  align-items: center;
  margin-bottom: 20px;
  text-decoration: none;
  transition: color 1s ease, filter 1s ease;
}
.map-title:hover {
  color: #64b5f6;
}
.icon-square {
  width: 16px;
  height: 16px;
  background-color: #004ea2;
  display: inline-block;
  margin-right: 8px;
}
.map-block ul {
  list-style: none;
  padding-left: 20px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
}
.map-block ul li a {
  transition: color 1s ease;
}

ul li a:hover {
  color: #64b5f6;
}
.map-block ul li {
  margin-bottom: 18px;
  position: relative;
  padding: 0 0 0 22px;
  line-height: 1.4;
}

.map-block ul li a::before {
    content: "";
    position: absolute;
    top: 0.4em;
    left: 0;
    width: 8px;
    height: 8px;
    border-top: 2px solid #004ea2;
    border-right: 2px solid #004ea2;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
/*--------------------------------------------------------
  フッター：会社情報
--------------------------------------------------------*/
.footer-info {
  margin-top: 80px;
  text-align: center;
  padding: 40px 20px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.footer-business {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  margin-bottom: 30px;
  font-size: 22px;
}

.footer-logo img {
  max-width: 500px;
  height: auto;
  margin-bottom: 16px;
  transition: opacity 1s ease;
}
.footer-logo a:hover img {
  opacity: 0.5;
}
.footer-address {
  font-size: 22px;
  line-height: 1.8;
  margin-bottom: 34px;
  letter-spacing: 0.1em;
}
.footer-telfax {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 40px;
  margin-bottom: 60px;
  letter-spacing: 0.08em;
}

.footer-copy {
  font-size: 16px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  margin-bottom: 60px;
}

/*--------------------------------------------------------
  ふわっと
--------------------------------------------------------*/
/* アニメーション */
.sa {
  opacity: 0;
  transition: all 1s ease;
}

/* 表示時 */
.sa.show {
  opacity: 1;
  transform: translate(0, 0);
}

.sa--up {
  transform: translate(0, 100px);
}

.sa--lr {
  transform: translate(-100px, 0);
}

.sa--rl {
  transform: translate(100px, 0);
}

/* ページネーション */
.pagination {
  display: flex;
  justify-content: center;
}

.pagination a {
  color: black;
  float: left;
  padding: 8px 16px;
  text-decoration: none;
  border: 1px solid #ddd;
}

.pagination span {
  padding: 8px 16px;
  display: inline-block;
}

.pagination .page-numbers.current {
  background-color: #004ea2;
  padding: 8.5px 16px;
  color: white;
}

/* お知らせ詳細画面 */
.news-contanier .newsdetail {
  width: 100%;
  padding: 80px 0;
  font-size: 20px;
}

.news-contanier .newsdetail .news-date {
  text-align: right;
  margin-bottom: 30px;
}

.news-contanier .newsdetail .btns {
  padding: 16px;
  margin-top: 80px;
  text-align: center;
  font-size: 18px;
}
