.header {
  position: relative;
}

.hamburger {
  position: fixed;
  top: 25px;
  right: 15px;
  z-index: 100;
  width: 48px;
  height: 48px;
  border: none;
  background: rgba(0,0,0,0.20);
  cursor: pointer;
}

.hamburger__line {
  position: absolute;
  left: 11px;
  width: 26px;
  height: 2px;
  background-color: #333;
  transition: all .4s;
}

.hamburger__line:nth-of-type(1) {
  top: 14px;
}
.hamburger__line:nth-of-type(2) {
  top: 23px;
}
.hamburger__line:nth-of-type(3) {
  top: 32px;
}

/* メニューオープン時 */
.hamburger.active .hamburger__line:nth-of-type(1) {
  transform: translateY(9px) rotate(-45deg);
}
.hamburger.active .hamburger__line:nth-of-type(2) {
  opacity: 0;
}
.hamburger.active .hamburger__line:nth-of-type(3) {
  transform: translateY(-9px) rotate(45deg);
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 300px;
  height: 100vh;
  background-color: hsla(0,0%,100%,0.98);
  box-shadow: 2px 0 4px rgba(0,0,0,.1);
  transform: translateX(-100%);
  transition: transform .4s;
  z-index: 90;
    overflow-y: scroll;
}

.nav.active {
  transform: translateX(0);
}

.nav__list {
  margin: 0;
  padding: 100px 0 0;
  list-style: none;
}

.nav__item {
  padding: 0 20px;
}

.nav__link {
  display: block;
  padding: 15px 0;
  color: #333;
  text-decoration: none;
  border-bottom: 1px solid #eee;
}
.menu_logo {
    width: 80%;
    height: auto;
    margin: 10px;
}
.menu_h2 {
    font-size: 22px;
}
.menu_shop {
    margin-top: 10px;
}
.menu_shop_photo {
    display: block;
    width: 80%;
    margin: auto;
}
.menu_shop_name {
    font-size: 1.4em;
    margin:5px auto 0 auto;
    text-align: center;
}
.menu_shop_text {
    margin:auto;
    text-align: center;
}

.menu_tel {
    display: flex;
    justify-content: space-around;
    z-index: 100;
    width: 98%!important;
    margin: 10px auto 0 auto;
}
.menu_tel li {
    width: 48%!important;
    background: rgba(0,0,0,0.20);
    overflow: hidden;
    padding: 10px 0!important;
}
.menu_tel li a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: #000;
    font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
}
.menu_tel_phone {
    width: 30px;
    height: auto;
}
.menu_tel_p1 {
    font-size: 12px;
    font-feature-settings: "palt";
}
.menu_tel_p2 {
    font-size: 14px;
    font-feature-settings: "palt";
}
.menu_banner {
    width: 90%;
    height: auto;
    display: block;
    margin: 10px auto 0 auto;
}
.menu_text1 {
    text-align: center;
    width: 96%;
    margin: 5px auto 0 auto;
}
.menu_text2 {
    text-align: center;
    width: 96%;
    margin: 10px auto;
}
.menu_text2 a {
    display: inline-block;
    padding: 3px 10px;
    border: 1px solid rgba(0,0,0,0.6);
    border-radius: 10px;
}
.cast_search_items {
    display: flex;
    flex-wrap: wrap;
    gap:10px;
    width: 96%;
    margin: 10px auto;
}
.cast_search_items li {
    border: 1px solid rgba(0,0,0,0.6);
    border-radius: 3px;
}
.cast_search_items li a {
    display: block;
    padding: 3px 7px;
}

.top_contact_wrapper {
    background: #000;
    display: flex;
}
.top_contact {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: flex-end;
    margin: 0 auto;
}
.top_contact_logo {
    margin-right: auto;
    height: 50px;
    width: auto;
}
.top_contact_btn {
    margin-right: auto;
    height: 50px;
    width: auto;
}
@media screen and (min-width:600px) {
.top_contact_logo {
    height: 80px;
}
.top_contact_btn {
    height: 80px;
}
}

.top_pc_menu li {
    width: 200px;
}
.top_pc_menu li a {
    text-align: center;
    display: block;
    padding: 10px;
    font-size: 1.6em;
    font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
}
.top_pc_menu li a:hover {
    background: rgba(0,0,0,0.05);
}
.top_pc_menu li a span {
    font-size: 0.6em;
}
.top_pc_menu_shopphoto {
    width: auto;
    height: 26px;
    margin: 0 10px 0 0;
}








