@charset "UTF-8";
/* CSS Document */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
}
body {
  color: #333; /* RGB */
  font-family: 'Kosugi', "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  text-align: center;
  background-color: #F4EEE9;
}
p {
  line-height: 3.2rem;
  text-align: left;
}
.pc {
  display: block;
}
.sp {
  display: none;
}
@media(max-width:768px) {
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
}
*, *:before, *:after {
  box-sizing: border-box;
}
.footer__line {
  width: 100%;
}
.footer__content {
  max-width: 980px;
  margin: 0 auto;
  position: relative;
}
footer nav ul {
  display: flex;
  justify-content: center;
  margin-top: 56px;
}
footer nav li a {
  color: #333;
  text-decoration: none;
  padding: 20px 40px;
}
footer nav li a:hover {
  background-color: #aa3d59;
  color: #fff;
  border-radius: 10px;
}
.footer__logo {
  height: 60px;
  display: block;
  margin: 50px auto 70px;
}
footer small {
  font-size: 10px;
  padding-bottom: 10px;
  color: #777;
}
@media(max-width:768px) {
  footer nav ul {
    margin-top: 40px;
  }
  footer nav li a {
    font-size: 1.2rem;
    padding: 10px 10px;
  }
}
@media(max-width:375px) {
  footer figure {
    position: relative;
    width: 100%;
    overflow-x: hidden;
    height: 40px;
  }
  .footer__line {
    width: auto;
    height: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
  }
  .footer__content {
    max-width: 980px;
    margin: 0 auto;
    position: relative;
  }
  footer nav {
    display: none;
  }
  .footer__logo {
    height: 30px;
  }
}
#scroll-top {
  height: 60px;
  width: 60px;
  position: fixed;
  right: 24px;
  bottom: 24px;
}
#scroll-top img {
  height: 100%;
  width: 100%;
}
#scroll-top img:hover {
  opacity: 0.5;
}

