@charset "UTF-8";

@layer utility {
  [data-letter='uppercase'] {
    text-transform: uppercase;
  }

  [data-font='title'] {
    font-family: var(--title);
  }

  [data-font='mincho'] {
    font-family: var(--mincho);
  }

  [lang='en'] {
    font-family: var(--title);
    word-break: break-all;
  }

  /* =====================
    u-local-nav
  ===================== */
  :where(.u-local-nav) {
    display: block grid;
    gap: 48px;

    @media (width <=768px) {
      gap: var(--nudge-4);
    }

    .list {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px 32px;
      margin-inline: auto;
      counter-reset: number;

      @media (width > 768px) {
        inline-size: 1032px;
      }

      @media (width <=768px) {
        display: block flex;
        flex-direction: column;
        gap: 3vw;
        inline-size: 100%;
        padding-inline: calc((100 / 390) * 16 * 1vw);
      }

      button {
        display: block grid;
        grid-template-columns: auto 1fr 32px;
        align-items: center;
        padding-block: 16px;
        padding-inline: 32px;
        font-size: 20px;
        border: 1px solid var(--gray_road);
        border-radius: 20px;

        @media (width <=768px) {
          padding-block: calc((100 / 390) * 9 * 1vw);
          padding-inline: calc((100 / 390) * 16 * 1vw);
          font-size: calc((100 / 390) * 15 * 1vw);
          border-radius: calc((100 / 390) * 20 * 1vw);
        }

        &::before {
          margin-inline-end: 24px;
          font-size: 20px;
          font-weight: 500;
          color: var(--text_gray);
          content: counter(number, decimal-leading-zero);
          counter-increment: number;

          @media (width <=768px) {
            margin-inline-end: var(--nudge-2);
            font-size: calc((100 / 390) * 16 * 1vw);
          }
        }

        &::after {
          inline-size: 28px;
          aspect-ratio: 1 / 1;
          content: '';
          background-color: var(--primary);
          background-image: url('../img/_common/icon/arrow_white_down.svg');
          background-repeat: no-repeat;
          background-position: center;
          background-size: 10px;
          border: 2px solid var(--primary);
          border-radius: 6px;
          transition: background 250ms ease 0s;

          @media (width <=768px) {
            inline-size: calc((100 / 390) * 25 * 1vw);
            background-size: calc((100 / 390) * 8 * 1vw);
            border-radius: calc((100 / 390) * 6 * 1vw);
          }
        }

        @media (any-hover: hover) {
          &:hover {
            &::after {
              background-color: white;
              background-image: url('../img/_common/icon/arrow_blue_down.svg');
            }
          }
        }
      }
    }
  }

  /* =====================
    u-point-section
  ===================== */
  :where(.u-point-section) {
    display: block grid;
    gap: 32px;
    counter-reset: number;

    @media (width <=768px) {
      gap: var(--nudge-4);
      padding-inline: calc((100 / 390) * 16 * 1vw);
    }

    /* ==== section ==== */
    section {
      .u-inner {
        display: block grid;
        align-items: center;
        padding-block: 81px 78px;
        padding-inline: 80px;
        background: var(--white, #fff);
        border-radius: 40px;

        @media (width <=768px) {
          display: block flex;
          flex-direction: column;
          padding-block: calc((100 / 390) * 42 * 1vw);
          padding-inline: calc((100 / 390) * 29 * 1vw);
          border-radius: calc((100 / 390) * 40 * 1vw);
        }
      }

      h2 {
        display: block flex;
        gap: 18px;
        align-items: center;
        inline-size: 100%;
        padding-block-end: 14px;
        margin-block-end: 25px;
        font-size: 24px;
        color: var(--primary);
        border-bottom: 2px solid var(--gray_road, #d9d9d9);

        @media (width <=768px) {
          gap: var(--nudge-2);
          padding-block-end: var(--nudge-1);
          margin-block-end: var(--nudge-3);
          font-size: calc((100 / 390) * 18 * 1vw);
        }

        &::before {
          font-size: 20px;
          color: var(--text_gray);
          content: counter(number, decimal-leading-zero);
          counter-increment: number;

          @media (width <=768px) {
            font-size: calc((100 / 390) * 18 * 1vw);
          }
        }
      }

      .wrap {
        display: block flex;
        gap: 32px;
        align-items: center;

        @media (width <=768px) {
          display: block flex;
          flex-direction: column;
          gap: var(--nudge-3);
        }
      }

      .img {
        display: block grid;
        flex-shrink: 0;
        place-content: center;

        @media (width > 768px) {
          inline-size: 560px;
          block-size: 360px;
        }

        img {
          @media (width <=768px) {
            inline-size: 100%;
          }
        }
      }

      .contents {
        display: block grid;
        gap: 24px;

        @media (width <=768px) {
          gap: var(--nudge-3);
        }
      }

      p {
        font-size: 18px;
        line-height: 1.9;

        @media (width <=768px) {
          font-size: calc((100 / 390) * 15 * 1vw);
        }
      }

      .list {
        display: block grid;
        align-self: flex-start;
        font-size: 14px;

        @media (width <=768px) {
          font-size: calc((100 / 390) * 14 * 1vw);
        }

        ul {
          display: block grid;
          gap: 3px;

          @media (width <=768px) {
            gap: 1vw;
            margin-block-start: 1vw;
          }
        }
      }

      .attention {
        position: relative;
        font-size: 14px;

        @media (width > 768px) {
          padding-inline: 18px 0;
          margin-block-start: -10px;
        }

        @media (width <=768px) {
          padding-inline: 5vw 0;
          font-size: calc((100 / 390) * 14 * 1vw);
        }

        span:first-child {
          position: absolute;
          inset-block-start: 0;
          inset-inline-start: 1px;

          @media (width > 768px) {
            inset-inline-start: 0;
          }
        }
      }
    }
  }

  /* =====================
    u-hgroup
  ===================== */
  :where(.u-hgroup) {
    display: block grid;
    gap: 8px;
    align-self: flex-start;
    inline-size: fit-content;

    @media (width <=768px) {
      gap: 1.6vw;
    }

    /* ==== lang=en ==== */
    [lang='en'] {
      display: block flex;
      gap: 6px;
      align-items: center;
      font-weight: 400;
      color: var(--text_gray);
      word-break: break-all;

      @media (width <=768px) {
        gap: 2.1vw;
        font-size: calc((100 / 390) * 14 * 1vw);
      }

      &::before {
        inline-size: 14px;
        aspect-ratio: 14 / 10;
        content: '';
        background-color: var(--primary);
        mask-image: var(--icon-head);
        mask-repeat: no-repeat;
        mask-position: center;
        mask-size: contain;

        @media (width <=768px) {
          inline-size: calc((100 / 390) * 14 * 1vw);
        }
      }
    }

    /* ==== title ==== */
    .title {
      font-size: 24px;

      @media (width <=768px) {
        margin-block: calc((1em - 1lh) / 2);
        font-size: calc((100 / 390) * 22 * 1vw);
      }
    }

    /* ==== data-align="center" ==== */
    &[data-align='center'] {
      align-items: center;
      margin-inline: auto;

      [lang='en'] {
        justify-content: center;
      }

      .title {
        text-align: center;
      }
    }

    /* ==== white ==== */
    &[data-color='white'] {
      color: var(--white);

      [lang='en'] {
        color: var(--white);

        &::before {
          background-color: var(--white);
        }
      }
    }
  }

  /* =====================
    u-hgroup2
  ===================== */
  :where(.u-hgroup2) {
    display: block grid;
    gap: 10px;
    align-self: flex-start;

    @media (width <=768px) {
      gap: 0;
    }

    .title {
      font-size: 24px;
      font-weight: 700;
      line-height: 1.9;

      @media (width <=768px) {
        font-size: calc((100 / 390) * 20 * 1vw);
      }
    }

    [lang='en'] {
      font-size: 14px;
      font-weight: 400;
      line-height: 1.9;
      color: var(--primary);

      @media (width <=768px) {
        font-size: calc((100 / 390) * 14 * 1vw);
      }
    }
  }

  /* =====================
    u-anchor
  ===================== */
  :where(.u-anchor) {
    display: block flex;
    gap: 20px;
    align-items: center;
    inline-size: fit-content;
    font-size: 18px;
    font-weight: 700;
    text-decoration-line: underline;
    text-decoration-thickness: 1px;
    text-decoration-style: solid;
    text-decoration-color: currentcolor;
    text-underline-offset: 11px;

    @media (width <=768px) {
      gap: calc((100 / 390) * 16 * 1vw);
      font-size: calc((100 / 390) * 16 * 1vw);
      font-weight: 500;
      text-underline-offset: calc((100 / 390) * 12 * 1vw);
    }

    &::after {
      inline-size: 44px;
      aspect-ratio: 1 / 1;
      content: '';
      background-color: var(--primary);
      background-image: url('../img/_common/icon/arrow_white.svg');
      background-repeat: no-repeat;
      background-position: center;
      background-size: 14px;
      border: 2px solid var(--primary);
      border-radius: 6px;
      translate: 0 2px;
      transition:
        background-color 250ms ease 0s,
        background-image 250ms ease 0s,
        border-color 250ms ease 0s;

      @media (width <=768px) {
        inline-size: calc((100 / 390) * 30 * 1vw);
        background-size: calc((100 / 390) * 10 * 1vw);
        border-radius: calc((100 / 390) * 6 * 1vw);
        translate: 0 calc((100 / 390) * 2 * 1vw);
      }
    }

    @media (any-hover: hover) {
      &:hover {
        &::after {
          background-color: white;
          background-image: url('../img/_common/icon/arrow_blue.svg');
        }
      }
    }

    &[data-align='center'] {
      align-items: center;
      margin-inline: auto;
    }

    &[data-align='right'] {
      justify-content: flex-end;
    }
  }

  /* =====================
    u-mv
  ===================== */
  :where(.u-mv) {
    position: relative;
    display: block grid;
    block-size: 655px;

    @media (width <=768px) {
      block-size: calc((100 / 390) * 340 * 1vw);
    }

    /* ==== inner ==== */
    .inner {
      position: relative;
      z-index: 2;
      padding-block-start: 160px;

      @media (width <=768px) {
        padding-block-start: 26.2vw;
      }
    }

    /* ==== wrap ==== */
    .wrap {
      inline-size: fit-content;
      padding-block: 16px;
      padding-inline-end: 16px;
      background: var(--primary);
      border-radius: 0 20px 20px 0;

      @media (width <=768px) {
        padding-block: calc((100 / 390) * 12 * 1vw);
        padding-inline-end: calc((100 / 390) * 12 * 1vw);
        border-radius: 0 calc((100 / 390) * 20 * 1vw) calc((100 / 390) * 20 * 1vw) 0;
      }
    }

    /* ==== contents ==== */
    .contents {
      padding-block: 16px 54px;
      padding-inline: 0 39px;
      border: 1px solid white;
      border-inline-start: none;
      border-radius: 0 10px 10px 0;

      @media (width <=768px) {
        padding-block: calc((100 / 390) * 16 * 1vw);
        padding-inline: 0 calc((100 / 390) * 16 * 1vw);
        border-radius: 0 calc((100 / 390) * 10 * 1vw) calc((100 / 390) * 10 * 1vw) 0;
      }
    }

    /* ==== .item ==== */
    .item {
      padding-block-start: 55px;
      padding-inline-start: 80px;
      color: white;

      @media (width <=768px) {
        padding-block-start: 0;
        padding-inline-start: 0;
      }

      hgroup {
        display: block grid;
        gap: 7px;

        @media (width <=768px) {
          gap: 3vw;
          inline-size: fit-content;
          padding-inline-start: calc((100 / 390) * 16 * 1vw);
        }
      }

      h1 {
        inline-size: fit-content;
        font-size: 40px;
        font-weight: 700;
        line-height: 1.4;

        @media (width > 768px) {
          letter-spacing: 1.2px;
        }

        @media (width <=768px) {
          margin-block: calc((1em - 1lh) / 2);
          font-size: calc((100 / 390) * 20 * 1vw);
        }
      }

      [lang='en'] {
        font-size: 20px;
        font-weight: 400;
        line-height: 1.8;

        @media (width > 768px) {
          letter-spacing: 1.2px;
        }

        @media (width <=768px) {
          margin-block: calc((1em - 1lh) / 2);
          font-size: calc((100 / 390) * 12 * 1vw);
        }
      }
    }

    /* ==== .picture ==== */
    .picture {
      position: absolute;
      inset: 0;
      inline-size: 100%;
      block-size: 100%;
      pointer-events: none;
      object-fit: cover;
      object-position: center;
    }

    /* ==== link ==== */
    .link {
      display: block grid;
      grid-template-columns: auto auto 1fr;
      gap: 18px 7px;
      padding-block: 24px 26px;
      padding-inline: 80px 40px;
      margin-block-start: 40px;
      color: white;
      background: white;
      border-radius: 0 20px 20px 0;

      @media (width <=768px) {
        grid-template-rows: auto 1fr;
        grid-template-columns: auto auto 1fr;
        gap: 1.7vw 2.7vw;
        align-items: center;
        padding-block: calc((100 / 390) * 12 * 1vw) 3.1vw;
        padding-inline: calc((100 / 390) * 16 * 1vw);
        margin-block-start: calc((100 / 390) * 16 * 1vw);
        border-radius: 0 calc((100 / 390) * 10 * 1vw) calc((100 / 390) * 10 * 1vw) 0;
      }

      /* ==== share1 ==== */
      .share1 {
        grid-row: 1 / 2;
        grid-column: 1 / 2;

        @media (width <=768px) {
          display: block grid;
          place-content: center;
          block-size: calc((100 / 390) * 23 * 1vw);
          aspect-ratio: 1 / 1;

          img {
            object-fit: contain;
          }
        }
      }

      /* ==== share2 ==== */
      .share2 {
        grid-row: 1 / 2;
        grid-column: 2 / 3;

        @media (width <=768px) {
          display: block grid;
          place-content: center;
          block-size: calc((100 / 390) * 30 * 1vw);
          aspect-ratio: 1 / 1;

          img {
            object-fit: contain;
          }
        }
      }

      /* ==== tel ==== */
      .tel {
        display: block flex;
        grid-row: 2 / 3;
        grid-column: 1 / 3;
        gap: 8px;
        align-items: center;
        font-size: 16px;
        font-weight: 500;
        line-height: 1.2;
        color: var(--primary);

        @media (width <=768px) {
          grid-row: 1 / 2;
          grid-column: 3 / 4;
          gap: calc((100 / 390) * 4 * 1vw);
          margin-block: calc((1em - 1lh) / 2);
          font-size: calc((100 / 390) * 15 * 1vw);
        }

        &::before {
          inline-size: 18px;
          aspect-ratio: 18 / 16;
          content: '';
          background-image: url('../img/_common/icon/tel.svg');
          background-repeat: no-repeat;
          background-position: center;
          background-size: contain;

          @media (width <=768px) {
            inline-size: calc((100 / 390) * 23 * 1vw);
            margin-block: calc((1em - 1lh) / 2);
          }
        }
      }

      /* ==== u-anchor ==== */
      .u-anchor {
        grid-row: 1 / 3;
        grid-column: 3 / 4;
        margin-inline-start: 82px;
        font-size: 16px;
        color: var(--color-text-primary);
        text-underline-offset: 8px;

        @media (width <=768px) {
          grid-row: 2 / 3;
          grid-column: 1 / 4;
          gap: 2.2vw;
          margin-inline: auto;
          margin-inline-start: 0;
          font-size: calc((100 / 390) * 14 * 1vw);
          text-underline-offset: calc((100 / 390) * 8 * 1vw);
        }

        &::after {
          translate: 0 0;

          @media (width <=768px) {
            inline-size: calc((100 / 390) * 25 * 1vw);
            background-size: calc((100 / 390) * 8 * 1vw);
          }
        }
      }
    }
  }

  /* =====================
    u-breadcrumb
  ===================== */
  :where(.u-breadcrumb) {
    position: relative;
    z-index: 3;
    display: block flex;
    flex-wrap: wrap;
    gap: 17px;
    align-items: center;
    justify-content: flex-end;
    padding-block: 12px;
    padding-inline: 80px;
    font-size: 15px;

    @media (width <=768px) {
      gap: var(--nudge-1);
      padding-block: var(--nudge-1);
      padding-inline: calc((100 / 390) * 16 * 1vw);
      font-size: calc((100 / 390) * 11 * 1vw);
    }

    &>li {
      display: block flex;
      gap: 18px;

      @media (width <=768px) {
        gap: var(--nudge-1);
      }
    }

    & li+li {
      &::before {
        display: inline-block;
        flex-shrink: 0;
        inline-size: 7px;
        aspect-ratio: 7 / 12;
        content: '';
        background-color: currentcolor;
        mask-image: var(--icon-breadcrumb);
        mask-repeat: no-repeat;
        mask-position: center;
        mask-size: contain;

        @media (width <=768px) {
          inline-size: calc((100 / 390) * 6 * 1vw);
        }
      }
    }

    [lang='en'] {
      font-family: var(--sanserif);
      transition: all 250ms ease 0s;
    }

    @media (any-hover: hover) {
      a {
        transition: opacity 250ms ease 0s;

        &:hover {
          opacity: 0.7;
        }
      }
    }
  }

  /* =====================
    u-scroll-table
  ===================== */
  :where(.u-scroll-table) {
    position: relative;

    @media (width <=768px) {
      max-inline-size: calc(infinity * 1px);
      padding-block-end: calc((100 / 390) * 18 * 1vw);
      overflow-x: auto;

      &::before {
        position: absolute;
        inset-block-start: calc(50% - 20vw);
        inset-inline-start: calc(50% - 20vw);
        z-index: 4;
        display: block grid;
        align-items: flex-end;
        inline-size: calc((100 / 390) * 120 * 1vw);
        block-size: calc((100 / 390) * 111 * 1vw);
        padding-block-end: 2.8vw;
        font-size: calc((100 / 390) * 10 * 1vw);
        color: white;
        text-align: center;
        pointer-events: none;
        content: 'スクロールできます';
        background: rgb(0 0 0 / 50%);
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
        border-radius: calc((100 / 390) * 16 * 1vw);
      }

      &::after {
        position: absolute;
        inset-block-start: calc(50% - 13vw);
        inset-inline-start: calc(50% - 9vw);
        z-index: 4;
        inline-size: calc((100 / 390) * 37 * 1vw);
        aspect-ratio: 25 / 30;
        content: '';
        background-image: url('../img/_common/icon/scrollable.svg');
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
        rotate: 0 0 1 -25deg;
        animation: scrollable 1200ms ease 0ms infinite normal none running;
      }

      &.touched {
        &::before {
          display: none;
        }

        &::after {
          display: none;
        }
      }

      tr.checked {
        td {
          background: color-mix(in srgb, var(--lightblue) 8%, transparent);
        }
      }
    }

    table {
      @media (width <=768px) {
        inline-size: 100%;
      }
    }

    thead th {
      @media (width <=768px) {
        white-space: nowrap;
      }
    }

    tbody th {
      @media (width <=768px) {
        white-space: nowrap;
      }
    }

    tbody td {
      @media (width <=768px) {
        white-space: nowrap;
      }
    }
  }

  /* =====================
    u-hero
  ===================== */
  :where(.u-hero) {
    position: relative;
    z-index: 2;
    overflow: clip;

    /* ==== slider ==== */
    .container {
      position: absolute;
      inset: 0;
      inline-size: 100%;
      block-size: var(--_block-size, 100svh);
      min-block-size: inherit;
      margin-inline: auto;
      overflow: clip;
      pointer-events: none;
      touch-action: pan-y;

      @media (width <=768px) {
        inline-size: 100%;
      }

      /* ==== picture ==== */
      picture {
        position: relative;
        z-index: 1;
        display: block;
        block-size: 100%;
        min-block-size: 100%;
        pointer-events: none;
        user-select: none;

        & img {
          display: block;
          inline-size: 100%;
          block-size: var(--_block-size);
          object-fit: cover;
          object-position: center;
        }
      }

      .zoom img {
        animation: zoom 15s linear 0ms 1 normal both running;
      }
    }

    /* ==== . . . ==== */
    .bullets {
      position: absolute;
      inset-block-start: 49%;
      inset-inline-end: 26px;
      z-index: 3;
      display: block flex;
      flex-direction: column;
      gap: 14px;
      align-items: center;
      justify-content: center;
      inline-size: fit-content;
      translate: 0 -50%;

      &[hidden] {
        display: none;
      }

      @media (width <=768px) {
        inset: unset;
        inset-block-end: 5.5vw;
        inset-inline: 0;
        flex-direction: row;
        gap: calc((100 / 390) * 14 * 1vw);
        justify-content: flex-start;
        margin-inline: auto;
      }

      span {
        inline-size: 6px;
        aspect-ratio: 1 / 1;
        background: rgb(255 255 255 / 60%);
        border-radius: calc(infinity * 1px);
        opacity: 1;

        @media (width <=768px) {
          inline-size: calc((100 / 390) * 6 * 1vw);
          background: rgb(255 255 255 / 80%);
        }

        &.swiper-pagination-bullet-active {
          background: white;
        }
      }
    }

    /* ==== (< >) ==== */
    .pagination {
      position: absolute;
      inset-block-end: 20px;
      inset-inline-end: 20px;
      z-index: 7;
      inline-size: 140px;
      aspect-ratio: 1 / 1;

      @media (width <=768px) {
        display: none;
      }

      /* ==== 円 ==== */
      .circle {
        --radius: 49;
        --circumference: calc(var(--radius) * 2 * pi * 1px);

        display: block;
        inline-size: 140px;
        aspect-ratio: 1 / 1;
        pointer-events: none;
        rotate: 0 0 1 90deg;

        @media (width <=768px) {
          inline-size: calc((100 / 390) * 87.97 * 1vw);
        }

        & circle {
          fill: none;
          stroke: white;
          stroke-width: 1px;

          &:not(.dummy) {
            stroke-dasharray: var(--circumference);
            stroke-dashoffset: var(--circumference);
            will-change: stroke-dashoffset;
          }

          &.dummy {
            stroke-opacity: 0.3;
          }
        }

        /* Swiper delay 2000 + speed 2000 なので 4000ms で設定 */
        &.animation circle {
          animation: circle 4000ms ease 0ms infinite normal forwards running;
        }

        /* slideChange setTimeoutの秒数と一致 */
        &.animation-end circle {
          animation-name: circle-end;
          animation-duration: 1000ms;
        }
      }

      /* ==== prev, next ==== */
      :where(.prev, .next) {
        --_top: 50%;

        position: absolute;
        display: grid;
        place-content: center;
        color: white;
        pointer-events: auto;
        cursor: pointer;
        transform: translateY(-50%);
        transition: opacity 0.2s ease-in;

        @media (width <=768px) {
          inline-size: calc((100 / 750) * 13 * 1vw);
          block-size: calc((100 / 750) * 22 * 1vw);
        }
      }

      .prev {
        inset: var(--_top) auto auto 28%;
      }

      .next {
        inset: var(--_top) 28% auto auto;
        scale: -1 1;
      }
    }

    /* ==== scroll ==== */
    .scroll {
      position: absolute;
      inset-block-end: 35px;
      inset-inline: 0;
      z-index: 2;
      display: block grid;
      gap: 9px;
      align-items: center;
      justify-content: center;
      inline-size: fit-content;
      margin-inline: auto;
      pointer-events: none;
      translate: 5px 0;

      @media (width <=768px) {
        inset-inline-start: calc((100 / 390) * 16 * 1vw);
        inset-inline-end: unset;
        gap: 4.2vw;
      }

      /* before */
      &::before {
        inline-size: 37px;
        block-size: 11px;
        aspect-ratio: 37 / 11;
        content: 'SCROLL';
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;

        @media (width <=768px) {
          inline-size: calc((100 / 390) * 37 * 1vw);
          block-size: calc((100 / 390) * 11 * 1vw);
        }
      }
    }

    /* □□□ → ■■□ → □■■ → □□■ → □□□ */
    .scroll[data-type='move-color'] span {
      position: relative;
      display: block flow;
      inline-size: 4px;
      block-size: 80px;
      margin-inline: auto;
      background: white;

      @media (width <=768px) {
        inline-size: calc((100 / 390) * 4 * 1vw);
        block-size: calc((100 / 390) * 48 * 1vw);
      }

      &::before {
        position: absolute;
        inset: 0;
        content: '';
        background: var(--main);
        animation: scroll-move-color 2s cubic-bezier(1, 0, 0, 1) infinite;
      }
    }

    /* > →  > */
    .scroll[data-type='move-arrow'] span {
      inline-size: 25px;
      block-size: 10px;
      margin-inline: auto;
      background-repeat: no-repeat;
      background-position: center;
      background-size: contain;
      animation: scroll-move-arrow 2s cubic-bezier(1, 0, 0, 1) infinite;

      @media (width <=768px) {
        inline-size: calc((100 / 390) * 25 * 1vw);
        block-size: calc((100 / 390) * 10 * 1vw);
      }
    }
  }

  /* =====================
    u-inner
  ===================== */
  :where(.u-inner) {
    max-inline-size: 1280px;
    margin-inline: auto;

    @media (width <=768px) {
      padding-inline: calc((100 / 390) * 16 * 1vw);
    }
  }

  /* =====================
    u-hover
  ===================== */
  :where(.u-hover) {
    &:not([data-hover]) {
      transition: opacity 0.3s ease-in-out;
      will-change: opacity;

      @media (any-hover: hover) {
        &:hover {
          opacity: 0.7;
        }
      }
    }
  }

  /* =====================
    u-breadcrumb
  ===================== */
  :where(.u-breadcrumb) {
    display: block flex;
  }

  /* =====================
    u-empty
  ===================== */
  :where(.u-empty) {
    inline-size: fit-content;
    padding-block: 6em;
    margin-inline: auto;
    font-size: 19px;
    font-weight: 600;

    @media (width <=768px) {
      font-size: calc((100 / 390) * 18 * 1vw);
    }
  }

  /* =====================
    u-table
  ===================== */
  :where(.u-table) {
    --_border-color: var(--gray_road);

    display: block grid;
    grid-template-columns: 282px 1fr;
    inline-size: 100%;
    padding-block: 78px;
    padding-inline: 119px;
    margin-inline: auto;
    background: white;
    border-radius: 40px;

    @media (width <=768px) {
      grid-template-columns: 20vw 1fr;
      align-items: flex-start;
      inline-size: 100%;
      padding-block: calc((100 / 390) * 24 * 1vw) calc((100 / 390) * 34 * 1vw);
      padding-inline: calc((100 / 390) * 16 * 1vw);
      border-radius: calc((100 / 390) * 40 * 1vw);
    }

    /* ==== tr ==== */
    .tr {
      position: relative;
      display: block grid;
      grid-template-columns: subgrid;
      grid-column: 1 / -1;
      align-items: center;
      border-block-end: 1px solid var(--gray_road);

      @media (width <=768px) {
        align-items: flex-start;
      }

      & :where(dt, dd) {
        align-self: center;
        padding-block: 15.6px;
        font-size: 18px;

        @media (width <=768px) {
          align-self: flex-start;
          padding-block: calc((100 / 390) * 13 * 1vw) calc((100 / 390) * 14.9 * 1vw);
          font-size: calc((100 / 390) * 15 * 1vw);
          word-break: break-all;
        }

        & a:not([href^='tel:']) {
          color: var(--primary);
          text-decoration: underline;

          @media (any-hover: hover) {
            &:hover {
              text-decoration: none;
            }
          }
        }

        @media (width <=768px) {
          & a {
            text-decoration: underline;
          }
        }
      }
    }

    /* ==== dt ==== */
    & dt {
      position: relative;
      padding-inline-start: 40px;
      font-weight: 500;
      color: var(--primary);

      @media (width <=768px) {
        position: sticky;
        inset-block-start: 15.7vw;
        place-content: flex-start;
        block-size: fit-content !important;
        padding-inline-start: 0;
        text-align: left;
      }
    }

    &[data-sticky='false'] {
      & dt {
        @media (width <=768px) {
          position: relative;
          inset-block-start: unset;
          block-size: 100% !important;
        }
      }
    }

    .indent {
      position: relative;
      padding-inline-start: 49px;

      @media (width <=768px) {
        padding-inline-start: 9.4vw;
      }

      span:first-child {
        position: absolute;
        inset-block-start: 0;
        inset-inline-start: 0;
      }
    }

    ul {
      @media (width > 768px) {
        display: block grid;
        gap: 0;
        margin-block-start: 0;
      }
    }

    /* ==== dd ==== */
    & dd {
      padding-inline: 0;
      line-height: 1.9;

      @media (width <=768px) {
        padding-inline: calc((100 / 390) * 10 * 1vw);
      }
    }

    /* ==== address ==== */
    .address {
      display: block grid;
      grid-template-columns: auto auto;
      gap: 25px 84px;
      justify-content: start;

      @media (width <=768px) {
        display: block flex;
        flex-direction: column;
        gap: var(--nudge-2);
        align-items: flex-start;
      }

      .location {
        display: block grid;
      }

      .tel-fax {
        display: block flex;
        gap: 13px;

        @media (width <=768px) {
          display: block flex;
          flex-direction: column;
          gap: 0;

          a[href^='tel:'] {
            color: var(--primary);
          }
        }
      }
    }

    /* ==== accept ==== */
    .accept {
      display: block grid;
      gap: 29px;

      @media (width <=768px) {
        gap: var(--nudge-2);
      }

      p {
        padding-inline-end: 90px;

        @media (width <=768px) {
          padding-inline-end: 0;
        }
      }
    }

    /* ==== license ==== */
    .license {
      gap: 70px;
      inline-size: fit-content;
      column-count: 2;

      @media (width <=768px) {
        column-count: 1;
        gap: 0;
      }

      ul {
        inline-size: fit-content;
      }
    }

    /* ==== bank ==== */
    .bank {
      display: block flex;
      flex-wrap: wrap;
      gap: 0 1em;

      @media (width <=768px) {
        display: block flex;
        flex-direction: column;
      }
    }

    /* ==== history ==== */
    .history {
      display: block grid;
      grid-template-columns: 13ch 1fr;

      @media (width <=768px) {
        grid-template-columns: unset;
        gap: 1.5em;
      }

      section {
        position: relative;
        display: block grid;
        grid-template-columns: subgrid;
        grid-column: 1 / -1;
        align-items: self-start;
      }

      @media (width <=768px) {
        p {
          padding-inline-start: 1em;
        }
      }
    }

    /* ==== relation ==== */
    .relation {
      display: block grid;
      gap: 29px;

      @media (width <=768px) {
        gap: 1.5em;
      }

      .location {
        display: block flex;
        gap: 14px;

        @media (width <=768px) {
          display: block flex;
          flex-direction: column;
          gap: 0;
          padding-inline-start: 1em;
        }
      }

      .tel-fax {
        display: block flex;
        gap: 11.4px;

        @media (width <=768px) {
          display: block flex;
          flex-direction: column;
          gap: 0;
          padding-inline-start: 1em;
        }

        @media (width > 768px) {
          a[href^='mailto:'] {
            color: var(--color-text-primary);
            text-decoration: none;
          }
        }

        @media (width <=768px) {
          display: block flex;
          flex-direction: column;

          a[href^='tel:'] {
            color: var(--primary);
            text-decoration: underline;
          }
        }
      }
    }
  }

  /* =====================
    u-news
  ===================== */
  :where(.u-news) {
    --_border-color: #d9d9d9;
    --_clip-path-plus: polygon(47% 0%, 54% 0%, 54% 47%, 100% 47%, 100% 54%, 54% 54%, 54% 100%, 47% 100%, 47% 54%, 0% 54%, 0% 47%, 47% 47%);
    --_clip-path-minus: polygon(47% 47%, 54% 47%, 54% 47%, 100% 47%, 100% 54%, 54% 54%, 54% 54%, 54% 100%, 54% 54%, 0% 54%, 0% 47%, 47% 47%);

    display: block grid;
    margin-inline: auto;

    @media (width <=768px) {
      inline-size: 100%;
      padding-block-end: 0;
    }

    /* ==== details ==== */
    details {
      position: relative;
      display: block grid;
      padding-block: 40px 38px;
      padding-inline: 40px;
      border-block-end: 1px solid var(--_border-color, '#000');

      @media (width <=768px) {
        padding-block: 7.2vw;
        padding-inline: 0;
      }
    }

    details[hidden] {
      display: none;
    }

    /* ==== summary ==== */
    summary {
      position: relative;
      display: block grid;
      grid-template-columns: auto 1fr;
      gap: 63px;
      cursor: pointer;

      @media (width <=768px) {
        gap: 0;
      }

      /* (+) */
      &::after {
        position: absolute;
        inset-block-start: 31%;
        inset-inline-end: 0;
        min-inline-size: 18px;
        aspect-ratio: 1 / 1;
        content: '';
        background: var(--primary);
        clip-path: var(--_clip-path-plus);
        mask-repeat: no-repeat;
        mask-position: center;
        mask-size: contain;
        translate: 0 -50%;
        transition: clip-path 150ms ease 0s;
        will-change: clip-path;

        @media (width <=768px) {
          inset-block-start: 6vw;
          inset-inline-end: 3vw;
          min-inline-size: calc((100 / 390) * 20 * 1vw);
        }
      }
    }

    /* ==== time ==== */
    time {
      align-items: center;
      inline-size: fit-content;
      font-family: var(--title);
      font-size: 16px;
      font-weight: 400;
      line-height: 1.9;
      color: #989898;
      translate: 0 1px;

      @media (width <=768px) {
        font-size: calc((100 / 390) * 13 * 1vw);
      }
    }

    /* ==== h2 ==== */
    h2 {
      padding-inline-end: 27px;
      font-size: 16px;
      font-weight: 500;
      word-break: break-all;

      @media (width <=768px) {
        padding-inline-end: 12vw;
        font-size: calc((100 / 390) * 15 * 1vw);
      }
    }

    /* ==== li ==== */
    li {
      display: block grid;
      grid-template-rows: subgrid;
      grid-row: span 3;
      border-block-end: 1px solid #b7b7b7;
    }

    /* ==== anchor ==== */
    .anchor {
      display: block grid;
      grid-template-columns: auto auto 1fr;
      grid-row: span 3;
      gap: 18px;
      align-items: center;
      padding-block: 49px;

      @media (width <=768px) {
        grid-template-columns: unset;
        grid-row: unset;
        gap: 2.5vw 5.2vw;
        padding-block: 9.4vw;
      }
    }

    /* ==== title ==== */
    .title {
      font-size: 18px;
      font-weight: 500;
      line-height: 1.9;

      @media (width <=768px) {
        grid-row: 2 / 3;
        grid-column: 1 / 4;
        font-size: calc((100 / 390) * 16 * 1vw);
      }
    }

    /* ==== body ==== */
    .body {
      display: block grid;
      grid-template-rows: 0fr;
      grid-template-columns: 1fr;
      overflow: clip;
      transition: grid-template-rows 250ms ease 0ms;
      animation: none;
      will-change: grid-template-rows;

      .editor {
        display: block grid;
        grid-template-rows: 0fr;
        grid-auto-flow: row;
        padding-block: 32px 0;
        padding-inline: 140px 70px;
        overflow: hidden;
        font-size: 18px;
        font-weight: 500;
        line-height: 1.9;

        @media (width <=768px) {
          padding-block-start: var(--nudge-2);
          padding-inline: 0;
          font-size: calc((100 / 390) * 15 * 1vw);
        }
      }
    }

    /* ==== open ==== */
    details[open] {
      .body {
        grid-template-rows: 1fr;
      }

      /* ==== (-) ==== */
      summary::after {
        clip-path: var(--_clip-path-minus);
      }
    }
  }

  /* =====================
    u-more
  ===================== */
  :where(.u-more) {
    position: relative;
    display: block flex;
    gap: 9px;
    align-items: center;
    inline-size: fit-content;
    margin-block-start: 60px;
    margin-inline: auto;
    font-size: 16px;
    font-weight: 700;
    transition: opacity 250ms ease 0s;

    @media (any-hover: hover) {
      &:hover {
        opacity: 0.7;
      }
    }

    @media (width <=768px) {
      gap: 4vw;
      margin-block-start: 3vw;
      font-size: calc((100 / 390) * 15 * 1vw);
    }

    /* ○ */
    &::after {
      position: relative;
      z-index: 2;
      inline-size: 24px;
      aspect-ratio: 1 / 1;
      content: '';
      background: var(--primary);
      border-radius: calc(infinity * 1px);

      @media (width <=768px) {
        inline-size: calc((100 / 390) * 24 * 1vw);
      }
    }

    /* ↓ */
    &::before {
      position: absolute;
      inset-block-start: 11.4px;
      inset-inline-end: 4.8px;
      z-index: 3;
      inline-size: 14px;
      aspect-ratio: 14 / 9;
      content: '';
      background-color: white;
      mask-image: var(--icon-bracket);
      mask-repeat: no-repeat;
      mask-position: center;
      mask-size: contain;

      @media (width <=768px) {
        inset-block-start: 2.7vw;
        inset-inline-end: 1.2vw;
        inline-size: calc((100 / 390) * 14 * 1vw);
      }
    }

    &.on {
      display: none;
      visibility: hidden;
      pointer-events: none;
      opacity: 0;
    }
  }

  /* =====================
    u-empty
  ===================== */
  :where(.u-empty) {
    padding-block: 40px;
    font-weight: 400;
    text-align: center;

    @media (width <=768px) {
      padding-block: calc((100 / 390) * 40 * 1vw);
    }
  }
}
