/* =========================================
   Recruit / Benefits Page (制度・福利厚生) 専用
   追記分のみ：../css/recruit-benefits.css
   ※既存の recruit.css / common.css を汚さない
========================================= */

.ben-block{
  padding: 56px 0 64px;
  background: #fff;
}

/* 見出し（左寄せ・余白大きめ） */
.ben-head{
  margin: 0 0 22px;
}

.ben-head__en{
  margin: 0 0 6px;
  font-family: "Google Sans", sans-serif;
  font-weight: 500;
  letter-spacing: .04em;
  font-size: 34px;
  color: #3aa7ad; /* ティール寄せ */
}

.ben-head__jp{
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  letter-spacing: .10em;
  font-size: 14px;
  color: rgba(0,0,0,.55);
}

/* -----------------------------------------
   Intro（2カラム）
----------------------------------------- */
.ben-intro__grid{
  display: grid;
  gap: 26px;
  align-items: start;
  margin-top: 18px;
}

.ben-intro__text p{
  margin: 0 0 1.2em;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;  
  color: rgba(0,0,0,.62);
  font-size: 18px;
  letter-spacing: 0.1em;
  line-height: 1.9;
}

.ben-intro__text p:last-child{
  margin-bottom: 0;
}

.ben-intro__media img{
  width: 100%;
  height: auto;
  display: block;
}

/* -----------------------------------------
   Main Benefits（カード）
----------------------------------------- */
.ben-main{
  background: #fff;
}

.ben-cards{
  margin-top: 22px;
  display: grid;
  gap: 18px;
}

.ben-card{
  background: #F5F8F8;
  padding: 26px 22px 22px;
  text-align: center;
}

.ben-card__icon{
  height: 120px;              /* ← 揃えポイント（必要なら110〜130で調整） */
  display: flex;
  align-items: center;        /* 縦中央 */
  justify-content: center;    /* 横中央 */
  margin: 0 auto 14px;
}

.ben-card__icon img{
  max-height: 100px;          /* アイコンの見た目サイズ */
  width: auto;
  height: auto;
}

.ben-card__title{
  margin: 0 0 10px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: .10em;
  color: #46BACD;
}

.ben-card__text{
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  color: #555;
  font-size: 15px;
  letter-spacing: .10em;
  line-height: 1.9;
}

/* -----------------------------------------
   Benefit Station
----------------------------------------- */
.ben-station__box{
  border: 1px solid #e6e9ee;
  background: #fff;
  padding: 22px;
  display: grid;
  gap: 30px;
  align-items: center;
  margin: 18px 0 30px;
}

.ben-station__logo img{
  height: 100px;
  width: auto;
}

.ben-station__desc{
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  color: rgba(0,0,0,.62);
  font-weight: 400;
  font-size: 18px;
  letter-spacing: .10em;
  line-height: 1.9;
}

.ben-station__gallery{
  margin: 0 0 60px;
  display: grid;
  gap: 14px;
}

.ben-shot{
  margin: 0;
}

.ben-shot img{
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.ben-shot figcaption{
  margin-top: 10px;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: #333;
  font-size: 15px;
  letter-spacing: .10em;
}

/* 専用ボタン（赤ピル） */
.ben-station__cta{
  margin-top: 18px;
  display: flex;
  justify-content: center;
}

.ben-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  background: #d43a3a;
  color: #fff;
  text-decoration: none;

  padding: 14px 34px;
  border-radius: 999px;

  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: .10em;

  transition: transform .18s ease, opacity .18s ease;
}

.ben-btn:hover{
  opacity: .92;
  transform: translateY(1px);
}

.ben-btn__arrow{
  position: relative;
  display: inline-block;
  width: 12px;        /* 矢印の横幅 */
  height: 20px;       /* ← テキスト20pxに合わせる */
  margin-left: 6px;
}

.ben-btn__arrow::before{
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 8px;
  height: 8px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-50%) rotate(-45deg);
}
/* -----------------------------------------
   Media Queries
----------------------------------------- */
@media (min-width: 768px){

  .ben-head__en{ font-size: 40px; }

  .ben-intro__grid{
    grid-template-columns: 1.1fr .9fr;
    gap: 44px;
    align-items: start;
  }


  .ben-cards{
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }

  .ben-card{
    padding: 34px 22px 28px;
  }

  .ben-card__icon{
    width: 110px;
    margin-bottom: 16px;
  }

  .ben-station__box{
    grid-template-columns: 260px 1fr;
  }

  .ben-station__gallery{
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

}

@media (max-width: 767px){


.ben-intro__text p{
  font-size: 15px;
}

.ben-card__title{
  font-size: 15px;
}

.ben-card__text{
  font-size: 13px;
}

.ben-station__logo img{
  height: 80px;
  width: auto;
  margin: 0 auto;
}

.ben-station__desc{
  font-size: 15px;
}

.ben-station__gallery{
  margin: 0 0 40px;
}

.ben-shot{
  margin: 0 0 30px;
}


.ben-btn{
  padding: 14px 34px;
  border-radius: 999px;

  font-size: 16px;

}


.ben-btn__arrow{
  position: relative;
  display: inline-block;
  width: 10px;        /* 矢印の横幅 */
  height: 16px;       /* ← テキスト20pxに合わせる */
  margin-left: 6px;
}

.ben-btn__arrow::before{
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 8px;
  height: 8px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-50%) rotate(-45deg);
}


  /* SP時：カードを細めて中央寄せ（既存ページ方針に寄せる） */
  .ben-cards{
    justify-items: center;
  }

  .ben-card{
    width: 85%;
    max-width: 520px;
  }
}
