/* ===== リスト（番号/ドット） ===== */
.main-text .ol_list{
  padding-inline-start: 6%;
  list-style: decimal;
}

/* ドットの箇条書き（・表示） */
.main-text .dot-list{
  list-style: none;
  padding: 0;
  margin: 6px 0 14px;
}
.main-text .dot-list > li{
  position: relative;
  padding-left: 1.2em;
  margin: 6px 0;
}
.main-text .dot-list > li::before{
  content: "・";
  position: absolute;
  left: 0; top: 0;
}

/* ①②の丸数字（2項） */
.main-text .circled{
  list-style: none;
  padding: 0;
  margin: 8px 0 14px;
}
.main-text .circled > li{
  position: relative;
  padding-left: 1.8em;
  margin: 6px 0;
}
.main-text .circled > li:nth-child(1)::before{ content: "①"; }
.main-text .circled > li:nth-child(2)::before{ content: "②"; }
.main-text .circled > li::before{
  position: absolute;
  left: 0; top: 0;
  font-weight: 700;
}

/* （例）ラベル */
.main-text .example-label{
  margin: 4px 0 6px;
}

/* ===== グループ会社の個人情報保護方針 ===== */
.company-list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;  /* SP: 1列 */
  gap: 20px 32px;
}

/* svg画像 */
.company-item{ margin: 0; }

.company-link{
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.company-link:hover{ text-decoration: underline;
}

.ext{
  width: 15px;
  height: 15px;
  margin-left: 6px;
  vertical-align: -2px;
}

.footer_p {
    text-align: right;
}

/*=================================== PC表記 =================================== */
/* ===== グループ会社の個人情報保護方針 ===== */
@media (min-width: 768px){
  .company-list{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/*=================================== sp表記 =================================== */
/* ===== グループ会社の個人情報保護方針 ===== */
@media (min-width: 1024px){
  .company-list{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
}