@charset "UTF-8";
/* =========================================================
colors
========================================================= */
/* font */
/* switching */
/* =========================================================
body
========================================================= */
@import url("https://fonts.googleapis.com/css?family=Roboto+Condensed:700&display=swap");
html {
  font-size: 62.5%;
  letter-spacing: 0.03em;
  line-height: 1.3rem;
}

body {
  color: #000;
  font-family: system-ui, sans-serif;
  font-size: 1rem;
  background: #000;
  -webkit-overflow-scrolling: touch;
}

/*
    tag
*/
a {
  color: #000;
  text-decoration: none;
  transition: opacity 0.6s;
}
@media screen and (min-width: 901px) {
  a:hover {
    opacity: 0.6;
  }
}

img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}
@media screen and (max-width: 900px) {
  img {
    max-width: none;
    width: 100%;
  }
}

@media print {
  html, body {
    _zoom: 70% !important;
  }
}
main {
  display: block; /*IE*/
}

/* =========================================================
default
========================================================= */
/* =========================================================
PARCO Header
========================================================= */
.phd {
  display: none;
}

/* =========================================================
PARCO Footer
========================================================= */
.pft {
  display: none;
}

/* =========================================================
layout
========================================================= */
/* =========================================================
colors
========================================================= */
/* font */
/* switching */
/* =========================================================
変数
========================================================= */
/* -- crm -- */
/* -- btn --*/
/* -- 中央配置 -- */
/* -- 画像をトリミング -- */
/* -- アニメーション -- */
/* -- 'inview' フェードプラグイン -- */
/* フェードアップ */
.fadeUp {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s, transform 0.6s;
}
.fadeUp.on {
  transform: translateY(0);
  opacity: 1;
}

/* フェードダウン */
.fadeDown {
  opacity: 0;
  transform: translateY(-50px);
  transition: opacity 0.6s, transform 0.6s;
}
.fadeDown.on {
  transform: translateY(0);
  opacity: 1;
}

/* =========================================================
Main
========================================================= */
.main-contents {
  font-family: kinto-sans, sans-serif;
  font-size: 13px;
  line-height: 2;
  letter-spacing: 0;
}
@media screen and (max-width: 900px) {
  .main-contents {
    font-size: 12px;
    line-height: 1.83;
  }
}

/* -- inner -- */
.inner {
  margin: 0 auto;
  width: 100%;
  max-width: 1247px;
}
@media screen and (max-width: 1292px) {
  .inner {
    margin: 0 22px 0 23px;
    width: auto;
  }
}

/* -- h -- */
h2 img {
  padding-bottom: 5px;
}
h2 span {
  font-family: area-normal, sans-serif;
  font-size: 24px;
  line-height: 1.25;
  letter-spacing: 0.06em;
  vertical-align: bottom;
  margin-left: 5px;
}
@media screen and (max-width: 900px) {
  h2 img {
    padding-bottom: 5px;
    width: auto;
    height: 69px;
  }
  h2 span {
    font-size: 16px;
    position: relative;
    top: -3px;
    margin-left: 4px;
  }
}

/* -- headerbox -- */
.headerbox {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  margin: 0 auto;
  padding: 17px 30px 16px;
  background: #000;
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.4s;
  /* -- logo -- */
  /* -- gnav -- */
  /* -- act -- */
}
.headerbox-logo {
  position: relative;
  padding-bottom: 1px;
  z-index: 20;
}
.headerbox-gnav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  width: calc(100% - 237px - 20px);
  /* - btn - */
  /* - cnt - */
}
.headerbox-gnav-btn {
  position: relative;
  z-index: 20;
}
.headerbox-gnav-btn a {
  display: block;
  position: relative;
  width: 24px;
  padding-top: 100%;
}
.headerbox-gnav-btn a span {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: width 0.6s, transform 0.15s;
}
.headerbox-gnav-btn a span:nth-child(1) {
  top: 7px;
  bottom: auto;
}
.headerbox-gnav-btn a span:nth-child(2) {
  top: auto;
  bottom: 7px;
}
@media screen and (min-width: 901px) {
  .headerbox-gnav-btn {
    display: none;
  }
}
.headerbox-gnav-cnt-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
}
.headerbox-gnav-cnt-list li {
  /* act */
}
.headerbox-gnav-cnt-list li:not(:last-child) {
  margin-right: 18px;
}
.headerbox-gnav-cnt-list li a {
  font-family: area-normal, sans-serif;
  font-size: 14px;
  line-height: 1.2;
  color: #fff;
  display: block;
  position: relative;
  padding-left: 12px;
}
.headerbox-gnav-cnt-list li a::before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  right: auto;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #E63E4B;
  content: "";
  opacity: 0;
  transition: opacity 0.6s;
}
.headerbox-gnav-cnt-list li.act a::before {
  opacity: 1;
}
@media screen and (min-width: 901px) {
  .headerbox-gnav-cnt {
    display: block !important;
  }
}
.headerbox.act {
  transform: translateY(0);
}
@media screen and (max-width: 900px) {
  .headerbox {
    align-items: flex-start;
    padding: 11px 0 10px;
    /* -- logo -- */
    /* -- gnav -- */
    /* -- open -- */
  }
  .headerbox-logo {
    padding: 0 0 0 15px;
    width: 131px;
  }
  .headerbox-gnav {
    padding-right: 16px;
    width: auto;
    /* - cnt - */
  }
  .headerbox-gnav-cnt {
    display: none;
    position: fixed;
    overflow-y: scroll;
    bottom: 0;
    right: 0;
    left: 0;
    margin: 0 auto;
    padding: 30px 24px 110px;
    height: 100dvh;
    background: #000;
    z-index: 10;
    box-sizing: border-box;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .headerbox-gnav-cnt::-webkit-scrollbar {
    display: none;
  }
  .headerbox-gnav-cnt-list {
    text-align: right;
    align-content: flex-end;
    height: 100%;
  }
  .headerbox-gnav-cnt-list li {
    width: 100%;
  }
  .headerbox-gnav-cnt-list li:not(:last-child) {
    margin: 0 0 33px;
  }
  .headerbox-gnav-cnt-list li a {
    font-size: 15px;
  }
  .headerbox-gnav-cnt-list li.act a::before {
    display: none;
  }
  .headerbox.open {
    transform: translateY(0);
  }
}

/* -- mvbox -- */
.mvbox {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  margin: 0 auto;
  height: 100svh;
  min-height: 470px;
  background: #000;
  box-sizing: border-box;
  z-index: -10;
}
.mvbox img {
  height: auto;
  width: 100%;
}
.mvbox-day {
  position: absolute;
  top: 50%;
  right: 4.1%;
  width: 44.5%;
  margin-top: 1.1%;
  transform: translateY(-50%);
}
.mvbox-day img {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s, transform 0.6s;
}
.mvbox-day img.on {
  transform: translateY(0);
  opacity: 1;
}
.mvbox-a {
  position: absolute;
  top: 50%;
  left: 6.2%;
  width: 21.7%;
  margin-top: -2.9%;
  transform: translateY(-50%);
}
.mvbox-a img {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s, transform 0.6s;
}
.mvbox-a img.on {
  transform: translateY(0);
  opacity: 1;
}
.mvbox-z {
  position: absolute;
  top: 50%;
  left: 25.55%;
  width: 19%;
  margin-top: 3%;
  transform: translateY(-50%);
}
.mvbox-z img {
  opacity: 0;
  transform: translateY(-50px);
  transition: opacity 0.6s, transform 0.6s;
}
.mvbox-z img.on {
  transform: translateY(0);
  opacity: 1;
}
.mvbox-txt {
  position: absolute;
  bottom: 59px;
  left: 17.6%;
  width: 15.1%;
}
@media screen and (max-width: 900px) {
  .mvbox {
    height: 125vw;
    min-height: 470px;
    max-width: 470px;
  }
  .mvbox-day {
    top: 0;
    right: 3.2%;
    width: 93%;
    margin-top: 4.1%;
    transform: translateY(0);
  }
  .mvbox-a {
    top: 50%;
    left: 4.3%;
    width: 52.6%;
    margin-top: -0.9%;
  }
  .mvbox-z {
    top: 50%;
    left: 51%;
    width: 46%;
    margin-top: 13.2%;
  }
  .mvbox-txt {
    bottom: 16px;
    left: 27.9%;
    width: 44%;
  }
}

/* -- maincnt -- */
#maincnt {
  padding-top: 150vh;
}
@media screen and (max-width: 900px) {
  #maincnt {
    padding-top: 470px;
  }
}

/* -- catchbox -- */
.catchbox {
  padding: 115px 0 120px;
  background: #fff;
}
.catchbox-tit {
  font-size: 18px;
  line-height: 1.66;
  letter-spacing: 0.06em;
  text-align: center;
}
.catchbox-tit > :not(:last-child) {
  margin-bottom: 3px;
}
.catchbox-txt {
  font-size: 14px;
  line-height: 1.85;
  letter-spacing: 0.06em;
  margin: 41px auto 0;
  max-width: 467px;
}
.catchbox-scrolltxt {
  margin-top: 94px;
  height: 71px;
  width: 100%;
  background: #FFF url("../../assets/images/catchbox-scrolltxt.svg") repeat-x;
  background-size: auto 71px;
  animation: loop-slide 60s infinite linear;
}
@media screen and (max-width: 900px) {
  .catchbox {
    padding: 46px 0 70px;
  }
  .catchbox-tit {
    font-size: 15px;
  }
  .catchbox-tit > :not(:last-child) {
    margin-bottom: 2px;
  }
  .catchbox-txt {
    font-size: 12px;
    margin: 31px auto 0;
  }
  .catchbox-scrolltxt {
    margin-top: 44px;
    height: 32px;
    background: #FFF url("../../assets/images/catchbox-scrolltxt_sp.svg") repeat-x;
    background-size: auto 32px;
    animation: loop-slide_sp 100s infinite linear;
  }
}

@keyframes loop-slide {
  from {
    background-position: center right 0;
  }
  to {
    background-position: center right 1848px;
  }
}
@keyframes loop-slide_sp {
  from {
    background-position: center right 0;
  }
  to {
    background-position: center right 849px;
  }
}
/* -- bgchange -- */
#bgchange {
  position: relative;
  background: #000;
}
#bgchange::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  position: fixed;
  top: auto;
  height: 0;
  background: #fff;
  content: "";
  transition: height 0.8s ease-out, background 0.6s;
}
#bgchange.off::after {
  height: 100vh;
}
#bgchange.off > *:nth-child(2n+1) img {
  filter: invert(100%);
}
#bgchange.on::after {
  top: 0;
  bottom: auto;
  height: 0;
}
#bgchange.on > *:nth-child(2n) .event-box > * a::before,
#bgchange.on > *:nth-child(2n) img {
  filter: invert(0);
}
#bgchange.end::after {
  top: 0;
  bottom: auto;
  height: 0;
  height: 100vh;
}
#bgchange.end > *:nth-child(2n+1) img {
  filter: invert(0);
}
#bgchange.off:last-child::after {
  position: absolute;
  top: auto;
  bottom: 0;
}
#bgchange > * {
  color: #fff;
  overflow-x: hidden;
  position: relative;
  z-index: 10;
  mix-blend-mode: difference;
}
#bgchange > * a {
  color: #fff;
}
#bgchange > *:nth-child(2n) .event-box > * a::before,
#bgchange > *:nth-child(2n) img {
  filter: invert(100%);
  transition: filter 0.6s;
}
#bgchange > *:nth-child(2n) h2 img {
  filter: invert(100%) !important;
}
#bgchange > *:nth-child(2n+1) img {
  filter: invert(0);
  transition: filter 0.6s;
}
#bgchange > *:nth-child(2n+1) h2 img {
  filter: invert(0) !important;
}
.modal-open #bgchange > * {
  mix-blend-mode: normal;
}
.modal-open #bgchange > * img {
  filter: invert(0);
}

/* -- exhibition -- */
.exhibition {
  padding: 120px 0 117px;
}
.exhibition .inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}
.exhibition-txtbox {
  width: 44%;
}
.exhibition-txtbox-txt {
  font-size: 14px;
  line-height: 1.85;
  letter-spacing: 0.06em;
  margin-top: 50px;
}
.exhibition-img {
  /* - img01 - */
  /* - img02 - */
  /* - img03 - */
  /* - img04 - */
}
.exhibition-img-txtcnt-place {
  font-size: 16px;
  line-height: 1.875;
  letter-spacing: 0.06em;
}
.exhibition-img-txtcnt-day {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  font-size: 16px;
  line-height: 1.875;
  letter-spacing: 0.06em;
  margin-top: -3px;
}
.exhibition-img-txtcnt-day span {
  line-height: 1;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 0 4px 0 7px;
  height: 27px;
  background: #fff;
  border: none;
  border-radius: 0;
  transition: color 0.6s, border 0.6s, background 0.6s;
  font-size: 15px;
  letter-spacing: 0.06em;
  color: #000;
  margin-right: 10px;
}
.exhibition-img-img {
  clip-path: inset(0 0 100% 0);
  transition: clip-path 750ms cubic-bezier(0.25, 0.46, 0.45, 0.94) 600ms;
}
.exhibition-img-img.on {
  clip-path: inset(0 0 0 0);
}
.exhibition-img-img a {
  display: block;
  position: relative;
  overflow: hidden;
}
.exhibition-img-img a img {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: translate(-50%, -50%);
  transition: width 0.6s, filter 0.6s !important;
}
@media screen and (min-width: 901px) {
  .exhibition-img-img a:hover {
    opacity: 1;
  }
}
.exhibition-img.img01 {
  margin: 113px -4.8% 0 0;
  width: 54.9%;
}
.exhibition-img.img01 .exhibition-img-img {
  margin-top: 9px;
}
.exhibition-img.img01 .exhibition-img-img a {
  padding-top: 73.1%;
}
.exhibition-img.img02 {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  margin: -25.8% -93px 0 0;
  width: calc(43.8% + 93px);
}
.exhibition-img.img02 .exhibition-img-txtcnt {
  width: 90px;
  order: 2;
}
.exhibition-img.img02 .exhibition-img-img {
  padding-bottom: 6px;
  width: calc(100% - 93px);
}
.exhibition-img.img02 .exhibition-img-img a {
  padding-top: 120.9%;
}
.exhibition-img.img03 {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  margin: 6.4% 0 0 -148px;
  width: calc(37.6% + 148px);
}
.exhibition-img.img03 .exhibition-img-txtcnt {
  width: 145px;
}
.exhibition-img.img03 .exhibition-img-txtcnt .exhibition-img-txtcnt-place {
  text-align: right;
}
.exhibition-img.img03 .exhibition-img-txtcnt .exhibition-img-txtcnt-day {
  justify-content: flex-end;
}
.exhibition-img.img03 .exhibition-img-txtcnt .exhibition-img-txtcnt-day span {
  margin-right: 0;
}
.exhibition-img.img03 .exhibition-img-img {
  padding-bottom: 6px;
  width: calc(100% - 148px);
}
.exhibition-img.img03 .exhibition-img-img a {
  padding-top: 89.6%;
}
.exhibition-img.img04 {
  margin: 67px auto 0;
  width: 87.5%;
}
.exhibition-img.img04 .exhibition-img-img {
  margin-top: 9px;
}
.exhibition-img.img04 .exhibition-img-img a {
  padding-top: 45.9%;
}
.exhibition-caution {
  font-size: 12px;
  line-height: 1.33;
  letter-spacing: 0.06em;
  margin: 59px auto 0;
  width: 87.5%;
}
@media screen and (max-width: 1140px) {
  .exhibition-img {
    /* - img02 - */
    /* - img03 - */
  }
  .exhibition-img.img02 {
    margin-top: -19%;
  }
  .exhibition-img.img03 {
    margin-top: 15%;
  }
}
@media screen and (max-width: 900px) {
  .exhibition {
    padding: 50px 0 47px;
  }
  .exhibition .inner {
    display: block;
  }
  .exhibition-txtbox {
    width: 100%;
  }
  .exhibition-txtbox-txt {
    font-size: 12px;
    margin-top: 24px;
  }
  .exhibition-img {
    /* - img01 - */
    /* - img02 - */
    /* - img03 - */
    /* - img04 - */
  }
  .exhibition-img-txtcnt-place {
    font-size: 12px;
  }
  .exhibition-img-txtcnt-day {
    font-size: 12px;
    margin-top: 2px;
  }
  .exhibition-img-txtcnt-day span {
    padding: 0 3px 0 7px;
    height: 23px;
    font-size: 11px;
    margin-right: 5px;
  }
  .exhibition-img.img01 {
    margin: 54px -22px 0 0;
    width: auto;
  }
  .exhibition-img.img01 .exhibition-img-img {
    margin-top: 10px;
  }
  .exhibition-img.img02 {
    flex-direction: row-reverse;
    margin: 50px 2px 0 10px;
    width: auto;
  }
  .exhibition-img.img02 .exhibition-img-txtcnt {
    width: 71px;
  }
  .exhibition-img.img02 .exhibition-img-img {
    padding-bottom: 1px;
    width: calc(100% - 71px);
  }
  .exhibition-img.img03 {
    flex-direction: row-reverse;
    margin: 47px 2px 0 -23px;
    width: auto;
  }
  .exhibition-img.img03 .exhibition-img-txtcnt {
    width: 100px;
  }
  .exhibition-img.img03 .exhibition-img-txtcnt .exhibition-img-txtcnt-place {
    text-align: left;
  }
  .exhibition-img.img03 .exhibition-img-txtcnt .exhibition-img-txtcnt-day {
    justify-content: flex-start;
  }
  .exhibition-img.img03 .exhibition-img-img {
    padding-bottom: 3px;
    width: calc(100% - 105px);
  }
  .exhibition-img.img04 {
    margin: 44px 0 0;
    width: auto;
  }
  .exhibition-img.img04 .exhibition-img-img {
    margin: 11px -22px 0 -23px;
  }
  .exhibition-caution {
    font-size: 10px;
    margin: 50px auto 0;
    width: auto;
  }
}

/* -- goods -- */
.goods {
  padding: 120px 0 121px;
}
.goods h2 span {
  position: relative;
  top: -7px;
  margin-left: 2px;
}
.goods-slider {
  margin: 51px 6px 0;
}
.goods-slider .splide__track {
  overflow: hidden;
}
.goods-slider .splide__list {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: flex-start;
  display: flex !important;
}
.goods-slider .splide__list .splide__slide {
  display: none;
}
@media screen and (min-width: 901px) {
  .goods-slider .splide__list .splide__slide {
    padding-bottom: 40px;
    width: 24.7%;
  }
  .goods-slider .splide__list .splide__slide:not(:nth-child(4n)) {
    margin-right: 0.4%;
  }
}
.goods-slider-cnt a {
  display: block;
}
@media screen and (min-width: 901px) {
  .goods-slider-cnt a:hover {
    opacity: 1;
  }
  .goods-slider-cnt a:hover .goods-slider-cnt-img img {
    width: 120%;
  }
}
.goods-slider-cnt-img {
  position: relative;
  overflow: hidden;
  padding-top: 100%;
}
.goods-slider-cnt-img img {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: translate(-50%, -50%);
  transition: width 0.6s, filter 0.6s !important;
}
.goods-slider-cnt-tit {
  letter-spacing: 0.06em;
  text-decoration: underline;
  margin: 4px 10px 0;
}
.goods-slider-cnt-price {
  font-family: area-normal, sans-serif;
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0.06em;
  margin: 2px 10px 0;
}
.goods-slider-cnt-price span {
  font-family: kinto-sans, sans-serif;
  font-size: 10px;
  letter-spacing: 0.06em;
  position: relative;
  top: 1px;
}
.goods-slider-more {
  font-family: area-normal, sans-serif;
  font-size: 18px;
  letter-spacing: 0.06em;
  text-align: center;
  text-decoration: underline;
  margin-top: 55px;
}
.goods-slider-more a span {
  font-size: 70%;
}
@media screen and (max-width: 900px) {
  .goods {
    padding: 50px 0 49px;
  }
  .goods h2 span {
    top: -4px;
    margin-left: -1px;
  }
  .goods-slider {
    margin: 28px 0 0;
  }
  .goods-slider .splide__list {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    display: flex !important;
  }
  .goods-slider .splide__list .splide__slide {
    padding-bottom: 31px;
    width: 49.7%;
  }
  .goods-slider .splide__list .splide__slide:not(:nth-child(2n)) {
    margin-right: 0.6%;
  }
  .goods-slider-cnt-tit {
    font-size: 11px;
    line-height: 1.4;
    margin: 4px 10px 0;
  }
  .goods-slider-cnt-price {
    font-size: 10px;
    margin: 6px 10px 0;
  }
  .goods-slider-cnt-price span {
    font-size: 8px;
  }
  .goods-slider-more {
    font-size: 13px;
    margin-top: 4px;
  }
}

/* -- present -- */
.present {
  padding: 120px 0 138px;
}
.present .inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}
.present h2 {
  width: 133px;
}
.present h2 span {
  margin-left: -50px;
  position: relative;
  top: -3px;
}
.present-box {
  width: calc(100% - 234px);
}
.present-box > * {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: row-reverse;
}
.present-box > *:not(:last-child) {
  margin-bottom: 102px;
}
.present-box-img {
  width: 46.2%;
}
.present-box-txtbox {
  margin-top: 2px;
  width: 46.11%;
}
.present-box-txtbox-day {
  font-family: area-normal, sans-serif;
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0.06em;
}
.present-box-txtbox-tit {
  font-size: 18px;
  line-height: 1.66;
  letter-spacing: 0.06em;
  margin-top: 16px;
}
.present-box-txtbox-place {
  font-size: 14px;
  letter-spacing: 0.06em;
  margin-top: 7px;
}
.present-box-txtbox-txt {
  letter-spacing: 0.06em;
  margin-top: 23px;
  padding-top: 24px;
  border-top: 1px solid #fff;
}
.present-box-txtbox-caution {
  font-size: 12px;
  line-height: 1.33;
  letter-spacing: 0.06em;
  margin-top: 23px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.7);
}
.present-box-txtbox-caution ul {
  overflow-y: scroll;
  max-height: 60px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.present-box-txtbox-caution ul::-webkit-scrollbar {
  display: none;
}
@media screen and (max-width: 900px) {
  .present {
    padding: 50px 0 50px;
  }
  .present .inner {
    display: block;
  }
  .present h2 {
    width: auto;
  }
  .present h2 img {
    height: 65px;
  }
  .present h2 span {
    margin-left: -25px;
    top: -3px;
  }
  .present-box {
    margin-top: 29px;
    width: auto;
  }
  .present-box > * {
    display: block;
  }
  .present-box > *:not(:last-child) {
    margin-bottom: 40px;
  }
  .present-box-img {
    margin: 0 auto;
    width: 74.6%;
  }
  .present-box-txtbox {
    margin-top: 25px;
    width: 100%;
  }
  .present-box-txtbox-day {
    font-size: 11px;
  }
  .present-box-txtbox-tit {
    font-size: 14px;
    line-height: 1.42;
    margin-top: 9px;
  }
  .present-box-txtbox-place {
    font-size: 12px;
  }
  .present-box-txtbox-txt {
    line-height: 1.833;
    margin-top: 14px;
    padding-top: 16px;
  }
  .present-box-txtbox-caution {
    font-size: 10px;
    margin-top: 20px;
    padding: 14px 20px 14px 13px;
  }
  .present-box-txtbox-caution ul {
    padding-right: 30px;
    max-height: 56px;
  }
}

/* -- event -- */
.event {
  padding: 120px 0;
}
.event h2 span {
  position: relative;
  top: -4px;
}
.event h2 span.and {
  margin-left: 14px;
  margin-right: 18px;
}
.event h2 span.popup {
  margin-left: -52px;
}
.event-box {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 59px;
}
.event-box > * {
  position: relative;
}
.event-box > *.daimaru a::before {
  background: #009D72;
  content: "DAIMARU";
}
.event-box > *.none a::before {
  display: none;
}
@media screen and (min-width: 901px) {
  .event-box > * {
    width: 49.1%;
  }
  .event-box > *:not(:nth-child(2n)) {
    margin-right: 1.8%;
  }
  .event-box > *:not(:nth-last-child(-n+2)) {
    margin-bottom: 20px;
  }
}
.event-box a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #fff;
  transition: border 0.6s, opacity 0.6s;
}
.event-box a::before {
  line-height: 1;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 0 5px;
  height: 29px;
  background: #E63E4B;
  border: none;
  border-radius: 0;
  transition: color 0.6s, border 0.6s, background 0.6s;
  font-family: area-normal, sans-serif;
  letter-spacing: 0.06em;
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  content: "PARCO";
}
.off .event-box a {
  border-color: #fff;
}
@media screen and (min-width: 901px) {
  .event-box a:hover {
    opacity: 1;
  }
  .event-box a:hover .event-box-img img {
    width: 120%;
  }
}
.event-box-txtbox {
  width: 49.2%;
  padding: 30px 5.6% 40px;
  box-sizing: border-box;
}
.event-box-txtbox-day {
  font-family: area-normal, sans-serif;
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0.06em;
}
.event-box-txtbox-tit {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.06em;
  margin-top: 18px;
}
.event-box-img {
  width: 50.8%;
}
.event-box-img span {
  display: block;
  position: relative;
  overflow: hidden;
  padding-top: 100%;
}
.event-box-img span img {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: translate(-50%, -50%);
  width: calc(100% + 2px);
  height: calc(100% + 1px);
  transition: width 0.6s, filter 0.6s !important;
}
.event-box-txtlink {
  font-family: area-normal, sans-serif;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-decoration: underline;
  position: absolute;
  bottom: 30px;
  left: 34px;
}
@media screen and (max-width: 900px) {
  .event {
    padding: 50px 0;
  }
  .event h2 span.and {
    margin-left: 7px;
    margin-right: 9px;
  }
  .event h2 span.popup {
    margin-left: -26px;
  }
  .event-box {
    display: block;
    margin-top: 28px;
  }
  .event-box > *:not(:last-child) {
    margin-bottom: 10px;
  }
  .event-box a::before {
    font-size: 10px;
    height: 25px;
  }
  .event-box-txtbox {
    padding: 26px 15px 50px 14px;
    width: 49.55%;
  }
  .event-box-txtbox-day {
    font-size: 10px;
    line-height: 1.5;
  }
  .event-box-txtbox-tit {
    font-size: 12px;
    margin-top: 6px;
  }
  .event-box-img {
    width: 49.2%;
  }
  .event-box-txtlink {
    font-size: 11px;
    bottom: 32px;
    left: 15px;
  }
}

/* -- popupshop -- */
/* -- profile -- */
.profile {
  position: relative;
  padding: 120px 0;
  background: #fff;
  z-index: 60;
}
.profile .inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}
.profile h2 {
  width: 133px;
}
.profile h2 span {
  margin-left: -50px;
  position: relative;
  top: -4px;
}
.profile-box {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: -19px;
  width: calc(100% - 232px);
}
.profile-box-img {
  margin-top: 6px;
  width: 15.4%;
}
.profile-box-txtbox {
  width: 76.8%;
}
.profile-box-txtbox-name {
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.06em;
}
.profile-box-txtbox-name a {
  font-family: area-normal, sans-serif;
  letter-spacing: 0.01em;
  text-decoration: underline;
  display: inline-block;
  position: relative;
  top: 1px;
  margin-left: 29px;
}
.profile-box-txtbox-name a::after {
  display: inline-block;
  vertical-align: middle;
  margin-left: 8px;
  position: relative;
  top: -1px;
  width: 8px;
  height: 6px;
  background: url("../images/arrow.svg") no-repeat 0 0/100% auto;
  filter: invert(100%);
  transform: rotate(-90deg);
  content: "";
}
.profile-box-txtbox-txt {
  letter-spacing: 0.06em;
  line-height: 1.89;
  margin-top: 20px;
}
.profile-slider {
  margin-top: 83px;
}
.profile-slider-cnt a {
  display: block;
  position: relative;
  overflow: hidden;
  height: 351px;
}
.profile-slider-cnt img {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: translate(-50%, -50%);
  object-fit: contain;
}
@media screen and (max-width: 900px) {
  .profile {
    padding: 50px 0;
  }
  .profile .inner {
    display: block;
  }
  .profile h2 {
    width: calc(100% - 120px);
  }
  .profile h2 img {
    height: 64px;
  }
  .profile h2 span {
    margin-left: -25px;
    top: -2px;
  }
  .profile-box {
    display: block;
    margin-top: 28px;
    width: auto;
  }
  .profile-box-img {
    position: absolute;
    top: 50px;
    right: 24px;
    margin-top: 0;
    width: 100px;
  }
  .profile-box-txtbox {
    width: auto;
  }
  .profile-box-txtbox-name {
    font-size: 12px;
  }
  .profile-box-txtbox-name a {
    font-size: 12px;
    letter-spacing: 0.06em;
    top: 0px;
    margin-left: 20px;
  }
  .profile-box-txtbox-name a::after {
    margin-left: 5px;
    top: -2px;
  }
  .profile-box-txtbox-txt {
    font-size: 11px;
    line-height: 1.72;
    margin-top: 24px;
    display: block;
  }
  .profile-slider {
    margin-top: 25px;
  }
  .profile-slider-cnt a {
    height: 185px;
  }
}

/* -- footerbox -- */
.footerbox {
  color: #fff;
  position: relative;
  padding: 120px 0 145px;
  background: #000;
  z-index: 60;
}
.footerbox a {
  color: #fff;
}
.footerbox .inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}
.footerbox-credit {
  text-align: right;
  width: 25%;
  order: 2;
}
.footerbox-credit-tit {
  font-family: area-normal, sans-serif;
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0.06em;
}
.footerbox-credit-txt {
  line-height: 1.84;
  letter-spacing: 0.06em;
  margin-top: 11px;
}
.footerbox-sns {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  width: 68.6%;
  order: 1;
}
@media screen and (min-width: 901px) {
  .footerbox-sns > * {
    width: 27.4%;
  }
  .footerbox-sns > *:not(:nth-child(3n)) {
    margin-right: 8.9%;
  }
}
.footerbox-sns-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  margin: 7px 0 0 -1px;
}
.footerbox-sns-list li:not(:last-child) {
  margin-right: 14px;
}
.footerbox .copyright {
  font-family: area-normal, sans-serif;
  font-size: 10px;
  line-height: 1.7;
  letter-spacing: 0.06em;
  text-align: right;
  margin: -19px 0 0 auto;
  width: 25%;
  order: 3;
}
@media screen and (max-width: 900px) {
  .footerbox {
    padding: 50px 0 65px;
  }
  .footerbox .inner {
    display: block;
  }
  .footerbox-credit {
    text-align: left;
    width: auto;
  }
  .footerbox-credit-tit {
    font-size: 12px;
  }
  .footerbox-credit-txt {
    font-size: 11px;
    line-height: 1.72;
    margin-top: 8px;
  }
  .footerbox-sns {
    margin-top: 26px;
    width: auto;
  }
  .footerbox-sns > * {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }
  .footerbox-sns > *:not(:last-child) {
    margin-bottom: 9px;
  }
  .footerbox-sns-img {
    width: 54.6%;
  }
  .footerbox-sns-list {
    justify-content: space-between;
    margin: 0 0 3px;
    width: 37.8%;
  }
  .footerbox-sns-list li:not(:last-child) {
    margin-right: 0;
  }
  .footerbox-sns-list li img {
    width: 18px;
  }
  .footerbox .copyright {
    font-size: 8px;
    text-align: center;
    margin: 39px 0 0;
    width: auto;
  }
}

/* -- modal -- */
#headerbox,
#mvbox,
#maincnt {
  transition: filter 0.6s;
}

.modal {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  color: #fff;
  display: none;
  position: fixed;
  background: rgba(0, 0, 0, 0.5);
  z-index: 100;
}
.modal a {
  color: #fff;
}
.modal-open #headerbox,
.modal-open #mvbox,
.modal-open #maincnt {
  filter: blur(30px);
}
.modal-open #bgchange::after {
  background: #000;
}
.modal-btn {
  display: block;
  position: relative;
}
.modal-btn-icon {
  position: absolute;
  bottom: 5px;
  right: 5px;
  width: 36px;
  height: 36px;
  background: url("../../assets/images/modal-btn-icon.svg") no-repeat 0 0/100% auto;
}
.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 20;
}
.modal-cnt {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  height: 100dvh;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.modal-cnt::-webkit-scrollbar {
  display: none;
}
.modal-cnt-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  margin: 0 auto;
  padding: 25px;
  width: 100%;
  max-width: 935px;
}
.modal-cnt-inner-txtbox {
  margin-top: 2px;
  width: 49.9%;
}
.modal-cnt-inner-txtbox-day {
  font-family: area-normal, sans-serif;
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.modal-cnt-inner-txtbox-tit {
  font-size: 18px;
  line-height: 1.66;
  letter-spacing: 0.06em;
}
.modal-cnt-inner-txtbox-place {
  font-size: 14px;
  letter-spacing: 0.06em;
  margin-top: 7px;
}
.modal-cnt-inner-txtbox-txt {
  letter-spacing: 0.06em;
  margin-top: 23px;
  padding-top: 24px;
  border-top: 1px solid #fff;
}
.modal-cnt-inner-txtbox-txtlink a {
  letter-spacing: 0.06em;
  display: inline-block;
  position: relative;
  margin-top: 27px;
  padding-bottom: 2px;
  border-bottom: 1px solid #fff;
}
.modal-cnt-inner-txtbox-txtlink a::after {
  display: inline-block;
  vertical-align: middle;
  margin-left: 8px;
  width: 8px;
  height: 6px;
  background: url("../images/arrow.svg") no-repeat 0 0/100% auto;
  transform: rotate(-90deg);
  content: "";
}
.modal-cnt-inner-slider {
  width: 45.8%;
}
.modal-cnt-inner-slider .splide__slide {
  transition: opacity 0.6s;
  border: none !important;
}
.modal-cnt-inner-slider .splide__slide.is-active {
  opacity: 0.7;
}
.modal-cnt-inner-slider .splide__slide span {
  display: block;
  overflow: hidden;
  padding-top: 100%;
}
.modal-cnt-inner-slider .splide__slide span img {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: translate(-50%, -50%);
  object-fit: contain;
}
.modal-cnt-inner-slider .modalthumbnail {
  margin-top: 20px;
}
.modal-cnt-inner-slider .modalthumbnail .splide__list {
  justify-content: center;
}
.modal-cnt-inner-img {
  margin: 0 auto;
}
.modal-cnt-inner-img-tit {
  font-size: 15px;
  line-height: 1.46;
  letter-spacing: 0.06em;
  text-align: center;
  margin-top: 9px;
}
.modal-cnt-inner-img-year {
  font-family: area-normal, sans-serif;
  font-size: 12px;
  line-height: 1.25;
  letter-spacing: 0.06em;
  text-align: center;
  margin-top: 2px;
}
.modal-cnt-inner-img-come {
  font-family: area-normal, sans-serif;
  font-size: 12px;
  line-height: 1.25;
  letter-spacing: 0.06em;
  text-align: center;
  margin-top: 20px;
}
@media screen and (max-width: 900px) {
  .modal-btn-icon {
    width: 26px;
    height: 26px;
  }
  .modal-close {
    top: 10px;
    right: 10px;
    width: 35px;
  }
  .modal-cnt-inner {
    padding: 40px 25px;
  }
  .modal-cnt-inner-txtbox {
    margin-top: 31px;
    width: 100%;
    order: 2;
  }
  .modal-cnt-inner-txtbox-day {
    font-size: 11px;
    margin-bottom: 7px;
  }
  .modal-cnt-inner-txtbox-tit {
    font-size: 14px;
  }
  .modal-cnt-inner-txtbox-place {
    font-size: 12px;
    margin-top: 6px;
  }
  .modal-cnt-inner-txtbox-txt {
    margin-top: 14px;
    padding-top: 16px;
  }
  .modal-cnt-inner-txtbox-txtlink a {
    margin-top: 20px;
    padding-bottom: 4px;
  }
  .modal-cnt-inner-txtbox-txtlink a::after {
    position: relative;
    top: -2px;
    margin-left: 7px;
  }
  .modal-cnt-inner-slider {
    margin: 0 auto;
    width: 75.7%;
    order: 1;
  }
  .modal-cnt-inner-slider .modalthumbnail {
    margin-top: 15px;
  }
  .modal-cnt-inner-img {
    margin-top: 35px;
  }
  .modal-cnt-inner-img-img {
    margin: 0 -25px;
  }
  .modal-cnt-inner-img-tit {
    font-size: 11px;
    margin-top: 7px;
  }
  .modal-cnt-inner-img-year {
    font-size: 11px;
    margin-top: 4px;
  }
}

/* -- simplebar -- */
.simplebar {
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.simplebar::-webkit-scrollbar {
  display: none;
}
.simplebar-scrollbar::before {
  margin: 0;
  width: 1px;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.7);
}
.simplebar-track.simplebar-vertical .simplebar-scrollbar:before {
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  opacity: 1;
}
.simplebar-track {
  width: 1px !important;
  background: rgba(255, 255, 255, 0.5);
}/*# sourceMappingURL=style.css.map */