/* 会社紹介セクション */
.company {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  margin-top: -240px;
}

.company__background {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 660px;
  overflow: hidden;
  z-index: 1;

  picture {
    width: 100%;
    height: 100%;
  }
}

.company__bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.company__container {
  position: relative;
  padding: 554px 250px 100px;
  z-index: 3;
}

/* ヒーローエリア */
.company__hero {
  text-align: center;
  margin-bottom: 100px;
}

.company__title {
  font-weight: bold;
  font-size: 48px;
  line-height: 1.2;
  color: #ff6666;
  text-shadow: 0 0 16px rgba(255, 255, 255, 1);
  margin-bottom: 32px;
}

.company__title-line {
  display: block;
  margin-bottom: 16px;
  text-wrap: nowrap;
}

.company__title-line:last-child {
  margin-bottom: 0;
}

.company__subtitle {
  font-size: 24px;
  line-height: 1.5;

  margin: 0;
  font-weight: bold;
}

.company__subtitle-line {
  display: block;
}

/* コンテンツエリア */
.company__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* ネットワーク情報 */
.company__network {
  text-align: center;
}

.company__network-title {
  font-weight: bold;
  font-size: 32px;
  height: 104px;
  line-height: 54px;
  margin-bottom: 32px;
}

.company__network-title-line {
  display: block;
}

.company__network-subtitle {
  font-weight: bold;
  font-size: 24px;
  line-height: 39px;

  margin: 0;
}

.company__network-subtitle-line {
  display: block;
}

.company__stats {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 940px;
  height: fit-content;
}

.company__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 20px 0 60px 0;
  width: 265px;
  height: 364px;
}

.company__stat-icon-a {
  width: 250px;
  height: 200px;
}

.company__stat-icon-b {
  width: 212px;
  height: 200px;
}

.company__stat-icon-c {
  width: 167px;
  height: 200px;
}

.company__stat-text {
  font-weight: bold;
  line-height: 1;
  text-align: center;
  letter-spacing: 0;
  font-size: 0;
}

.company__stat-label,
.company__stat-unit {
  font-size: 24px;
}

.company__stat-number {
  font-size: 60px;
  color: #ff6666;
}

/* 労働環境 */
.company__environment {
  text-align: center;
}

.company__environment-title {
  font-weight: bold;
  font-size: 32px;
  line-height: 54px;
}

.company__features {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 940px;
  margin: 0 auto;
  padding-top: 60px;
}

.company__feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  height: 179px;
}

.company__feature-icon {
  width: 108px;
  height: 108px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.company__feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.company__feature-text {
  font-weight: bold;
  font-size: 20px;
  line-height: 1.3;

  text-align: center;
  margin: 0;
  height: 47px;
}

.company__feature-text-line {
  display: block;
}

.company__feature-text-line:last-child {
  margin-bottom: 0;
}

/* レスポンシブ対応 */
@media (max-width: 1200px) {
  .company__container {
    padding-left: 50px;
    padding-right: 50px;
  }

  .company__stats {
    max-width: 100%;
  }

  .company__features {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .company__background {
    width: 100%;
    height: 400px;
    border-radius: 0 100px 0 0;
  }

  .company__bg-image {
    object-position: center bottom;
  }

  .company__container {
    padding: calc(253px + 10%) 20px 32px;
  }

  .company__hero {
    margin-bottom: 20px;
  }

  .company__content {
    gap: 00px;
  }

  /* タイトルのフォントサイズ調整 */
  .company__title {
    font-size: 32px;
    margin-bottom: 24px;
  }

  .company__subtitle {
    font-size: 16px;
  }

  .company__network-title {
    font-size: 24px;
    line-height: 39px;
    height: 78px;
    margin-bottom: 16px;
  }

  .company__network-subtitle {
    font-size: 16px;
    height: 52px;
    line-height: 26px;
  }

  /* 統計情報のレイアウト調整 */
  .company__stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    height: auto;
    gap: 0;
    max-width: 342px;
    margin: 0 auto;
  }

  .company__stat {
    height: 256px;
    padding: 40px 0px;
    gap: 16px;
  }

  /* 最初の2つの統計（30院、70名）を上段に横並び */
  .company__stat:nth-child(1),
  .company__stat:nth-child(2) {
    flex: 0 0 171px;
  }

  /* 3番目の統計（400名）を下段中央に */
  .company__stat:nth-child(3) {
    flex: 0 0 100%;

    display: flex;
    flex-direction: column;
    align-items: center;

    padding: 0px;
    padding-bottom: 56px;
    height: fit-content;
  }

  .company__stat-icon {
    height: 120px;
  }

  .company__stat-icon-a,
  .company__stat-icon-b,
  .company__stat-icon-c {
    width: 150px;
    height: 120px;
    display: flex;
    justify-content: center;
  }

  .company__stat-label,
  .company__stat-unit {
    font-size: 16px;
  }

  .company__stat-number {
    font-size: 40px;
  }

  /* 労働環境タイトル */
  .company__environment-title {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 40px;
  }

  /* 特徴を2×2グリッドに */
  .company__features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 32px 0px;
    max-width: 342px;
    margin: 0 auto;
    padding-top: 0px;
  }

  .company__feature {
    flex: 0 0 171px;
    width: 171px;
    padding: 0px;
    gap: 16px;
    height: auto;
  }

  .company__feature-icon {
    width: 72px;
    height: 72px;
  }

  .company__feature-text {
    font-size: 16px;
  }
}
