@charset "utf-8";
@media screen and (max-width:767px) {

 /*------- 共通
------------------------------------------------------------*/
 .br-pc{
  display: none;
 }
 .br-sp{
  display: block;
 }
 
/*------- ファーストビュー
------------------------------------------------------------*/

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

  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 12vw;
  color: #004EA2;
  line-height: 1.1em;
}
/* キャッチコピー日本語 */
.fv-headline-jp {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 5vw;
  letter-spacing: 0.1em;
  width: 94%;
  height: auto;
  margin-top: 12px;
  margin-left: 0%;
  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: 70%;
  left: 15px;
  transform: translateY(-12%);
  color: #333;
  z-index: 2;
}
/* ボディコピー */
.fv-bodycopy{
  position: absolute;
  z-index: 100;
  left: 9%;
  bottom: 6.5svh;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 3.6vw;
  line-height: 1.8em;
}
/* ブルー三角形-下（透過） */
.blue-triangle-2 {
  position: absolute;
  z-index: 100;
  width: 94%;
  right: 0;
  bottom: 0svh;
}
.blue-triangle-2 img {
  opacity: 0.5;
}
/* 動画 */
.movie-section{
  position: absolute;
  top: 68px;
  right: 0;
  width: 95%;
  height: 64svh;
  z-index: -100;
  pointer-events: none; 
}
main.be-small .movie-section{
  top: 68px;
}

.movie {
	position: relative;
	width: 100%;
	height: 64svh;
	overflow: hidden;
}
.movie::after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 64vh;
	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;
  z-index: 1;
}
.movie video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 64vh;
	object-fit: cover;
	z-index: 0;
}
/* 動画ここまで */
.top-space{
  height: 100svh;
}

/*--------------------------------------------------------
お知らせ
--------------------------------------------------------*/
.news-section{
 margin-top: 60px;
}
.news-contanier{
  max-width: 90%;
  width: 90%;
  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: 100%;
  font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 700;
	font-style: normal;
  font-size: 22px;
  color: #004EA2;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
/* ボタン */
.news-button {
  display: inline-flex;
  align-items: center;
  background-color: #004EA2; /* 初期背景色 */
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  padding: 10px 40px;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  cursor: pointer;
  margin-top: 10px;

  transition: background-color 1s ease;
  overflow: hidden; /* 中身のスライドがはみ出さないように */
}
.news-button-inner {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 1.0s ease;
}
.news-button:hover .news-button-inner {
  transform: translateX(20px);
}
/* ホバー時に背景色だけ変える（ボタン本体） */
.news-button:hover {
  background-color: #64B5F6;
}
/* 矢印 */
.arrow-circle {
  display: inline-block;
  width: 20px;
  height: 20px;
  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: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 9px solid #004EA2;
    transition: border-left-color 1s ease;
}
/* ホバー時*/
.news-button:hover .arrow-circle::before {
  border-left-color: #29abe2;
}
.news-item {
  width: 100%;
}
.news-item:last-child {
  border-bottom: 1px solid #999;
}
.news-item-detail{
  display: flex;
  flex-direction: column; 
  justify-content: start;
  border-top: 1px solid #999;
  padding: 10px 0;
  color: #333; 
  text-decoration: none;
  transition: color 1s ease, opacity 1s ease;
}
/* ホバー */
.news-item-detail:hover {
  color: #29abe2;;
}
.news-date {
  font-size: 16px;
  min-width: 180px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-style: normal;
  padding: 6px 6px 0;
}
.news-text {
  font-size: 16px;
  flex-grow: 1;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  padding: 0 6px 6px;
}
.news-contanier .newsdetail {
    padding: 50px 0;
}
/*--------------------------------------------------------
事業紹介
--------------------------------------------------------*/
.business-section{
  position: relative;
  margin-bottom: 40px;
}
.business-title{
  margin-top: 60px;
  width: 100%;
}
.business-title-eg{
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 46px;
  text-align: center;
  color: #e6e6e6;
}
.business-title-jp{
  font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 700;
	font-style: normal;
  font-size: 22px;
  color: #004EA2;
  text-align: center;
  margin-top: -20px;
  letter-spacing: 0.1em;
  margin-bottom: 60px;
}
.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: 96%;
}
.business-img img{
  height: 200px;
  object-fit: cover;
}
.business-text{
  width: 90%;
  margin-right: 5%;
  margin-left: 5%;
  font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 700;
	font-style: normal;
  font-size: 16px;
  line-height: 1.8em;
  letter-spacing: 0.01em;
  margin-top: 10px;
  text-align: justify;
}
.business-body{
  font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 500;
	font-style: normal;
  font-size: 14px;
  line-height: 2em;
  letter-spacing: 0.01em;
  margin-top: 20px;
  text-align: justify;
}
/* 上：三角形 */
.small-triangle {
      width: 150px;
      height: 100px;
      background-color: #004EA2; 
      clip-path: polygon(0 100%, 100% 0, 0 0);
      margin-top: -220px;
      opacity: 0.6;
      margin-bottom: 160px;
}
.business-container-2{
  width: 86%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 20px auto 40px;
}
.business-detail{
  width: 48%;
  display: block;
  text-decoration: none;
  color: #000;
  transition: opacity 1s ease;
}
.business-detail img {
  transition: filter 1.0s ease;
}
.business-detail:hover img {
  filter: brightness(60%);
}
/* 各ブロック：三角形 */
.triangle-detail {
      width: 30%;
      height: 6vh;
      background-color: #5CA3D4; 
      clip-path: polygon(0 100%, 100% 100%, 100% 0);
      margin-top: -4.5vh;
      margin-left: 73%;
      opacity: 0.5;
      margin-bottom: 10px;
}
.business-detail-item{
  font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 700;
	font-style: normal;
  font-size: 16px;
  letter-spacing: 0.1em;

  display: flex;
  align-items: center;       /* 垂直方向（上下）の中央揃え */
  justify-content: center;   /* 水平方向（左右）の中央揃え ← これが必要！ */
  gap: 8px;
  transition: transform 1.0s ease;
  margin-bottom: 40px;
}
.business-detail:hover .business-detail-item {
  transform: translateX(20px);
}
.btn-icon {
  width: 20px;
  height: 20px;
  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(-40%, -50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 9px;
  border-color: transparent transparent transparent white;
}
/* ブルー三角形-下（透過） */
.blue-triangle-business {
  position: absolute;
  z-index: -10;
  width: 80%;
  right: 0;
  bottom: 0vh;
}
.blue-triangle-business img {
  opacity: 0.5;
}

/*--------------------------------------------------------
工事経歴
--------------------------------------------------------*/
/* ブルー三角形-上） */
.blue-triangle-history{
  width: 40%;
}
.history-title{
  margin-top: -40px;
  width: 100%;
}
.history-title-eg{
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 46px;
  text-align: right;
  color: #e6e6e6;
  line-height: 1em;
  margin-right: 4%;
}
.history-title-jp{
  font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 700;
	font-style: normal;
  font-size: 22px;
  color: #004EA2;
  text-align: right;
  margin-top: -20px;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  margin-right: 4%;
}
.history-pickup{
  width: 90%;
  max-width: 90%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto 40px;
}
.history-pic{
  width: 90%;
  margin: 20px;
  position: relative;
  height: 240px;
}
.history-pic img{
  height: 240px;
  object-fit: cover;
}

/* ピックアップ：ラベル */
.pickup-label {
  width: 140px;
  height: 36px;
  background-color: #004EA2;

  text-align: center;
  line-height: 36px;
  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: 16px;
  color: white;

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

  transition: background-color 1s ease;
  overflow: hidden; /* 中身のスライドがはみ出さないように */
}

.pickup-button-inner {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 1.0s ease;
}
.pickup-button:hover .pickup-button-inner {
  transform: translateX(20px);
}
/* ホバー時に背景色だけ変える（ボタン本体） */
.pickup-button:hover {
  background-color: #64B5F6;
}

/* バナーエリア */
.history-banner{
  width: 100%;
  background-color: #004EA2;
  padding: 20px;
}
.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 ;
  padding-top: 20px;
  padding-bottom: 20px;
}
.history-btn{
  width: 90%;
  position: relative;
  height: 140px;
}
.history-btn img{
    height: 140px;
    object-fit: cover;
    transition: filter 1.0s ease;
}
.history-btn-title {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, 0); /* 縦横中央配置 */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px; /* テキストとアイコンの間隔 */
    font-size: 16px;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    color: #fff;
    text-align: center;
    width: auto;
    transition: transform 1s ease;
    line-height: 1.2em;
    width: 90%;
}

.history-btn:hover .history-btn-title {
  transform: translate(calc(-50% + 20px), 0);
}
.history-btn img {
  transition: filter 1.0s ease;
}
.history-btn:hover img {
  filter: brightness(60%);
}

.history-btn-catg2{
    margin: 0;
    line-height: 1.4; /* 2行でも整えやすく */
}

.arrow-circle2 {
    flex-shrink: 0; /* テキストに押されず固定サイズ */
    align-self: center; /* 垂直中央揃え */
    width: 28px;
    height: 28px;
    background-color: #fff;
    border-radius: 50%;
    position: relative;
    margin-top: 0;
}
.arrow-circle2::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-40%, -50%);
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 10px solid #004EA2;
}

.top_history{
    padding: 0 0 40px;
}



/*--------------------------------------------------------
当社の強み
--------------------------------------------------------*/
.strg-section{
  width:100%;
  margin: 80px auto;
}
.strg-back{
width:94%; 
margin-left: 6%;
height: 425px;
background-image: url("../images/strg-back.jpg");
background-size: cover;
position: relative;
}
/* タイトル */
.strg-title{
  padding-top: 60px;
  width: 100%;
  margin-left: 6%;
}
.strg-title-eg{
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 46px;
  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: 22px;
  color: #004EA2;
  text-align: left;
  margin-top: -20px;
  letter-spacing: 0.1em;
  margin-bottom: 40px;
  margin-right: 8%;
}
/* グレー三角形 */
.gray-triangle {
  width: 150px;
  height: 100px; 
  background-color: #e6e6e6;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  position: absolute;
  top: -20px;
  left: -20px;
  opacity: 0.7;
}
.strg-text{
  margin: 20px auto;
  width: 90%;
  font-size: 16px;
  line-height: 2em;
  font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 700;
}
.strg-btn{
  margin: 40px auto;
  width: 90%;
  font-size: 16px;
  line-height: 2em;
  font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 700;
  background-color: #004EA2;
  color: #fff;
  text-align: center;
  padding: 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;
}

/* ホバー時：背景色変更 */
.strg-btn:hover {
  background-color: #29abe2;
}
.arrow-circle-strg {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-left: 10px;
  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: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 9px 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: 100%;
  margin-right: 0%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 20px;
}
/* タイトル */
.recruit-title-eg{
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 56px;
  color: #64B5F6;
  line-height: 1em;
  margin-left: 10px;
  letter-spacing: -0.01em;
}
.recruit-title-jp{
  font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 700;
	font-style: normal;
  font-size: 22px;
  color: #004EA2;
  text-align: left;
  margin-top: 20px;
  margin-right: 10px;
  letter-spacing: 0.1em;
}
.recruit-content{
  position: relative;
  width: 100%;
  margin-right: 0%;
  background-color: #64B5F6;
  margin-top: -10px;
}
.recruit-inner{
  width: 90%;
  max-width: 90%;
  margin: 0  auto;
  padding-top: 40px;
  padding-bottom: 20px;
}
.recruit-catch{
  font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 700;
	font-style: normal;
  font-size: 20px;
  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: 14px;
  color: #fff;
  text-align: center;
  letter-spacing: 0.1em;
  margin-top: 20px;
  line-height: 2em;
}
.recruit-container-1{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 20px;
}
.recruit-container-1-box{
  position: relative;
}
.recruit-container-1-pic{
  width: 100%;
  border: solid 3px #004EA2;
  margin-bottom: 20px;
}
.recruit-btn{
  position: absolute;
  z-index: 10;
  bottom: 0;
  right: 0;
  
  width: 70%;
  font-size: 16px;
  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: 10px;
  border: solid 3px #004EA2;

  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: center;
  
  overflow: hidden;
}
.recruit-btn-inner {
  display: inline-flex;
  align-items: center;
  gap: 0px;
  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: 0px;
}
.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: 0px;
  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: 20px;
  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: 20px 5px;

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

  position: relative;
  margin-bottom: 20px;
}

.recruit-btn-2{
  width: 100%;
  font-size: 16px;
  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: 20px 5px;

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

  position: relative;
  margin-bottom: 20px;
}

/* ボタンの右上三角形 */
.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: 40px auto;
  width: 320px;
  font-size: 16px;
  line-height: 2em;
  font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 700;
  background-color: #fff;
  color: #004EA2;
  text-align: center;
  padding: 10px;

  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: center;
  transition: background-color 1.0s ease;
}
/* 外側リンク調整（すでにある場合はOK） */
.recruit-link-3 {
  display: inline-block;
  text-decoration: none;
  color: inherit;
}
/* 横並びにして中央寄せ */
.recruit-content-wrapper-3 {
  display: inline-flex;
  align-items: center;
  gap: 0px;
  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: 20px;
  height: 20px;
  margin-left: 10px;
  margin-top: 0px;
  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: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 9px solid #fff;
}
.triangle-recruit-2{
  position: absolute;
  right: 0px;
  bottom: -20px;
  width: 100%;
  height: 280px;
  background-color: #e6e6e6;
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  opacity: 0.7;

  display: none;
}


/*--------------------------------------------------------
  企業情報
--------------------------------------------------------*/
.company-content{
width:100%; 
height: 1080px;
background-image: url("../images/company-back.jpg");
background-size: cover;
margin-top: 60px;
background-position: center right 25%;
}
/*---- タイトル ---*/
.company-title {
  width: 90%;
  margin: 0  auto;
}
.company-title-eg{
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 46px;
  text-align: right;
  color: #e6e6e6;
  padding-left: 100px;
  padding-top: 60px;
}
.company-title-jp{
  font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 700;
	font-style: normal;
  font-size: 22px;
  color: #004EA2;
  text-align: right;
  margin-top: -20px;
  letter-spacing: 0.1em;
  margin-bottom: 40px;
}

.company-container{
  width: 80%;
  max-width: 80%;
  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: 100%;
    margin-bottom: 20px;
}
.company-item{
  position: relative;
  height: 200px;
}
.company-item img{
  height: 200px;
  object-fit: cover;
}
.company-btn{
  position: absolute;
  z-index: 10;
  top: 33%;
  
  width: 100%;
  font-size: 18px;
  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 1.0s ease;
}
.company-link img {
  transition: filter 1.0s 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: 20px;
  height: 20px;
  margin-left: 0px;
  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: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 9px solid #004EA2;
}
.arrow-circle-company {
  transition: transform 1s ease;
}

/*--------------------------------------------------------
  施工会社募集
--------------------------------------------------------*/
.partner-section{
  width: 90%;
  max-width: 90%;
  margin: 40px 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: 100%;
  margin: 0 auto;
}
.partner-pic{
  width: 86%;
  padding-top: 40px;
  padding-bottom: 20px;
  margin: 0 auto;
  height: 220px;
  object-fit: cover;
}
.partner-pic img{
  height: 220px;
  object-fit: cover;
}

.partner-text{
  width: 86%;
  padding-top: 20px;
  padding-bottom: 20px;
  margin: 0 auto;
}
.partner-catch{
  font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 700;
	font-style: normal;
  font-size: 22px;
  color: #004EA2;
  text-align: center;
  letter-spacing: 0.1em;
  background-color: #fff;
  width: 100%;
  padding: 10px;
}
.partner-body{
  font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 700;
	font-style: normal;
  font-size: 14px;
  color: #fff;
  text-align: left;
  letter-spacing: 0.1em;
  width: 100%;
  padding: 0px;
  line-height: 2em;
  margin-top: 10px;
}
.partner-link {
  display: inline-block;
  text-decoration: none;
  color: inherit;
}
.partner-btn {
  margin: 20px auto;
  width: 200px;
  font-size: 16px;
  line-height: 2em;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  background-color: #fff;
  color: #004EA2;
  text-align: center;
  padding: 8px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  transition: background-color 1.0s ease;
}
/* 中身を横並びにして動かす */
.partner-btn-inner {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 1.0s 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: 20px;
}
.contact-title{
  padding-top: 40px;
  width: 100%;
}
.contact-body{
  margin-bottom: 30px;
  font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 700;
  font-size: 16px;
  text-align: center;
}
/*----  タイトル ---*/
.contact-title-eg{
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 46px;
  text-align: center;
  color: #fff;
}
.contact-title-jp{
  font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 700;
	font-style: normal;
  font-size: 22px;
  color: #004EA2;
  text-align: center;
  margin-top: -20px;
  letter-spacing: 0.1em;
  margin-bottom: 40px;
}

.contact-inner{
  width: 90%;
  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: 100%;
  background-color: #004EA2;
  transition: background-color 1s ease;
  margin-bottom: 20px;
}
.contact-item.tel{
  pointer-events: auto;
}
.contact-item:hover {
  background-color: #64B5F6;
}
.bottom-contact-btn {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
}
.bottom-contact-pict {
  display: block;
  margin: 30px auto 20px;
  width: 100px;
  transition: none; 
}
.bottom-contact-text {
  color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 20px;
  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: 60px;
  margin-bottom: 60px;
}
.bottom-icon {
  width: 24px; 
  height: auto;
}
.bottom-tel-number {
  font-size: 28px; 
  color: #fff; /* 白にしたい場合 */
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.08em;
}
/*--------------------------------------------------------
  フッター
--------------------------------------------------------*/
.site-map {
  width: 90%;
  max-width: 90%;
  margin: 40px auto 40px;
  display: flex;
  justify-content: space-between; /* カラムを左右に配置 */
  gap: 0px; /* カラム間スペース */
  letter-spacing: 0.1em;
  flex-direction: column;
}
.site-map-column {
  flex: 1;
  width: 100%;
}
.map-block {
  margin-bottom: 20px;
}
.map-title {
  font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 700;
	font-style: normal;
  font-size: 16px;
  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: 12px;
  height: 12px;
  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: 14px;

  display: flex;
  flex-wrap: wrap; /* 折り返し可 */
  gap: 8px;         /* 項目間のスペース（任意） */
  padding-left: 0;  /* デフォルトの左余白を消す */
  list-style: none; /* デフォルトの・を消す */
}
.map-block ul li {
    margin: 0 0 6px;
    padding: 0 0 0 15px;
}
.map-block ul li a {
    display: block;
    padding: 4px 4px;
    font-size: 14px;
    text-decoration: none;
    white-space: nowrap;
  transition: color 1s ease;
}

ul li a:hover {
  color: #64B5F6;
}


.map-block ul li a::before {
  top: 0.6em;
}


/*--------------------------------------------------------
  フッター：会社情報
--------------------------------------------------------*/
.footer-info {
  margin-top: 20px;
  text-align: center;
  padding: 20px 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: 20px;
  font-size:14px;
  line-height: 1.6em;
}
.footer-logo img {
  max-width: 300px;
  height: auto;
  margin-bottom: 10px;
  transition: opacity 1.0s ease;
}
.footer-logo a:hover img {
  opacity: 0.5;
}
.footer-address {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
  letter-spacing: 0.1em;
}
.footer-telfax {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 20px;
  letter-spacing: 0.08em;
  text-align: center;
  line-height: 1.2em;
}
.footer-copy {
  font-size: 12px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  margin-bottom: 40px;
}





/*------------------------------------
 コピー用 ---*/

/*---- コピー用 タイトル ---*/
.business-title-eg{
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 46px;
  text-align: center;
  color: #e6e6e6;
}
.business-title-jp{
  font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 700;
	font-style: normal;
  font-size: 22px;
  color: #004EA2;
  text-align: center;
  margin-top: -20px;
  letter-spacing: 0.1em;
  margin-bottom: 60px;
}

/*---- コピー用 ボタン ---*/
/* ボタン */
.news-button {
  display: inline-flex;
  align-items: center;
  background-color: #004EA2; /* 初期背景色 */
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  padding: 10px 40px;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  cursor: pointer;
  margin-top: 10px;
  transition: background-color 1s ease;
  overflow: hidden; /* 中身のスライドがはみ出さないように */
}
.news-button-inner {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 1.0s ease;
}
.news-button:hover .news-button-inner {
  transform: translateX(20px);
}
/* ホバー時に背景色だけ変える（ボタン本体） */
.news-button:hover {
  background-color: #64B5F6;
}
/* 矢印 */
.arrow-circle {
  display: inline-block;
  width: 20px;
  height: 20px;
  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: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 9px solid #004EA2;
    transition: border-left-color 1s ease;
}
/* ホバー時*/
.news-button:hover .arrow-circle::before {
  border-left-color: #29abe2;
}



/* 上：三角形 */
.small-triangle {
      width: 150px;
      height: 100px;
      background-color: #004EA2; 
      clip-path: polygon(0 100%, 100% 0, 0 0);
      margin-top: -220px;
      opacity: 0.6;
      margin-bottom: 160px;
}


}/* sp */