@charset "UTF-8";
/* ==========================================================================
   西田エンジニアリング - 事業・技術紹介ページスタイルシート
   ========================================================================== */

/* ==========================================================================
   セクション共通見出し
   ========================================================================== */
.p-service-heading {
  display: flex;
  align-items: center;
  gap: 27px;
  margin-bottom: 40px;
}

.p-service-heading__line {
  width: 8px;
  height: 43px;
  background-color: #d52300;
}

.p-service-heading__title {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, sans-serif;
  font-size: 3.2rem;
  font-weight: bold;
  color: #1a1a1a;
  letter-spacing: 0.02em;
  line-height: 1;
}

/* ==========================================================================
   私たちの強みセクション
   ========================================================================== */
.p-strength {
  background-color: #ffffff;
  padding: 70px 24px 30px;
}

.p-strength__inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* 強みアイテム */
.p-strength__item {
  display: flex;
  align-items: flex-start;
  gap: 80px;
  margin-top: 50px;
}

.p-strength__item--reverse {
  margin-top: 100px;
  flex-direction: row-reverse;
}

.p-strength__image {
  flex: 1;
  min-width: 0;
}

.p-strength__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-strength__content {
  flex: 0 0 560px;
}

.p-strength__title {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, sans-serif;
  font-size: 3.6rem;
  font-weight: bold;
  color: #1a1a1a;
  line-height: 1.44;
  letter-spacing: -0.02em;
  margin-bottom: 25px;
}

.p-strength__title-highlight {
  color: #d52300;
}

.p-strength__text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #1a1a1a;
  line-height: 1.9;
}

/* ==========================================================================
   対応可能設備・資格セクション
   ========================================================================== */
.p-capability {
  background-color: #ffffff;
  padding: 30px 24px 90px;
}

.p-capability__inner {
  max-width: 1200px;
  margin: 0 auto;
  background-color: #f5f5f5;
  padding: 50px;
}

.p-capability__block {
  text-align: center;
  margin-bottom: 38px;
}

.p-capability__block:last-child {
  margin-bottom: 0;
}

.p-capability__label {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2rem;
  font-weight: 500;
  color: #1a1a1a;
  letter-spacing: 0.03em;
  line-height: 1.2;
  margin-bottom: 13px;
}

.p-capability__text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #1a1a1a;
  line-height: 2;
}

.p-capability__images {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 15px;
}

.p-capability__image {
  width: 228px;
  height: 327px;
}

.p-capability__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==========================================================================
   設計・メンテナンス流れセクション
   ========================================================================== */
.p-flow {
  background-color: #F5F5F5;
  padding: 60px 24px 100px;
}

.p-flow__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.p-flow__list {
  max-width: 1000px;
  margin: 0 auto;
}

.p-flow__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 0;
  border-top: 1px solid #e1e1e1;
  border-bottom: 1px solid #e1e1e1;
  position: relative;
}

.p-flow__item::after {
  content: "";
  position: absolute;
  bottom: -35px;
  left: 100px;
  width: 2px;
  height: 70px;
  background-color: #d52300;
  z-index: 1;
}

.p-flow__item:last-child::after {
  display: none;
}

.p-flow__left {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 0 0 auto;
}

.p-flow__number {
  font-family: "Figtree", sans-serif;
  font-size: 2.7rem;
  font-weight: 600;
  color: #d52300;
  letter-spacing: 0.1em;
}

.p-flow__icon-title {
  display: flex;
  align-items: center;
  gap: 12px;
}

.p-flow__icon {
  width: 70px;
  height: 70px;
}

.p-flow__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.p-flow__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2rem;
  font-weight: bold;
  color: #1a1a1a;
  letter-spacing: 0.1em;
  line-height: 1.38;
}

.p-flow__desc {
  flex: 0 0 612px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.8;
  letter-spacing: 0.1em;
}

.p-flow__desc-highlight {
  font-weight: bold;
  color: #d52300;
}

/* ==========================================================================
   品質方針セクション
   ========================================================================== */
.p-policy {
  position: relative;
  padding: 100px 24px;
}

.p-policy__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.p-policy__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-policy__bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(12, 14, 23, 0.57);
}

.p-policy__inner {
  display: flex;
  align-items: center;
  gap: 82px;
  max-width: 1200px;
  margin: 0 auto;
}

.p-policy__title {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, sans-serif;
  font-size: 4rem;
  font-weight: bold;
  color: #ffffff;
  letter-spacing: 0.19em;
  line-height: 1;
}

.p-policy__list {
  flex: 1;
}

.p-policy__item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 19px;
}

.p-policy__item:last-child {
  margin-bottom: 0;
}

.p-policy__number {
  font-family: "Figtree", sans-serif;
  font-size: 2.7rem;
  font-weight: 400;
  font-style: italic;
  color: #ffffff;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.p-policy__text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: #ffffff;
  line-height: 2.2;
  letter-spacing: 0.1em;
}

/* ==========================================================================
   レスポンシブ対応
   ========================================================================== */
@media (max-width: 768px) {

  /* セクション見出し */
  .p-service-heading {
    gap: 16px;
    margin-bottom: 30px;
  }

  .p-service-heading__line {
    width: 7px;
    height: 30px;
  }

  .p-service-heading__title {
    font-size: 2.4rem;
  }

  /* 強み */
  .p-strength {
    padding: 40px 5% 0px;
  }

  .p-strength__item {
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
  }

  .p-strength__item--reverse {
    margin-top: 60px;
    flex-direction: column;
  }

  .p-strength__content {
    flex: 1;
    width: 100%;
  }

  .p-strength__title {
    font-size: 2.4rem;
    margin-bottom: 15px;
  }

  .p-strength__text {
    font-size: 1.4rem;
  }

  /* 対応可能設備 */
  .p-capability {
    padding: 24px 5% 40px;
  }

  .p-capability__inner {
    padding: 30px 20px;
  }

  .p-capability__label {
    font-size: 1.6rem;
  }

  .p-capability__text {
    font-size: 1.4rem;
    text-align: left;
  }

  .p-capability__images {
    /* flex-direction: column; */
    align-items: center;
  }

  .p-capability__image {
    width: 100%;
    max-width: 280px;
    height: auto;
    aspect-ratio: 228 / 327;
  }

  /* フロー */
  .p-flow {
    padding: 40px 5%;
  }

  .p-flow__item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0px;
    padding: 30px 0;
  }

  .p-flow__item::after {
    left: 17px;
    top: 80px;
    bottom: -30px;
    height: auto;
  }

  .p-flow__left {
    gap: 20px;
  }

  .p-flow__number {
    font-size: 2.7rem;
  }

  .p-flow__icon {
    width: 50px;
    height: 50px;
  }

  .p-flow__title {
    font-size: 1.6rem;
  }

  .p-flow__desc {
    flex: 1;
    width: 100%;
    font-size: 1.4rem;
    padding-left: 70px;
  }

  /* 品質方針 */
  .p-policy {
    padding: 60px 5%;
  }

  .p-policy__inner {
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
  }

  .p-policy__title {
    font-size: 2.8rem;
  }

  .p-policy__number {
    font-size: 2rem;
  }

  .p-policy__text {
    font-size: 1.4rem;
  }
}