<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

/* テンプレートの上書き */
.l-disclaimer {
  position: relative;
  /* padding: 60px clamp(70px, calc(100/1440*100vw), 100px) 45px; */
  padding: 60px 40px 45px;
  text-align: left;
  line-height: 1.8;
  /* font-size: 1.2rem; */
  font-size: 1.6rem;
  background-color: #000;
  &amp;::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin-inline: auto;
    max-width: min(1200px, calc(1200/1400*100vw));
    border-bottom: 1px solid #2c2c2c;
  }
  @media screen and (max-width: 880px) {
    padding-left: 0;
    padding-right: 0;
    &amp;::before {
      width: calc(360/400*100%);
      max-width: unset;
    }
  }
  @media screen and (max-width: 767px) {
    /* font-size: 11px; */
  }
  &amp; .common_disclaimer {
    margin-inline: auto;
    max-width: min(1200px, calc(1200/1400*100vw));
    @media screen and (max-width: 880px) {
      width: calc(360/400*100%);
      max-width: unset;
    }
    &amp; p {
      font-size: 1em;
      font-weight: inherit;
      margin: 0;
    }
    &amp; strong {
      font-size: calc(24em/16);
      /* font-size: 2em; */
      @media screen and (max-width: 880px) {
        font-size: calc(14em/11);
      }
    }
  }
}</pre></body></html>