/*
** Common
*/

.container__privacypolicy {
  background-color: var(--beige);
  border-radius: 1.875em;
}

.container__privacypolicy-inner {
  padding-top: 1.5625em;
  padding-bottom: 1.5625em;
}

.privacypolicy__text-body {
  font-size: 0.9375em;
  text-align: justify;
}


/*
** .privacypolicy__introduction
*/

.privacypolicy__introduction {
  margin-bottom: 2.375em;
}


/*
** .privacypolicy__terms
*/

.privacypolicy__terms {
  counter-reset: global_count; /* カウンタをセット */
}

.privacypolicy__term {
  font-weight: 500;
  border-bottom: 0.1rem solid var(--l-gray02);
  padding-bottom: 0.6875em;
  margin-bottom: 0.875em;
}

.privacypolicy__term::before {
  counter-increment: global_count; /* カウンタの値を計算 */
  content: counter(global_count)'\02e\20'; /* 数字出力 */
}

.privacypolicy__description {
  display: grid;
  grid-template-columns: 100%;
  grid-auto-rows: max-content;
  grid-row-gap: 1.25em;
  padding-left: 1.8em;
}

.privacypolicy__description:not(:last-child) {
  margin-bottom: 2.25em;
}

.privacypolicy__unordered-list {
  display: grid;
  grid-template-columns: 100%;
  grid-auto-rows: max-content;
  grid-row-gap: 0.625em;
}

.privacypolicy__unordered-item {
  position: relative;
  padding-left: 1.5em;
}

.privacypolicy__unordered-item::before {
  content: '\30fb';
  position: absolute;
  top: 0;
  left: 0;
}

.privacypolicy__ordered-list {
  counter-reset: local_count; /* カウンタをセット */
  display: grid;
  grid-template-columns: 100%;
  grid-auto-rows: max-content;
  grid-row-gap: 1.25em;
  margin-left: -1.5em;
}

.privacypolicy__ordered-terms {
  display: grid;
  grid-template-columns: 100%;
  grid-auto-rows: max-content;
  grid-row-gap: 0.625em;
}

.privacypolicy__ordered-term::before {
  counter-increment: local_count; /* カウンタの値を計算 */
  content: '\ff08'counter(local_count)'\ff09 '; /* 数字出力 */
}

.privacypolicy__ordered-description {
  display: grid;
  grid-template-columns: 100%;
  grid-auto-rows: max-content;
  grid-row-gap: 1.25em;
  padding-left: 1.5em;
}

.privacypolicy__ordered-circle-list {
  counter-reset: circle_count; /* カウンタをセット */
  display: grid;
  grid-template-columns: 100%;
  grid-auto-rows: max-content;
  grid-row-gap: 0.625em;
}

.privacypolicy__ordered-circle-item {
  position: relative;
  display: grid;
  grid-template-columns: 100%;
  grid-auto-rows: max-content;
  grid-row-gap: 0.625em;
  padding-left: 1.5em;
}

.privacypolicy__ordered-circle-item::before,
.privacypolicy__ordered-circle-item::after {
  position: absolute;
  left: 0;
  width: 1em;
  height: 1em;
  transform-origin: bottom center;
  -webkit-transform-origin: bottom center;
  -ms-transform-origin: bottom center;
}

.privacypolicy__ordered-circle-item::before {
  counter-increment: circle_count; /* カウンタの値を計算 */
  content: counter(circle_count); /* 数字出力 */
  top: 0;
  text-align: center;
  transform: scale(0.75);
  -webkit-transform: scale(0.75);
  -ms-transform: scale(0.75);
}

.privacypolicy__ordered-circle-item::after {
  content: '';
  top: calc((1.56em - 1em) / 2);
  border: 0.1rem solid var(--black);
  border-radius: 50%;
  transform: scale(0.9);
  -webkit-transform: scale(0.9);
  -ms-transform: scale(0.9);
}