/* -----------------------------------
	共通
----------------------------------- */
:root {
  --bg: #ffffff;
  --text: #111827;
  --muted: #4b5563;
  --border: #e5e7eb;
  --card: #f9fafb;
  --link: #2563eb;
  --max: 1000px;
  --radius: 14px;
}

.pc {display:block;}
.tb {display:none;}
.pctb {display:block;}
.tbmb {display:none;}
.mb {display:none;}
@media screen and (min-width:600px) and (max-width: 1024px) {
.pc {display:none;}
.tb {display:block;}
.pctb {display:block;}
.tbmb {display:block;}
.mb {display:none;}
}
@media screen and (max-width: 599px){
.pc {display:none;}
.tb {display:none;}
.pctb {display:none;}
.tbmb {display:block;}
.mb {display:block;}
}

/*----------------------------------
 __terms
------------------------------------*/

#terms {
  width: 90%;
  max-width: 1200px;
  margin: 3em auto 0 auto;
  text-align: center;
}

#terms .meta {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

#terms section {
  width: 100%;
  margin-top: 2em;
  padding: 2em 2em 0.5em 2em;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

#terms .section h2 {
  margin: 0 0 10px;
  font-size: clamp(18px, 2.3vw, 22px);
  line-height: 1.35;
  border-left: 4px solid #93c5fd;
  padding-left: 10px;
}

#terms article {
  padding: 1.5em 1em 1em 1em;
  border-top: 1px dashed var(--border);
}

#terms article:first-of-type {
  border-top: none;
  padding-top: 6px;
}

#terms article h3 {
  margin: 0 0 0.8em;
  font-size: 16px;
  line-height: 1.5;
}

#terms p {
  margin: 0 0 10px;
}

#terms ol {
  margin: 8px 0 10px;
  padding-left: 1em;
}

#terms ol li {
  margin: 6px 0;
}

#terms ol li::marker {
  content: counter(list-item) "\2002";
  margin-right: 20px;
}

#terms ol.single {
  padding-left: 0;
}

#terms ol.single li::marker {
  content: "";
}

#terms ol li ul {
  padding-left: 2em;
}

#terms ol li ul li::marker {
   content: "（" counter(list-item) "）";
}

#terms .right {
  width: 90%;
  max-width: 1200px;
  margin: 2em 0 0 auto;
  text-align: right;
}

@media (max-width: 520px) {
  #terms .section {
    padding: 1.5em 1.5em 0.5em 1.5em;
  }

  #terms article {
    padding: 1em 0 0.5em 0;
  }
}