@charset "UTF-8";

section#message {
  width: min(1120px, 100%);
  padding: 0 16px;
  padding-top: 144px;
  padding-bottom: 104px;
  margin-inline: auto;

  .h3-wrap {
    margin-bottom: 56px;
  }

  div.content {
    div.textContent {
      p {
        line-height: 2.4;
        font-weight: 700;
      }

      p:has(span) {
        margin-block-start: 32px;

        span {
          display: inline-block;
          margin-left: .6em;
          font-size: 30px;
        }
      }
    }
  }
}

section#profile {
  --bg-color: var(--tc);

  width: min(752px, 100%);
  padding: 48px 16px 72px;
  margin-inline: auto;

  background: var(--bg-color);
  border-image-source: linear-gradient(var(--bg-color), var(--bg-color));
  border-image-slice: 0 fill;
  border-image-outset: 0 100vw;

  .h3-wrap {
    margin-bottom: 48px;

    color: #fff;

    h3::after {
      color: #fff;
    }
  }

  ul.profile-list {
    border-top: solid 1px #fff;

    li {
      padding: 24px 1.6em;

      border-bottom: solid 1px #fff;

      dl {
        display: grid;
        grid-template-columns: 160px 1fr;
        column-gap: 48px;

        font-size: 18px;
        font-weight: 700;
        color: #fff;

        dt {
          line-height: 1.6;
        }

        dd {
          line-height: 1.6;
        }
      }
    }
  }
}

section#access {
  width: min(1120px, 100%);
  padding: 104px 16px 64px;
  margin-inline: auto;

  .h3-wrap {
    margin-bottom: 32px;
  }

  .iframe-wrap {
    width: 100%;

    iframe {
      width: 100%;
    }
  }
}

.swiper-wrap {
  margin-bottom: 144px;

  .marquee {
    position: relative;
    z-index: 2;
    width: 100%;
    margin-top: -90px;

    opacity: 0.5;
    overflow: hidden;

    color: #fff;
    font-size: 9dvw;
    line-height: 1;
    font-family: acumin-pro, sans-serif;
    font-weight: 700;
    font-style: normal;
  }

  .marquee__inner {
    display: inline-block;
    white-space: nowrap;
    animation: scroll-marquee 15s linear infinite;
  }
}

@keyframes scroll-marquee {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (min-width : 1200px) {}

@media (max-width : 1200px) {}

@media (max-width : 599px) {
  section#profile {
    ul.profile-list {
      li {
        padding: 12px 1.6em;

        dl {
          display: grid;
          grid-template-columns: 1fr;
          row-gap: 8px;
        }
      }
    }
  }
}