@charset "UTF-8";
/* CSS Document */
/* ここから下がハンバーガーメニューに関するCSS */
.nav {
  position: fixed;
  z-index: 999;
}
/* チェックボックスを非表示にする */
.drawer_hidden {
  display: none;
}

/* ハンバーガーアイコンの設置スペース */
.drawer_open {
  display: flex;
  height: 180px;
  width: 60px;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 999;/* 重なり順を一番上にする */
  cursor: pointer;
}

/* ハンバーガーメニューのアイコン */
.drawer_open span,
.drawer_open span:before,
.drawer_open span:after {
  content: '';
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background: #333;
  transition: 0.5s;
  position: absolute;
}

/* 三本線の一番上の棒の位置調整 */
.drawer_open span:before {
  bottom: 8px;
}

/* 三本線の一番下の棒の位置調整 */
.drawer_open span:after {
  top: 8px;
}

/* アイコンがクリックされたら真ん中の線を透明にする */
#drawer_input:checked ~ .drawer_open span {
  background: rgba(255, 255, 255, 0);
}

/* アイコンがクリックされたらアイコンが×印になるように上下の線を回転 */
#drawer_input:checked ~ .drawer_open span::before {
  bottom: 0;
  transform: rotate(45deg);
}

#drawer_input:checked ~ .drawer_open span::after {
  top: 0;
  transform: rotate(-45deg);
}
  
/* メニューのデザイン*/
.nav_content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 100%; /* メニューを画面の外に飛ばす */
  z-index: 99;
  background: #FFF;
  transition: .5s;
}

/* メニュー黒ポチを消す */
.nav_list {
  list-style: none;
  margin: 200px 0 100px;
  
}
.nav_item {
  margin-bottom: 20px;
}
.nav_item a {
  text-decoration: none;
  color: #333;
  font-size: 2rem;
}

/* アイコンがクリックされたらメニューを表示 */
#drawer_input:checked ~ .nav_content {
  left: 0;/* メニューを画面に入れる */
}
.nav__pc {
  display: none;
}
.burger-sns {
  display: flex;
  justify-content: space-around;
  margin: 0 50px 70px;;
}
.burger-sns li img {
  width: 50px;
}

@media(min-width:960px){
  .nav {
    display:none;
  }

.nav__pc {
  display: block;
  padding: 40px;
}
.header__nav__pc {
  display: flex;
  opacity: 1;
  justify-content: center;
  position: fixed;
  z-index: 999;
  width: 100%;
  margin: 0 auto;
}
.header__nav__pc li {
  justify-content: space-between;
  border-right: 1px solid #333;
  padding: 0px 60px;
}
.header__nav__pc li:last-child {
  border: none;
}
.header__nav__pc li a {
  font-size: 2.0rem;
  color: #333;
  text-decoration: none;
  margin: 0 auto;
}



/*追従ヘッダー*/
#fixed-header {
  opacity: 1;
  position: fixed;
  top: -180px;  
  width: 100%;
  height: 80px;
  padding: 20px;
  line-height: 40px;
  z-index: 999;
  background:rgba(255,255,255,0.5);
  text-align: center;
  color: #fff;
  box-sizing: border-box;
  transition: .5s; /* アニメーションタイミング */
}
#fixed-header.is-show {
  top: 0;
}
  }