.logo {
  position: fixed;
  top: 1.5rem;
  left: 2rem;
  z-index: 100000;
}

nav {
  top: -100px;
}

nav.top-show {
  top: 0;
}

#sp-menu {
  display: none;
}

#pc-menu {
  display: block;
}

nav {
  background-color: #e60012;
  padding-top: 2em;
  padding-bottom: 2em;
  position: fixed;
  left: 0;
  width: 100%;
  z-index: 10000;
  transition: 0.8s;
}
nav .wrapper > ul {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 1200px;
}
nav .wrapper > ul > li {
  display: table;
}
nav .wrapper > ul > li span {
  color: #fff;
  font-weight: bold;
  display: table-cell;
}
nav .wrapper > ul li {
  position: relative;
}
nav .wrapper > ul li a::before {
  background: #fff;
  content: "";
  width: 100%;
  height: 3px;
  position: absolute;
  left: 0;
  bottom: 0px;
  margin: auto;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform 0.3s;
  transform-origin: center top;
}
nav .wrapper > ul li a:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
  transform-origin: center top;
}
nav .wrapper > ul li.hassub > a::before {
  content: none;
}
nav .wrapper > ul li.hassub a::before {
  background: #333;
}
nav .wrapper > ul li.nav_ticket a::before {
  background: #ea535e;
}
nav .wrapper > ul li.nav_stamp a::before {
  background: #ea535e;
}
nav .wrapper > ul li.nav_campaign a::before {
  background: #ea535e;
}
nav .wrapper > ul li.nav_howtouse a::before {
  background: #ea535e;
}
nav .wrapper > ul li.nav_spot a::before {
  background: #ea535e;
}
nav li {
  font-size: 14px;
}
nav li:last-child {
  border-right: none;
}
nav li a {
  color: #fff;
  display: block;
  padding-right: 1em;
  padding-left: 1em;
  letter-spacing: 0.01em;
  padding-bottom: 10px;
  position: relative;
}
nav .img {
  position: absolute;
  display: none;
}
nav .img.left {
  left: -40px;
  top: -20px;
}
nav .img.right {
  right: -150px;
  top: -40px;
}
nav .submenu {
  display: none;
  position: absolute;
  left: 0;
  top: 34px;
  width: 100%;
}
nav .submenu li {
  border: none;
  background-color: #333;
}
nav .submenu li a {
  display: block;
  text-align: center;
  color: #fff;
  padding-top: 2rem;
  padding-bottom: 2rem;
  border-top: 2px solid #fff;
}

.nav_ticket .submenu a {
  color: #fff;
}
.nav_ticket .submenu li {
  background-color: #ea535e;
}
.nav_ticket .submenu li a:hover {
  color: #ea535e;
}

.nav_stamp .submenu a {
  color: #fff;
}
.nav_stamp .submenu li {
  background-color: #ea535e;
}
.nav_stamp .submenu li a:hover {
  color: #ea535e;
}

.nav_campaign .submenu a {
  color: #fff;
}
.nav_campaign .submenu li {
  background-color: #ea535e;
}
.nav_campaign .submenu li a:hover {
  color: #ea535e;
}

.nav_howtouse .submenu a {
  color: #fff;
}
.nav_howtouse .submenu li {
  background-color: #ea535e;
}
.nav_howtouse .submenu li a:hover {
  color: #ea535e;
}

.nav_spot .submenu a {
  color: #fff;
}
.nav_spot .submenu li {
  background-color: #ea535e;
}
.nav_spot .submenu li a:hover {
  color: #ea535e;
}

.hassub .submenu li {
  background-color: #333;
}
.hassub .submenu li a:hover {
  color: #333;
}

.submenu li a:hover {
  background-color: #fff;
}

@media screen and (max-width: 768px) {
  .menubtn {
    position: fixed;
    top: 1rem;
    right: 2rem;
    z-index: 100000;
    width: 10vw;
    height: 10vw;
  }
  .menubtn ul {
    position: relative;
  }
  .menubtn li {
    position: absolute;
    top: 0;
    left: 0;
    display: none;
  }
  .menubtn li.sp-open {
    display: block;
  }
  header {
    height: 4rem;
    background-color: #e60012;
    position: fixed;
    z-index: 100000;
    top: 0;
    left: 0;
    width: 100%;
  }
  header .logo {
    top: 0.2rem;
    width: 13%;
  }
  #pc-menu {
    display: none;
  }
  #sp-menu {
    display: block;
  }
  nav#sp-menu {
    display: block;
    width: 100%;
    min-width: auto;
    top: -150vh;
    padding-top: 6rem;
    height: 100vh;
    padding-bottom: 10rem;
  }
  nav#sp-menu .wrapper {
    overflow-y: scroll;
    height: 100%;
  }
  nav#sp-menu .wrapper::-webkit-scrollbar {
    width: 10px;
    height: 10px;
  }
  nav#sp-menu .wrapper::-webkit-scrollbar-thumb {
    background: none;
  }
  nav#sp-menu .wrapper::-webkit-scrollbar-track {
    background: none;
  }
  nav#sp-menu .wrapper > ul {
    display: block;
    justify-content: center;
    position: relative;
    min-width: auto;
    width: 90%;
    margin-right: auto;
    margin-left: auto;
  }
  nav#sp-menu.show {
    top: 0;
  }
  nav .wrapper > ul > li {
    border-right: none;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    display: block;
  }
  nav .wrapper > ul li a::before {
    background: none;
  }
  nav .wrapper > ul li a:hover::before {
    transform: none;
  }
  nav .wrapper > ul li.nav_campaign a::before {
    background: none;
  }
  nav .wrapper > ul li.nav_howtouse a::before {
    background: none;
  }
  nav .wrapper > ul li.nav_spot a::before {
    background: none;
  }
  nav .wrapper .submenu li {
    width: auto;
    border: none;
    margin-right: 1.5rem;
    margin-bottom: 0;
    margin-top: 1.25rem;
    display: inline-block;
  }
  nav li a {
    padding: 0;
  }
  nav .submenu {
    position: relative;
    display: inline-block;
    top: 0;
  }
  nav .submenu li a {
    padding: 0.5rem 2rem;
    font-size: 1.25rem;
    border-top: none;
  }
  nav .img {
    display: none;
  }
}
@media screen and (min-width: 1280px) {
  nav .img {
    display: block;
  }
}/*# sourceMappingURL=common.css.map */