@media (min-width: 768px) {
  .sp-only {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .pc-only {
    display: none !important;
  }
}
.contents-toc {
  counter-reset: outline-num;
  display: grid;
  gap: 15px;
  margin-top: 20px;
  display: none;
}
.contents-toc a {
  display: block;
  font-weight: bold;
  padding: 0 0 2px 36px;
  position: relative;
  margin-bottom: 15px;
}
.contents-toc a::before {
  background-color: #1E63C2;
  border-radius: 50%;
  color: #fff;
  content: counter(outline-num);
  counter-increment: outline-num;
  display: grid;
  height: 30px;
  left: 0;
  padding-bottom: 2px;
  place-content: center;
  position: absolute;
  top: 0;
  width: 30px;
}

.cozy_content h2 {
  background-color: var(--light-color);
  border-radius: 5px 10px 10px 5px;
  color: #fff;
  font-size: 28px;
  font-weight: var(--font-weight-bold);
  line-height: 1.55;
  margin-block: 80px 20px;
  padding: 13px 20px 14px 25px;
  position: relative;
}
@media (max-width: 767px) {
  .cozy_content h2 {
    font-size: 22px;
    margin-top: 50px;
    padding: 9px 15px 9px 20px;
  }
}
.cozy_content h2::before {
  background-color: var(--very-light-color);
  border-radius: 5px;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 5px;
}
.cozy_content h3 {
  background-image: repeating-linear-gradient(90deg, var(--light-color), var(--light-color) 12px, transparent 12px, transparent 20px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 100% 2px;
  font-size: 24px;
  font-weight: var(--font-weight-bold);
  line-height: 1.5;
  margin-block: 80px 20px;
  padding-bottom: 15px;
}
@media (max-width: 767px) {
  .cozy_content h3 {
    font-size: 20px;
    margin-top: 40px;
  }
}
.cozy_content h4 {
  font-size: 20px;
  font-weight: var(--font-weight-bold);
  line-height: 1.6;
  margin-block: 50px 20px;
  padding-left: 20px;
  position: relative;
}
@media (max-width: 767px) {
  .cozy_content h4 {
    font-size: 18px;
    margin-top: 40px;
    padding-left: 15px;
  }
}
.cozy_content h4::before {
  background-image: linear-gradient(0deg, #4E91DD, #4E91DD 50%, var(--light-color) 50% 100%);
  border-radius: 5px;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 5px;
}
.cozy_content h5 {
  font-size: 18px;
  font-weight: var(--font-weight-bold);
  line-height: 1.56;
  margin-block: 40px 20px;
}
@media (max-width: 767px) {
  .cozy_content h5 {
    font-size: 16px;
    margin-top: 30px;
  }
}
.cozy_content p {
  line-height: 1.8;
  margin-bottom: 30px;
}
.cozy_content ul,
.cozy_content ol {
  margin-block: 40px;
  padding-inline: 20px;
}
@media (max-width: 767px) {
  .cozy_content ul,
.cozy_content ol {
    margin-block: 20px;
    padding-inline: 5px;
  }
}
.cozy_content ul li {
  line-height: 1.6;
  padding-left: 15px;
  position: relative;
}
.cozy_content ul li + li {
  margin-top: 4px;
}
.cozy_content ul li::before {
  background-color: var(--light-color);
  border-radius: 50%;
  content: "";
  height: 8px;
  left: 0;
  position: absolute;
  top: 10px;
  width: 8px;
}
.cozy_content ol {
  counter-reset: list-num;
}
.cozy_content ol li {
  line-height: 1.6;
  padding-left: 32px;
  position: relative;
}
@media (max-width: 767px) {
  .cozy_content ol li {
    padding-left: 25px;
  }
}
.cozy_content ol li + li {
  margin-top: 4px;
}
.cozy_content ol li::before {
  background-color: var(--light-color);
  border-radius: 50%;
  color: #fff;
  content: counter(list-num);
  counter-increment: list-num;
  display: grid;
  font-size: 14px;
  font-weight: var(--font-weight-bold);
  height: 22px;
  left: 0;
  padding-bottom: 1px;
  place-content: center;
  position: absolute;
  top: 2px;
  width: 22px;
}
@media (max-width: 767px) {
  .cozy_content ol li::before {
    font-size: 12px;
    height: 20px;
    top: 4px;
    width: 20px;
  }
}
.cozy_content a {
  color: var(--light-color);
  text-decoration: underline;
}
.cozy_content a[target=_blank] {
  background: url(/assets/img/ico-window-light.svg) right 7px/12px no-repeat;
  color: var(--light-color);
  padding-right: 17px;
  text-decoration: underline;
}
.cozy_content table {
  margin-block: 40px;
}
@media (max-width: 767px) {
  .cozy_content table {
    margin-block: 30px;
  }
  .article__tables .cozy_content table {
    margin-block: 0;
  }
}
.cozy_content table th,
.cozy_content table td {
  border-bottom: 1px solid;
  border-left: 1px solid;
  padding: 10px 20px;
}
@media (max-width: 767px) {
  .cozy_content table th,
.cozy_content table td {
    border-left: none;
    display: block;
    font-size: 14px;
    padding: 10px 15px;
    width: 100%;
  }
}
.cozy_content table th:first-child,
.cozy_content table td:first-child {
  border-left-color: transparent;
}
.cozy_content table th {
  background-color: var(--dark-color);
  color: #fff;
  font-weight: var(--font-weight-bold);
}
.cozy_content table td {
  background-color: #EFF2FF;
  border-color: var(--border-color);
}
.cozy_content table tr:last-child th,
.cozy_content table tr:last-child td {
  border-bottom-color: transparent;
}
.cozy_content table tbody th {
  width: 240px;
}
@media (max-width: 767px) {
  .cozy_content table tbody th {
    width: 100%;
  }
}