/*------------------------------------
  フッター
-------------------------------------*/
#footerLinks {
  width: 100%;
  padding: 5rem 0;
  background: var(--Pink);
}

ul#footerMenu {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 800px;
  max-width: 90%;
  margin: 0 auto;
  font-size: 20px;
  color: var(--White);
}

ul#footerMenu li:nth-of-type(1) {
  margin-right: auto;
}
ul#footerMenu li:nth-of-type(2) {
  margin-left: auto;
}
ul#footerMenu li.current {
  display: none;
}

ul#footerMenu li a {
  display: flex;
  align-items: center;
}
ul#footerMenu li:nth-of-type(1) a {
  flex-direction: row;
}
ul#footerMenu li:nth-of-type(2) a {
  flex-direction: row-reverse;
}

ul#footerMenu li:nth-of-type(1) span,
ul#footerMenu li:nth-of-type(2) i {
  margin-left: 0.5rem;
} 

ul#footerMenu li i {
  font-size: 1.8em;
  -webkit-font-smoothing: antialiased;
  -webkit-text-stroke-color: var(--Pink);
  -webkit-text-stroke-width: 1px
}
#footerMenu li:nth-of-type(1) i {
  transform: scaleX(-1);
}

#footerLine {
	padding: 8px 1.3rem;
  color: var(--Pink);
  font-family: var(--PH);
}


@media screen and (max-width: 599px) {
  #footerLinks {
    padding: 3rem 0;
  }

  ul#footerMenu {
    flex-direction: column;
    font-size: 16px;
  }

  ul#footerMenu li:nth-of-type(2) {
    margin-top: 1rem;
  }
  
  #footerLine {
    padding: 0.5rem;
  }
}
