@charset "UTF-8";
:root {
  --vw: 1vw;
}

/* ===========================================================
   # BASE
=========================================================== */
* {
  font: inherit;
  margin: 0;
  padding: 0;
  outline: none;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  color: #16160e;
  font: 400 clamp(16px, .6vw + 10px, 18px)/1 "Noto Sans JP", sans-serif;
  font-feature-settings: "palt";
  letter-spacing: 0.08em;
}

h1 {
  font: inherit;
  margin: 0;
}

a:focus, *:focus {
  outline: none;
}

strong {
  font-weight: 600;
}

ol, ul {
  list-style: none;
}

/* = CLASS
----------------------------------------------------------- */
.trans500 {
  transition: all 500ms 0s ease;
}

.noSP, .onPC {
  display: none;
}

.is-content-justification-center {
  justify-content: center;
}

.inner {
  padding-left: clamp(1em, 2.5vw, 2em);
  padding-right: clamp(1em, 2.5vw, 2em);
}
.innerS, .innerM, .innerL, .innerLl {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
.innerS {
  max-width: 980px;
}
.innerM {
  max-width: 1240px;
}
.innerL {
  max-width: 1540px;
}

.posRe {
  position: relative;
}

.posAb {
  position: absolute;
}

@media (min-width: 640px) {
  .onSP {
    display: none !important;
  }
  .noSP {
    display: block;
  }
  img.noSP, span.noSP, strong.noSP {
    display: inline;
  }
}
@media (min-width: 1024px) {
  .noPC {
    display: none !important;
  }
  .onPC {
    display: block;
  }
  img.onPC, span.onPC, strong.onPC {
    display: inline;
  }
}
/* ===========================================================
   # HREF
=========================================================== */
body a {
  color: inherit;
  text-decoration: none;
  transition: all 500ms 0s ease;
}
body a:visited {
  color: inherit;
}
body a.linkIco {
  background-position: 0 80%;
  background-repeat: no-repeat;
  background-size: 1.2em;
  font-size: 0.9em;
  font-weight: 500;
  letter-spacing: 0;
  padding-left: 1.5em;
}
body a.linkIco.ig {
  background-image: url(../img/ico_ig.svg);
}
body .wp-block-buttons {
  margin-bottom: 1.5em;
}
body .wp-block-button__link {
  line-height: 1.3;
  padding: 0.5em 2em;
  min-width: 12em;
}
body .wp-block-button__link:hover {
  color: #fff;
  transform: scale(1.1);
}
body .wp-block-button.is-style-outline .wp-block-button__link:hover {
  color: #16160e;
}

/* ===========================================================
   # HEAD
=========================================================== */
/* = SITE
----------------------------------------------------------- */
.siteHead .inner {
  justify-content: space-between;
  padding-top: clamp(1em, 3vw, 1.5em);
  padding-bottom: clamp(1em, 3vw, 1.5em);
}
.siteHead .inner .logo img {
  width: 300px;
  max-width: 60vw;
}
.siteHead .inner .hamburger {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 999;
}
.siteHead .inner .hamburger .lines {
  display: block;
  width: 34px;
  height: 26px;
}
.siteHead .inner .hamburger .lines .line {
  background: #16160e;
  width: 100%;
  height: 4px;
  left: 0;
}
.siteHead .inner .hamburger .lines .line:first-child {
  top: 0;
}
.siteHead .inner .hamburger .lines .line:nth-child(2) {
  top: 11px;
}
.siteHead .inner .hamburger .lines .line:last-child {
  bottom: 0;
}
.open .siteHead .inner .hamburger .lines .line {
  background: #fff;
}
.open .siteHead .inner .hamburger .lines .line:first-child {
  transform: translateY(0.7rem) rotate(45deg);
}
.open .siteHead .inner .hamburger .lines .line:nth-child(2) {
  opacity: 0;
}
.open .siteHead .inner .hamburger .lines .line:last-child {
  transform: translateY(-0.7rem) rotate(-45deg);
}

/* = ENTRY(PAGE, SINGLE), ARCHIVE(PAGE)
----------------------------------------------------------- */
.page-header {
  background-size: cover;
  background-position: center;
  font-weight: 500;
  padding: clamp(4em, 12vw, 7em) 1em clamp(2em, 8vw, 4em);
  position: relative;
}
.page-header.hasThumb {
  padding-bottom: clamp(4em, 12vw, 7em);
}
.page-header.hasThumb::before {
  background-image: linear-gradient(-45deg, #fff 25%, #ccc 25%, #ccc 50%, #fff 50%, #fff 75%, #ccc 75%, #ccc);
  background-size: 4px 4px;
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  content: "";
  mix-blend-mode: multiply;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.page-header.hasThumb .page-title {
  color: #fff;
  text-shadow: 0 0 0.5em #16160e;
}
.page-title {
  color: #16160e;
  font-size: clamp(1.6em, 4vw, 2em);
  position: relative;
  z-index: 1;
}
.page-subTitle {
  font-size: clamp(0.9em, 3vw, 1em);
  font-weight: 600;
  margin-top: clamp(1em, 3vw, 1.5em);
  position: relative;
  z-index: 1;
}
.page-subTitle p::before {
  content: "［ ";
}
.page-subTitle p::after {
  content: " ］";
}

.entry-header {
  font-weight: 700;
  padding: clamp(2em, 8vw, 6em) 1em clamp(0em, 2vw, 2em);
  position: relative;
}
.entry-header .body {
  border: 0.3em solid;
  display: flex;
  flex-direction: column;
  gap: 1em;
  line-height: 1.4;
  padding: clamp(1em, 4vw, 3em) clamp(1em, 4vw, 3em);
}
.entry-header .body .ttl {
  color: #16160e;
  font-size: clamp(1.6em, 4vw, 2em);
}
.entry-header .body .info {
  gap: 1em;
}
.entry-header .body .info .term {
  gap: 0.6em;
  margin-top: 0.1em;
}
.entry-header .body .info .term a {
  border: 1px solid;
  border-radius: 2em;
  font-size: 0.7em;
  font-weight: 500;
  line-height: 1.1;
  padding: 0 1em 0.05em;
  opacity: 0.6;
}

/* ===========================================================
   # NAVI
=========================================================== */
.gNav {
  background: rgba(0, 0, 0, 0.9);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  display: none;
  overflow: auto;
  width: 100%;
  height: 100dvh;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.gNav::-webkit-scrollbar {
  display: none;
}
.gNav ul {
  flex-direction: column;
  margin-bottom: 0;
}
.gNav ul li {
  color: #fff;
  flex: 1;
  position: relative;
}
.gNav ul li:not(:last-child)::after {
  background: #fff;
  content: "";
  margin: auto;
  width: 2em;
  height: 0.1em;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.2em;
}
.gNav ul li a {
  color: inherit;
  flex-grow: 1;
  transition: all 500ms 0s ease;
}
.gNav > ul {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.gNav > ul > li > a {
  display: block;
  line-height: 5rem;
}
@media (min-width: 1024px) {
  .gNav {
    display: block !important;
    height: auto;
    position: static;
    overflow: visible;
  }
  .gNav > ul {
    flex-direction: row;
    position: static;
    transform: none;
  }
  .gNav > ul > li {
    border-left: 1px solid rgba(255, 255, 255, 0.2);
  }
  .gNav > ul > li:last-child {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
  }
  .gNav > ul > li > a:hover, .gNav > ul > li.current-menu-item > a {
    color: #E86B79;
  }
}
/* ===========================================================
   # FOOT
=========================================================== */
.siteFoot {
  background: #16160e;
  color: #fff;
}
.siteFoot .copy {
  font-size: 0.8em;
  letter-spacing: 0.2px;
  line-height: 4rem;
}
@media (min-width: 640px) {
  .siteFoot .copy {
    line-height: 6rem;
  }
}
/* = GO TO TOP
----------------------------------------------------------- */
.gotoTop {
  background: #16160e;
  width: clamp(3em, 6vw, 5em);
  height: clamp(3em, 6vw, 5em);
  position: fixed;
  right: clamp(1em, 3vw, 2em);
  bottom: clamp(1em, 3vw, 2em);
  z-index: 999;
}
.gotoTop svg {
  fill: #fff;
  width: 40%;
}
.gotoTop:hover {
  transform: translateY(-0.5em);
}
/* = PAGE NAVI
----------------------------------------------------------- */
.pageNav.wp-block-query-pagination {
  gap: 1em;
}
.pageNav.wp-block-query-pagination a {
  transition: all 500ms 0s ease;
}
.pageNav.wp-block-query-pagination a:hover {
  opacity: 1;
}
.pageNav.wp-block-query-pagination .wp-block-query-pagination-next, .pageNav.wp-block-query-pagination .wp-block-query-pagination-previous {
  opacity: 0.5;
}
.pageNav.wp-block-query-pagination .wp-block-query-pagination-numbers {
  display: flex;
  gap: 0.5em;
}
.pageNav.wp-block-query-pagination .wp-block-query-pagination-numbers .page-numbers {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9em;
  font-weight: 500;
  width: 3em;
  height: 3em;
}
.pageNav.wp-block-query-pagination .wp-block-query-pagination-numbers .page-numbers:hover {
  background: #16160e;
  color: #fff;
}
.pageNav.wp-block-query-pagination .wp-block-query-pagination-numbers .page-numbers.current {
  background: #16160e;
  color: #fff;
}

/* = SINGLE NAVI
----------------------------------------------------------- */
.singleNav {
  padding-bottom: clamp(3em, 10vw, 5em);
}
.singleNav .body {
  gap: 0;
}
.singleNav .body li {
  flex: 1;
  margin: 0 -1px;
}
.singleNav .body li a {
  background: #fff;
  border: 1px solid;
  display: block;
  font-size: 0.8em;
  padding: clamp(1em, 3vw, 1.5em) 0;
  text-align: center;
}
.singleNav .body li a:hover {
  background: #16160e;
  border-color: #16160e;
  color: #fff;
}

/* ===========================================================
   # CONTENTS
=========================================================== */
.entry-content {
  line-height: 2em;
  padding-left: 1.5em;
  padding-right: 1.5em;
  padding-top: clamp(1em, 2.3vw, 2em);
  padding-bottom: clamp(3em, 10vw, 5em);
}
.entry-content > :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--wp--style--global--content-size);
}
.entry-content .alignfull {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}
.entry-content .alignfull > :where(:not(figure):not(.fullW)) {
  padding-left: 1.5em;
  padding-right: 1.5em;
}

body .wp-block-gallery.has-nested-images figure.wp-block-image figcaption {
  background: rgba(0, 0, 0, 0.6);
  line-height: 1.5;
  padding: 0.5em;
}
body hr.wp-block-separator {
  background: #ccc;
  border: none;
}
body hr.wp-block-separator.is-style-hrClear {
  width: 10em;
}
body ol.wp-block-list,
body ul.wp-block-list {
  margin-left: auto;
  padding-left: 1.5em;
}
body ol.wp-block-list {
  list-style: decimal;
}
body ul.wp-block-list {
  list-style: disc;
}

/* ===========================================================
   # HEADING
=========================================================== */
body :where(h2.wp-block-heading) {
  font-size: clamp(2em, 6vw, 2.5em);
  font-weight: 600;
  line-height: 1.3em;
  margin-top: clamp(1.5em, 12vw, 2em);
  margin-bottom: 0.5em;
  padding-bottom: 0.5em;
  position: relative;
}
body :where(h2.wp-block-heading).has-text-align-center {
  margin-bottom: 1em;
}
body :where(h2.wp-block-heading).has-text-align-center::after {
  border-top: 0.12em solid;
  content: "";
  width: 1.2em;
  margin: auto;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}
body h3.wp-block-heading {
  background: #16160e;
  color: #fff;
  font-size: 1.2em;
  font-weight: 500;
  margin-top: clamp(2em, 6vw, 2.5em);
  padding: 0.5em 0.8em;
}
body h3.wp-block-heading + * {
  margin-top: clamp(0.5em, 2vw, 1em);
}
body h4.wp-block-heading {
  border: 0.08em solid;
  font-size: 1.2em;
  font-weight: 500;
  margin-top: clamp(2em, 6vw, 2.5em);
  padding: 0.3em 0.8em;
}
body h4.wp-block-heading.has-text-align-center {
  padding: 0.1em 2em;
  width: -moz-fit-content;
  width: fit-content;
}
body h4.wp-block-heading + * {
  margin-top: 1em;
}
body h5.wp-block-heading {
  border-bottom: 0.08em solid #ccc;
  font-size: 1.2em;
  font-weight: 500;
  line-height: 1.4;
  margin-top: clamp(1.5em, 6vw, 2em);
  padding-bottom: 0.4em;
  position: relative;
}
body h5.wp-block-heading::after {
  background: #16160e;
  content: " ";
  width: 2em;
  height: 0.08em;
  position: absolute;
  left: 0;
  bottom: -0.08em;
}
body h5.wp-block-heading.has-text-align-center {
  border-top: 1px solid;
  border-bottom: 1px solid;
  padding: 0.2em;
}
body h5.wp-block-heading.has-text-align-center::after {
  display: none;
}
body h5.wp-block-heading + * {
  margin-top: 0.5em;
}
body h6.wp-block-heading {
  border-left: 0.2em solid;
  font-size: 1.1em;
  font-weight: 500;
  line-height: 1;
  margin-top: clamp(1.5em, 6vw, 2em);
  padding: 0 0 0.1em 0.5em;
}
body h6.wp-block-heading.has-text-align-center {
  border: none;
  display: flex;
  gap: 0.5em;
  justify-content: center;
  padding: 0;
}
body h6.wp-block-heading.has-text-align-center::before {
  content: "＼";
}
body h6.wp-block-heading.has-text-align-center::after {
  content: "／";
}
body h6.wp-block-heading + * {
  margin-top: 0.5em;
}
/* ===========================================================
   # HOME
=========================================================== */
.home .entry-content {
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 0;
}
.homeCont {
  padding-top: clamp(2em, 8vw, 4em);
  padding-bottom: clamp(2em, 8vw, 4em);
}
.homeMv_wrap * {
  height: 100%;
}
.homeMv.wp-block-gallery figure.wp-block-image img {
  -o-object-fit: cover;
     object-fit: cover;
  height: calc(100dvh - var(--header_height));
  width: 100%;
  max-width: none !important;
}
.homeMv .slick-arrow {
  background: transparent;
  border: none;
  border-top: 5px solid;
  border-right: 5px solid;
  border-radius: 0;
  color: #fff;
  cursor: pointer;
  font-size: 0;
  height: 30px;
  width: 30px;
  position: absolute;
  top: calc(50% - 15px);
  z-index: 1;
}
.homeMv .slick-next {
  right: 30px;
  transform: rotate(45deg);
}
.homeMv .slick-prev {
  left: 30px;
  transform: rotate(-135deg);
}
.homeMv .slick-dots {
  display: flex;
  gap: clamp(1.5em, 3.2vw, 2em);
  justify-content: center;
  height: auto;
  position: absolute;
  bottom: 1.5em;
  left: 0;
  right: 0;
}
.homeMv .slick-dots button {
  background: transparent;
  border: 1px solid;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  font-size: 0;
  height: 10px;
  width: 10px;
  padding: 0;
}
.homeMv .slick-dots .slick-active button {
  background: #fff;
}
@media (min-width: 640px) {
  .homeMv.wp-block-gallery figure.wp-block-image img {
    height: 60dvh;
  }
}
@media (min-width: 1024px) {
  .homeMv_wrap {
    aspect-ratio: 19/7;
  }
  .homeMv.wp-block-gallery figure.wp-block-image img {
    height: 100%;
  }
}
/* ===========================================================
   # NEWS, BLOG
=========================================================== */
.entryList {
  font-size: 0.8em;
  line-height: 1.4;
}
.entryList .list {
  margin-left: 0;
}
.entryList li {
  margin: 0;
}
.entryList li .item {
  gap: 1em;
}
.entryList li .item .term {
  display: flex;
  gap: 0.5em;
}
.entryList li .item .term a {
  font-size: 0.9em;
  margin: 0;
  transition: all 500ms 0s ease;
}
.entryList li .item .term span {
  display: none;
}
.entryList li .item .body {
  gap: 1em;
  width: 100%;
}
.entryList li .item .body .ttl {
  font-size: 1.25em;
}
.entryList li .item .body .ttl a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
}
.entryList li .item .body .txt {
  opacity: 0.5;
}
.entryList.simple li {
  padding: clamp(1em, 3vw, 2em) 0;
}
.entryList.simple li:not(:last-of-type) {
  border-bottom: 1px solid #ccc;
}
.entryList.simple li .item .head {
  gap: 0;
}
.entryList.simple li .item .head .date {
  font-weight: 500;
  width: clamp(7em, 20vw, 10em);
}
.entryList.simple li .item .head .term a {
  border: 1px solid;
  border-radius: 3em;
  padding: 0 1em 0.1em;
  opacity: 0.5;
}
.entryList.simple li .item .head .term a:hover {
  opacity: 1;
  transform: scale(1.05);
}
.entryList.simple li .item .head .term a.gallery {
  color: #AD002D;
}
.entryList.simple li .item .head .term a.news {
  color: #00558F;
}
.entryList.simple li .item .head .term a.etc {
  color: #007655;
}
.entryList.simple li .item .body {
  align-items: flex-start;
  flex-direction: column;
  padding-right: clamp(2em, 4vw, 4em);
  position: relative;
}
.entryList.simple li .item .body::after {
  border-top: 3px solid;
  border-right: 3px solid;
  color: #ccc;
  content: "";
  margin: auto;
  height: 1.5em;
  width: 1.5em;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  transform: rotate(45deg);
  transition: all 500ms 0s ease;
}
.entryList.simple li .item .body:hover::after {
  color: #16160e;
  right: 0;
}
.entryList.hasThumb li .item {
  position: relative;
}
.entryList.hasThumb li .item .head .thumb {
  aspect-ratio: 1/1;
  border-radius: 1em;
  overflow: hidden;
}
.entryList.hasThumb li .item .head .thumb img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
  max-width: none;
  transition: all 1000ms 0s ease;
}
.entryList.hasThumb li .item .head .term {
  position: absolute;
  right: 0;
  bottom: 0;
}
.entryList.hasThumb li .item .head .term a {
  background: #16160e;
  color: #fff;
  padding: 0.1em 1em 0.2em;
}
.entryList.hasThumb li .item .head .term a:not(:first-child) {
  display: none;
}
.entryList.hasThumb li .item .head .term a.gallery {
  background: #AD002D;
}
.entryList.hasThumb li .item .head .term a.news {
  background: #00558F;
}
.entryList.hasThumb li .item .head .term a.etc {
  background: #007655;
}
.entryList.hasThumb li .item .body {
  gap: clamp(0.5em, 1vw, 1em);
}
.entryList.hasThumb li .item:hover .head .thumb img {
  transform: scale(1.1);
}
.entryList.slick .list {
  display: block;
  margin-left: -1em;
  width: calc(100% + 2em);
  max-width: none;
}
.entryList.slick .list li {
  padding: 0 1em;
}
.entryList.slick .slick-slide {
  height: auto;
}
.entryList.slick .slick-arrow {
  background: #fafafa;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  height: 3em;
  width: 3em;
  padding: 0;
  position: absolute;
  top: 38%;
  z-index: 1;
}
.entryList.slick .slickNext {
  right: -0.7em;
}
.entryList.slick .slickPrev {
  left: -0.7em;
}
@media (min-width: 640px) {
  .entryList.simple li .item .head {
    gap: 0;
  }
  .entryList.simple li .item .body {
    padding-left: clamp(7em, 20vw, 10em);
  }
  .entryList.simple li .item .body::after {
    right: 1em;
  }
}
/* ===========================================================
    # EVENT
=========================================================== */
.eventBody {
  padding-bottom: clamp(2em, 4.6vw, 4em);
}
.eventItem {
  line-height: 1.6;
  padding-top: clamp(3em, 12vw, 4em);
  padding-bottom: clamp(3em, 12vw, 4em);
}
.eventItem_ttl.wp-block-heading {
  display: flex;
  align-items: center;
  gap: 0.5em;
  justify-content: center;
  font-size: clamp(18px, 4vw, 32px);
  font-weight: 900;
  margin-top: 0;
  margin-bottom: 0;
}
.eventItem_ttl.wp-block-heading::before, .eventItem_ttl.wp-block-heading::after {
  border-top: 0.12em solid;
  content: "";
  width: 1.2em;
  margin: initial;
  position: static;
  transform: translateY(0.08em);
}
.eventThumb figure {
  margin-top: 0;
  margin-bottom: 0;
}
.eventInfo {
  font-size: clamp(24px, 6vw, 38px);
  font-weight: 900;
  line-height: 1.4;
}
.eventInfo .ttl {
  font-size: clamp(38px, 10vw, 48px);
}
.eventInfo .date {
  letter-spacing: 0;
}
.eventInfo .charge {
  font-weight: 700;
  letter-spacing: 0;
  margin-top: -0.5em;
}
.eventInfo .txt {
  background: #fafafa;
  font-size: clamp(12px, 3.2vw, 15px);
  font-weight: 400;
  padding: 0.5em 2em;
}
.eventDj .body {
  font-size: clamp(14px, 3vw, 16px);
  font-weight: 500;
  line-height: 1.4;
}
.eventDj .body strong {
  font-size: clamp(18px, 4vw, 28px);
}
.eventShop .body {
  font-size: clamp(14px, 3vw, 16px);
  font-weight: 500;
  line-height: 1.4;
}
.eventShop .body .ttl {
  font-size: clamp(18px, 4vw, 28px);
}
.eventShop .body .txt {
  padding: 0.5em;
}
.eventAccess .body {
  gap: 0.5em;
}
.eventAccess .gMap {
  aspect-ratio: 3/2;
  width: 100%;
  position: relative;
}
.eventAccess .gMap iframe {
  position: absolute;
  height: 100%;
  width: 100%;
}
.eventAccess .txt {
  font-size: 0.9em;
}
@media (min-width: 1024px) {
  .eventWrap {
    display: flex;
    padding-left: 0;
    padding-right: 0;
  }
  .eventWrap > * {
    flex: 1;
  }
  .eventWrap .alignfull {
    margin-left: 0;
    width: 100%;
  }
  .eventThumb {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 100dvh;
    position: sticky;
    top: 0;
  }
  .eventThumb figure {
    height: 100dvh;
  }
  .eventThumb figure img {
    width: auto;
    max-height: 100dvh;
  }
}/*# sourceMappingURL=unique.css.map */