/*==================================================
sp pc
==================================================*/
@media all and (max-width: 768px) {
  .pc-only {
    display: none !important;
  }
}

@media all and (min-width: 769px) {
  .sp-only {
    display: none !important;
  }
}
@media all and (max-width: 768px) {
  .sp-only {
    display: block;
  }
}

/*--------------------------------------
cozy_content
----------------------------------------*/
.cozy_content p,
.cozy_content ul,
.cozy_content ol,
.cozy_content figure,
.cozy_content table {
  margin-top: 4rem;
}
.cozy_content p {
  letter-spacing: 0.1em;
}
.cozy_content p + p {
  margin-top: 1.6rem;
}
.cozy_content h2 {
  border-left: 0.2rem solid var(--dark-color);
  font-size: 3.2rem;
  font-weight: var(--font-weight-base);
  letter-spacing: 0.05em;
  line-height: 1.45;
  margin-top: 8rem;
  padding-left: 2rem;
}
@media all and (max-width: 768px) {
  .cozy_content h2 {
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
  }
}
.cozy_content h3 {
  color: var(--main-color);
  font-size: 2.4rem;
  font-weight: var(--font-weight-base);
  letter-spacing: 0.05em;
  line-height: 1.45;
  margin-block: 4rem -2rem;
}
@media all and (max-width: 768px) {
  .cozy_content h3 {
    font-size: 1.8rem;
    font-weight: var(--font-weight-bold);
  }
}
.cozy_content h4 {
  font-size: 2rem;
  font-weight: var(--font-weight-base);
  letter-spacing: 0.1em;
  line-height: 1.45;
  margin-block: 4rem -2rem;
  padding-bottom: 1rem;
  position: relative;
}
@media all and (max-width: 768px) {
  .cozy_content h4 {
    font-size: 1.8rem;
  }
}
.cozy_content h4::after {
  border-bottom: 0.2rem solid var(--main-color);
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  width: 4rem;
}
.cozy_content table {
  border-bottom: 0.1rem solid var(--border-color);
  border-right: 0.1rem solid var(--border-color);
}
.cozy_content table th,
.cozy_content table td {
  border-left: 0.1rem solid var(--border-color);
  border-top: 0.1rem solid var(--border-color);
  letter-spacing: 0.05em;
  line-height: 1.6;
  padding: 1.6rem 1rem;
  text-align: center;
}
.cozy_content table th {
  font-weight: var(--font-weight-base);
}
.cozy_content a {
  color: var(--main-color);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.1em;
  text-decoration: underline;
}
.cozy_content a::after {
  background: url(/assets/img/ico-link.svg) center/contain no-repeat;
  content: "";
  display: inline-block;
  height: 1.1em;
  margin: 0 0 -0.15em 0.1em;
  width: 1.1em;
}
.cozy_content figure {
  text-align: center;
}
.cozy_content figcaption {
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.1em;
  margin-top: 1rem;
}
@media all and (max-width: 768px) {
  .cozy_content figcaption {
    font-size: 1.4rem;
  }
}

.table-scroll {
  margin-block: 6rem;
}
@media all and (max-width: 768px) {
  .table-scroll {
    margin-inline: calc(-1 * var(--site-padding));
    padding-inline: var(--site-padding);
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .table-scroll::-webkit-scrollbar {
    display: none;
  }
}
.table-scroll table {
  margin-top: 0;
}
@media all and (max-width: 768px) {
  .table-scroll table {
    min-width: 98rem;
  }
}
.table-scroll .scroll-hint-icon {
  background: rgba(26, 19, 17, 0.6);
  border-radius: 1.6rem;
  left: 50%;
  padding: 3rem 0 1.8rem;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 17rem;
}
.table-scroll .scroll-hint-icon::before {
  height: 4rem;
  width: 4rem;
}
.table-scroll .scroll-hint-icon::after {
  height: 1.4rem;
  margin-left: -2rem;
  top: 2rem;
  width: 3.4rem;
}
.table-scroll .scroll-hint-text {
  font-size: 1.4rem;
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.05em;
  margin-top: 1rem;
}