@charset "UTF-8";
/* CSS Document */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
}
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;
}
.none {
  display: none;
}
* {
  box-sizing: border-box;
}
img {
  max-width: 100%;
}
.inner {
  margin: 0 auto;
  max-width: 1000px;
  width: 90%;
}
a {
  text-decoration: none;
  color: #333;
}
/*レスポンシブ対応のため、pcの時は改行を機能させない。スマホの時は機能させる*/
.br-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .br-sp {
    display: block;
  }
}
/*-----------------------------------------------------------------
 header
------------------------------------------------------------------*/
/* header */
header {
  position: absolute;
  width: 100%;
  padding: 30px 0;
  box-sizing: border-box;
}
header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__title {
  font-size: 2.2rem;
  font-family: "Josefin Sans", sans-serif;
}
header nav ul {
  display: flex;
}
header nav ul li {
  margin-left: 50px;
  font-size: 2.2rem;
  font-weight: bold;
  font-family: "Josefin Sans", sans-serif;
}
@media (max-width: 600px) {
  .header nav {
    display: none;
  }
}
@media (max-width: 960px) {
  /* ハンバーガーアイコン */
  #nav-drawer {
    text-align: right;
    position: relative;
  }
  #nav-open {
    display: inline-block;
    vertical-align: middle;
    width: 26px;
    height: 23px;
  }
  #nav-open span,
  #nav-open span:before,
  #nav-open span:after {
    position: absolute;
    height: 2px;
    width: 26px;
    background-color: #777;
    display: block;
    content: "";
  }
  #nav-open span:before {
    bottom: -8px;
  }
  #nav-open span:after {
    bottom: -16px;
  }
  #nav-close {
    z-index: 999;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.5;
  }
  header nav {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 70%;
    height: 100%;
    background-color: #fff;
    text-align: left;
    padding: 30px 30px 0 20px;
    transform: translateX(-105%);
    transition: 0.3s ease-in-out;
    box-shadow: 5px 0 25px rgba(0, 0, 0, 0.15);
  }
  header nav ul {
    display: block;
    text-align: left;
    margin-top: 30px;
  }
  header nav ul li a {
    display: block;
    margin-bottom: 30px;
  }
  #nav-input:checked ~ #nav-close {
    display: block;
  }
  #nav-input:checked ~ nav {
    transform: translateX(0%);
  }
  @media screen and (max-width: 480px) {
    header h1 {
      width: 40%;
    }
  }
}
/*--footer---------------------------------------------------------*/
footer {
  background-color: #e7ecea;
  min-height: 200px;
  padding: 30px 0 20px;
}
footer nav {
  margin-bottom: 30px;
}
footer nav ul {
  margin: 40px 0 60px;
  padding-left: 20px;
}
footer nav ul li {
  margin: 20px 10px;
  display: inline;
  font-weight: bold;
  font-family: "Josefin Sans", sans-serif;
}
footer h1 {
  font-size: 1.9rem;
  font-family: "Josefin Sans", sans-serif;
}
footer span {
  display: block;
  font-size: 1.4rem;
}
@media screen and (max-width: 480px) {
  footer nav ul {
    padding-left: 0;
  }
  footer nav ul li {
    display: block;
  }
}
