@charset "utf-8";

#sdgs {
  font-size: 1rem;
  line-height: 2;

  .leading-1 {
    line-height: 1;
  }

  .leading-1-5 {
    line-height: 1.5;
  }

  .text-xs {
    font-size: 0.75rem;
  }

  .text-sm {
    font-size: 0.875rem;
  }

  .text-lg {
    font-size: 1.125rem;
  }

  .text-xl {
    font-size: 1.25rem;
  }

  .bg-blue {
    background-color: #005bac;
  }
  .bg-sky {
    background-color: #3fa9f5;
  }

  .border-b {
    border-bottom: 1px solid;
  }

  .border-black {
    border-color: #333;
  }

  .border-gray {
    border-color: #666;
  }

  .font-bold {
    font-weight: bold;
  }

  .font-lg {
    font-size: 1.5rem;
  }

  .text-blue {
    color: #005bac;
  }

  .text-white {
    color: #fff;
  }

  .text-sky {
    color: #3fa9f5;
  }

  .text-green {
    color: oklch(62.7% 0.194 149.214);
  }

  .text-pink {
    color: oklch(71.8% 0.202 349.761);
  }

  .text-amber {
    color: oklch(66.6% 0.179 58.318);
    /* color: oklch(82.8% 0.189 84.429); */
  }

  .text-underline {
    text-decoration: underline;
  }

  .rounded {
    border-radius: 0.75rem;
  }

  .p-1 {
    padding: 0.25rem;
  }

  .p-2 {
    padding: 0.5rem;
  }

  .p-4 {
    padding: 1rem;
  }

  .pt-10 {
    padding-top: 2.5rem;
  }

  .pt-20 {
    padding-top: 5rem;
  }

  .pt-30 {
    padding-top: 7.5rem;
  }

  .pl-4 {
    padding-left: 1rem;
  }

  .pr-3 {
    padding-right: 0.75rem;
  }

  .pr-4 {
    padding-right: 1rem;
  }

  .pl-10 {
    padding-left: 2.5rem;
  }

  .mt-1 {
    margin-top: 0.25rem;
  }

  .mt-2 {
    margin-top: 0.5rem;
  }

  .mt-3 {
    margin-top: 0.75rem;
  }

  .mt-4 {
    margin-top: 1rem;
  }

  .mt-8 {
    margin-top: 2rem;
  }

  .mt-10 {
    margin-top: 2.5rem;
  }

  .mt-20 {
    margin-top: 5rem;
  }

  .mt-30 {
    margin-top: 7.5rem;
  }

  .mt-40 {
    margin-top: 10rem;
  }

  .mb-20 {
    margin-bottom: 5rem;
  }

  .mb-30 {
    margin-bottom: 7.5rem;
  }

  .mb-40 {
    margin-bottom: 10rem;
  }

  .mr-20 {
    margin-right: 5rem;
  }

  .ml-8 {
    margin-left: 2rem;
  }

  .flex {
    display: flex;
  }

  .gap-1 {
    gap: 0.25rem;
  }

  .gap-2 {
    gap: 0.5rem;
  }

  .gap-4 {
    gap: 1rem;
  }

  .gap-5 {
    gap: 1.25rem;
  }

  .gap-6 {
    gap: 1.5rem;
  }

  .gap-8 {
    gap: 2rem;
  }

  .flex-column {
    flex-direction: column;
  }

  .items-center {
    align-items: center;
  }

  .items-end {
    align-items: flex-end;
  }

  .items-self-center {
    align-self: center;
  }

  .justify-center {
    justify-content: center;
  }

  .justify-between {
    justify-content: space-between;
  }

  .justify-around {
    justify-content: space-around;
  }

  .justify-end {
    justify-content: flex-end;
  }

  .w-100 {
    width: 100%;
  }

  .w-75 {
    width: 75%;
  }

  .w-60 {
    width: 60%;
  }

  .w-50 {
    width: 50%;
  }

  .w-40 {
    width: 40%;
  }

  .w-25 {
    width: 25%;
  }

  .w-10 {
    width: 10%;
  }

  .inline-block {
    display: inline-block;
  }

  .inline-flex {
    display: inline-flex;
  }

  .text-center {
    text-align: center;
  }

  .leading-1 {
    line-height: 1;
  }

  .clip-path {
    clip-path: polygon(
      0 0,
      /* 左上 */ calc(100% - 10px) 0,
      /* 右上手前 */ 100% 50%,
      /* 先端 */ calc(100% - 10px) 100%,
      /* 右下手前 */ 0 100% /* 左下 */
    );
  }

  .relative {
    position: relative;
  }

  .absolute {
    position: absolute;
  }

  .bottom-2 {
    bottom: 0.5rem;
  }

  .bottom-4 {
    bottom: 1rem;
  }

  .left-50p {
    left: 50%;
  }

  .translate-x-50p {
    transform: translate(-50%, 0);
  }

  .list-disc {
    list-style-type: disc;
  }

  .text-bg-half {
    position: relative;
    display: inline-block;
    z-index: 0;
  }

  .text-bg-half::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0.05em;
    height: 0.5em;
    z-index: -1;
  }

  .text-bg-half-orange::after {
    background: oklch(90.1% 0.076 70.697);
  }

  .text-bg-half-pink::after {
    background: #f9a8d4;
  }

  .text-bg-half-blue::after {
    background: #93c5fd;
  }

  .flex-1 {
    flex: 1;
  }

  .flex-2 {
    flex: 2;
  }

  .liststyle-large-disc::marker {
    content: "●";
  }
}

@media only screen and (max-width: 767px) {
  #sdgs {
    .text-2xs-sp {
      font-size: 0.625rem;
    }
    .w-90-sp {
      width: 90%;
    }
    .w-80-sp {
      width: 80%;
    }
    .w-75-sp {
      width: 75%;
    }
    .w-40-sp {
      width: 40%;
    }
    .w-50-sp {
      width: 50%;
    }
    .w-25-sp {
      width: 25%;
    }
    .w-20-sp {
      width: 20%;
    }
    .mt-1-sp {
      margin-top: 0.25rem;
    }
    .mt-2-sp {
      margin-top: 0.5rem;
    }
    .mt-4-sp {
      margin-top: 1rem;
    }
    .mt-8-sp {
      margin-top: 2rem;
    }
    .mt-10-sp {
      margin-top: 2.5rem;
    }
    .mr-0-sp {
      margin-right: 0;
    }
    .none-sp {
      display: none;
    }
    .flex-column-sp {
      flex-direction: column;
    }
  }
}

@media print, screen and (min-width: 768px) {
  .max-w-30-pc {
    max-width: 30%;
  }
  .pt-4-pc {
    padding-top: 1rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
}
@media only screen and (min-width: 1200px) {
}
