@charset "UTF-8";
/* ----- footer ----- */
.topScroll {
  display: block;
  background-color: #c72355;
  height: 4.93rem;
  position: relative;
  transition: all 0.3s;
}
@media (min-width: 1330px) {
  .topScroll:hover {
    opacity: 0.7;
    transition: all 0.3s;
  }
}
.topScroll::before, .topScroll::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url(../img/common/topArrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 2rem;
  height: 1rem;
}

.footer__inner {
  padding: 0 18.75%;
}

@media (max-width: 1849px) {
  .footer__inner {
    padding: 0 10.75%;
 	}
}

@media (max-width: 1649px) {
  .footer__inner {
    padding: 0 4.75%;
  }
}

@media (max-width: 1079px) {
  .footer__inner {
    padding: 0 2%;
  }
}

.footer__content {
  display: flex;
  justify-content: space-between;
  margin-top: 3.1rem;
}

.footer__logo {
  width: 20rem;
  height: 8.2rem;
  transition: all 0.3s;
}
@media (min-width: 1330px) {
  .footer__logo:hover {
    opacity: 0.7;
    transition: all 0.3s;
  }
}

.footerNav {
  display: flex;
}
.footerNav li:not(:first-of-type) {
  margin-left: 7rem;
}
@media (max-width: 1079px) {
  .footerNav li:not(:first-of-type) {
    margin-left: 5rem;
  }
}
.footerNav a {
  font-size: 1.2rem;
  color: #333;
}
@media (min-width: 1330px) {
  .footerNav a:hover {
    text-decoration: underline;
  }
}

.icons {
  margin: 4.3rem 0 0 auto;
  width: 3.49rem;
  height: auto;
}

.copy {
  text-align: center;
  font-size: 1.2rem;
  font-family: "メイリオ", "Meiryo", sans-serif;
  font-weight: 400;
  padding-top: 4.4rem;
  margin: 5rem 0 6.2rem;
  position: relative;
}
.copy::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 200%;
  height: 1px;
  background-color: #333;
  transform: translateX(-50%) scale(0.5);
}

/* ------------------------------------------
/* sp
/* ------------------------------------------ */
@media (max-width: 767px) {
  /* ----- footer ----- */
  .topScroll {
    display: block;
    background-color: #c72355;
    height: 16vw;
    position: relative;
    transition: all 0.3s;
  }
  .topScroll::before, .topScroll::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-image: url(../img/common/topArrow.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 5.3vw;
    height: 2.66666vw;
  }

  .footer__inner {
    padding: 0 10.1vw;
  }
	
  .footer__content {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    margin-top: 10.6vw;
  }

  .footerNav {
    display: flex;
    flex-direction: column;
  }
  .footerNav li {
    position: relative;
  }
  .footerNav li::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 200%;
    height: 1px;
    background-color: #e187a3;
    transform: translateX(-50%) scale(0.5);
  }
  .footerNav li:not(:first-of-type) {
    margin-left: 0;
  }
  .footerNav li:last-of-type::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 200%;
    height: 1px;
    background-color: #e187a3;
    transform: translateX(-50%) scale(0.5);
  }
  .footerNav a {
    display: inline-block;
    font-size: 3.733333vw;
    color: #333;
    padding: 6.1vw 0 6.1vw 0.53vw;
    width: 100%;
  }

  .footer__logo {
    width: 26.6vw;
    height: 10.9vw;
    margin: 13.3vw auto 0;
  }

  .icons {
    margin: 8vw auto 0;
    width: 7.73vw;
    height: auto;
  }

  .copy {
    text-align: center;
    font-size: 1rem;
    font-family: "メイリオ", "Meiryo", sans-serif;
    font-weight: 400;
    padding-top: 11.4vw;
    margin: 13.33333vw 0 11.4vw;
  }
  .copy::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 200%;
    height: 1px;
    background-color: #333;
    transform: translateX(-50%) scale(0.5);
  }
}