@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");
/* ===== PAGE: Terms ===== */
.p-terms {
  color: #333;
}
.p-terms__container {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1rem;
}
.p-terms__header {
  margin-top: 40px;
  margin-bottom: 1.5rem;
}
.p-terms__heading {
  font-weight: 800;
  letter-spacing: 0.02em;
  margin: 0 0 0.5rem 0;
}
.p-terms__desc {
  color: #666;
  margin: 0;
  font-size: 18px;
}
.p-terms__article {
  background: white;
  border: 1px solid #ececec;
  border-radius: 14px;
  padding: clamp(16px, 2.5vw, 28px);
  line-height: 1.9;
}
.p-terms__article h3 {
  font-size: clamp(18px, 2.2vw, 20px);
  margin: 1.5rem 0 0.5rem;
  font-weight: 700;
}
.p-terms__article p,
.p-terms__article li {
  color: #666;
  font-size: clamp(15px, 2vw, 16px);
}
.p-terms__article ul {
  padding-left: 1.25rem;
  margin: 0.25rem 0 1rem;
  list-style: disc;
}

/* ===== COMPONENT: Tabs (generic) ===== */
.c-tabs {
  margin-bottom: clamp(16px, 2vw, 20px);
}
.c-tabs__list {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  border-bottom: 1px solid #ececec;
  padding-bottom: 8px;
}
.c-tabs__btn {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid #ececec;
  background: white;
  color: #333;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.08s ease, background-color 0.2s ease, border-color 0.2s ease;
}
.c-tabs__btn:hover {
  transform: translateY(-1px);
}
.c-tabs__btn:focus-visible {
  outline: 2px solid #FFBD73;
  outline-offset: 2px;
}
.c-tabs__btn.is-active {
  background: #FFBD73;
  /* 例：#fff6ee */
  border-color: #FFBD73;
  /* 例：#ff7a1a */
}
.c-tabs__panel {
  display: none;
  margin-top: 16px;
}
.c-tabs__panel.is-active {
  display: block;
}/*# sourceMappingURL=terms_and_conditions.css.map */