/* SERVICES セクション（カンプ IMG_7870 / IMG_7869 の再現） */

.lh-services {
  --lh-accent: #e4581e;
  --lh-line: #e5e5e5;
  box-sizing: border-box;
  width: 100%;
  padding: 88px 40px 96px;
  border-top: 1px solid var(--lh-line);
  background: #fefefe;
  color: #333;
  font-family: inherit;
}

.lh-services *,
.lh-services *::before,
.lh-services *::after {
  box-sizing: border-box;
}

.lh-services__inner {
  width: 1280px;
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
}

.lh-services__label {
  margin: 0;
  color: var(--lh-accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1.4;
}

.lh-services__title {
  margin: 10px 0 0;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", serif;
  font-size: 30px;
  font-weight: 400;
  letter-spacing: 0.28em;
  /* letter-spacing で右にずれる分を戻す */
  text-indent: 0.28em;
  line-height: 1.4;
}

.lh-services__rule {
  display: block;
  width: 40px;
  height: 2px;
  margin: 20px auto 0;
  background: var(--lh-accent);
}

/* --- カード --- */
.lh-services__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 56px 0 0;
  padding: 0;
  list-style: none;
}

.lh-services__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 8px 28px 4px;
  border-left: 1px solid var(--lh-line);
}

.lh-services__item:first-child {
  border-left: 0;
}

.lh-services__icon {
  width: auto;
  height: 60px;
  flex: none;
}

.lh-services__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1 1 auto;
}

.lh-services__name {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.5;
  color: #1f1f1f;
  white-space: nowrap;
}

.lh-services__desc {
  margin: 0;
  font-size: 13px;
  line-height: 1.9;
  letter-spacing: 0.01em;
  color: #555;
  word-break: auto-phrase;
  text-wrap: pretty;
}

.lh-services__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: auto;
  padding: 13px 26px;
  border: 1px solid var(--lh-accent);
  color: var(--lh-accent);
  font-size: 13px;
  letter-spacing: 0.06em;
  line-height: 1;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.lh-services__link:hover,
.lh-services__link:focus-visible {
  background: var(--lh-accent);
  color: #fff;
}

.lh-services__link svg {
  width: 16px;
  height: 10px;
  flex: none;
  display: block;
}

/* --- 締めの一文 --- */
.lh-services__closing {
  margin: 72px 0 0;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", serif;
  font-size: 21px;
  letter-spacing: 0.12em;
  text-indent: 0.12em;
  line-height: 1.9;
  color: #1f1f1f;
}

.lh-services__closing::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  margin: 28px auto 0;
  background: var(--lh-accent);
}

/* --- 中間幅は 2 列 --- */
@media (max-width: 1000px) {
  .lh-services__list {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 48px;
  }

  .lh-services__item:nth-child(odd) {
    border-left: 0;
  }
}

/* --- スマホ：1 行 1 サービスの横並び --- */
@media (max-width: 640px) {
  .lh-services {
    padding: 56px 16px 64px;
  }

  .lh-services__label {
    font-size: 12px;
  }

  .lh-services__title {
    font-size: 24px;
  }

  .lh-services__rule {
    width: 20px;
    margin-top: 14px;
  }

  .lh-services__list {
    display: block;
    margin-top: 32px;
  }

  .lh-services__item {
    display: grid;
    grid-template-columns: auto 1px 1fr auto;
    align-items: center;
    gap: 0 16px;
    padding: 22px 4px;
    border-left: 0;
    border-top: 1px solid var(--lh-line);
    text-align: left;
  }

  .lh-services__item:first-child {
    border-top: 0;
  }

  /* 擬似要素が先頭の grid アイテムになるので、4 つとも列を明示する */
  .lh-services__item::before {
    content: "";
    grid-area: 1 / 2;
    align-self: stretch;
    background: var(--lh-line);
  }

  .lh-services__icon {
    grid-area: 1 / 1;
  }

  .lh-services__body {
    grid-area: 1 / 3;
  }

  .lh-services__link {
    grid-area: 1 / 4;
  }

  .lh-services__icon {
    height: 42px;
  }

  .lh-services__body {
    gap: 6px;
  }

  .lh-services__name {
    font-size: 16px;
    white-space: normal;
    word-break: auto-phrase;
  }

  .lh-services__wbr {
    display: none;
  }

  .lh-services__desc {
    font-size: 13px;
    line-height: 1.8;
  }

  /* 円形の矢印ボタンにする */
  .lh-services__link {
    width: 44px;
    height: 44px;
    padding: 0;
    margin-top: 0;
    border-radius: 50%;
    gap: 0;
  }

  .lh-services__link-text {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .lh-services__closing {
    margin-top: 48px;
    font-size: 17px;
    line-height: 2;
  }

  .lh-services__closing::after {
    margin-top: 20px;
  }
}
