@charset "UTF-8";
/* CSS Document */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
  box-sizing: border-box;
}
body {
  color: #333; /* RGB */
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-weight: 500;
  font-size: 1.6em;
  line-height: 2.4rem;
  text-align: center;
}
section h2 {
  font-size: 2.4rem;
}
a:hover {
  opacity: 0.5;
}
*, *:before, *:after {
  box-sizing: border-box;
}
/*header*/
.header {
  height: 60px;
  width: 100%;
  background-color: #FFF;
  position: relative;
}
.logo-title {
  display: flex;
}
.header_logo img {
  width: 45px;
  height: auto;
  display: block;
  margin: 8px;
}
.top-title {
  font-size: 1.0rem;
  padding: 19px 0px;
}
.top-title a {
  text-decoration: none;
  color: #333;
}
/* Navigation */
.open-button, .close-button {
  display: none;
}
@media(max-width: 960px) {
  .open-button {
    display: block;
    position: absolute;
    right: 2px;
    top: 20px;
    width: 40px;
    height: 40px;
    cursor: pointer;
  }
  .open-button span, .open-button span:before, .open-button span:after {
    position: absolute;
    height: 3px;
    width: 23px;
    border-radius: 3px;
    background-color: #EC4799;
    display: block;
    content: "";
  }
  .open-button span:before {
    bottom: -8px;
  }
  .open-button span:after {
    bottom: -16px;
  }
  .close-button {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    color: #EC4799;
    font-size: 20px;
    padding: 20px;
  }
  .header__navigation {
    /*display: block;*/
    display: none;
    z-index: 1000;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #FFF;
    width: 70%;
    height: 100%;
    padding-top: 67px;
    box-shadow: 10px 10px 25px rgba(0, 0, 0, 0.4);
  }
  .header__navigation ul li {
    padding-bottom: 10px;
  }
  .header__navigation ul li a {
    font-weight: 600;
    line-height: 40px;
    vertical-align: middle;
    text-decoration: none;
    color: #EC4799;
  }
}
@media(min-width: 960px) {
  .header {
    height: 100px;
  }
  .header_logo img {
    margin: 11px 40px 0 151px;
  }
  .top-title {
    font-size: 2.2rem;
  }
  .header__navigation {
    display: block;
    text-align: right;
  }
  .header__navigation ul {
    display: flex;
    justify-content: center;
  }
  .header__navigation li a {
    display: block;
    padding: 0 30px;
    font-size: 1.6rem;
    height: 90px;
    color: #CD1B65;
    text-decoration: none;
  }
}
/*footer*/
.footer {
  max-width: 1160px;
  margin: 0 auto;
  height: 200px;
  background-color: #F39FB8;
  color: #FFFFFF;
  font-size: 1.4rem;
  padding: 30px 0;
  font-weight: 600;
  position: relative;
}
.footer__site-map {
  margin-bottom: 30px;
}
.footer__site-map li {
  margin: 3px 8px;
  display: inline-block;
}
.footer__site-map li a {
  color: #FFFFFF;
  text-decoration: none;
}
.footer__site-map li a:visited {
  color: #FFFFFF;
}
.footer__sns-links {
  margin-bottom: 40px;
}
.footer__sns-links li {
  display: inline-block;
  width: 30px;
  margin: 8px 10px;
}
.footer__sns-links li img {
  width: 100%;
}
.footer__copyright {
  font-size: 1.0rem;
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  text-align: center;
}
@media(min-width: 960px) {
  .footer__site-map {
    display: flex;
    justify-content: center;
  }
}
#scroll-top {
  background-color: #eee;
  opacity: 0.6;
  bottom: 30px;
  padding: 10px;
  position: fixed;
  right: 20px;
}
#scroll-top a {
  text-decoration: none;
  color: #333;
}