@charset "UTF-8";


.footer {
  width: calc(100% - 80px);
  max-width: 1500px;
  margin: 150px auto 100px;
}

.footer .icon_arrow {
  width: 18px;
}

.footer .each_menu {
  gap: 8px;
}

/* upper content */
.footer .upper_content {
  width: 100%;
  gap: 24px;
}

.footer .upper_content .logo {
  width: 250px;
}

/* middle content */
.footer .middle_content {
  width: 100%;
  margin: 64px 0 0;
  gap: 80px;
}

.footer .middle_content .wrap_sub_menu {
  width: 100%;
  height: 140px;
  border-top: solid 1px rgba(255, 255, 255, .3);
  position: relative;
}

.footer .middle_content .sub_menu {
  gap: 48px;
}

.footer .sns {
  gap: 56px;
  position: absolute;
  right: 0;
}

.footer .icon_sns {
  aspect-ratio: 1/1;
}

.footer .icon_x {
  width: 22px;
}

.footer .icon_facebook {
  width: 24px;
}

.footer .back_top {
  flex-shrink: 0;
  width: 140px;
  aspect-ratio: 1/1;
  border: solid 1px rgba(255, 255, 255, .3);
}

.footer .icon_top {
  width: 18px;
}

/* SP content */
.footer .sp_content {
  display: none;
}

/* bottom content */
.footer .bottom_content {
  padding: 64px 0 0 0;
}

.footer .bottom_content .copyright {
  font-size: 13px;
}


@media screen and (max-width: 1080px) {

  /* middle content */
  .footer .middle_content .sns {
    display: none;
  }
}


@media screen and (max-width: 960px) {

  /* middle content */
  .footer .middle_content .wrap_sub_menu {
    height: auto;
    padding: 64px 0 0 0;
    border: none;
  }

  .footer .middle_content .sub_menu {
    flex-direction: column;
  }

  .footer .middle_content .back_top {
    display: none;
  }

  /* SP content */
  .footer .sp_content {
    display: flex;
    justify-content: flex-end;
    padding: 32px 0 0 0;
  }

  .footer .sp_content .sns {
    gap: 56px;
    position: relative;
  }
}


@media screen and (max-width: 760px) {

  /* upper content */
  .footer .upper_content {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }

  .footer .upper_content .logo {
    width: 210px;
  }
}


@media screen and (max-width: 600px) {

  .footer {
    width: calc(100% - 44px);
    margin: 200px auto 72px;
  }

  .footer .icon_arrow {
    width: 13px;
  }

  /* upper content */
  .footer .upper_content .logo {
    width: 150px;
  }

  /* middle content */
  .footer .middle_content {
    flex-direction: column;
    margin: 32px 0 0 0;
  }

  .footer .middle_content .sub_menu {
    gap: 28px;
  }

  /* SP content */
  .footer .sp_content .back_top {
    width: 72px;
  }

  .footer .sp_content .icon_top {
    width: 12px;
  }

  .footer .sp_content .sns {
    gap: 36px;
  }

  .footer .icon_x {
    width: 18px;
  }

  .footer .icon_facebook {
    width: 20px;
  }

  /* bottom content */
  .footer .bottom_content .copyright {
    font-size: 10px;
  }
}