/****************************************

  Header Layout

*****************************************/
.ly_header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 64px;
  padding-left: 6%;
  padding-right: 6%;
  background-color: #fffffe;
  z-index: 9000;
  box-shadow: 0 10px 10px 0 rgba(170, 170, 170, 0.2);
}
@media screen and (min-width: 768px) {
  .ly_header {
    height: 72px;
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (min-width: 1024px) {
  .ly_header {
    position: static;
    height: auto;
    padding-top: 8px;
    padding-bottom: 24px;
    box-shadow: 0 10px 10px 0 rgba(170, 170, 170, 0.2);
  }
}
.ly_header_inner {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  height: 64px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 6px;
  padding-bottom: 6px;
}
@media screen and (min-width: 768px) {
  .ly_header_inner {
    height: 72px;
  }
}
@media screen and (min-width: 1024px) {
  .ly_header_inner {
    flex-direction: column;
    height: auto;
  }
}
.ly_header_nav {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  margin-top: 64px;
  width: 100%;
  height: calc(100vh - 64px);
  background-color: #fffffe;
  border-top: 1px solid #707070;
  z-index: 9200;
}
@media screen and (min-width: 768px) {
  .ly_header_nav {
    margin-top: 72px;
    max-width: 400px;
    height: calc(100vh - 72px);
  }
}
@media screen and (min-width: 1024px) {
  .ly_header_nav {
    display: flex;
    justify-content: center;
    align-items: center;
    position: static;
    max-width: none;
    height: auto;
    margin-top: 0;
    border-top: none;
  }
}

.hp_scrolled {
  background-color: rgba(255, 255, 254, 0.7);
}
@media screen and (min-width: 1024px) {
  .hp_scrolled {
    background-color: #fffffe;
  }
}

#header_cb:checked ~ .hp_scrolled {
  background-color: #fffffe;
}

/****************************************

  Header Block

*****************************************/
.bl_header_logo {
  position: relative;
  z-index: 9900;
}
.bl_header_logo > img {
  width: auto;
  height: 52px;
}
@media screen and (min-width: 768px) {
  .bl_header_logo > img {
    height: 60px;
  }
}
@media screen and (min-width: 1024px) {
  .bl_header_logo > img {
    margin-bottom: 16px;
    height: 72px;
  }
}
.bl_header_burger {
  position: absolute;
  top: 22px;
  right: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 26px;
  height: 20px;
  z-index: 9900;
}
.bl_header_burger > span {
  width: 100%;
  height: 2px;
  background-color: #101010;
  transition: all 0.4s ease-in-out;
}
@media screen and (min-width: 768px) {
  .bl_header_burger {
    top: 26px;
  }
}
@media screen and (min-width: 1024px) {
  .bl_header_burger {
    display: none;
  }
}
.bl_header_overlay {
  display: none;
  position: fixed;
  top: 64px;
  right: -100%;
  width: 100%;
  height: calc(100vh - 64px);
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9100;
}
@media screen and (min-width: 768px) {
  .bl_header_overlay {
    top: 72px;
    height: calc(100vh - 72px);
  }
}
.bl_header_menulist {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 1024px) {
  .bl_header_menulist {
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
}
@media screen and (min-width: 1024px) {
  .bl_header_menulist_item {
    display: flex;
    justify-content: center;
    width: auto;
    border-right: 2px solid #303030;
  }
}
.bl_header_menulist_link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  padding-bottom: 16px;
  padding-left: 6%;
  padding-right: 6%;
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  border-bottom: 1px solid #707070;
}
@media screen and (min-width: 768px) {
  .bl_header_menulist_link {
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (min-width: 1024px) {
  .bl_header_menulist_link {
    display: inline-flex;
    justify-content: center;
    border-bottom: none;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 24px;
    padding-right: 24px;
  }
}
.bl_header_menulist_link > img {
  width: 32px;
}
@media screen and (min-width: 1024px) {
  .bl_header_menulist_link > img {
    display: none;
  }
}

#header_cb:checked ~ .ly_header .bl_header_burger > span:nth-of-type(1) {
  transform: translateY(9px) rotate(225deg);
}
#header_cb:checked ~ .ly_header .bl_header_burger > span:nth-of-type(2) {
  width: 0;
}
#header_cb:checked ~ .ly_header .bl_header_burger > span:nth-of-type(3) {
  transform: translateY(-9px) rotate(-225deg);
}
@media screen and (min-width: 768px) {
  #header_cb:checked ~ .ly_header .bl_header_overlay {
    display: block;
    -webkit-animation: header_nav 0.6s ease-in-out 0s forwards;
            animation: header_nav 0.6s ease-in-out 0s forwards;
  }
}
@media screen and (min-width: 1024px) {
  #header_cb:checked ~ .ly_header .bl_header_overlay {
    display: none;
  }
}
#header_cb:checked ~ .ly_header .ly_header_nav {
  display: block;
  -webkit-animation: header_nav 0.6s ease-in-out 0s forwards;
          animation: header_nav 0.6s ease-in-out 0s forwards;
}
@media screen and (min-width: 768px) {
  #header_cb:checked ~ .ly_header .ly_header_nav {
    -webkit-animation: header_nav 0.6s ease-in-out 0.2s forwards;
            animation: header_nav 0.6s ease-in-out 0.2s forwards;
  }
}
@media screen and (min-width: 1024px) {
  #header_cb:checked ~ .ly_header .ly_header_nav {
    display: flex;
  }
}

/****************************************

  Header Unique

*****************************************/
.un_header_nav_btn {
  margin-top: 24px;
  width: 80%;
  font-family: "Noto Serif JP", serif;
}
@media screen and (min-width: 768px) {
  .un_header_nav_btn {
    margin-top: 32px;
  }
}
@media screen and (min-width: 1024px) {
  .un_header_nav_btn {
    width: auto;
    max-width: none;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 24px;
    padding-right: 24px;
    border: none;
  }
}
@media screen and (min-width: 1024px) {
  .un_header_nav_btn > img {
    display: none;
  }
}

/****************************************

  Header Animation

*****************************************/
@-webkit-keyframes header_nav {
  0% {
    right: -100%;
  }
  100% {
    right: 0;
  }
}
@keyframes header_nav {
  0% {
    right: -100%;
  }
  100% {
    right: 0;
  }
}
/*# sourceMappingURL=header.css.map */