@charset "utf-8";
/* CSS Document */


/* 以下は前回までの内容 */
header {
  height: 60px;
  position: fixed;
    z-index: 100;
}
.main-menu {
  margin: 0 auto;
}
#logo {
  text-align:center;
  padding-top: 3px;
  font-size: 14px;
  width: 200px;
    color:#ccc;
    position: fixed; /* 固定して表示されるようにする */
    top: 0; /* 表示場所を一番上に */
    transition: .5s; /* スクロール時に一瞬で消えると物足りないので.hideの処理を0.5秒で行う */
    z-index: 100; /* 前面に表示されるようにする */
    vertical-align: middle;
}
#logo img{
    height:20px;
    width:auto;
    padding-right:5px;
    position: relative;
    top:5px;
}
#logo a{
    color:#ccc;
    text-decoration: none;
}
.hide{
	transform: translateY(-100%); /* 上に消えるようにする */
}
.pc-menu {
  width: 100%;
}
.pc-menu > ul {
  display: flex;
  list-style: none;
}
.pc-menu > ul > li {
  text-align: center;
  font-size: 16px;
  width: 25%;
}
.pc-menu > ul > li > a {
  display: block;
  text-decoration: none;
  color: #000000;
  line-height: 60px;
}
.pc-menu > ul > li > a:hover {
  background: #cccccc;
}
.sp-menu__box {
  position: fixed;
  top: 0;
  right: 0;
  display: flex;
  height: 60px;
  width: 60px;
  justify-content: center;
  align-items: center;
  z-index: 90;
  background: #000;
  cursor: pointer;
}
.sp-menu__box span,
.sp-menu__box span:before,
.sp-menu__box span:after {
  content: "";
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background: #ffffff;
  position: absolute;
}
.sp-menu__box span:before {
  bottom: 8px;
}
.sp-menu__box span:after {
  top: 8px;
}
#sp-menu__check {
  display: none;
}
#sp-menu__check:checked ~ .sp-menu__box span {
  background: rgba(255, 255, 255, 0);
}
#sp-menu__check:checked ~ .sp-menu__box span::before {
  bottom: 0;
  transform: rotate(45deg);
}
#sp-menu__check:checked ~ .sp-menu__box span::after {
  top: 0;
  transform: rotate(-45deg);
}
#sp-menu__check:checked ~ .sp-menu__content {
  left: 70%;
}
.sp-menu__content {
  width: 30%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 100%;
  z-index: 80;
  background-color: #000;
  transition: all 0.5s;
}
@media screen and (max-width: 750px) {
.sp-menu__content {
  width: 80%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 100%;
  z-index: 80;
  background-color: #000;
  transition: all 0.5s;
}
#sp-menu__check:checked ~ .sp-menu__content {
  left: 20%;
}
}
.sp-menu__list {
  padding: 10px 20px 0;
}
.sp-menu__item {
  border-bottom: solid 1px #444;
  list-style: none;
}
.sp-menu__link {
  display: block;
  width: 100%;
  font-size: 13px;
  box-sizing: border-box;
  color: #ffffff;
  text-decoration: none;
  padding: 9px 15px 10px 0;
    letter-spacing: 0.2em;
}