/* 基本カラー（グレー）:#666 */



/* ================== header ================== */

header{
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 40px;
z-index: 9999; /* 他要素すべての上に */
pointer-events: auto; /* クリック透過する場合（任意） */
}

.text-menu{
position: fixed;
top: 14px;
right: 180px;
width: 26px;
height: 26px;
font-family: "Noto Sans JP", sans-serif;
font-weight: 400;
}

.text-menu span{
position: fixed;
top: 1em;
right: 120px;
}

.text-menu img{
width:auto;
height:1em;
display:inline;
}

@media screen and (min-width: 0px) and (max-width: 750px)  {
.text-menu{
right: 140px;
}

.text-menu span{
right: 80px;
}
}


/* ================== hamburger ボタン・アクション ================== */

#menu__toggle {
  opacity: 0;
}

#menu__toggle:checked + .menu__btn > span {
  transform: rotate(45deg);
}

#menu__toggle:checked + .menu__btn > span::before {
  top: 0;
  transform: rotate(0deg);
}

#menu__toggle:checked + .menu__btn > span::after {
  top: 0;
  transform: rotate(90deg);
}

#menu__toggle:checked ~ .menu__box {
  left: 0 !important;
}

.menu__btn {
  position: fixed;
  top: 26px;
  right: 40px;
  width: 26px;
  height: 26px;
  cursor: pointer;
  z-index: 1;
}

@media screen and (min-width: 0px) and (max-width: 750px)  {
.menu__btn {
  right: 20px;
}
}

.menu__btn > span,
.menu__btn > span::before,
.menu__btn > span::after {
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #fff;
  transition-duration: .25s;
}

.menu__btn > span::before {
  content: '';
  top: -8px;
}

.menu__btn > span::after {
  content: '';
  top: 8px;
}



/* ================== hamburger ボックス・リスト ================== */

.menu__box {
  display: block;
  position: fixed;
  top: 0;
  left: -100%;
  width: 300px;
  height: 100%;
  margin: 0;
  padding: 80px 0;
  list-style: none;
  background-color: #666666b3;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, .2);
  transition-duration: .25s;
}

.menu__box li{
  border-bottom: 1px #777 solid;
}

.menu__box li img{
  width: 100px;
}

.menu__item {
  display: block;
  padding: 12px 24px;
  color: #333;
  font-family: "Shippori Mincho", serif;
  font-size: 1em;
  text-decoration: none;
  transition-duration: .25s;
}

.menu__item:hover {
  background-color: #333;
}



