@charset "utf-8";
/* CSS Document */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
}
body {
  color: #333; /* RGB */
  font-family: 'YuMincho', 'Yu Mincho', 'Hiragino Mincho ProN', 'serif', "Great Vibes";
  font-weight: 500;
  font-size: 1.6em;
  line-height: 2.4rem;
  text-align: center;
}
a:hover {
  opacity: 0.5;
}
a {
  text-decoration: none;
  color: #333;
}
.none {
  display: none;
}
.pink-character {
  color: #D9009F;
}
/*----------------
header
------------------*/
.header {
  width: 100%;
  height: 100px;
  background-color: #FFF;
  box-shadow: 0px 3px 10px #DBDBDB;
  z-index: 9999;
  position: fixed;
  top: 0px;
  left: 0px;
  padding: 40px 24px 0;
  box-sizing: border-box;
}
.header h1 {
  font-size: 4.8rem;
  color: #333;
  font-weight: 600;
}
.header__content-wrapper {
  display: flex;
  justify-content: space-between;
}
.header__content-wrapper ul li {
  display: inline-block;
  font-size: 2.4rem;
  padding-left: 35px;
}
/*----------------
header - hamburger
------------------*/
.hamburger-menu {
  display: none;
}
.menu-btn {
  position: fixed;
  top: 10px;
  right: 10px;
  display: flex;
  height: 60px;
  width: 60px;
  justify-content: center;
  align-items: center;
  z-index: 90;
  background-color: #D9009F;
}
.menu-btn span, .menu-btn span:before, .menu-btn span:after {
  content: '';
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background-color: #ffffff;
  position: absolute;
}
.menu-btn span:before {
  bottom: 8px;
}
.menu-btn span:after {
  top: 8px;
}
#menu-btn-check:checked ~ .menu-btn span {
  background-color: rgba(255, 255, 255, 0); /*メニューオープン時は真ん中の線を透明にする*/
}
#menu-btn-check:checked ~ .menu-btn span::before {
  bottom: 0;
  transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
  top: 0;
  transform: rotate(-45deg);
}
#menu-btn-check {
  display: none;
}
.menu-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  background-color: #3584bb;
}
.menu-content ul {
  padding: 70px 10px 0;
}
.menu-content ul li {
  border-bottom: solid 1px #fff;
  list-style: none;
}
.menu-content ul li a {
  display: block;
  width: 100%;
  font-size: 2.0rem;
  box-sizing: border-box;
  color: #333;
  text-decoration: none;
  padding: 20px 15px 20px 0;
  position: relative;
}
.menu-content ul li a::before {
  content: "";
  width: 7px;
  height: 7px;
  border-top: solid 2px #333;
  border-right: solid 2px #333;
  transform: rotate(45deg);
  position: absolute;
  right: 50px;
  top: 28px;
}
.menu-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 100%; /*leftの値を変更してメニューを画面外へ*/
  z-index: 80;
  background-color: #FFF1FB;
  transition: all 0.5s; /*アニメーション設定*/
}
#menu-btn-check:checked ~ .menu-content {
  left: 0; /*メニューを画面内へ*/
}
@media screen and (max-width: 1140px) {
  .header {
    height: 80px;
    padding: 30px 24px 0;
  }
  .header h1 {
    font-size: 3.2rem;
  }
  .header__content-wrapper ul {
    display: none;
  }
  .hamburger-menu {
    display: block;
  }
}
/*----------------
footer
------------------*/
.footer {
  background-color: #5D5D5D;
  width: 100%;
  height: 310px;
  position: relative;
}
.footer__links li {
  display: inline-block;
  padding: 50px 10px 0;
}
.footer__links li a {
  color: #FFF;
  font-size: 2.0rem;
}
.footer__sns-links li {
  width: 25px;
  height: 25px;
  padding: 30px 10px 0;
  display: inline-block;
}
.footer__sns-links img {
  width: 100%;
  height: 100%;
}
.footer small {
  color: #FFF;
  position: absolute;
  bottom: 30px;
  left: 0;
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .footer__links {
    max-width: 330px;
    margin: 0 auto;
  }
  .footer__links li:nth-child(4), .footer__links li:nth-child(5), .footer__links li:nth-child(6) {
    padding-top: 15px;
  }
  .footer__links li a {
    font-size: 1.6rem;
  }
  .footer__sns-links li {
    padding-top: 40px;
  }
}