@charset "UTF-8";
.event .head::after {
  background-image: url(../img/event/head-event.png?0129);
}
.event .section {
  overflow: hidden;
}
.event__content {
  display: grid;
}
@media only screen and (max-width: 767px) {
  .event__content {
    gap: 50px 0;
  }
}
@media only screen and (min-width: 768px) {
  .event__content {
    gap: 70px 0;
  }
}
.event__block {
  position: relative;
}
.event__block::after {
  content: "";
  width: 1000%;
  position: absolute;
  top: 0;
  left: -100%;
}
@media only screen and (max-width: 767px) {
  .event__block::after {
    height: 120px;
  }
}
@media only screen and (min-width: 768px) {
  .event__block::after {
    height: 185px;
  }
}
.event .event-nav {
  font-family: "Oswald", sans-serif;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media only screen and (max-width: 767px) {
  .event .event-nav {
    gap: 0 10px;
  }
}
@media only screen and (min-width: 768px) {
  .event .event-nav {
    margin: 0 0 20px;
    gap: 0 15px;
  }
}
.event .event-nav__item {
  border: 1px solid #dbdbdb;
  border-radius: 5px;
  display: flex;
  align-items: center;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .event .event-nav__item {
    font-size: 1.5rem;
    padding: 7px 5px;
    justify-content: center;
  }
}
@media only screen and (min-width: 768px) {
  .event .event-nav__item {
    font-size: 1.5rem;
    padding: 10px 20px;
    justify-content: space-between;
  }
}
.event .event-nav__item:hover .nav-arrow {
  background-color: #ed5b16;
}
.event .event-nav .day {
  display: inline-block;
  color: #bbb;
  font-size: 1.2rem;
  margin-right: 20px;
  position: relative;
  top: -2px;
}
@media only screen and (max-width: 767px) {
  .event .event-nav .day {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .event .event-nav .yobi {
    font-size: 0.9rem;
    margin-left: 5px;
  }
}
@media only screen and (min-width: 768px) {
  .event .event-nav .yobi {
    font-size: 1.4rem;
    margin-left: 7px;
  }
}
.event .event-nav a::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.event .event-nav .nav-arrow {
  pointer-events: none;
  background-color: #000;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  transition: 0.3s;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .event .event-nav .nav-arrow {
    display: none;
  }
}
.event .event-nav .nav-arrow::before {
  content: "";
  background: url(../img/icon_arrow-b-tb.svg) no-repeat top left/contain;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 7px;
  left: 6.5px;
}
.event__date {
  font-family: "Oswald", sans-serif;
  position: relative;
  z-index: 10;
  line-height: 1;
  display: flex;
  align-items: baseline;
  font-weight: 800;
}
@media only screen and (max-width: 767px) {
  .event__date {
    font-size: 2rem;
    letter-spacing: 0.1rem;
    margin: 0 0 15px 5px;
  }
}
@media only screen and (min-width: 768px) {
  .event__date {
    font-size: 3.5rem;
    margin: 0 0 25px;
  }
}
.event__date .yobi {
  display: inline-block;
  border-radius: 50%;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .event__date .yobi {
    font-size: 1.1rem;
    margin-left: 5px;
  }
}
@media only screen and (min-width: 768px) {
  .event__date .yobi {
    font-size: 1.9rem;
    margin-left: 8px;
  }
}
.event__list {
  display: grid;
  position: relative;
  z-index: 10;
  grid-template-columns: repeat(2, 1fr);
}
@media only screen and (max-width: 767px) {
  .event__list {
    gap: 20px 15px;
  }
}
@media only screen and (min-width: 768px) {
  .event__list {
    gap: 30px;
  }
}
.event__item {
  position: relative;
}
@media only screen and (min-width: 768px) {
  .event__item {
    border-radius: 30px;
    transition: 0.3s;
  }
  .event__item:hover {
    box-shadow: 5px 5px 13px rgba(0, 0, 0, 0.05);
  }
  .event__item:hover .event__item-pic img {
    transform: scale(1.1);
  }
  .event__item:hover .event__item-text {
    border-right: 1px solid #f1f1f1;
    border-bottom: 1px solid #f1f1f1;
    border-left: 1px solid #f1f1f1;
  }
}
.event__item:not(:has(a)) {
  pointer-events: none;
}
.event__item-pic {
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .event__item-pic {
    border-radius: 15px 15px 0 0;
  }
}
@media only screen and (min-width: 768px) {
  .event__item-pic {
    border-radius: 30px 30px 0 0;
  }
}
.event__item-pic img {
  transition: 0.3s;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.event__item-text {
  border-right: 1px solid #dbdbdb;
  border-bottom: 1px solid #dbdbdb;
  border-left: 1px solid #dbdbdb;
  box-sizing: border-box;
}
@media only screen and (max-width: 767px) {
  .event__item-text {
    border-radius: 0 0 15px 15px;
    padding: 10px 10px 15px;
  }
}
@media only screen and (min-width: 768px) {
  .event__item-text {
    border-radius: 0 0 30px 30px;
    padding: 25px 25px 35px;
  }
}
.event__item-category {
  display: inline-block;
  color: #ed5b16;
  font-weight: 500;
  line-height: 1;
  border-radius: 99px;
}
@media only screen and (max-width: 767px) {
  .event__item-category {
    border: 1px solid #ed5b16;
    font-size: 0.6rem;
    margin: 0 0 7px;
    padding: 3px 7px;
  }
}
@media only screen and (min-width: 768px) {
  .event__item-category {
    border: 1px solid #ed5b16;
    font-size: 0.75rem;
    margin: 0 0 14px;
    padding: 4px 12px;
  }
}
.event__item-name {
  margin: 0;
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  .event__item-name {
    font-size: 0.85rem;
    line-height: 1.3rem;
  }
}
@media only screen and (min-width: 768px) {
  .event__item-name {
    font-size: 1.2rem;
    line-height: 1.63rem;
  }
}
.event__item-name a {
  text-decoration: none;
}
.event__item-name a::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.event__item-comment {
  padding: 0;
  letter-spacing: 0.05em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
@media only screen and (max-width: 767px) {
  .event__item-comment {
    font-size: 0.75rem;
    line-height: 1rem;
    margin: 4px 0 0;
  }
}
@media only screen and (min-width: 768px) {
  .event__item-comment {
    font-size: 0.95rem;
    line-height: 1.3rem;
    margin: 8px 0 0;
  }
}
.event__item-date {
  color: #666;
}
@media only screen and (max-width: 767px) {
  .event__item-date {
    font-size: 0.8rem;
    margin: 7px 0 0;
  }
}
@media only screen and (min-width: 768px) {
  .event__item-date {
    margin: 15px 0 0;
  }
}

.prod .head::after {
  background-image: url(../img/event/head-event.png?0129);
}
.prod .section {
  overflow: hidden;
}
.prod__content {
  display: grid;
}
@media only screen and (max-width: 767px) {
  .prod__content {
    gap: 50px 0;
  }
}
@media only screen and (min-width: 768px) {
  .prod__content {
    gap: 70px 0;
  }
}
.prod__block {
  position: relative;
}
.prod__block::after {
  content: "";
  width: 1000%;
  position: absolute;
  top: 0;
  left: -100%;
}
@media only screen and (max-width: 767px) {
  .prod__block::after {
    height: 120px;
  }
}
@media only screen and (min-width: 768px) {
  .prod__block::after {
    height: 185px;
  }
}
.prod__list {
  display: grid;
  z-index: 10;
}
@media only screen and (max-width: 767px) {
  .prod__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 15px;
  }
}
@media only screen and (min-width: 768px) {
  .prod__list {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px 20px;
  }
}
@media only screen and (min-width: 768px) {
  .prod__item {
    cursor: pointer;
    transition: 0.3s;
  }
  .prod__item:hover .prod__thumb img {
    transform: scale(1.1);
  }
  .prod__item:hover .prod__name {
    opacity: 0.7;
  }
}
.prod__item a {
  position: relative;
  z-index: 1;
}
.prod__thumb {
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .prod__thumb {
    border-radius: 15px;
    margin-bottom: 10px;
  }
}
@media only screen and (min-width: 768px) {
  .prod__thumb {
    border-radius: 30px;
    margin-bottom: 15px;
  }
}
.prod__thumb img {
  transition: 0.3s;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.prod__name {
  margin: 0;
  font-weight: 600;
  text-align: center;
  font-feature-settings: "palt";
}
@media only screen and (max-width: 767px) {
  .prod__name {
    font-size: 0.85rem;
  }
}
@media only screen and (min-width: 768px) {
  .prod__name {
    font-size: 1rem;
  }
}

.dayone h2 {
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .dayone h2 {
    margin: 50px 0 0;
  }
}
@media only screen and (max-width: 767px) {
  .dayone h2 {
    margin: 25px 0 0;
  }
}
.dayone h2 span {
  color: #346299;
  font-size: 1.25rem !important;
}
@media only screen and (min-width: 768px) {
  .dayone__box {
    display: flex;
  }
}
@media only screen and (min-width: 768px) {
  .dayone__text {
    width: 100%;
  }
}
.dayone__text ul {
  list-style: none;
  padding-left: 1.2em;
  margin: 0 auto;
  font-size: 1em;
  font-weight: 600;
}
.dayone__text ul li {
  position: relative;
  margin: 0.3em 0 1em;
}
.dayone__text ul li::before {
  content: "※";
  position: absolute;
  left: -1.2em;
}
@media only screen and (min-width: 768px) {
  .dayone__img {
    width: 80%;
  }
}

.sale .head::after {
  background-image: url(../img/event/head-event.png?0129);
}
.sale .section {
  overflow: hidden;
}
.sale__content {
  display: grid;
}
@media only screen and (max-width: 767px) {
  .sale__content {
    gap: 40px 0;
  }
}
@media only screen and (min-width: 768px) {
  .sale__content {
    gap: 70px 0;
  }
}
.sale .cmmn-date {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
.sale__note {
  border: 1px solid rgba(237, 91, 22, 0.3);
  background-color: rgba(237, 91, 22, 0.03);
  border-radius: 5px;
}
@media only screen and (max-width: 767px) {
  .sale__note {
    display: grid;
    grid-template-columns: 22px 1fr;
    gap: 0 10px;
    font-size: 0.8rem;
    padding: 15px;
    margin-bottom: -25px;
  }
}
@media only screen and (min-width: 768px) {
  .sale__note {
    display: flex;
    gap: 0 3px;
    justify-content: center;
    font-size: 0.9rem;
    padding: 15px;
    margin-bottom: -50px;
    align-items: center;
  }
}
.sale__note-icon {
  border: 2px solid #363030;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  margin-right: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sale__note-icon::before {
  display: inline-block;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "!";
  font-size: 0.7rem;
}
.sale .sale-link {
  color: #ffffff;
  font-family: sans-serif;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .sale .sale-link {
    top: 4px;
    transform: scale(1.05);
  }
}
@media only screen and (min-width: 768px) {
  .sale .sale-link {
    background-color: #000000;
    border-radius: 50px;
    width: 260px;
    height: 58px;
    font-size: 0.95rem;
    transition: 0.3s;
    padding: 0 30px;
    display: flex;
    align-items: center;
  }
  .sale .sale-link:hover {
    background-color: #ed5b16;
  }
  .sale .sale-link:hover .arrow__img::before {
    animation-name: arrow-anime-rtl;
    animation-delay: 0s;
  }
  .sale .sale-link:hover .arrow__img::after {
    animation-name: arrow-anime-ltr;
    animation-delay: 0.2s;
  }
}
@media only screen and (max-width: 767px) {
  .sale .sale-link__txt {
    display: none;
  }
}
.sale .arrow {
  border-radius: 99px;
  pointer-events: none;
}
@media only screen and (max-width: 767px) {
  .sale .arrow {
    background-color: #000000;
    width: 30px;
    height: 30px;
  }
}
@media only screen and (min-width: 768px) {
  .sale .arrow {
    background-color: #ffffff;
    width: 35px;
    height: 35px;
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
  }
}
.sale .arrow__img {
  overflow: hidden;
  position: absolute;
  bottom: 0;
}
@media only screen and (max-width: 767px) {
  .sale .arrow__img {
    width: 12px;
    top: 9px;
    right: 9px;
  }
}
@media only screen and (min-width: 768px) {
  .sale .arrow__img {
    width: 15px;
    top: 11px;
    right: 9px;
  }
}
.sale .arrow__img::before, .sale .arrow__img::after {
  content: "";
  background-repeat: no-repeat;
  background-position: top left;
  background-size: contain;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  animation-fill-mode: forwards;
  animation-duration: 0.4s;
}
@media only screen and (max-width: 767px) {
  .sale .arrow__img::before, .sale .arrow__img::after {
    width: 12px;
  }
}
@media only screen and (min-width: 768px) {
  .sale .arrow__img::before, .sale .arrow__img::after {
    width: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .sale .arrow__img::before {
    background-image: url(../img/icon_arrow-w.svg);
  }
}
@media only screen and (min-width: 768px) {
  .sale .arrow__img::before {
    background-image: url(../img/icon_arrow-b.svg);
  }
}
@media only screen and (min-width: 768px) {
  .sale .arrow__img::after {
    background-image: url(../img/icon_arrow-o.svg);
    transform: translateX(-100%);
  }
}
.sale .link-sale-timetable {
  position: relative;
  display: block;
  text-align: center;
  border: 3px solid #000;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  cursor: pointer;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .sale .link-sale-timetable {
    width: calc(100% - 35px);
    height: 56px;
    margin: 30px auto 10px;
  }
}
@media only screen and (min-width: 768px) {
  .sale .link-sale-timetable {
    max-width: 1000px;
    height: 70px;
    font-size: 1.3rem;
    margin: 35px auto 15px;
  }
  .sale .link-sale-timetable:hover {
    transition: 0.3s;
  }
  .sale .link-sale-timetable:hover .arrow {
    background-color: #ed5b16;
  }
  .sale .link-sale-timetable:hover .arrow__img::before {
    animation-name: arrow-anime-rtl;
    animation-delay: 0s;
  }
  .sale .link-sale-timetable:hover .arrow__img::after {
    animation-name: arrow-anime-ltr;
    animation-delay: 0.2s;
  }
}
.sale .link-sale-timetable .arrow {
  position: absolute;
  background-color: #000000;
}
@media only screen and (max-width: 767px) {
  .sale .link-sale-timetable .arrow {
    width: 25px;
    height: 25px;
    top: 13px;
    right: 13px;
  }
}
@media only screen and (min-width: 768px) {
  .sale .link-sale-timetable .arrow {
    width: 30px;
    height: 30px;
    top: 33px;
    right: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .sale .link-sale-timetable .arrow__img {
    width: 10px;
    top: 8px;
    right: 8px;
  }
}
@media only screen and (min-width: 768px) {
  .sale .link-sale-timetable .arrow__img {
    width: 12px;
    top: 10px;
    right: 9px;
  }
}
.sale .link-sale-timetable .arrow__img::before, .sale .link-sale-timetable .arrow__img::after {
  content: "";
  background-image: url(../img/icon_arrow-w.svg);
  background-repeat: no-repeat;
  background-position: top left;
  background-size: contain;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  animation-fill-mode: forwards;
  animation-duration: 0.4s;
}
@media only screen and (max-width: 767px) {
  .sale .link-sale-timetable .arrow__img::before, .sale .link-sale-timetable .arrow__img::after {
    width: 10px;
  }
}
@media only screen and (min-width: 768px) {
  .sale .link-sale-timetable .arrow__img::before, .sale .link-sale-timetable .arrow__img::after {
    width: 12px;
  }
}
@keyframes arrow-anime-ltr {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes arrow-anime-rtl {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}
.sale__container {
  position: relative;
  margin-inline: calc(50% - 50vi);
  border-top: 1px solid #dbdbdb;
  border-bottom: 1px solid #dbdbdb;
}
@media only screen and (min-width: 768px) {
  .sale__container {
    padding-bottom: 40px;
  }
  .sale__container::after {
    border-bottom: 1px solid #dbdbdb;
    width: 100%;
    position: absolute;
    top: 50.2%;
    left: 0;
    translate: 0 -50%;
  }
}
.sale__list {
  position: relative;
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (max-width: 767px) {
  .sale__list {
    flex-direction: column;
    gap: 30px 0;
    padding: 20px 15px;
  }
}
@media only screen and (min-width: 768px) {
  .sale__list {
    max-width: 1200px;
    width: calc(100% - 30px);
    margin: 0 auto;
    gap: 0 30px;
  }
}
.sale__post {
  position: relative;
}
@media only screen and (max-width: 767px) {
  .sale__post {
    display: grid;
    grid-template-rows: max-content max-content;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 15px;
  }
  .sale__post:last-of-type::before {
    content: none;
  }
  .sale__post:has(.sale__item):not(:has(.sale__item + .sale__item)) .sale__item {
    grid-column: 1;
    justify-self: start;
  }
}
@media only screen and (min-width: 768px) {
  .sale__post {
    flex: 0 0 calc((100% - 90px) / 4);
    padding: 20px 0 0;
  }
  .sale__post.is-last-row .sale__item::after {
    content: none;
  }
}
.sale__post::before, .sale__post::after {
  position: absolute;
  height: calc(100% - 10px);
}
@media only screen and (min-width: 768px) {
  .sale__post::before, .sale__post::after {
    bottom: 0;
  }
}
@media only screen and (max-width: 767px) {
  .sale__post::before {
    border-bottom: 1px solid #dbdbdb;
    width: 100%;
    left: 50%;
    bottom: -20px;
    translate: -50% 0;
  }
}
@media only screen and (min-width: 768px) {
  .sale__post::before {
    border-left: 1px solid #dbdbdb;
    left: -20px;
  }
}
@media only screen and (min-width: 768px) {
  .sale__post::after {
    border-right: 1px solid #dbdbdb;
    right: -20.5px;
  }
}
.sale__post.sale__ghost {
  pointer-events: none;
}
.sale__post.sale__ghost > * {
  display: none !important;
}
.sale__head {
  font-weight: 600;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .sale__head {
    gap: 0 10px;
    grid-column: 1/-1;
    margin-bottom: 13px;
  }
}
@media only screen and (min-width: 768px) {
  .sale__head {
    gap: 0 5px;
    height: 38px;
    margin-bottom: 17px;
  }
  .sale__head:hover .sale__genre {
    opacity: 0.7;
  }
  .sale__head:hover .sale__more {
    background-color: #ed5b16;
  }
}
.sale__genre {
  margin: 0;
  font-weight: 700;
  transition: 0.3s;
}
@media only screen and (min-width: 768px) {
  .sale__genre {
    width: calc(100% - 30px);
    line-height: 1.1;
  }
}
.sale__genre::before {
  content: "#";
  color: #ed5b16;
  margin-right: 5px;
}
.sale__more {
  background-color: #000;
  font-weight: 600;
  border-radius: 50%;
  position: relative;
  transition: 0.3s;
}
@media only screen and (max-width: 767px) {
  .sale__more {
    width: 22px;
    height: 22px;
  }
}
@media only screen and (min-width: 768px) {
  .sale__more {
    width: 30px;
    height: 30px;
  }
}
.sale__more::before {
  content: "";
  background: url(../img/icon_arrow-w.svg) no-repeat top left/contain;
  height: 100%;
  position: absolute;
  left: 50%;
  translate: -50% 0;
  animation-fill-mode: forwards;
  animation-duration: 0.4s;
}
@media only screen and (max-width: 767px) {
  .sale__more::before {
    width: 9px;
    top: 7px;
  }
}
@media only screen and (min-width: 768px) {
  .sale__more::before {
    width: 11px;
    top: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .sale__item:first-child {
    grid-column: 1;
  }
  .sale__item:last-child {
    grid-column: 2;
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 768px) {
  .sale__item {
    /*
    &::after {
    	content: "";
    	border-bottom: 1px solid #dbdbdb;
    	width: calc(100% + 20px);
    	position: absolute;
    	left: 50%;
    	translate: -50% 0;
    	bottom: 0;
    }
    */
  }
  .sale__item:hover .sale__pic img {
    transform: scale(1.1);
  }
  .sale__item:hover .sale__ttl {
    opacity: 0.7;
  }
  .sale__item:nth-of-type(1) {
    margin-bottom: 30px;
  }
}
.sale__pic {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .sale__pic {
    height: 130px;
    margin-bottom: 10px;
  }
}
@media only screen and (min-width: 768px) {
  .sale__pic {
    height: 160px;
    margin-bottom: 12px;
  }
}
.sale__pic img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  transition: 0.3s;
}
.sale__ttl {
  font-weight: 600;
  font-feature-settings: "palt";
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .sale__ttl {
    height: 41px;
    font-size: 0.85rem;
    letter-spacing: 0.03rem;
  }
}
@media only screen and (min-width: 768px) {
  .sale__ttl {
    height: 44px;
    font-size: 0.95rem;
    letter-spacing: 0.07rem;
  }
}
.sale__soon {
  padding: 10px 0;
  font-weight: 600;
  color: #ed5b16;
  border: 1px solid rgba(237, 91, 22, 0.3);
  background-color: rgba(237, 91, 22, 0.03);
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .sale__soon {
    grid-column: 1/-1;
    margin: 10px 0;
    font-size: 0.85rem;
  }
}
@media only screen and (min-width: 768px) {
  .sale__soon {
    margin: 20px 0 0;
    font-size: 0.9rem;
  }
}
.sale .sale-link.link-soon {
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .sale .sale-link.link-soon {
    background: #999;
  }
}
@media only screen and (max-width: 767px) {
  .sale .sale-link.link-soon .arrow {
    background: #999;
  }
}
@media only screen and (min-width: 768px) {
  .sale .sale-link.link-soon .arrow__img {
    opacity: 0.3 !important;
  }
}
.sale .link-soon {
  pointer-events: none;
}
.sale .link-soon .sale__more {
  background: #999;
}

.shop .head::after {
  background-image: url(../img/event/head-event.png);
}
.shop .section {
  overflow: hidden;
}
.shop__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  .shop__list {
    gap: 15px;
  }
}
@media only screen and (min-width: 768px) {
  .shop__list {
    gap: 40px 35px;
  }
}
.shop__item {
  position: relative;
}
@media only screen and (max-width: 767px) {
  .shop__item {
    flex: 0 0 calc((100% - 15px) / 2);
  }
}
@media only screen and (min-width: 768px) {
  .shop__item {
    flex: 0 0 calc((100% - 70px) / 3);
    cursor: pointer;
    transition: 0.3s;
  }
  .shop__item:hover {
    opacity: 0.8;
  }
  .shop__item:hover img {
    transform: scale(1.05);
  }
}
.shop__pic {
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .shop__pic {
    border-radius: 15px;
  }
}
@media only screen and (min-width: 768px) {
  .shop__pic {
    border-radius: 20px;
  }
}
.shop__pic img {
  width: 100%;
  height: 100%;
  transition: 0.3s;
}
.shop__name {
  text-align: center;
  font-weight: 600;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .shop__name {
    font-size: 13px;
    line-height: 1.1rem;
    padding: 10px 0 0;
  }
}
@media only screen and (min-width: 768px) {
  .shop__name {
    font-size: 15px;
    padding: 15px 0 0;
  }
}
.shop__name a {
  color: #363030;
}
.shop__name a::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: "";
}

.schedule .head::after {
  background-image: url(../img/event/head-event.png?0129);
}
.schedule .timetable {
  overflow: hidden;
  width: 100%;
}
.schedule .timetable__header {
  position: sticky;
  top: 0;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .schedule .timetable__header-wrapper {
    display: none;
  }
}
@media only screen and (min-width: 768px) {
  .schedule .timetable__header-wrapper {
    display: flex;
    justify-content: space-between;
    width: 100%;
    font-family: "Noto Sans JP";
    font-weight: 500;
    z-index: 9999;
  }
}
.schedule .timetable__header-ttl, .schedule .timetable__header-daievent, .schedule .timetable__header-daievent--wide, .schedule .timetable__header-shoevent, .schedule .timetable__header-shoevent--tri, .schedule .timetable__header-shoevent--wide, .schedule .timetable__header-seihin {
  border-top: 2px solid #333;
  border-bottom: 2px solid #333;
  border-left: 2px solid #333;
  box-sizing: border-box;
  text-align: center;
  height: 34px;
  line-height: 30px;
  background: #fff;
  font-family: "Noto Sans JP";
  font-weight: 500;
}
.schedule .timetable__header-ttl {
  color: #fff;
  background: #333;
  width: 80px;
}
.schedule .timetable__header-daievent, .schedule .timetable__header-daievent--wide {
  width: 230px;
}
.schedule .timetable__header-daievent--wide {
  width: 460px;
}
.schedule .timetable__header-shoevent, .schedule .timetable__header-shoevent--tri, .schedule .timetable__header-shoevent--wide {
  width: 230px;
}
.schedule .timetable__header-shoevent--wide {
  width: 460px;
}
.schedule .timetable__header-shoevent--tri {
  width: 690px;
}
.schedule .timetable__header-seihin {
  border-right: 2px solid #333;
  width: 230px;
}
@media only screen and (max-width: 767px) {
  .schedule .timetable__head {
    margin: 0 0 20px;
  }
}
@media only screen and (min-width: 768px) {
  .schedule .timetable__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 27px;
  }
}
.schedule .timetable__head .tab-container {
  display: flex;
  list-style: none;
  padding: 0;
}
@media only screen and (max-width: 767px) {
  .schedule .timetable__head .tab-container {
    margin: 0 0 15px;
  }
}
@media only screen and (min-width: 768px) {
  .schedule .timetable__head .tab-container {
    margin: 0;
    width: 750px;
  }
}
.schedule .timetable__head .tab-container .tab {
  position: relative;
  text-align: left;
  border-top: 2px solid #333;
  border-bottom: 2px solid #333;
  border-left: 2px solid #333;
}
@media only screen and (max-width: 767px) {
  .schedule .timetable__head .tab-container .tab {
    width: 33.3333333333%;
    padding: 4px 0 7px;
  }
}
@media only screen and (min-width: 768px) {
  .schedule .timetable__head .tab-container .tab {
    padding: 5px 15px;
    transition: 0.3s;
  }
}
.schedule .timetable__head .tab-container .tab:last-child {
  border-right: 2px solid #333;
}
.schedule .timetable__head .tab-container .tab p {
  position: relative;
  z-index: 2;
  font-family: "Oswald", sans-serif;
  margin: 0;
  line-height: 100%;
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  .schedule .timetable__head .tab-container .tab p {
    font-size: 1.6rem;
    letter-spacing: 0.2rem;
    text-align: center;
  }
}
@media only screen and (min-width: 768px) {
  .schedule .timetable__head .tab-container .tab p {
    display: inline-block;
    font-size: clamp(1.3rem, 2.3vw, 2rem);
    letter-spacing: 0.2rem;
    text-align: left;
  }
}
.schedule .timetable__head .tab-container .tab__ttl-day {
  position: relative;
  margin-left: 2px;
  line-height: 100%;
  top: -1px;
}
@media only screen and (max-width: 767px) {
  .schedule .timetable__head .tab-container .tab__ttl-day {
    font-size: 1.1rem;
    letter-spacing: 0;
  }
}
@media only screen and (min-width: 768px) {
  .schedule .timetable__head .tab-container .tab__ttl-day {
    font-size: clamp(0.9rem, 2.3vw, 1.3rem);
    letter-spacing: 0.05rem;
    margin-right: 33px;
  }
}
.schedule .timetable__head .tab-container .tab__ttl-day2 {
  position: relative;
}
@media only screen and (max-width: 767px) {
  .schedule .timetable__head .tab-container .tab__ttl-day2 {
    display: none;
  }
}
@media only screen and (min-width: 768px) {
  .schedule .timetable__head .tab-container .tab__ttl-day2::before {
    content: "";
    display: block;
    background: #333;
    width: 3px;
    height: 67%;
    position: absolute;
    top: 50%;
    left: -20px;
    transform: translateY(-50%);
    margin-top: 2px;
  }
}
.schedule .timetable__head .tab-container .tab__ttl-yobi {
  letter-spacing: 0.05rem;
  line-height: 100%;
  position: relative;
  top: -1px;
}
@media only screen and (max-width: 767px) {
  .schedule .timetable__head .tab-container .tab__ttl-yobi {
    font-size: 0.9rem;
    margin-left: 5px;
  }
}
@media only screen and (min-width: 768px) {
  .schedule .timetable__head .tab-container .tab__ttl-yobi {
    font-size: 1.1rem;
    margin-left: 7px;
  }
}
.schedule .timetable__head .tab-container .tab a {
  color: #333;
  text-decoration: none;
}
.schedule .timetable__head .tab-container .tab a::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.schedule .timetable__head .tab-container .tab:hover {
  background: #666;
}
.schedule .timetable__head .tab-container .tab:hover .tab__ttl-day2::before {
  background: #fff;
}
.schedule .timetable__head .tab-container .tab:hover a {
  color: #fff;
}
.schedule .timetable__head .tab-container .tab.tab-active {
  background: #333;
  color: #fff;
}
.schedule .timetable__head .tab-container .tab.tab-active .tab__ttl-day2::before {
  background: #fff;
}
.schedule .timetable__head .tab-container .tab.tab-active a {
  color: #fff;
}
.schedule .timetable__head .cat {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
}
@media only screen and (max-width: 767px) {
  .schedule .timetable__head .cat {
    margin: 0 0 15px;
  }
}
@media only screen and (min-width: 768px) {
  .schedule .timetable__head .cat {
    margin: 0;
    justify-content: flex-end;
  }
}
.schedule .timetable__head .cat__item {
  margin: 0 0 0 10px;
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  .schedule .timetable__head .cat__item {
    font-size: 0.85rem;
  }
}
@media only screen and (min-width: 768px) {
  .schedule .timetable__head .cat__item {
    font-size: 0.9rem;
  }
}
.schedule .timetable__head .cat__item::before {
  content: "";
  display: inline-block;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  margin: 0 4px 0 0;
  position: relative;
  top: 1px;
}
.schedule .timetable__head .cat__item.cat-event::before {
  background: #C50408;
}
.schedule .timetable__head .cat__item.cat-prod::before {
  background: #1379B9;
}
.schedule .timetable__head .cat__item.cat-sale::before {
  background: #8BD00E;
}
.schedule .timetable__head .cat__item.cat-auction::before {
  background: #fdc91d;
}
.schedule .timetable__ttl {
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .schedule .timetable__ttl {
    font-size: 1.2rem;
    margin: 0 0 13px;
  }
}
@media only screen and (min-width: 768px) {
  .schedule .timetable__ttl {
    font-size: 1.8rem;
    margin: 0 0 15px;
  }
}
.schedule .timetable__item-pic {
  transition: 0.2s;
}
.schedule .timetable__item-pic:hover {
  transform: scale(1.05);
}
@media only screen and (max-width: 767px) {
  .schedule .timetable__venue-wrapper {
    display: none;
  }
}
@media only screen and (min-width: 768px) {
  .schedule .timetable__venue-wrapper {
    height: 34px;
  }
}
@media only screen and (max-width: 767px) {
  .schedule .timetable__venue {
    display: none;
  }
}
@media only screen and (min-width: 768px) {
  .schedule .timetable__venue {
    display: flex;
    justify-content: space-between;
    width: 100%;
    font-family: "Noto Sans JP";
    font-weight: 500;
    z-index: 9999;
  }
}
@media only screen and (min-width: 768px) {
  .schedule .timetable__venue.venue-sale {
    display: block;
  }
}
@media only screen and (min-width: 768px) {
  .schedule .timetable__venue.venue-sale .venue-skyroom {
    width: 1130px !important;
    border-right: 2px solid #333;
  }
}
@media only screen and (min-width: 768px) {
  .schedule .timetable__venue.venue-sale2 {
    display: block;
  }
}
@media only screen and (min-width: 768px) {
  .schedule .timetable__venue.venue-sale2 .venue-skyroom {
    width: 1590px !important;
    border-right: 2px solid #333;
  }
}
.schedule .timetable__venue .venue-item {
  box-sizing: border-box;
  text-align: center;
  background: #fff;
  position: relative;
  z-index: 99;
}
@media only screen and (min-width: 768px) {
  .schedule .timetable__venue .venue-item {
    border-top: 2px solid #333;
    border-bottom: 2px solid #333;
    border-right: 2px solid #333;
    height: 34px;
    line-height: 29px;
  }
}
@media only screen and (min-width: 768px) {
  .schedule .timetable__venue .venue-item.venue-daievent {
    border-left: 2px solid #333;
    width: 230px;
  }
}
@media only screen and (min-width: 768px) {
  .schedule .timetable__venue .venue-item.venue-daievent--wide {
    border-left: 2px solid #333;
    width: 460px;
  }
}
@media only screen and (min-width: 768px) {
  .schedule .timetable__venue .venue-item.venue-shoevent {
    width: 230px;
  }
}
@media only screen and (min-width: 768px) {
  .schedule .timetable__venue .venue-item.venue-shoevent--wide {
    width: 460px;
  }
}
@media only screen and (min-width: 768px) {
  .schedule .timetable__venue .venue-item.venue-shoevent--tri {
    width: 690px;
  }
}
@media only screen and (min-width: 768px) {
  .schedule .timetable__venue .venue-item.venue-shohin {
    width: 230px;
  }
}
@media only screen and (min-width: 768px) {
  .schedule .timetable__venue .venue-item.venue-seihin {
    border-right: 2px solid #333;
    width: 230px;
  }
}
.schedule .timetable__content {
  position: relative;
}
@media only screen and (min-width: 768px) {
  .schedule .timetable__content::before {
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    content: "";
    height: 1px;
    width: 100%;
    display: block;
    box-shadow: 0 70px 0 0 rgba(0, 0, 0, 0.1), 0 210px 0 0 rgba(0, 0, 0, 0.1), 0 350px 0 0 rgba(0, 0, 0, 0.1), 0 490px 0 0 rgba(0, 0, 0, 0.1), 0 630px 0 0 rgba(0, 0, 0, 0.1), 0 770px 0 0 rgba(0, 0, 0, 0.1), 0 910px 0 0 rgba(0, 0, 0, 0.1), 0 1050px 0 0 rgba(0, 0, 0, 0.1), 0 1190px 0 0 rgba(0, 0, 0, 0.1), 0 1330px 0 0 rgba(0, 0, 0, 0.1), 0 1470px 0 0 rgba(0, 0, 0, 0.1);
  }
}
.schedule .timetable__content.content-sale::before {
  box-shadow: 0 70px 0 0 rgba(0, 0, 0, 0.1), 0 210px 0 0 rgba(0, 0, 0, 0.1), 0 350px 0 0 rgba(0, 0, 0, 0.1), 0 490px 0 0 rgba(0, 0, 0, 0.1), 0 630px 0 0 rgba(0, 0, 0, 0.1), 0 770px 0 0 rgba(0, 0, 0, 0.1), 0 910px 0 0 rgba(0, 0, 0, 0.1), 0 1050px 0 0 rgba(0, 0, 0, 0.1), 0 1190px 0 0 rgba(0, 0, 0, 0.1), 0 1330px 0 0 rgba(0, 0, 0, 0.1);
}
@media only screen and (max-width: 767px) {
  .schedule .timetable__time {
    display: none;
  }
}
@media only screen and (min-width: 768px) {
  .schedule .timetable__time {
    position: absolute;
    top: 0;
    font-weight: 500;
    z-index: 90;
    width: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .schedule .timetable__time-wrapper {
    display: none;
  }
}
@media only screen and (min-width: 768px) {
  .schedule .timetable__time-wrapper {
    height: 34px;
  }
}
@media only screen and (max-width: 767px) {
  .schedule .timetable__time-ttl {
    display: none;
  }
}
@media only screen and (min-width: 768px) {
  .schedule .timetable__time-ttl {
    border-top: 2px solid #333;
    border-bottom: 2px solid #333;
    border-left: 2px solid #333;
    box-sizing: border-box;
    text-align: center;
    height: 34px;
    line-height: 30px;
    background: #fff;
    background: #333;
    color: #fff;
    width: 80px;
    font-family: "Noto Sans JP";
    font-weight: 500;
  }
}
.schedule .timetable__time-ttl.is-fixed {
  position: fixed;
  z-index: 99;
  width: 80px;
  top: 0;
}
@media only screen and (min-width: 768px) {
  .schedule .timetable__time-list {
    list-style: none;
    margin: 40px 10px 0 0;
    padding: 0;
    font-size: 1rem;
    font-family: DIN Alternate, sans-serif;
  }
}
@media only screen and (min-width: 768px) {
  .schedule .timetable__time-list li {
    height: 70px;
    text-align: right;
  }
}
.schedule .timetable__time-list li:nth-child(even) {
  color: #ccc;
}
@media only screen and (min-width: 768px) {
  .schedule .timetable__wrap {
    display: flex;
    justify-content: space-between;
    width: calc(100% - 80px);
    height: 1525px;
    margin: 0 0 0 auto;
    background: #fafafa;
    overflow-x: auto;
    position: relative;
  }
}
@media only screen and (min-width: 768px) {
  .schedule .timetable__wrap.wrap-sale {
    height: 1380px;
  }
}
@media only screen and (min-width: 768px) {
  .schedule .timetable__block.block-sale {
    width: 100%;
  }
}
.schedule .timetable__box {
  box-sizing: border-box;
}
@media only screen and (max-width: 767px) {
  .schedule .timetable__box {
    margin: 0 0 23px;
  }
  .schedule .timetable__box:last-child {
    margin: 0;
  }
}
@media only screen and (min-width: 768px) {
  .schedule .timetable__box {
    height: calc(100% - 34px);
    position: absolute;
  }
  .schedule .timetable__box::before {
    content: "";
    background-color: rgba(0, 0, 0, 0.1);
    width: 2px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
}
@media only screen and (min-width: 768px) {
  .schedule .timetable__box.box-daievent {
    width: 230px;
    left: 0;
  }
}
@media only screen and (min-width: 768px) {
  .schedule .timetable__box.box-daievent--wide {
    width: 460px;
    left: 0;
  }
}
@media only screen and (min-width: 768px) {
  .schedule .timetable__box.box-shoevent {
    width: 230px;
    left: 460px;
  }
}
@media only screen and (min-width: 768px) {
  .schedule .timetable__box.box-shoevent--wide {
    width: 460px;
    left: 230px;
  }
}
@media only screen and (min-width: 768px) {
  .schedule .timetable__box.box-shoevent--tri {
    width: 690px;
    left: 230px;
  }
}
@media only screen and (min-width: 768px) {
  .schedule .timetable__box.box-shohin {
    width: 230px;
    left: 670px;
  }
}
@media only screen and (min-width: 768px) {
  .schedule .timetable__box.box-seihin {
    width: 230px;
    left: 690px;
  }
}
.schedule .timetable .row-0 {
  top: 36px;
}
.schedule .timetable .vol-15 {
  height: 35px;
}
.schedule .timetable .row-15 {
  top: 71px;
}
.schedule .timetable .vol-30 {
  height: 70px;
}
.schedule .timetable .row-30 {
  top: 106px;
}
.schedule .timetable .vol-45 {
  height: 105px;
}
.schedule .timetable .row-45 {
  top: 141px;
}
.schedule .timetable .vol-60 {
  height: 140px;
}
.schedule .timetable .row-60 {
  top: 176px;
}
.schedule .timetable .vol-75 {
  height: 175px;
}
.schedule .timetable .row-75 {
  top: 211px;
}
.schedule .timetable .vol-90 {
  height: 210px;
}
.schedule .timetable .row-90 {
  top: 246px;
}
.schedule .timetable .vol-105 {
  height: 245px;
}
.schedule .timetable .row-105 {
  top: 281px;
}
.schedule .timetable .vol-120 {
  height: 280px;
}
.schedule .timetable .row-120 {
  top: 316px;
}
.schedule .timetable .vol-135 {
  height: 315px;
}
.schedule .timetable .row-135 {
  top: 351px;
}
.schedule .timetable .vol-150 {
  height: 350px;
}
.schedule .timetable .row-150 {
  top: 386px;
}
.schedule .timetable .vol-165 {
  height: 385px;
}
.schedule .timetable .row-165 {
  top: 421px;
}
.schedule .timetable .vol-180 {
  height: 420px;
}
.schedule .timetable .row-180 {
  top: 456px;
}
.schedule .timetable .vol-195 {
  height: 455px;
}
.schedule .timetable .row-195 {
  top: 491px;
}
.schedule .timetable .vol-210 {
  height: 490px;
}
.schedule .timetable .row-210 {
  top: 526px;
}
.schedule .timetable .vol-225 {
  height: 525px;
}
.schedule .timetable .row-225 {
  top: 561px;
}
.schedule .timetable .vol-240 {
  height: 560px;
}
.schedule .timetable .row-240 {
  top: 596px;
}
.schedule .timetable .vol-255 {
  height: 595px;
}
.schedule .timetable .row-255 {
  top: 631px;
}
.schedule .timetable .vol-270 {
  height: 630px;
}
.schedule .timetable .row-270 {
  top: 666px;
}
.schedule .timetable .vol-285 {
  height: 665px;
}
.schedule .timetable .row-285 {
  top: 701px;
}
.schedule .timetable .vol-300 {
  height: 700px;
}
.schedule .timetable .row-300 {
  top: 736px;
}
.schedule .timetable .vol-315 {
  height: 735px;
}
.schedule .timetable .row-315 {
  top: 771px;
}
.schedule .timetable .vol-330 {
  height: 770px;
}
.schedule .timetable .row-330 {
  top: 806px;
}
.schedule .timetable .vol-345 {
  height: 805px;
}
.schedule .timetable .row-345 {
  top: 841px;
}
.schedule .timetable .vol-360 {
  height: 840px;
}
.schedule .timetable .row-360 {
  top: 876px;
}
.schedule .timetable .vol-375 {
  height: 875px;
}
.schedule .timetable .row-375 {
  top: 911px;
}
.schedule .timetable .vol-390 {
  height: 910px;
}
.schedule .timetable .row-390 {
  top: 946px;
}
.schedule .timetable .vol-405 {
  height: 945px;
}
.schedule .timetable .row-405 {
  top: 981px;
}
.schedule .timetable .vol-420 {
  height: 980px;
}
.schedule .timetable .row-420 {
  top: 1016px;
}
.schedule .timetable .vol-435 {
  height: 1015px;
}
.schedule .timetable .row-435 {
  top: 1051px;
}
.schedule .timetable .vol-450 {
  height: 1050px;
}
.schedule .timetable .row-450 {
  top: 1086px;
}
.schedule .timetable .vol-465 {
  height: 1085px;
}
.schedule .timetable .row-465 {
  top: 1121px;
}
.schedule .timetable .vol-480 {
  height: 1120px;
}
.schedule .timetable .row-480 {
  top: 1156px;
}
.schedule .timetable .vol-495 {
  height: 1155px;
}
.schedule .timetable .row-495 {
  top: 1191px;
}
.schedule .timetable .vol-510 {
  height: 1190px;
}
.schedule .timetable .row-510 {
  top: 1226px;
}
.schedule .timetable .vol-525 {
  height: 1225px;
}
.schedule .timetable .row-525 {
  top: 1261px;
}
.schedule .timetable .vol-540 {
  height: 1260px;
}
.schedule .timetable .row-540 {
  top: 1296px;
}
.schedule .timetable .vol-555 {
  height: 1295px;
}
.schedule .timetable .row-555 {
  top: 1331px;
}
.schedule .timetable .vol-570 {
  height: 1330px;
}
.schedule .timetable .row-570 {
  top: 1366px;
}
.schedule .timetable .vol-585 {
  height: 1365px;
}
.schedule .timetable .row-585 {
  top: 1401px;
}
.schedule .timetable .vol-600 {
  height: 1400px;
}
.schedule .timetable .col-1 {
  left: 9px;
}
.schedule .timetable .col-2 {
  left: 239px;
}
.schedule .timetable .col-3 {
  left: 469px;
}
@media only screen and (max-width: 767px) {
  .schedule .timetable__item, .schedule .timetable__item--tri, .schedule .timetable__item--wide {
    font-size: 0.85rem;
    margin: 0 0 13px 0 !important;
    height: auto !important;
  }
}
@media only screen and (min-width: 768px) {
  .schedule .timetable__item, .schedule .timetable__item--tri, .schedule .timetable__item--wide {
    position: absolute;
    width: 214px;
    font-size: 0.9rem;
    z-index: 1;
  }
}
@media only screen and (min-width: 768px) {
  .schedule .timetable__item--wide {
    width: 444px;
  }
}
@media only screen and (min-width: 768px) {
  .schedule .timetable__item--tri {
    width: 674px;
  }
}
.schedule .timetable__item a, .schedule .timetable__item--wide a, .schedule .timetable__item--tri a {
  color: #333;
  text-decoration: none;
}
@media only screen and (min-width: 768px) {
  .schedule .timetable__item.item-sale-detail, .schedule .item-sale-detail.timetable__item--wide, .schedule .item-sale-detail.timetable__item--tri {
    width: 110px;
  }
}
.schedule .timetable__item.item-sale-detail .timetable__item-body, .schedule .item-sale-detail.timetable__item--wide .timetable__item-body, .schedule .item-sale-detail.timetable__item--tri .timetable__item-body {
  height: 100%;
}
.schedule .timetable__item-time {
  margin: 0 0 8px;
}
.schedule .timetable__item-time span {
  font-family: DIN Alternate, sans-serif;
  font-size: 1rem;
}
.schedule .timetable__item-head {
  color: #fff;
  font-weight: 500;
  padding: 11px 10px;
  position: relative;
}
.schedule .timetable__item-head .head-cat {
  margin: 0;
  font-size: 0.95rem;
  line-height: 100%;
  font-family: "Noto Sans JP";
}
.schedule .timetable__item-head .head-time {
  line-height: 100%;
  font-family: DIN Alternate, sans-serif;
  font-size: 0.95rem;
}
@media only screen and (max-width: 767px) {
  .schedule .timetable__item-head .head-time {
    margin: 7px 0 0;
  }
}
@media only screen and (min-width: 768px) {
  .schedule .timetable__item-head .head-time {
    margin: 5px 0 0;
  }
}
.schedule .timetable__item-head.item-head-event {
  background: #C50408;
}
.schedule .timetable__item-head.item-head-prod {
  background: #1379B9;
}
.schedule .timetable__item-head.item-head-sale {
  background: #8BD00E;
}
.schedule .timetable__item-head.item-head-auction {
  background: #fdc91d;
  color: #000;
}
.schedule .timetable__item-head .timetable-info-btn {
  background: #333;
  position: absolute;
  top: 15px;
  right: 13px;
  font-weight: 600;
  font-size: 0.7rem;
  width: 80px;
  height: 30px;
  border-radius: 3px;
}
@media only screen and (min-width: 768px) {
  .schedule .timetable__item-head .timetable-info-btn {
    transition: 0.3s;
  }
  .schedule .timetable__item-head .timetable-info-btn:hover {
    background: #666;
  }
}
.schedule .timetable__item-head .timetable-info-btn a {
  color: #fff;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.schedule .timetable__item-body {
  box-sizing: border-box;
  height: calc(100% - 54px);
  position: relative;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .schedule .timetable__item-body {
    padding: 13px 10px 17px;
  }
}
@media only screen and (min-width: 768px) {
  .schedule .timetable__item-body {
    padding: 13px 10px;
  }
}
.schedule .timetable__item-body ul {
  margin: 0 12px 8px 10px;
  padding: 0;
}
@media only screen and (max-width: 767px) {
  .schedule .timetable__item-body ul {
    font-size: 0.9rem;
  }
}
@media only screen and (min-width: 768px) {
  .schedule .timetable__item-body ul {
    font-size: 0.85rem;
  }
}
.schedule .timetable__item-body ul li {
  margin: 0 0 2px;
  position: relative;
}
.schedule .timetable__item-body .link-list a {
  border-bottom: 1px solid #333;
  position: relative;
}
.schedule .timetable__item-body .link-list a::before {
  content: "";
  display: inline-block;
  background: #000066;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  position: absolute;
  bottom: 1px;
  right: -14px;
}
.schedule .timetable__item-body .link-list a::after {
  content: "";
  display: inline-block;
  border-top: solid 1.5px #fff;
  border-right: solid 1.5px #fff;
  transform: rotate(45deg);
  width: 2.5px;
  height: 2.5px;
  position: absolute;
  bottom: 4.5px;
  right: -10px;
  z-index: 10;
}
.schedule .timetable__item-body .link-list a:hover {
  color: #000066;
  border-bottom: 1px solid #000066;
}
.schedule .timetable__item-inner {
  margin: 0 0 20px;
}
.schedule .timetable__item-inner:last-child {
  margin: 0;
}
.schedule .timetable__item-inner p {
  margin: 0 0 10px;
  font-size: 0.9rem;
}
.schedule .timetable__item-inner dl {
  margin: 0 0 15px;
}
.schedule .timetable__item-inner dt {
  font-size: 1rem;
  line-height: 1;
  font-weight: 700;
  margin: 0 0 5px;
  font-family: DIN Alternate, sans-serif;
}
.schedule .timetable__item-inner dd {
  margin-left: 10px;
}
.schedule .timetable__item-inner a:hover {
  color: #000066;
}
.schedule .timetable__item-ttl {
  font-weight: 700;
  word-break: break-all;
  font-family: "Noto Sans JP";
}
@media only screen and (max-width: 767px) {
  .schedule .timetable__item-ttl {
    font-size: 1rem;
    margin: 0 0 8px;
  }
}
@media only screen and (min-width: 768px) {
  .schedule .timetable__item-ttl {
    font-size: 0.95rem;
    line-height: 1.3rem;
    margin: 0 0 7px;
  }
}
@media only screen and (max-width: 767px) {
  .schedule .timetable__item-pic {
    width: 70%;
  }
}
.schedule .timetable__item.item-event, .schedule .item-event.timetable__item--wide, .schedule .item-event.timetable__item--tri {
  background: #f5dcda;
  box-shadow: inset 0 0 0 1px rgba(204, 1, 4, 0.3);
}
.schedule .timetable__item.item-prod, .schedule .item-prod.timetable__item--wide, .schedule .item-prod.timetable__item--tri {
  background: #DAEEF6;
  box-shadow: inset 0 0 0 1px rgba(42, 162, 172, 0.5);
}
.schedule .timetable__item.item-sale, .schedule .item-sale.timetable__item--wide, .schedule .item-sale.timetable__item--tri {
  background: #ecf5de;
  box-shadow: inset 0 0 0 1px rgba(150, 214, 11, 0.3);
}
.schedule .timetable__item.item-auction, .schedule .item-auction.timetable__item--wide, .schedule .item-auction.timetable__item--tri {
  background: #fffde1;
  box-shadow: inset 0 0 0 1px rgba(255, 203, 32, 0.5);
}
.schedule .timetable__note-sale {
  display: inline-block;
  background: #f94747;
  color: #fff;
  z-index: 99;
}
@media only screen and (max-width: 767px) {
  .schedule .timetable__note-sale {
    margin: 5px 0 20px;
    padding: 18px 18px 16px;
  }
}
@media only screen and (min-width: 768px) {
  .schedule .timetable__note-sale {
    padding: 15px 15px 13px;
  }
}
.schedule .timetable__note-sale p {
  font-weight: 600;
  font-size: 0.95rem;
}
@media only screen and (max-width: 767px) {
  .schedule .timetable__note-sale p {
    margin: 0 0 13px;
    line-height: 1.4rem;
  }
}
@media only screen and (min-width: 768px) {
  .schedule .timetable__note-sale p {
    margin: 0 0 8px;
    line-height: 1.3rem;
  }
}
.schedule .timetable__note-sale p:last-child {
  margin: 0;
}
.schedule .timetable__note-sale p span {
  display: block;
  font-size: 0.85rem;
}
@media only screen and (max-width: 767px) {
  .schedule .timetable__note-sale p span {
    margin: 5px 0 0;
    line-height: 1.3rem;
  }
}
@media only screen and (min-width: 768px) {
  .schedule .timetable__note-sale p span {
    margin: 3px 0 0;
  }
}
.schedule .timetable__note-sale ul {
  margin: 0;
  padding: 0;
  font-weight: 600;
  list-style: none;
  font-size: 0.85rem;
}
.schedule .timetable__note-sale ul li {
  position: relative;
  padding: 0 0 0 18px;
}
@media only screen and (max-width: 767px) {
  .schedule .timetable__note-sale ul li {
    margin: 0 0 5px;
  }
}
@media only screen and (min-width: 768px) {
  .schedule .timetable__note-sale ul li {
    margin: 0 0 3px;
  }
}
.schedule .timetable__note-sale ul li:last-child {
  margin: 0;
}
.schedule .timetable__note-sale ul li::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}
@media only screen and (min-width: 768px) {
  .schedule .timetable__note-sale.sale-day1 {
    position: absolute;
    top: 50px;
    left: 20px;
  }
}
@media only screen and (min-width: 768px) {
  .schedule .timetable__note-sale.sale-day2 {
    position: absolute;
    top: 730px;
    left: 20px;
  }
}
@media only screen and (min-width: 768px) {
  .schedule .timetable__note-sale.sale-day2 .timetable__note-sale-inner {
    max-height: 75px;
    overflow: auto;
    padding: 0 11px 0 0;
  }
  .schedule .timetable__note-sale.sale-day2 .timetable__note-sale-inner::-webkit-scrollbar {
    width: 8px;
  }
  .schedule .timetable__note-sale.sale-day2 .timetable__note-sale-inner::-webkit-scrollbar-track {
    background-color: #f1f1f1;
    border-radius: 100px;
  }
  .schedule .timetable__note-sale.sale-day2 .timetable__note-sale-inner::-webkit-scrollbar-thumb {
    background-color: #666;
    border-radius: 100px;
  }
}
@media only screen and (min-width: 768px) {
  .schedule .timetable-day3.timetable__content::before {
    box-shadow: 0 70px 0 0 rgba(0, 0, 0, 0.1), 0 210px 0 0 rgba(0, 0, 0, 0.1), 0 350px 0 0 rgba(0, 0, 0, 0.1), 0 490px 0 0 rgba(0, 0, 0, 0.1), 0 630px 0 0 rgba(0, 0, 0, 0.1), 0 770px 0 0 rgba(0, 0, 0, 0.1), 0 910px 0 0 rgba(0, 0, 0, 0.1), 0 1050px 0 0 rgba(0, 0, 0, 0.1), 0 1190px 0 0 rgba(0, 0, 0, 0.1);
  }
}
@media only screen and (min-width: 768px) {
  .schedule .timetable-day3 .timetable__wrap {
    height: 1280px;
  }
}
.schedule .timetable-day3 .venue-item {
  box-sizing: border-box;
  text-align: center;
  background: #fff;
  position: relative;
  z-index: 99;
}
@media only screen and (min-width: 768px) {
  .schedule .timetable-day3 .venue-item {
    border-top: 2px solid #333;
    border-bottom: 2px solid #333;
    border-left: 2px solid #333;
    height: 34px;
    line-height: 29px;
  }
}
@media only screen and (min-width: 768px) {
  .schedule .timetable-day3 .venue-item.venue-cosmoroom {
    width: 230px;
  }
}
@media only screen and (min-width: 768px) {
  .schedule .timetable-day3 .venue-item.venue-skyroom {
    width: 460px;
  }
}
.schedule .timetable-day3 .venue-item.venue-lobby {
  border-right: 2px solid #333;
}
@media only screen and (min-width: 768px) {
  .schedule .timetable-day3 .venue-item.venue-lobby {
    width: 230px;
  }
}
@media only screen and (min-width: 768px) {
  .schedule .timetable-day3 .timetable__box.box-cosmoroom {
    left: 0;
  }
}
@media only screen and (min-width: 768px) {
  .schedule .timetable-day3 .timetable__box.box-skyroom {
    width: 290px;
  }
}
@media only screen and (min-width: 768px) {
  .schedule .timetable-day3 .timetable__box.box-lobby {
    width: 290px;
    left: 840px;
  }
}
.schedule .timetable-day2 .box-skyroom .timetable__item, .schedule .timetable-day2 .box-skyroom .timetable__item--wide, .schedule .timetable-day2 .box-skyroom .timetable__item--tri {
  width: 240px;
}
@media only screen and (min-width: 768px) {
  .schedule .timetable-day2.timetable__content::before {
    box-shadow: 0 70px 0 0 rgba(0, 0, 0, 0.1), 0 210px 0 0 rgba(0, 0, 0, 0.1), 0 350px 0 0 rgba(0, 0, 0, 0.1), 0 490px 0 0 rgba(0, 0, 0, 0.1), 0 630px 0 0 rgba(0, 0, 0, 0.1), 0 770px 0 0 rgba(0, 0, 0, 0.1), 0 910px 0 0 rgba(0, 0, 0, 0.1), 0 1050px 0 0 rgba(0, 0, 0, 0.1), 0 1190px 0 0 rgba(0, 0, 0, 0.1), 0 1330px 0 0 rgba(0, 0, 0, 0.1), 0 1470px 0 0 rgba(0, 0, 0, 0.1), 0 1610px 0 0 rgba(0, 0, 0, 0.1), 0 1750px 0 0 rgba(0, 0, 0, 0.1);
  }
}
.schedule .timetable-day2 .venue-item {
  box-sizing: border-box;
  text-align: center;
  background: #fff;
  position: relative;
  z-index: 99;
}
@media only screen and (min-width: 768px) {
  .schedule .timetable-day2 .venue-item {
    border-top: 2px solid #333;
    border-bottom: 2px solid #333;
    border-left: 2px solid #333;
    height: 34px;
    line-height: 29px;
  }
}
@media only screen and (min-width: 768px) {
  .schedule .timetable-day2 .venue-item.venue-cosmoroom {
    width: 290px;
  }
}
@media only screen and (min-width: 768px) {
  .schedule .timetable-day2 .venue-item.venue-skyroom {
    width: 550px;
  }
}
.schedule .timetable-day2 .venue-item.venue-lobby {
  border-right: 2px solid #333;
}
@media only screen and (min-width: 768px) {
  .schedule .timetable-day2 .venue-item.venue-lobby {
    width: 290px;
  }
}
@media only screen and (min-width: 768px) {
  .schedule .timetable-day2 .timetable__box.box-cosmoroom {
    left: 0;
  }
}
@media only screen and (min-width: 768px) {
  .schedule .timetable-day2 .timetable__box.box-skyroom {
    width: 550px;
  }
}
@media only screen and (min-width: 768px) {
  .schedule .timetable-day2 .timetable__box.box-lobby {
    width: 290px;
    left: 840px;
  }
}
@media only screen and (max-width: 767px) {
  .schedule .venue-item-sp {
    box-sizing: border-box;
    text-align: center;
    margin: 0 0 12px;
    padding: 6px 0 7px;
    background: #fff;
    border: 2px solid #333;
    font-family: "Noto Sans JP";
    font-weight: 500;
  }
}
@media only screen and (min-width: 768px) {
  .schedule .venue-item-sp {
    display: none;
  }
}
.schedule .timetable-info {
  font-family: "Noto Sans JP";
  font-feature-settings: "palt";
}
@media only screen and (max-width: 767px) {
  .schedule .timetable-info {
    margin: 40px 0 0;
  }
}
@media only screen and (min-width: 768px) {
  .schedule .timetable-info {
    margin: 70px 0 0;
  }
}
@media only screen and (max-width: 767px) {
  .schedule .timetable-info__block {
    margin: 0 0 40px;
  }
}
@media only screen and (min-width: 768px) {
  .schedule .timetable-info__block {
    margin: 0 0 60px;
  }
}
.schedule .timetable-info__block:last-child {
  margin: 0;
}
.schedule .timetable-info__block.timetable-info-eventtwo {
  background: #ecf5de;
}
.schedule .timetable-info__block.timetable-info-eventtwo h3 {
  background: #8BD00E;
  color: #fff;
}
.schedule .timetable-info__block.timetable-info-event {
  background: #f5dcda;
}
.schedule .timetable-info__block.timetable-info-event h3 {
  background: #C50408;
  color: #fff;
}
.schedule .timetable-info__block.timetable-info-sale {
  background: #daeef6;
}
.schedule .timetable-info__block.timetable-info-sale h3 {
  background: #1379b9;
  color: #fff;
}
.schedule .timetable-info__block.timetable-info-prod {
  background: #fffde1;
}
.schedule .timetable-info__block.timetable-info-prod h3 {
  background: #fdc91d;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .schedule .timetable-info__body {
    padding: 15px;
  }
}
@media only screen and (min-width: 768px) {
  .schedule .timetable-info__body {
    padding: 30px;
  }
}
.schedule .timetable-info__item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
@media only screen and (max-width: 767px) {
  .schedule .timetable-info__item {
    margin: 0 0 25px;
    padding: 0 0 20px;
  }
}
@media only screen and (min-width: 768px) {
  .schedule .timetable-info__item {
    margin: 0 0 30px;
    padding: 0 0 25px;
  }
}
.schedule .timetable-info__item:last-child {
  margin: 0;
  border-bottom: none;
}
.schedule .timetable-info__item tr {
  line-height: 35px;
}
.schedule .timetable-info__item tr th {
  text-align: left;
  vertical-align: top;
  width: 125px;
}
.schedule .timetable-info__item a {
  font-weight: bolder;
  text-decoration: underline;
  transition: 0.2s;
}
.schedule .timetable-info__item a:hover {
  opacity: 0.8;
}
.schedule .timetable-info__item ul li {
  font-weight: bolder;
}
.schedule .timetable-info__item ul.description {
  font-size: 0.9rem;
}
.schedule .timetable-info__item ul.description li {
  font-weight: normal;
}
.schedule .timetable-info h2 {
  text-align: center;
  letter-spacing: 0.05rem;
  border: #333 solid 2px;
  line-height: 100%;
}
@media only screen and (max-width: 767px) {
  .schedule .timetable-info h2 {
    font-size: 1.05rem;
    margin: 0 0 15px;
    padding: 9px 0 11px;
  }
}
@media only screen and (min-width: 768px) {
  .schedule .timetable-info h2 {
    font-size: 1.6rem;
    margin: 0 0 25px;
    padding: 10px 0 13px;
  }
}
.schedule .timetable-info h3 {
  margin: 0;
  letter-spacing: 0.05rem;
}
@media only screen and (max-width: 767px) {
  .schedule .timetable-info h3 {
    font-size: 1.1rem;
    padding: 8px 15px;
  }
}
@media only screen and (min-width: 768px) {
  .schedule .timetable-info h3 {
    font-size: 1.3rem;
    padding: 15px 20px;
  }
}
.schedule .timetable-info h4 {
  width: -moz-fit-content;
  width: fit-content;
  letter-spacing: 0.05rem;
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  .schedule .timetable-info h4 {
    font-size: 1rem;
  }
}
@media only screen and (min-width: 768px) {
  .schedule .timetable-info h4 {
    font-size: 1.2rem;
  }
}
.schedule .timetable-info p {
  margin: 0 0 20px;
}
@media only screen and (max-width: 767px) {
  .schedule .timetable-info p {
    font-size: 0.9rem;
    line-height: 1.6rem;
  }
}
@media only screen and (min-width: 768px) {
  .schedule .timetable-info p {
    line-height: 1.9rem;
  }
}
.schedule .timetable-info p:last-child {
  margin: 0;
}
.schedule .timetable-info ul {
  margin: 0 0 0 15px;
  padding: 0;
}
@media only screen and (max-width: 767px) {
  .schedule .timetable-info ul {
    font-size: 0.9rem;
    line-height: 1.6rem;
  }
}
@media only screen and (min-width: 768px) {
  .schedule .timetable-info ul {
    line-height: 1.9rem;
  }
}
@media only screen and (max-width: 767px) {
  .schedule .timetable-info ul li {
    margin: 0 0 5px;
  }
}
@media only screen and (min-width: 768px) {
  .schedule .timetable-info ul li {
    margin: 0 0 3px;
  }
}
.schedule .timetable-info ul li:last-child {
  margin: 0;
}
.schedule .timetable-info span {
  font-weight: 600;
  background: #333;
  color: #fff;
  margin: 0 5px 0 0;
  padding: 0 7px 2px;
}
.schedule a {
  color: #333;
  transition: 0.3s;
}
.schedule a:hover {
  color: #000066;
}

.gallery .head {
  position: relative;
}
.gallery .head::after {
  background-image: url(../img/event/head-event.png?0129);
}
.gallery__message {
  display: none;
}
@media only screen and (min-width: 768px) {
  .gallery__message {
    color: #ffffff;
    display: block;
    font-size: 2rem;
    font-weight: 600;
    line-height: 2rem;
    position: absolute;
    top: 50%;
    right: 24px;
    transform: translateY(-50%);
    z-index: 999;
  }
}
.gallery__block {
  margin-top: 48px;
}
@media only screen and (min-width: 768px) {
  .gallery__block {
    margin-top: 96px;
  }
}
.gallery__image-wrapper {
  border-top: 1px solid #dbdbdb;
  padding-top: 24px;
  position: relative;
  margin-inline: calc(50% - 50vi);
}
@media only screen and (min-width: 768px) {
  .gallery__image-wrapper {
    padding-top: 48px;
  }
}
.gallery__image-container {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 0 auto;
  width: calc(100% - 16px);
  max-width: 1200px;
}
.gallery__image {
  border-radius: 8px;
  height: auto;
  overflow: hidden;
  position: relative;
  width: calc(50% - 8px);
}
.gallery__image::before {
  content: "";
  display: block;
  padding-top: 100%;
}
@media only screen and (min-width: 768px) {
  .gallery__image::before {
    display: none;
  }
}
@media only screen and (min-width: 768px) {
  .gallery__image {
    height: 288px;
    width: 288px;
  }
}
.gallery__image img {
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  vertical-align: bottom;
}
@media only screen and (min-width: 768px) {
  .gallery__image img {
    position: initial;
    transform: none;
  }
}

.carousel {
  background-color: #ffffff;
}
.carousel__head {
  align-items: center;
  background-color: #ed5b16;
  box-sizing: border-box;
  color: #ffffff;
  display: flex;
  font-size: 1.4rem;
  justify-content: center;
  padding: 2rem 1rem;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .carousel__head {
    font-size: 2rem;
  }
}
.carousel__body {
  height: 200px;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .carousel__body {
    height: 240px;
  }
}
.carousel__body li {
  height: 200px;
}
@media only screen and (min-width: 768px) {
  .carousel__body li {
    height: 240px;
  }
}
.carousel__body img {
  height: 100%;
}
.carousel__link {
  align-items: center;
  background-color: #000000;
  border-radius: 24px;
  color: #ffffff;
  display: flex;
  font-size: 0.9rem;
  font-weight: 600;
  height: 48px;
  justify-content: center;
  letter-spacing: 0.8px;
  margin: 24px auto 0 auto;
  padding: 0 3rem;
  transition: background-color 300ms;
  width: -moz-fit-content;
  width: fit-content;
}
@media only screen and (min-width: 768px) {
  .carousel__link {
    border-radius: 28px;
    height: 56px;
    font-size: 1rem;
  }
}
.carousel__link:hover {
  background-color: #ed5b16;
}
.carousel__link a {
  color: inherit;
}/*# sourceMappingURL=style.css.map */