@charset "UTF-8";

.machiraku_cmn_header {
  position: relative;
  z-index: 1;
}
.machiraku_cmn_header__nav {
  position: relative;
  height: 64px;
}
.machiraku_cmn_header__menu {
  height: 64px;
  width: 100%;
  background: #fff;
  box-shadow: 0 -2px 4px -2px rgba(0, 0, 0, 0.1);
}
.machiraku_cmn_header__inner {
  max-width: 960px;
  margin: 0 auto;
}
.machiraku_cmn_header__menuContainer {
  display: flex;
  align-items: stretch;
  margin: 0 auto;
  height: 64px;
  justify-content: space-between;
}
.machiraku_cmn_header__menuList {
  display: flex;
  align-items: stretch;
  height: 100%;
}
.machiraku_cmn_header__logo {
  width: auto;
  display: flex;
  align-items: center;
  margin-right: 64px;
}
.machiraku_cmn_header__menuLink {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 12px;
  color: #333;
  justify-content: center;
  transition: opacity 0.25s;
}
.machiraku_cmn_header__menuLink:hover {
  opacity: 0.8;
  text-decoration: none;
}
.machiraku_cmn_header__image {
  width: auto;
}
.machiraku_cmn_header__text.-logo {
  line-height: 1.2;
  font-size: 16px;
  margin-left: 20px;
}
.machiraku_cmn_header__text.-button {
  color: #fff;
  line-height: 1;
  font-size: 14px;
  margin-left: 16px;
}
.machiraku_cmn_header__text span {
  color: #ff474a;
}
.machiraku_cmn_header__button {
  border: none;
  background-color: #e9c58f;
  width: 160px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: opacity 0.25s;
}
.machiraku_cmn_header__button:hover {
  opacity: 0.8;
}
.machiraku_cmn_header__lines {
  display: block;
  width: 44px;
  height: 100%;
  position: relative;
}
.machiraku_cmn_header__line {
  display: block;
  position: absolute;
  width: 22px;
  height: 1.5px;
  background-color: #fff;
  transition: 0.5s;
}
.machiraku_cmn_header__line:first-of-type {
  top: 30%;
}
.machiraku_cmn_header__line:nth-of-type(2) {
  top: 50%;
}
.machiraku_cmn_header__line:last-of-type {
  top: 70%;
}
.machiraku_cmn_header_menu {
  transition: 0.5s;
  display: none;
  justify-content: flex-end;
  opacity: 0;
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
  position: absolute;
  z-index: 999;
  top: 64px;
  left: 50%;
  transform: translateX(-50%);
}
.machiraku_cmn_header_menu.js-open {
  display: flex;
  -webkit-animation-name: appear;
  animation-name: appear;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  opacity: 1;
}
.machiraku_cmn_header_menu.js-remove {
  -webkit-animation-name: disappear;
  animation-name: disappear;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  opacity: 0;
}
.machiraku_cmn_header_menu__inner {
  padding: 10px 14px 36px;
  border: 1px solid #e9c58f;
  background: #fff url(https://r.r10s.jp/evt/event/area/2023/_pc/img/bg_navMenu.png) no-repeat 100% 0;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.11);
}
.machiraku_cmn_header_menu__category:nth-of-type(n + 2) {
  margin-left: 10px;
}
.machiraku_cmn_header_menu__title {
  background-color: #e9c58f;
  font-weight: 500;
  font-size: 14px;
  padding: 12px 18px;
  position: relative;
}
.machiraku_cmn_header_menu__title::before {
  content: "";
  display: block;
  position: absolute;
  height: 20px;
  width: 4px;
  border-radius: 2px;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #fff;
}
.machiraku_cmn_header_menu__item {
  min-height: 34px;
  border-bottom: 1px solid #bdbdbd;
}
.machiraku_cmn_header_menu__link {
  color: #333;
  position: relative;
  font-size: 14px;
  padding: 8px 20px 8px 11px;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background-color: #fff;
  transition: opacity 0.25s;
}
.machiraku_cmn_header_menu__link:hover {
  background-color: #fffaeb;
  text-decoration: none;
}
.machiraku_cmn_header_menu__link::after {
  content: "";
  position: absolute;
  right: 10px;
  width: 8px;
  height: 8px;
  border-top: 4px solid #ff524e;
  border-right: 4px solid #ff524e;
  transform: rotate(45deg);
}
@-webkit-keyframes appear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes disappear {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes disappear {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
