/* Sass Document */
:root {
  --top-height: 60px;
  --top-bg-color: #333;
  --top-text-color: #fff;
  --medium: 400;
  --bold: 700;
  --yellow: #fdff34;
  --blude: #019cff;
  --beige: #ffffeb;
  --skew: 4rem;
  --pcSkew: 30px;
}

div[id],
section[id] {
  scroll-margin-top: 0rem;
}
@media screen and (min-width: 768px) {
  div[id],
section[id] {
    scroll-margin-top: -20px;
  }
}

@media (min-width: 786px) {
  a[href*="tel:"] {
    text-decoration: none;
    cursor: text;
    pointer-events: none;
  }
}
.l-header {
  height: 13rem;
  display: grid;
  place-content: center;
  position: relative;
  z-index: 100;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .l-header {
    height: 65px;
  }
}

.l-header__logo {
  width: 41.2rem;
}
@media screen and (min-width: 768px) {
  .l-header__logo {
    width: 205px;
  }
}
.l-header__logo img {
  width: 100%;
}
.l-header__logo a {
  display: block;
  transition: 0.3s opacity;
}
@media (any-hover: hover) {
  .l-header__logo a:hover {
    opacity: 0.7;
  }
}

@media screen and (min-width: 768px) {
  .l-right-content,
.l-aside {
    width: calc((100% - 430px) / 2);
    position: relative;
    z-index: 2;
  }
}

.l-wrap {
  width: 100%;
  position: relative;
}
@media screen and (min-width: 768px) {
  .l-wrap {
    display: flex;
    flex-direction: row-reverse;
    background: linear-gradient(180deg, rgb(2, 156, 255) 0%, rgb(238, 136, 202) 100%);
    position: relative;
  }
}
.l-wrap::after {
  content: "";
  position: fixed;
  width: 100%;
  height: 100vh;
  left: 0;
  right: 0;
  top: 0;
  background: url(../img/bg_wave.png);
  display: none;
}
@media screen and (min-width: 768px) {
  .l-wrap::after {
    display: block;
  }
}

.l-aside {
  display: none;
  position: relative;
  padding-right: 40px;
}
@media screen and (min-width: 768px) {
  .l-aside {
    display: block;
  }
}

.c-off {
  position: absolute;
  right: 40px;
  max-width: 25.9rem;
  width: 100%;
  margin-left: auto;
  top: 50%;
  position: -webkit-sticky;
  position: sticky;
  -webkit-animation: upDown 4s ease-in-out infinite;
          animation: upDown 4s ease-in-out infinite;
  transform: translateX(-50%);
}

@media screen and (max-width: 959.98px) {
  .c-off {
    display: none;
  }
}
@-webkit-keyframes upDown {
  0%, 100% {
    transform: translateY(-50%);
  }
  50% {
    transform: translateY(0%);
  }
}
@keyframes upDown {
  0%, 100% {
    transform: translateY(-50%);
  }
  50% {
    transform: translateY(0%);
  }
}
body.is-fixed {
  overflow: hidden;
}

.l-right-content {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  z-index: 10;
  overscroll-behavior-y: contain;
  pointer-events: none;
  opacity: 0;
  transition: 0.3s opacity;
}
.l-right-content.is-show {
  opacity: 1;
  pointer-events: auto;
}
.l-right-content.is-show .l-nav__wrapper {
  transform: translateY(0);
}
.l-right-content p {
  display: none;
}
@media screen and (min-width: 768px) {
  .l-right-content {
    position: relative;
    display: block;
    min-width: 310px;
    padding-left: 40px;
    visibility: visible !important;
    pointer-events: auto !important;
    opacity: 1 !important;
    height: auto !important;
    width: calc((100% - 430px) / 2);
    top: auto !important;
  }
  .l-right-content p {
    display: block;
  }
}

.l-contents {
  width: 100%;
  position: relative;
  z-index: 2;
  background-color: var(--beige);
}
@media screen and (min-width: 768px) {
  .l-contents {
    width: 430px;
  }
}

.p-txt-vertical {
  position: fixed;
  height: 100vh;
  width: 33px;
  z-index: 100;
  top: 0;
  pointer-events: none;
  overflow: hidden;
  display: none;
}
@media screen and (min-width: 768px) {
  .p-txt-vertical {
    display: block;
  }
}
.p-txt-vertical.-left {
  transform: rotate(180deg) translateX(65%);
}
.p-txt-vertical.-left > div {
  -webkit-animation: vertical 20s infinite linear;
          animation: vertical 20s infinite linear;
  transform: translateY(0%);
  position: absolute;
  bottom: 0;
}
.p-txt-vertical.-right {
  transform: translateX(-30%);
  margin-left: 430px;
  bottom: 0;
}
.p-txt-vertical.-right > div {
  -webkit-animation: vertical 20s infinite linear;
          animation: vertical 20s infinite linear;
  transform: translateY(50%);
  position: absolute;
  bottom: 0;
}
.p-txt-vertical img {
  height: 1258px;
}

@-webkit-keyframes vertical {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(50%);
  }
}

@keyframes vertical {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(50%);
  }
}
.p-mv {
  position: relative;
  background-color: var(--yellow);
  padding-bottom: 11rem;
  width: 100vw;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-mv {
    width: 100%;
    padding-bottom: 60px;
  }
}

.p-loopslider__group {
  display: flex;
  width: 132rem;
  -webkit-animation: slideLoop 18s linear infinite;
          animation: slideLoop 18s linear infinite;
}
@media screen and (min-width: 768px) {
  .p-loopslider__group {
    width: 738px;
  }
}
.p-loopslider__group figure {
  width: 20.7rem;
  flex-shrink: 0;
  margin-right: 1.3rem;
  transform: rotate(6.7deg);
}
@media screen and (min-width: 768px) {
  .p-loopslider__group figure {
    width: 118px;
    margin-right: 5px;
  }
}

.p-loopslider {
  display: flex;
  transform: rotate(353deg);
  width: 100vw;
  margin-top: -3.5rem;
}
@media screen and (min-width: 768px) {
  .p-loopslider {
    width: auto;
    margin-top: -14px;
  }
}

@-webkit-keyframes slideLoop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

@keyframes slideLoop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.l-nav__wrapper {
  position: fixed;
  z-index: 10;
  left: 0;
  right: 0;
  top: 16.6rem;
  margin-inline: auto;
  width: 67rem;
  transform: translateY(-4rem);
  transition: 0.3s transform;
}
@media screen and (min-width: 768px) {
  .l-nav__wrapper {
    position: -webkit-sticky;
    position: sticky;
    width: 260px;
    top: 150px;
    margin-left: 0;
  }
}

.l-nav {
  background-color: #000;
  border-radius: 2rem;
  padding: 1rem 3rem 0;
  position: relative;
}
@media screen and (min-width: 768px) {
  .l-nav {
    padding: 0 18px;
    margin-bottom: 20px;
  }
  .l-nav::after {
    content: "";
    position: absolute;
    top: calc(100% - 1px);
    left: 50%;
    width: 13px;
    height: 15px;
    background-color: #000;
    -webkit-clip-path: polygon(0 0, 50% 100%, 100% 0);
            clip-path: polygon(0 0, 50% 100%, 100% 0);
  }
}

.p-menu-btn {
  width: 10.9rem;
  position: absolute;
  border: none;
  background-color: transparent;
  margin: 0;
  padding: 0;
  top: 4rem;
  left: 4rem;
}
@media screen and (min-width: 768px) {
  .p-menu-btn {
    display: none;
  }
}

.l-nav-colose {
  background-color: transparent;
  color: #fff;
  font: inherit;
  font-size: 4.6rem;
  border: none;
  font-weight: 300;
  margin-bottom: -1rem;
}
@media screen and (min-width: 768px) {
  .l-nav-colose {
    display: none;
  }
}

.l-menu {
  list-style: none;
}
.l-menu li:not(:last-of-type) {
  border-bottom: 1px dashed #fff;
}
.l-menu li:first-of-type a {
  padding-top: 0;
}
@media screen and (min-width: 768px) {
  .l-menu li:first-of-type a {
    padding-top: 18px;
  }
}
.l-menu a {
  text-align: center;
  display: block;
  font-size: 2.8rem;
  color: #fff;
  padding-block: 3.2rem 3.7rem;
  transition: 0.3s color;
}
@media (any-hover: hover) {
  .l-menu a:hover {
    color: var(--yellow);
  }
  .l-menu a:hover::before {
    border-color: var(--yellow);
  }
}
@media screen and (min-width: 768px) {
  .l-menu a {
    font-size: 1.4rem;
    text-align: left;
    padding-block: 18px;
    position: relative;
    padding-left: 22px;
    transition: 0.3s border-color;
  }
  .l-menu a::before {
    content: "";
    position: absolute;
    top: 52%;
    left: 0;
    width: 6px;
    height: 6px;
    border-top: 1.5px solid #fff;
    border-right: 1.5px solid #fff;
    transform: translateY(-50%) rotate(45deg);
  }
}

.l-footer {
  position: relative;
  background-color: var(--yellow);
  padding-top: 6rem;
  z-index: 4;
}
@media screen and (min-width: 768px) {
  .l-footer {
    padding-top: 40px;
  }
}
.l-footer::before {
  content: "";
  position: absolute;
  width: 100%;
  height: var(--skew);
  bottom: calc(100% - 1px);
  left: 0;
  right: 0;
  background-color: var(--yellow);
  -webkit-clip-path: polygon(100% 0, 0% 100%, 100% 100%);
          clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}
@media screen and (min-width: 768px) {
  .l-footer::before {
    height: var(--pcSkew);
  }
}
.l-footer .c-section__ttl {
  width: 37.2rem;
}
@media screen and (min-width: 768px) {
  .l-footer .c-section__ttl {
    width: 214px;
  }
}
.l-footer .c-txt {
  font-size: 2.8rem;
  text-align: center;
  line-height: 1.5;
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .l-footer .c-txt {
    font-size: 1.6rem;
    margin-top: 20px;
  }
}
.l-footer .p-btn-wrapper {
  margin: 3rem auto 0;
}
@media screen and (min-width: 768px) {
  .l-footer .p-btn-wrapper {
    margin-top: 18px;
  }
}
.l-footer .c-btn {
  min-height: 7.4rem;
  max-width: 51rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .l-footer .c-btn {
    min-height: 42px;
    max-width: 292px;
  }
}

.p-tel {
  max-width: 51rem;
  margin: 3rem auto 0;
  display: grid;
  grid-auto-columns: 1fr;
  grid-auto-rows: 1fr;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  gap: 0.5rem 1.2rem;
  grid-template-areas: "icn tel" "icn hour";
}
@media screen and (min-width: 768px) {
  .p-tel {
    max-width: 292px;
    gap: 5px 5px;
    margin-top: 17px;
  }
}
.p-tel .c-icn {
  grid-area: icn;
  width: 5.8rem;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .p-tel .c-icn {
    width: 33px;
    margin-top: 5px;
  }
}
.p-tel .c-tel {
  grid-area: tel;
  font-size: 5.6rem;
  font-weight: 900;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-tel .c-tel {
    font-size: 3.2rem;
  }
}
.p-tel .c-hour {
  grid-area: hour;
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .p-tel .c-hour {
    font-size: 1.25rem;
  }
}

.c-copyright {
  text-align: center;
  font-size: 2.4rem;
  border-top: 1px solid #000;
  margin-top: 7.7rem;
  padding-block: 1rem;
}
@media screen and (min-width: 768px) {
  .c-copyright {
    margin-top: 41px;
    font-size: 1.4rem;
    padding-block: 5px;
  }
}

.p-top-btn {
  position: absolute;
  top: 0;
  right: 1.5rem;
  width: 10.9rem;
}
.p-top-btn a {
  transition: 0.3s opacity;
}
@media (any-hover: hover) {
  .p-top-btn a:hover {
    opacity: 0.7;
  }
}
@media screen and (min-width: 768px) {
  .p-top-btn {
    width: 62px;
    right: 11px;
  }
}

.l-content__inner {
  padding-inline: 4rem;
}
@media screen and (min-width: 768px) {
  .l-content__inner {
    padding-inline: 25px;
  }
}

.c-section__ttl {
  margin-inline: auto;
}

.p-info {
  position: relative;
  padding-top: 5.7rem;
  background-color: var(--beige);
  z-index: 1;
}
.p-info::before {
  content: "";
  position: absolute;
  width: 100%;
  -webkit-clip-path: polygon(100% 0, 0% 100%, 100% 100%);
          clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  height: 10rem;
  background-color: var(--beige);
  bottom: calc(100% - 1px);
}
@media screen and (min-width: 768px) {
  .p-info::before {
    height: 57px;
  }
}
@media screen and (min-width: 768px) {
  .p-info {
    padding-top: 33px;
  }
}
.p-info .c-icn {
  position: absolute;
  top: -1.4rem;
  right: 4.6rem;
  width: 26.6rem;
}
@media screen and (min-width: 768px) {
  .p-info .c-icn {
    width: 152px;
    top: -10px;
  }
}
.p-info .c-txt {
  font-size: 2.8rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-info .c-txt {
    font-size: 1.6rem;
  }
}

.p-info__ttl {
  font-size: 4.4rem;
  line-height: 1.5;
  font-weight: var(--bold);
  margin-bottom: 3.5rem;
}
@media screen and (min-width: 768px) {
  .p-info__ttl {
    font-size: 2.5rem;
    margin-bottom: 12px;
  }
}

.p-info__detail {
  border: 1px solid #000;
  border-radius: 4rem;
  background-color: #ee88ca;
  padding: 4.3rem 3.4rem;
  position: relative;
  margin-top: 3.5rem;
}
@media screen and (min-width: 768px) {
  .p-info__detail {
    padding: 25px 23px;
    border-radius: 22px;
  }
}
.p-info__detail .c-icn {
  width: 5.3rem;
  left: 0;
  right: 0;
  margin-inline: auto;
  top: 0;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .p-info__detail .c-icn {
    width: 30px;
  }
}
.p-info__detail .c-txt {
  text-align: center;
}
.p-info__detail .c-txt01 {
  font-size: 4.4rem;
  font-weight: var(--bold);
  line-height: 1.5;
  padding-bottom: 3rem;
  padding-top: 2.2rem;
}
@media screen and (min-width: 768px) {
  .p-info__detail .c-txt01 {
    font-size: 2.2rem;
    padding-top: 1.6rem;
    padding-bottom: 1.8rem;
  }
}
.p-info__detail .c-txt01 .u-txtsize--small {
  font-size: 2.8rem;
}
@media screen and (min-width: 768px) {
  .p-info__detail .c-txt01 .u-txtsize--small {
    font-size: 1.6rem;
  }
}
.p-info__detail .c-txt01 + .c-txt02 {
  border-top: 1px dashed #000;
}
.p-info__detail .c-txt02 {
  font-size: 4.4rem;
  font-weight: var(--bold);
  line-height: 1.5;
  padding-bottom: 3rem;
  padding-top: 2.2rem;
}
@media screen and (min-width: 768px) {
  .p-info__detail .c-txt02 {
    font-size: 2.5rem;
    padding-top: 1.6rem;
    padding-bottom: 1.8rem;
  }
}
.p-info__detail .c-txt02 .u-txtsize--small {
  font-size: 2.8rem;
}
@media screen and (min-width: 768px) {
  .p-info__detail .c-txt02 .u-txtsize--small {
    font-size: 1.6rem;
  }
}
.p-info__detail .c-txt02 + .c-txt03 {
  border-top: 1px dashed #000;
}
.p-info__detail .c-txt03 {
  padding-top: 0.6rem;
  font-size: 3rem;
  line-height: 1.5;
  font-weight: var(--bold);
}
@media screen and (min-width: 768px) {
  .p-info__detail .c-txt03 {
    font-size: 1.7rem;
  }
}
.p-info__detail .p-btn-wrapper {
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .p-info__detail .p-btn-wrapper {
    margin-top: 20px;
  }
}
.p-info__detail .c-btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding-inline: 3rem 4rem;
}
@media screen and (min-width: 768px) {
  .p-info__detail .c-btn {
    padding-inline: 15px 25px;
  }
}

.p-info__detail-ttl {
  width: 59.2rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-info__detail-ttl {
    width: 100%;
  }
}

.c-news__ttl {
  width: 33.4rem;
}
@media screen and (min-width: 768px) {
  .c-news__ttl {
    width: 191px;
  }
}

.p-news {
  padding-top: 8rem;
  padding-bottom: 11rem;
}
@media screen and (min-width: 768px) {
  .p-news {
    padding-top: 42px;
    padding-bottom: 60px;
  }
}

.p-news__list {
  margin-top: 2rem;
}

.p-news__item + .p-news__item {
  margin-top: 0.4rem;
}
@media screen and (min-width: 768px) {
  .p-news__item + .p-news__item {
    margin-top: 2px;
  }
}

.p-news__inner {
  background-color: #ececd8;
  padding: 2.3rem 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-news__inner {
    padding: 18px 10px 14px;
  }
}
.p-news__inner .c-date {
  font-size: 2rem;
  display: inline-block;
  border: 1px solid #000;
  border-radius: 100px;
  padding: 0.1rem 1.2rem 0.3rem;
  margin-bottom: 0.4rem;
}
@media screen and (min-width: 768px) {
  .p-news__inner .c-date {
    font-size: 1.2rem;
  }
}
.p-news__inner p {
  font-size: 2.4rem;
  line-height: 1.5;
  letter-spacing: -0.02em;
}
@media screen and (min-width: 768px) {
  .p-news__inner p {
    font-size: 1.4rem;
  }
}

.p-lineup {
  padding-top: 6rem;
  background-color: var(--yellow);
  position: relative;
  z-index: 2;
  padding-bottom: 8rem;
}
@media screen and (min-width: 768px) {
  .p-lineup {
    padding-top: 40px;
    padding-bottom: 50px;
  }
}
.p-lineup::before {
  content: "";
  position: absolute;
  width: 100%;
  height: var(--skew);
  background-color: var(--yellow);
  -webkit-clip-path: polygon(100% 0, 0% 100%, 100% 100%);
          clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  bottom: calc(100% - 1px);
}
@media screen and (min-width: 768px) {
  .p-lineup::before {
    height: var(--pcSkew);
  }
}

.p-lineup__heading .c-section__ttl {
  margin-bottom: 3rem;
  width: 51.2rem;
}
@media screen and (min-width: 768px) {
  .p-lineup__heading .c-section__ttl {
    width: 283px;
    margin-bottom: 15px;
  }
}
.p-lineup__heading p {
  font-size: 2.8rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-lineup__heading p {
    font-size: 1.6rem;
    line-height: 1.5;
  }
}
.p-lineup__heading .c-note {
  text-indent: -1em;
  padding-left: 1em;
}
.p-lineup__heading .c-note a {
  color: #019cff;
  text-decoration: underline;
}
@media (any-hover: hover) {
  .p-lineup__heading .c-note a:hover {
    text-decoration: none;
  }
}

.p-select__group-list {
  display: flex;
  justify-content: space-between;
  margin-top: 4rem;
}
@media screen and (min-width: 768px) {
  .p-select__group-list {
    margin-top: 20px;
  }
}

.p-select__grup-item {
  width: calc(33.3% - 0.9rem);
}

.c-deco {
  display: block;
  width: 18.7rem;
  position: absolute;
  top: 0.2rem;
  right: 0;
}
@media screen and (min-width: 768px) {
  .c-deco {
    width: 107px;
  }
}

.p-select-genre,
.p-select-hours,
.p-select-area {
  border: 1px solid #000;
  border-radius: 4rem;
  background-color: #ffffeb;
  scroll-margin-top: 0 !important;
}
@media screen and (min-width: 768px) {
  .p-select-genre,
.p-select-hours,
.p-select-area {
    border-radius: 22px;
  }
}

.p-select-genre {
  margin-top: 4rem;
  padding-top: 5.1rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-select-genre {
    padding-top: 37px;
    margin-top: 22px;
  }
}
.p-select-genre .c-section__ttl {
  width: 23.5rem;
}
@media screen and (min-width: 768px) {
  .p-select-genre .c-section__ttl {
    width: 136px;
  }
}

.p-genre-slider {
  margin-top: 4.2rem;
}
@media screen and (min-width: 768px) {
  .p-genre-slider {
    margin-top: 20px;
  }
}
.p-genre-slider .slick-track {
  display: flex;
}
.p-genre-slider .slick-slide {
  height: auto !important;
  margin-right: 2rem;
  margin-left: 2rem;
}
@media screen and (min-width: 768px) {
  .p-genre-slider .slick-slide {
    margin-right: 12px !important;
    margin-left: 12px !important;
  }
}

.p-genre-block {
  display: flex !important;
  flex-direction: column;
}

.p-genre__img-wrapper {
  aspect-ratio: 590/365;
  overflow: hidden;
  border: 1px solid #000;
}
.p-genre__img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-genre__body {
  padding-top: 3.3rem;
  padding-bottom: 4rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-genre__body {
    padding-top: 18px;
    padding-bottom: 22px;
  }
}
.p-genre__body p {
  font-size: 2.8rem;
  line-height: 1.5;
  letter-spacing: -0.02em;
  margin-bottom: 3rem;
  flex-grow: 1;
}
@media screen and (min-width: 768px) {
  .p-genre__body p {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }
}
.p-genre__body .p-btn-wrapper {
  margin-top: auto;
}
.p-genre__body .c-btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding-left: 2.5rem;
  padding-right: 3rem;
}
@media screen and (min-width: 768px) {
  .p-genre__body .c-btn {
    padding-left: 15px;
    padding-right: 20px;
  }
}

.p-genre__ttl {
  display: flex;
  align-items: center;
  gap: 0 1rem;
  border-bottom: 1px dashed #000;
  padding-bottom: 3.4rem;
  margin-bottom: 3.3rem;
  letter-spacing: -0.02em;
}
@media screen and (min-width: 768px) {
  .p-genre__ttl {
    padding-bottom: 18px;
    margin-bottom: 18px;
  }
}
.p-genre__ttl .u-en {
  font-weight: 900;
  font-size: 2.8rem;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .p-genre__ttl .u-en {
    font-size: 1.6rem;
  }
}
.p-genre__ttl .u-jp {
  font-size: 2rem;
}
@media screen and (min-width: 768px) {
  .p-genre__ttl .u-jp {
    font-size: 1.2rem;
  }
}

.p-select-genre-arrow-dots-wrapper {
  height: 7.6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ececd8;
  border-radius: 0 0 3.5rem 3.5rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-select-genre-arrow-dots-wrapper {
    height: 47px;
    border-radius: 0 0 20px 20px;
  }
}
.p-select-genre-arrow-dots-wrapper .slick-dots {
  display: flex;
  justify-content: center;
  align-items: center;
}
.p-select-genre-arrow-dots-wrapper .slick-prev,
.p-select-genre-arrow-dots-wrapper .slick-next {
  border: none;
  background-color: #000;
  color: #fff;
  margin: 0;
  padding: 0;
  border: none;
  height: 100%;
  width: 7.6rem;
  cursor: pointer;
  position: relative;
  transition: 0.3s opacity;
}
@media (any-hover: hover) {
  .p-select-genre-arrow-dots-wrapper .slick-prev:hover,
.p-select-genre-arrow-dots-wrapper .slick-next:hover {
    opacity: 0.7;
  }
}
@media screen and (min-width: 768px) {
  .p-select-genre-arrow-dots-wrapper .slick-prev,
.p-select-genre-arrow-dots-wrapper .slick-next {
    width: 47px;
  }
}
.p-select-genre-arrow-dots-wrapper .slick-prev::before,
.p-select-genre-arrow-dots-wrapper .slick-next::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 2.4rem;
  line-height: 1;
  border-top: 1.5px solid #fff;
  border-right: 1.5px solid #fff;
  width: 1rem;
  height: 1rem;
}
@media screen and (min-width: 768px) {
  .p-select-genre-arrow-dots-wrapper .slick-prev::before,
.p-select-genre-arrow-dots-wrapper .slick-next::before {
    width: 6px;
    height: 6px;
    border-width: 2px;
    will-change: transform;
  }
}
.p-select-genre-arrow-dots-wrapper .slick-prev::before {
  transform: translateY(-50%) rotate(225deg);
}
.p-select-genre-arrow-dots-wrapper .slick-next::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.p-select-genre-arrow-dots-wrapper .slick-dots li {
  margin-inline: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-select-genre-arrow-dots-wrapper .slick-dots li {
    margin-inline: 3px;
  }
}
.p-select-genre-arrow-dots-wrapper .slick-dots li button {
  margin: 0;
  padding: 0;
  position: relative;
  display: block;
  width: 1.4rem;
  height: 1.4rem;
  border: 0;
  outline: none;
  background: transparent;
  color: transparent;
  font-size: 0;
  line-height: 0;
  cursor: pointer;
  transition: 0.3s opacity;
}
@media (any-hover: hover) {
  .p-select-genre-arrow-dots-wrapper .slick-dots li button:hover {
    opacity: 0.7;
  }
}
@media screen and (min-width: 768px) {
  .p-select-genre-arrow-dots-wrapper .slick-dots li button {
    width: 8px;
    height: 8px;
  }
}
.p-select-genre-arrow-dots-wrapper .slick-dots li button::before {
  content: "";
  position: absolute;
  border-radius: 100px;
  width: 1.4rem;
  height: 1.4rem;
  top: 0;
  left: 0;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .p-select-genre-arrow-dots-wrapper .slick-dots li button::before {
    width: 8px;
    height: 8px;
  }
}
.p-select-genre-arrow-dots-wrapper .slick-dots li.slick-active button::before {
  background-color: #000;
}

.p-select-hours {
  padding-top: 5.8rem;
  position: relative;
  margin-top: 4rem;
}
@media screen and (min-width: 768px) {
  .p-select-hours {
    padding-top: 34px;
    margin-top: 20px;
  }
}
.p-select-hours .c-section__ttl {
  width: 23.6rem;
}
@media screen and (min-width: 768px) {
  .p-select-hours .c-section__ttl {
    width: 136px;
  }
}

.p-select__hours-list {
  display: flex;
  margin-top: 3.5rem;
  border-top: 1px solid #000;
}
@media screen and (min-width: 768px) {
  .p-select__hours-list {
    margin-top: 25px;
  }
}

.p-select__hours-item {
  padding: 4rem;
  width: 50%;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-select__hours-item {
    padding: 24px;
  }
}
.p-select__hours-item .c-ttl {
  margin-inline: auto;
}
.p-select__hours-item .p-img-wrapper {
  margin: 3.2rem auto 1.7rem;
}
@media screen and (min-width: 768px) {
  .p-select__hours-item .p-img-wrapper {
    margin-block: 20px 5px;
  }
}
.p-select__hours-item .c-txt {
  font-size: 2.8rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .p-select__hours-item .c-txt {
    font-size: 1.6rem;
    margin-bottom: 5px;
  }
}
.p-select__hours-item .c-note {
  font-size: 2rem;
  text-indent: -1em;
  padding-left: 1em;
  margin-top: auto;
}
@media screen and (min-width: 768px) {
  .p-select__hours-item .c-note {
    font-size: 1.2rem;
  }
}
.p-select__hours-item .p-btn-wrapper {
  margin: 3.6rem auto 0;
}
@media screen and (min-width: 768px) {
  .p-select__hours-item .p-btn-wrapper {
    margin-top: 19px;
  }
}
.p-select__hours-item .c-btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-right: 3rem;
}
@media screen and (min-width: 768px) {
  .p-select__hours-item .c-btn {
    padding-right: 18px;
    padding-left: 13px;
  }
}
.p-select__hours-item.-morning {
  background-color: var(--yellow);
  border-bottom-left-radius: calc(4rem - 1px);
}
@media screen and (min-width: 768px) {
  .p-select__hours-item.-morning {
    border-bottom-left-radius: 21px;
  }
}
.p-select__hours-item.-morning .c-ttl {
  width: 23.7rem;
}
@media screen and (min-width: 768px) {
  .p-select__hours-item.-morning .c-ttl {
    width: 136px;
  }
}
.p-select__hours-item.-evening {
  background-color: var(--blude);
  border-left: 1px solid #000;
  border-bottom-right-radius: calc(4rem - 1px);
}
@media screen and (min-width: 768px) {
  .p-select__hours-item.-evening {
    border-bottom-right-radius: 21px;
  }
}
.p-select__hours-item.-evening .c-ttl {
  width: 22rem;
}
@media screen and (min-width: 768px) {
  .p-select__hours-item.-evening .c-ttl {
    width: 127px;
  }
}

.p-select-area {
  background-color: #ffffeb;
  padding-block: 5.6rem 12rem;
  position: relative;
  margin-top: 4rem;
}
@media screen and (min-width: 768px) {
  .p-select-area {
    margin-top: 25px;
    padding-block: 30px 65px;
  }
}
.p-select-area .c-section__ttl {
  width: 20.5rem;
}
@media screen and (min-width: 768px) {
  .p-select-area .c-section__ttl {
    width: 118px;
  }
}

.p-map-content {
  max-width: 59.7rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-map-content {
    max-width: 392px;
  }
}

.p-select__area-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 4.3rem;
  margin-top: 5.5rem;
}
@media screen and (min-width: 768px) {
  .p-select__area-list {
    margin-top: 36px;
    row-gap: 20px;
  }
}

.p-select__area-item {
  max-width: 32rem;
  width: 50%;
}
@media screen and (min-width: 768px) {
  .p-select__area-item {
    max-width: 183px;
  }
}

.c-btn {
  background-color: #000;
  border-radius: 100px;
  color: #fff;
  font-size: 2.4rem;
  display: grid;
  place-content: center;
  width: 100%;
  padding: 0.5rem 2rem;
  line-height: 1.2;
  min-height: 7.4rem;
  transition: 0.3s transform;
  will-change: transform;
}
@media screen and (min-width: 768px) {
  .c-btn {
    font-size: 1.4rem;
    min-height: 42px;
  }
}
@media (any-hover: hover) {
  .c-btn:hover {
    transform: scale(1.1);
  }
}
.c-btn.u-arrow--down span::after {
  right: -0.5rem;
  top: 25%;
  transform: rotate(135deg);
}
@media screen and (min-width: 768px) {
  .c-btn.u-arrow--down span::after {
    top: 3px;
  }
}
.c-btn span {
  padding-right: 1.6rem;
  position: relative;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .c-btn span {
    padding-right: 10px;
  }
}
.c-btn span::after {
  top: 29%;
  content: "";
  position: absolute;
  width: 1rem;
  height: 1rem;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  right: 0;
  transform: rotate(45deg);
}
@media screen and (min-width: 768px) {
  .c-btn span::after {
    top: 5px;
    width: 6px;
    height: 6px;
  }
}

.p-caution {
  padding-top: 7.8rem;
  position: relative;
  z-index: 2;
  background-color: #ececd8;
  padding-bottom: 4rem;
}
@media screen and (min-width: 768px) {
  .p-caution {
    padding-top: 40px;
    padding-bottom: 30px;
  }
}
.p-caution::before {
  content: "";
  position: absolute;
  width: 100%;
  height: var(--skew);
  bottom: calc(100% - 1px);
  left: 0;
  right: 0;
  background-color: #ececd8;
  -webkit-clip-path: polygon(100% 0, 0% 100%, 100% 100%);
          clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}
@media screen and (min-width: 768px) {
  .p-caution::before {
    height: var(--pcSkew);
  }
}
.p-caution .c-section__ttl {
  width: 44.2rem;
}
@media screen and (min-width: 768px) {
  .p-caution .c-section__ttl {
    width: 254px;
  }
}

.p-caution__list {
  font-size: 2.8rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-caution__list {
    font-size: 1.6rem;
  }
}
.p-caution__list > div {
  padding-block: 3rem;
}
@media screen and (min-width: 768px) {
  .p-caution__list > div {
    padding-block: 20px;
  }
}
.p-caution__list > div:not(:last-of-type) {
  border-bottom: 1px dashed #000;
}
.p-caution__list dt {
  font-weight: var(--bold);
}
.p-caution__list dd ul li {
  padding-left: 1em;
  text-indent: -1em;
}
.p-caution__list dd ol li {
  padding-left: 1em;
  text-indent: -1em;
}

.p-enjoy {
  padding-top: 8rem;
  position: relative;
  background-color: var(--beige);
  z-index: 3;
}
@media screen and (min-width: 768px) {
  .p-enjoy {
    padding-top: 40px;
  }
}
.p-enjoy::before {
  content: "";
  position: absolute;
  bottom: calc(100% - 1px);
  width: 100%;
  height: var(--skew);
  background-color: var(--beige);
  left: 0;
  right: 0;
  -webkit-clip-path: polygon(100% 0, 0% 100%, 100% 100%);
          clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}
@media screen and (min-width: 768px) {
  .p-enjoy::before {
    height: var(--pcSkew);
  }
}
.p-enjoy .c-section__ttl {
  font-size: 2.8rem;
  width: 47.7rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-enjoy .c-section__ttl {
    width: 290px;
  }
}
.p-enjoy .c-heading__txt {
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .p-enjoy .c-heading__txt {
    margin-top: 18px;
  }
}

.c-heading__txt {
  font-size: 2.8rem;
  line-height: 1.5;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-heading__txt {
    font-size: 1.6rem;
  }
}

.p-spot__list {
  display: flex;
  justify-content: space-between;
  margin-top: 3.2rem;
  flex-wrap: wrap;
  row-gap: 4rem;
}
@media screen and (min-width: 768px) {
  .p-spot__list {
    row-gap: 22px;
    margin-top: 22px;
  }
}

.p-spot__item {
  width: 32rem;
  border: 1px solid #000;
  box-sizing: border-box;
  min-height: 43.8rem;
}
.p-spot__item a {
  display: block;
  height: 100%;
  transition: 0.3s opacity;
}
@media (any-hover: hover) {
  .p-spot__item a:hover {
    opacity: 0.7;
  }
}
@media screen and (min-width: 768px) {
  .p-spot__item {
    width: 47.6%;
    min-height: 267px;
  }
}

.p-spot__inner {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.p-spot__inner .p-place {
  position: absolute;
  background-color: #000;
  color: #fff;
  border-bottom-right-radius: 2rem;
  z-index: 10;
  font-size: 2rem;
  font-weight: var(--bold);
  padding: 0.5rem 1rem 0.5rem 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-spot__inner .p-place {
    font-size: 1.1rem;
    padding: 3px 5px 5px 16px;
    border-bottom-right-radius: 10px;
  }
}
.p-spot__inner .p-place::before {
  content: "";
  position: absolute;
  background: url(../img/icn_pin.png) no-repeat center center/100% 100%;
  width: 1.3rem;
  height: 1.9rem;
  left: 0.7rem;
  top: 1.1rem;
}
@media screen and (min-width: 768px) {
  .p-spot__inner .p-place::before {
    width: 7px;
    height: 11px;
    top: 6px;
    left: 5px;
  }
}

.p-spot__img-wrapper {
  display: block;
  aspect-ratio: 320/198;
  overflow: hidden;
  border-bottom: 1px solid #000;
  margin: 0;
}
.p-spot__img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-spot__body {
  background-color: #fdff34;
  padding: 1.5rem;
  flex-grow: 1;
  position: relative;
}
.p-spot__body::after {
  content: "";
  position: absolute;
  z-index: 1;
  width: 2rem;
  height: 2rem;
  background-color: #000;
  bottom: -1px;
  right: -1px;
  -webkit-clip-path: polygon(100% 0, 0% 100%, 100% 100%);
          clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}
@media screen and (min-width: 768px) {
  .p-spot__body::after {
    width: 11px;
    height: 11px;
  }
}
@media screen and (min-width: 768px) {
  .p-spot__body {
    padding: 10px 16px 10px 10px;
  }
}
.p-spot__body .c-txt {
  margin-top: 0.5rem;
  font-size: 2rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-spot__body .c-txt {
    font-size: 1.2rem;
    margin-top: 2px;
  }
}

.p-spot__ttl {
  font-size: 2rem;
  line-height: 1.5;
  font-weight: var(--bold);
}
@media screen and (min-width: 768px) {
  .p-spot__ttl {
    font-size: 1.2rem;
  }
}

.p-about {
  margin-top: 6.5rem;
  padding-bottom: 10rem;
}
@media screen and (min-width: 768px) {
  .p-about {
    margin-top: 50px;
    padding-bottom: 60px;
  }
}
.p-about .c-section__ttl {
  width: 52.9rem;
}
@media screen and (min-width: 768px) {
  .p-about .c-section__ttl {
    width: 303px;
  }
}

.p-bnr__list {
  max-width: 59rem;
  margin: 3.7rem auto 0;
}
@media screen and (min-width: 768px) {
  .p-bnr__list {
    max-width: 338px;
    margin-top: 26px;
  }
}

.p-bnr__item a {
  transition: 0.3s opacity;
}
@media (any-hover: hover) {
  .p-bnr__item a:hover {
    opacity: 0.7;
  }
}
.p-bnr__item + .p-bnr__item {
  margin-top: 4.9rem;
}
@media screen and (min-width: 768px) {
  .p-bnr__item + .p-bnr__item {
    margin-top: 28px;
  }
}

strong {
  font-weight: bold;
}
/*# sourceMappingURL=top.css.map */