@charset "UTF-8";
/* サービスページ用スタイル - シンプルバージョン */
/* ベーススタイル */
html, body {
  margin: 0;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", YuGothic, sans-serif;
  color: #333;
}

/* KVセクション */
.kv {
  margin-bottom: 10vh;
}

.kv__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

/* サービス説明ヘッダー・フッター */
.services__explain__header {
  text-align: center;
  margin-bottom: 10vh;
}
.services__explain__header .services__text {
  font-size: 24px;
  word-break: keep-all;
  line-height: 2;
  padding-bottom: 20px;
}
@media (max-width: 480px) {
  .services__explain__header .services__text {
    font-size: 3vw;
  }
}

.services__explain__footer {
  text-align: center;
  margin: 10vh 0;
}
.services__explain__footer .services__text {
  font-size: 24px;
  word-break: keep-all;
  line-height: 2;
  padding-bottom: 20px;
}
@media (max-width: 480px) {
  .services__explain__footer .services__text {
    font-size: 3vw;
  }
}

/* サービスカードのコンテナ */
.services__container {
  display: flex;
  flex-direction: column;
  gap: 80px;
  padding: 0 5%;
  margin-bottom: 80px;
}

/* 各サービスカード */
.service__card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5%;
}

/* 偶数カードは画像を右側に配置 */
.service__card:nth-child(even) {
  flex-direction: row-reverse;
}

/* サービス画像 */
.service__image {
  width: 45%;
  position: relative;
}

.service__image img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  display: block;
}

/* サービステキスト */
.service__content {
  width: 50%;
  padding: 20px 0;
}

/* サービスタイトル */
.services__title {
  margin-bottom: 30px;
  font-size: 30px;
  letter-spacing: 5px;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
  display: inline-block;
}

.services__title:after {
  content: "";
  position: absolute;
  width: 40px;
  height: 3px;
  background-color: #333;
  bottom: 0;
  left: 0;
}

/* テキスト段落 */
.service__content p {
  margin-bottom: 30px;
  font-size: 18px;
  line-height: 2;
  letter-spacing: 0.8px;
}

/* リスト共通スタイル */
.panel__list {
  list-style-type: none;
  padding: 30px 30px;
  margin-bottom: 30px;
  background-color: #e8e8e8;
  border-radius: 5px;
}

.panel__list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  line-height: 1.6;
  font-size: 15px;
  letter-spacing: 1px;
  font-weight: 600;
}

/* 脚注 */
.footnote {
  font-size: 14px;
  color: #666;
  text-align: left;
  margin-top: 20px;
  font-weight: 400;
  line-height: 1.6;
}

/* モバイル対応（768px以下） */
@media (max-width: 768px) {
  /* 全体レイアウト調整 */
  .services__container {
    gap: 60px;
  }
  /* カード内レイアウトを縦に変更 */
  .service__card,
.service__card:nth-child(even) {
    flex-direction: column;
    gap: 30px;
  }
  /* 画像とコンテンツを全幅に */
  .service__image,
.service__content {
    width: 100%;
  }
  /* テキスト調整 */
  .services__title {
    font-size: 24px;
    margin-bottom: 20px;
    padding-bottom: 10px;
  }
  .service__content p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
  }
  .panel__list li {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
  }
  /* サービス説明テキスト調整 */
  .services__text {
    font-size: 16px;
    padding: 0 15px;
    line-height: 1.8;
  }
  /* ヘッダーとフッターのマージン調整 */
  .services__explain__header {
    margin-bottom: 5vh;
  }
  .services__explain__footer {
    margin: 5vh 0;
  }
}
/* 小さいモバイル対応 */
@media (max-width: 480px) {
  .services__container {
    gap: 40px;
  }
  .services__title {
    font-size: 20px;
  }
  .service__content p,
.panel__list li {
    font-size: 12px;
  }
}
/*# sourceMappingURL=services.css.map */