body {
  font-family: "Noto Sans JP", sans-serif;
}

/* サービスリストページのタイトル */
.service-list-title {
  text-align: center;
  margin: 60px auto 40px;
}

/* アコーディオンコンテナ */
.accordion-container {
  width: 75vw;
  max-width: 75vw;
  margin: 0 auto;
  padding: 40px 0;
}

/* アコーディオンアイテム */
.accordion {
  border: 2px solid #5fc4c5;
  border-radius: 10px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion:hover {
  box-shadow: 0 4px 12px rgba(95, 196, 197, 0.3);
  transform: translateY(-2px);
}

/* アコーディオンヘッダー */
.accordion__header {
  width: 100%;
  background: linear-gradient(135deg, #ffffff 0%, #f8fffe 100%);
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  color: #213e3c;
  transition: background 0.3s ease;
  min-height: 120px;
}

.accordion__header:hover {
  background: linear-gradient(135deg, #f0fffe 0%, #e8fffd 100%);
}

.accordion__header span {
  flex: 1;
  padding: 20px 30px;
  font-size: 20px;
  font-weight: 600;
  color: #213e3c;
}

/* アコーディオン画像 */
.accordion__image {
  width: 200px;
  height: 120px;
  object-fit: cover;
  border-left: 2px solid #5fc4c5;
  clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
}

/* 2枚画像用コンテナ */
.accordion__images {
  display: flex;
  gap: 0;
}

.accordion__images .accordion__image {
  width: 100px;
  height: 120px;
  border-left: none;
  border: none;
}

.accordion__images .accordion__image:first-child {
  clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.accordion__images .accordion__image:last-child {
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
  .accordion-container {
    max-width: 95%;
    width: 95%;
    padding: 20px 0;
  }

  .accordion__header {
    /* 横並びを維持 */
    flex-direction: row;
    min-height: 100px;
  }

  .accordion__header span {
    padding: 15px 20px;
    font-size: 14px;
    flex: 1;
  }

  .accordion__image {
    width: 120px;
    height: 100px;
  }

  /* 2枚画像用 */
  .accordion__images .accordion__image {
    width: 60px;
    height: 100px;
  }
}