@charset "UTF-8";
/* ============================================================
// company.scss (会社案内)
============================================================ */
/* ------------------------------------------------------------
// Fluid Design Function
// 最小値〜最大値の間で数値を可変させる共通関数
------------------------------------------------------------ */
/* ------------------------------------------------------------
// Page Header / ページトップ画像見出し
------------------------------------------------------------ */
.page-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: clamp(240px, 16vw + 180px, 500px);
  margin-bottom: clamp(60px, 3.6923076923vw + 46.1538461538px, 120px);
  padding-top: clamp(76px, 3.3230769231vw + 63.5384615385px, 130px);
  overflow: hidden;
  background-color: #333333;
  background-image: url(../images/company/bg-page-header.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  print-color-adjust: exact;
  -webkit-print-color-adjust: exact;
}
.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}
.page-header__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  padding: 0 24px;
  text-align: center;
}
.page-header__title-area {
  color: #ffffff;
}
.page-header__en {
  display: block;
  font-size: clamp(34px, 1.6vw + 28px, 60px);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.2;
}
.page-header__jp {
  display: inline-block;
  margin-top: 10px;
  font-size: clamp(14px, 0.1230769231vw + 13.5384615385px, 16px);
  font-weight: 500;
  letter-spacing: 0.2em;
  position: relative;
  padding-bottom: 5px;
}
.page-header__jp::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background-color: #1068c0;
}

/* ------------------------------------------------------------
// ウイングサービスの強み
------------------------------------------------------------ */
.recruit-points {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: clamp(60px, 2.4615384615vw + 50.7692307692px, 100px);
  padding-inline: clamp(20px, 2.4615384615vw + 10.7692307692px, 60px);
}
.recruit-points__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.recruit-points__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.recruit-points__item--01 .recruit-points__header {
  background: #8fd957;
}
.recruit-points__item--02 .recruit-points__header {
  background: #34c0f4;
}
.recruit-points__item--03 .recruit-points__header {
  background: #1068c0;
}
.recruit-points__header {
  position: relative;
  color: #ffffff;
  text-align: center;
  padding: clamp(20px, 1.2307692308vw + 15.3846153846px, 40px) 20px;
}
.recruit-points__header .number {
  display: block;
  font-size: clamp(40px, 1.2307692308vw + 35.3846153846px, 60px);
  font-weight: 600;
  line-height: 1;
  margin-bottom: clamp(5px, 0.3076923077vw + 3.8461538462px, 10px);
  opacity: 0.4;
}
.recruit-points__header .en-title {
  display: block;
  font-size: clamp(20px, 0.2461538462vw + 19.0769230769px, 24px);
  font-weight: 600;
  text-transform: uppercase;
}
.recruit-points__body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: clamp(25px, 0.6153846154vw + 22.6923076923px, 35px) clamp(20px, 0.3076923077vw + 18.8461538462px, 25px);
}
.recruit-points__body .point-title {
  display: flex;
  align-items: center;
  font-size: clamp(16px, 0.1230769231vw + 15.5384615385px, 18px);
  font-weight: 700;
  line-height: 1.4;
  min-height: 2.8em;
  margin-bottom: clamp(15px, 0.3076923077vw + 13.8461538462px, 20px);
}
.recruit-points__body .point-text {
  font-size: 15px;
  color: #666666;
  line-height: 1.8;
  text-align: left;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .recruit-points {
    flex-direction: column;
  }
}

/* ------------------------------------------------------------
// 募集要項テーブル
------------------------------------------------------------ */
.recruit-info {
  width: 100%;
  border-top: 1px solid #dddddd;
}
.recruit-info__row {
  display: flex;
  border-bottom: 1px solid #dddddd;
  padding: 24px 12px;
}
.recruit-info__label {
  width: 200px;
  font-weight: 700;
  color: #1068c0;
  font-size: clamp(15px, 0.1846153846vw + 14.3076923077px, 18px);
  flex-shrink: 0;
  line-height: 1.6;
}
.recruit-info__content {
  flex-grow: 1;
  color: #444;
  line-height: 1.8;
  font-size: clamp(15px, 0.1846153846vw + 14.3076923077px, 18px);
}
.recruit-info__content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.recruit-info__content ul li {
  position: relative;
  padding-left: 1.2em;
}
.recruit-info__content ul li::before {
  content: "・";
  position: absolute;
  left: 0;
}
@media screen and (max-width: 767px) {
  .recruit-info__row {
    flex-direction: column;
    padding: 15px 10px;
  }
  .recruit-info__label {
    width: 100%;
    margin-bottom: 4px;
  }
}

.recruit-contact {
  margin-top: clamp(40px, 1.2307692308vw + 35.3846153846px, 60px);
  padding: clamp(30px, 1.8461538462vw + 23.0769230769px, 60px);
  background: #f0f7ff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.recruit-contact__tel {
  flex: 1;
}
.recruit-contact__tel .label {
  display: inline-block;
  font-size: clamp(15px, 0.0615384615vw + 14.7692307692px, 16px);
  font-weight: 700;
  color: #1068c0;
  background: #ffffff;
  padding: 2px 14px;
  border-radius: 20px;
  margin-bottom: 15px;
}
.recruit-contact__tel .tel-link {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(24px, 0.6153846154vw + 21.6923076923px, 34px);
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.3s;
}
.recruit-contact__tel .tel-link:hover {
  opacity: 0.7;
}
.recruit-contact__tel .time {
  font-size: clamp(15px, 0.0615384615vw + 14.7692307692px, 16px);
  color: #666666;
  margin-top: 5px;
}
.recruit-contact__mail {
  flex: 1;
  text-align: center;
}
.recruit-contact__mail .btn-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 0.3076923077vw + 8.8461538462px, 15px);
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  padding: 20px clamp(25px, 0.9230769231vw + 21.5384615385px, 40px);
  background: linear-gradient(135deg, #a8d179 0%, #1cb5e0 100%);
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(28, 181, 224, 0.3);
  transition: transform 0.3s, box-shadow 0.3s;
}
.recruit-contact__mail .btn-contact::before {
  content: "";
  width: 24px;
  height: 24px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="white" viewBox="0 0 24 24"><path d="M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z"/></svg>') no-repeat center;
}
.recruit-contact__mail .btn-contact:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(28, 181, 224, 0.4);
}
@media screen and (max-width: 991px) {
  .recruit-contact {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  .recruit-contact__tel .tel-link {
    font-size: 28px;
  }
  .recruit-contact__mail {
    width: 100%;
  }
}