
/* ------------------------------
CONTACT PAGE（事務局窓⼝への連絡）
------------------------------ */
.contact {
  & .link__list2 {
    margin-top: 40px;

    & ul {
      justify-content: flex-start;
      gap: 20px 40px;

      & li {
        &+li {
          margin: 0;
        }

        & a {
          color: var(--blue01);

          &::before {
            background: url(../img/common/icon_arrow_right_blue.svg) center center / 100% 100% no-repeat;
          }

          &.outlink {
            &::after {
              background: url(../img/common/icon_outlink_blue.svg) center center / 100% 100% no-repeat;
            }
          }
        }
      }
    }

    &.local__navi {
      margin-bottom: 72px;
      margin-top: 0;

      & ul {
        background: var(--blue03);
        padding: 24px;
      }
    }
  }

  & .section__box {
    scroll-margin: 80px;

    &+.section__box {
      margin-top: 80px;
    }
  }

  & .tel__box {
    & .box {
      padding: 0;
      overflow: hidden;
      margin-top: 40px;

      & h4 {
        background: var(--blue01);
        color: var(--white01);
        font-size: var(--px16);
        display: flex;
        height: 71px;
        justify-content: center;
        align-items: center;
      }

      & p {
        padding: 24px;
        margin: 0;
        text-align: center;
      }
    }
  }
}

.guide__dialog {
  & .content {
    & .img__box {
      & figure {
        & img {
          display: block; margin: 0 auto;
        }
      }
    }
  }
}