<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/***
  The new CSS reset - version 1.7.3 (last updated 7.8.2022)
  GitHub page: https://github.com/elad2412/the-new-css-reset
***/
/*
  Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
  - The "symbol *" part is to solve Firefox SVG sprite bug
*/
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Reapply the pointer cursor for anchor tags */
a, button {
  cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol, ul, menu {
  list-style: none;
}

/* For images to not be able to exceed their container */
img {
  max-width: 100%;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the &lt;body&gt; text input doesn't working */
input, textarea {
  -webkit-user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
       appearance: revert;
}

/* reset default text opacity of input placeholder */
::-moz-placeholder {
  color: unset;
}
::placeholder {
  color: unset;
}

/* fix the feature of 'hidden' attribute.
   display:revert; revert to element instead of attribute */
:where([hidden]) {
  display: none;
}

/* revert for bug in Chromium browsers
  - fix for the content editable attribute will work properly.
  - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element*/
:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable=true]) {
  -webkit-user-drag: element;
}

html {
  font-size: 62.5%;
}

body {
  background: white;
  color: #424242;
  font-family: "Shippori Mincho", serif;
  font-size: 1.5rem;
  letter-spacing: 0;
  line-height: 2;
  min-width: 375px;
}
@media screen and (min-width: 601px) {
  body {
    overflow-y: scroll;
    min-width: 1140px;
  }
}
body.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
}

img,
svg {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
}
@media screen and (min-width: 601px) {
  img,
  svg {
    width: auto;
  }
}

.c-svg-sprite {
  display: none;
}

a,
button {
  cursor: pointer;
}

.l-main {
  position: relative;
}
.l-main::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  background-color: #E9E9E9;
}

@media screen and (min-width: 601px) {
  .l-wrapper {
    min-width: 1080px;
  }
}

.l-inner {
  max-width: 1100px;
  margin-inline: auto;
}
@media screen and (max-width: 600px) {
  .l-inner {
    padding-inline: 30px;
  }
}

.c-loading {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background-color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.c-loading__text {
  font-size: 1.6rem;
  letter-spacing: 0.12em;
  font-weight: 500;
}

.c-loading__count {
  font-size: 3rem;
  letter-spacing: 0.08em;
  font-weight: 500;
  line-height: 1;
  margin: 8px 0;
}

.c-loading__indicator {
  width: 400px;
  height: 2px;
  margin: 16px 0 0;
  background-color: rgba(0, 0, 0, 0.2);
}

.c-loading__progress {
  width: 0%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  transition: width 0.2s ease;
}

.-loaded .c-loading {
  opacity: 0;
  pointer-events: none;
  transition: opacity 1.2s ease;
}

.-loaded .c-loading__grp {
  transform: translate(0, -30%);
  transition: transform 2s ease;
}

.c-svg-sprite {
  display: none;
  width: 0;
  height: 0;
  opacity: 0;
  overflow: hidden;
}

.c-sectionTitle {
  margin-bottom: 35px;
}
.c-sectionTitle h2 {
  text-align: center;
  font-size: 3.2rem;
  font-weight: 500;
}
@media screen and (max-width: 600px) {
  .c-sectionTitle {
    margin-bottom: 20px;
  }
  .c-sectionTitle h2 {
    font-size: 2.5rem;
  }
}

.c-listArea {
  position: relative;
  background-color: white;
  border-top: 1px solid #424242;
  border-bottom: 1px solid #424242;
}
.c-listArea__parts {
  display: flex;
  padding: 14px 0;
  border-bottom: 1px solid #424242;
}
@media screen and (max-width: 600px) {
  .c-listArea__parts {
    flex-direction: column;
  }
}
.c-listArea__parts:last-of-type {
  border-bottom: unset;
}
.c-listArea__parts-label {
  width: 240px;
}
@media screen and (max-width: 600px) {
  .c-listArea__parts-label {
    width: 100%;
  }
}
.c-listArea__parts-contents {
  display: flex;
  align-items: baseline;
  gap: 1em;
  width: calc(100% - 240px);
}
.c-listArea__parts-contents span {
  font-size: 1.4rem;
}
@media screen and (max-width: 600px) {
  .c-listArea__parts-contents {
    width: 100%;
    flex-direction: column;
    gap: 0;
  }
}
.c-listArea__parts.caution {
  border-top: 2px solid white;
  margin-top: -1px;
}

.c-goodsList {
  width: calc(100% - 140px);
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin: auto;
}
@media screen and (max-width: 600px) {
  .c-goodsList {
    width: 100%;
    gap: 15px;
  }
}
.c-goodsList__parts {
  width: calc(33.3333333333% - 27px);
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 600px) {
  .c-goodsList__parts {
    width: calc(50% - 7.5px);
  }
}
.c-goodsList__parts-contents {
  width: 100%;
  height: auto;
  aspect-ratio: 56/27;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  background-color: white;
  padding: 0 25px 0;
  line-height: 1;
}
.c-goodsList__parts-contents__name {
  font-size: 1.5rem;
}
.c-goodsList__parts-contents__name span {
  font-size: 1.3rem;
}
.c-goodsList__parts-contents__caution {
  font-size: 1.1rem;
  line-height: 1.5;
  color: #EA0029;
}
.c-goodsList__parts-contents__price {
  font-size: 1.5rem;
}
@media screen and (max-width: 600px) {
  .c-goodsList__parts-contents {
    justify-content: unset;
    gap: 10px;
    aspect-ratio: unset;
    padding: 15px;
    height: 100%;
  }
}

.p-mv {
  position: relative;
}
.p-about {
  position: relative;
  overflow: hidden;
}
.p-about .l-inner {
  padding: 145px 0 0px;
}
@media screen and (max-width: 600px) {
  .p-about .l-inner {
    padding: 60px 30px 0px;
  }
}
.p-about .l-inner.border {
  position: relative;
}
.p-about .l-inner.border::before, .p-about .l-inner.border::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  top: 0;
  background-color: #E9E9E9;
}
.p-about .l-inner.border::before {
  left: 10%;
}
.p-about .l-inner.border::after {
  right: 10%;
  z-index: -1;
}
@media screen and (max-width: 600px) {
  .p-about .l-inner.border::before, .p-about .l-inner.border::after {
    display: none;
  }
}
.p-about .l-inner {
  display: flex;
}
@media screen and (max-width: 600px) {
  .p-about .l-inner {
    flex-direction: column;
    gap: 30px;
  }
}
.p-about .l-inner .p-about__leftArea {
  position: relative;
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  width: 20%;
  padding-left: 50px;
}
.p-about .l-inner .p-about__leftArea-deco {
  position: absolute;
  top: 0;
  left: 0;
  writing-mode: vertical-rl;
  font-family: "EB Garamond", serif;
  font-weight: bold;
  font-size: 2.4rem;
  line-height: 1;
}
.p-about .l-inner .p-about__leftArea-title {
  font-weight: bold;
  font-size: 2.4rem;
  line-height: 1;
  display: flex;
  flex-direction: column;
  writing-mode: vertical-rl;
}
.p-about .l-inner .p-about__leftArea-copy {
  font-size: 1.3rem;
  writing-mode: vertical-rl;
}
.p-about .l-inner .p-about__leftArea-copy span {
  writing-mode: initial;
  line-height: 1;
}
@media screen and (max-width: 600px) {
  .p-about .l-inner .p-about__leftArea {
    flex-direction: column;
    justify-content: unset;
    width: 100%;
    padding-left: unset;
  }
  .p-about .l-inner .p-about__leftArea-deco {
    position: relative;
    writing-mode: unset;
  }
  .p-about .l-inner .p-about__leftArea-title {
    writing-mode: unset;
  }
  .p-about .l-inner .p-about__leftArea-copy {
    writing-mode: unset;
  }
}
.p-about .l-inner .p-about__rightArea {
  position: relative;
  width: 80%;
  height: -moz-fit-content;
  height: fit-content;
  color: white;
  padding: 35px 65px;
  background-color: #00ACA0;
  z-index: 1;
}
.p-about .l-inner .p-about__rightArea::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  right: -100%;
  background-color: #00ACA0;
  top: 0;
}
@media screen and (max-width: 600px) {
  .p-about .l-inner .p-about__rightArea {
    width: 100%;
    padding: 30px;
  }
  .p-about .l-inner .p-about__rightArea::before {
    width: 50%;
    right: -30px;
    z-index: -1;
  }
}

.p-info {
  position: relative;
}
.p-info .l-inner {
  padding: 0 0 100px;
}
@media screen and (max-width: 600px) {
  .p-info .l-inner {
    padding: 0 30px 50px;
  }
}
.p-info .l-inner.border {
  position: relative;
}
.p-info .l-inner.border::before, .p-info .l-inner.border::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  top: 0;
  background-color: #E9E9E9;
}
.p-info .l-inner.border::before {
  left: 10%;
}
.p-info .l-inner.border::after {
  right: 10%;
  z-index: -1;
}
@media screen and (max-width: 600px) {
  .p-info .l-inner.border::before, .p-info .l-inner.border::after {
    display: none;
  }
}

.p-ticket {
  position: relative;
}
.p-ticket .l-inner {
  padding: 0 0 100px;
}
@media screen and (max-width: 600px) {
  .p-ticket .l-inner {
    padding: 0 30px 50px;
  }
}
.p-ticket .l-inner.border {
  position: relative;
}
.p-ticket .l-inner.border::before, .p-ticket .l-inner.border::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  top: 0;
  background-color: #E9E9E9;
}
.p-ticket .l-inner.border::before {
  left: 10%;
}
.p-ticket .l-inner.border::after {
  right: 10%;
  z-index: -1;
}
@media screen and (max-width: 600px) {
  .p-ticket .l-inner.border::before, .p-ticket .l-inner.border::after {
    display: none;
  }
}
.p-ticket__link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 270px;
  height: 60px;
  color: white;
  background-color: #EA0029;
  margin: 100px auto;
}
.p-ticket__link a {
  color: white;
}
@media screen and (max-width: 600px) {
  .p-ticket__link {
    margin: 50px auto;
  }
}
.p-ticket__boxArea {
  position: relative;
  background-color: #F7F6F5;
  z-index: 1;
}
.p-ticket__boxArea-label {
  display: flex;
  justify-content: center;
  padding: 20px 0;
  background-color: #EA0029;
}
.p-ticket__boxArea-label p {
  font-size: 2rem;
  color: white;
}
@media screen and (max-width: 600px) {
  .p-ticket__boxArea-label {
    padding: 1em;
    text-align: center;
  }
}
.p-ticket__boxArea-contents {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 30px 0;
}
.p-ticket__boxArea-contents span {
  font-size: 1.4rem;
  text-decoration: underline;
}
.p-ticket__boxArea-contents p {
  font-size: 2rem;
}
@media screen and (max-width: 600px) {
  .p-ticket__boxArea-contents {
    padding: 1em;
  }
  .p-ticket__boxArea-contents span {
    font-size: 1.1rem;
  }
  .p-ticket__boxArea-contents p {
    font-size: 1.5rem;
  }
}
.p-ticket__otherBox {
  position: relative;
  margin-bottom: 100px;
  background-color: white;
}
@media screen and (max-width: 600px) {
  .p-ticket__otherBox {
    margin-bottom: 50px;
  }
}
.p-ticket__otherBox p {
  margin-bottom: 1em;
}
.p-ticket__otherBox p a {
  color: #0000FF;
}

.p-organizer {
  position: relative;
}
.p-organizer__caution {
  position: relative;
  display: block;
  margin-top: 2rem;
  font-size: 1.4rem;
  margin-bottom: 100px;
}
@media screen and (max-width: 600px) {
  .p-organizer__caution {
    margin-top: 1rem;
    margin-bottom: 30px;
  }
}
.p-organizer .l-inner {
  padding: 0 0 130px;
}
@media screen and (max-width: 600px) {
  .p-organizer .l-inner {
    padding: 0 30px 50px;
  }
}
.p-organizer .l-inner.border {
  position: relative;
}
.p-organizer .l-inner.border::before, .p-organizer .l-inner.border::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  top: 0;
  background-color: #E9E9E9;
}
.p-organizer .l-inner.border::before {
  left: 10%;
}
.p-organizer .l-inner.border::after {
  right: 10%;
  z-index: -1;
}
@media screen and (max-width: 600px) {
  .p-organizer .l-inner.border::before, .p-organizer .l-inner.border::after {
    display: none;
  }
}

.p-goods {
  position: relative;
  background-color: #F7F6F5;
  padding: 130px 0;
  margin-top: -50px;
}
@media screen and (max-width: 600px) {
  .p-goods {
    padding: 60px 0;
    margin-top: -30px;
  }
}
.p-goods .l-inner {
  position: relative;
}
.p-goods .l-inner .p-goods__deco {
  position: absolute;
  display: flex;
  flex-direction: row-reverse;
  right: 0;
}
.p-goods .l-inner .p-goods__deco p {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.4;
  writing-mode: vertical-rl;
  font-family: "EB Garamond", serif;
  font-weight: bold;
}
.p-goods .l-inner .p-goods__deco span {
  font-size: 1.4rem;
  writing-mode: sideways-rl;
}
@media screen and (max-width: 600px) {
  .p-goods .l-inner .p-goods__deco {
    position: relative;
    flex-direction: column;
    left: 0;
    right: unset;
  }
  .p-goods .l-inner .p-goods__deco p,
  .p-goods .l-inner .p-goods__deco span {
    writing-mode: unset;
  }
}
.p-goods .c-sectionTitle {
  margin-bottom: 60px;
}
@media screen and (max-width: 600px) {
  .p-goods .c-sectionTitle {
    margin-bottom: 30px;
  }
}
.p-goods__caption {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 600px) {
  .p-goods__caption {
    font-size: 1.6rem;
    margin-bottom: 30px;
  }
}
.p-goods__pickupArea {
  position: relative;
  border: 5px solid #EA0029;
  padding: 65px;
  margin-bottom: 140px;
}
@media screen and (max-width: 600px) {
  .p-goods__pickupArea {
    padding: 25px;
    margin-bottom: 50px;
  }
}
.p-goods__pickupArea::before {
  position: absolute;
  content: "";
  width: calc(100% - 5px);
  height: calc(100% - 5px);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  border: solid 1px #EA0029;
}
.p-goods__pickupArea-deco {
  position: absolute;
  content: "";
  width: 80px;
  height: 120px;
  background-color: #F7F6F5;
}
.p-goods__pickupArea-deco:first-of-type {
  left: -5px;
  bottom: -5px;
}
.p-goods__pickupArea-deco:nth-of-type(2) {
  right: -5px;
  top: -5px;
}
@media screen and (max-width: 600px) {
  .p-goods__pickupArea-deco {
    width: 40px;
    height: 60px;
  }
}
.p-goods__pickupArea-contents {
  position: relative;
  display: flex;
  align-items: center;
  gap: 75px;
  z-index: 1;
}
@media screen and (max-width: 600px) {
  .p-goods__pickupArea-contents {
    flex-direction: column;
    gap: 35px;
  }
}
.p-goods__pickupArea-contents__image {
  width: 30%;
}
@media screen and (max-width: 600px) {
  .p-goods__pickupArea-contents__image {
    width: 100%;
  }
}
.p-goods__pickupArea-contents__text {
  width: 70%;
}
@media screen and (max-width: 600px) {
  .p-goods__pickupArea-contents__text {
    width: 100%;
  }
}
.p-goods__pickupArea-contents__text-title {
  line-height: 1;
  margin-bottom: 15px;
}
.p-goods__pickupArea-contents__text-title p {
  font-size: 3rem;
}
.p-goods__pickupArea-contents__text-title span {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.p-goods__pickupArea-contents__text-price {
  font-size: 1.6rem;
  margin-bottom: 35px;
}
@media screen and (max-width: 600px) {
  .p-goods__pickupArea-contents__text-price {
    margin-bottom: 20px;
  }
}
.p-goods__pickupArea-contents__text-caption {
  font-size: 1.5rem;
}
.p-goods__goodsArea {
  margin-bottom: 130px;
}
@media screen and (max-width: 600px) {
  .p-goods__goodsArea {
    margin-bottom: 50px;
  }
}
.p-goods__goodsArea-title {
  position: relative;
  margin-bottom: 85px;
}
.p-goods__goodsArea-title p {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  background-color: #F7F6F5;
  padding: 0 1em;
  z-index: 1;
  font-size: 2rem;
}
.p-goods__goodsArea-title::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #424242;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media screen and (max-width: 600px) {
  .p-goods__goodsArea-title {
    text-align: center;
    margin-bottom: 35px;
  }
  .p-goods__goodsArea-title::before {
    left: 0;
  }
}
@media screen and (max-width: 600px) {
  .p-goods__newgoodsArea {
    margin-bottom: 50px;
  }
}
.p-goods__newgoodsArea-title {
  padding: 15px 0;
  border: solid 1px #00ACA0;
  margin-bottom: 85px;
}
.p-goods__newgoodsArea-title p {
  position: relative;
  width: 100%;
  color: #00ACA0;
  background-color: #F7F6F5;
  line-height: 1;
  font-size: 2rem;
  text-align: center;
  left: -1px;
  width: calc(100% + 2px);
}
@media screen and (max-width: 600px) {
  .p-goods__newgoodsArea-title {
    margin-bottom: 35px;
  }
}

.p-limited {
  position: relative;
  overflow: hidden;
}
.p-limited .l-inner {
  padding: 145px 0 120px;
}
@media screen and (max-width: 600px) {
  .p-limited .l-inner {
    padding: 60px 30px 70px;
  }
}
.p-limited .l-inner.border {
  position: relative;
}
.p-limited .l-inner.border::before, .p-limited .l-inner.border::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  top: 0;
  background-color: #E9E9E9;
}
.p-limited .l-inner.border::before {
  left: 10%;
}
.p-limited .l-inner.border::after {
  right: 10%;
  z-index: -1;
}
@media screen and (max-width: 600px) {
  .p-limited .l-inner.border::before, .p-limited .l-inner.border::after {
    display: none;
  }
}
.p-limited .l-inner {
  display: flex;
}
@media screen and (max-width: 600px) {
  .p-limited .l-inner {
    flex-direction: column;
    gap: 30px;
  }
}
.p-limited .l-inner .p-limited__leftArea {
  position: relative;
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  width: 10%;
  padding-left: 50px;
}
.p-limited .l-inner .p-limited__leftArea-deco {
  position: absolute;
  top: 0;
  left: 0;
  writing-mode: vertical-rl;
  font-family: "EB Garamond", serif;
  font-weight: bold;
  font-size: 2.4rem;
}
.p-limited .l-inner .p-limited__leftArea-title {
  font-size: 2.4rem;
  display: flex;
  flex-direction: column;
  writing-mode: vertical-rl;
}
.p-limited .l-inner .p-limited__leftArea-copy {
  font-size: 1.3rem;
  writing-mode: vertical-rl;
}
.p-limited .l-inner .p-limited__leftArea-copy span {
  writing-mode: initial;
  line-height: 1;
}
@media screen and (max-width: 600px) {
  .p-limited .l-inner .p-limited__leftArea {
    flex-direction: column;
    justify-content: unset;
    width: 100%;
    padding-left: unset;
  }
  .p-limited .l-inner .p-limited__leftArea-deco {
    position: relative;
    writing-mode: unset;
  }
  .p-limited .l-inner .p-limited__leftArea-title {
    writing-mode: unset;
  }
  .p-limited .l-inner .p-limited__leftArea-copy {
    writing-mode: unset;
  }
}
.p-limited .l-inner .p-limited__rightArea {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 100px;
  width: 90%;
  z-index: 1;
}
@media screen and (max-width: 600px) {
  .p-limited .l-inner .p-limited__rightArea {
    width: 100%;
    flex-direction: column;
    justify-content: unset;
    gap: 30px;
  }
}
.p-limited .l-inner .p-limited__rightArea-title {
  font-size: 2.4rem;
  font-weight: bold;
  writing-mode: vertical-lr;
  line-height: 1.3;
}
@media screen and (max-width: 600px) {
  .p-limited .l-inner .p-limited__rightArea-title {
    writing-mode: unset;
  }
}
.p-limited .l-inner .p-limited__rightArea-linkArea {
  display: flex;
  justify-content: space-between;
  gap: 25px;
}
@media screen and (max-width: 600px) {
  .p-limited .l-inner .p-limited__rightArea-linkArea {
    flex-direction: column;
  }
}
.p-limited .l-inner .p-limited__rightArea-linkArea a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 33.3333333333%;
  background-color: #00ACA0;
  gap: 1em;
  padding: 25px;
  color: white;
  text-align: center;
  line-height: 1.3;
}
.p-limited .l-inner .p-limited__rightArea-linkArea a svg {
  width: auto;
}
.p-limited .l-inner .p-limited__rightArea-linkArea a:nth-of-type(1) svg {
  height: 64px;
}
.p-limited .l-inner .p-limited__rightArea-linkArea a:nth-of-type(2) svg {
  height: 62px;
}
.p-limited .l-inner .p-limited__rightArea-linkArea a:nth-of-type(3) svg {
  height: 43px;
}
@media screen and (max-width: 600px) {
  .p-limited .l-inner .p-limited__rightArea-linkArea a {
    width: 100%;
  }
}

.p-limitedBlock {
  overflow: hidden;
}
.p-limitedBlock.exhibitions {
  margin-bottom: 120px;
}
@media screen and (max-width: 600px) {
  .p-limitedBlock.exhibitions {
    margin: 60px 0 0;
  }
}
.p-limitedBlock .l-inner {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 130px 0 0;
}
@media screen and (max-width: 600px) {
  .p-limitedBlock .l-inner {
    padding: 0 30px 50px;
  }
}
.p-limitedBlock .l-inner.border {
  position: relative;
}
.p-limitedBlock .l-inner.border::before, .p-limitedBlock .l-inner.border::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  top: 0;
  background-color: #E9E9E9;
}
.p-limitedBlock .l-inner.border::before {
  left: 10%;
}
.p-limitedBlock .l-inner.border::after {
  right: 10%;
  z-index: -1;
}
@media screen and (max-width: 600px) {
  .p-limitedBlock .l-inner.border::before, .p-limitedBlock .l-inner.border::after {
    display: none;
  }
}
.p-limitedBlock__title {
  position: relative;
}
.p-limitedBlock__title::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #424242;
  top: 0;
  bottom: 0;
  margin: auto;
}
.p-limitedBlock__title h3 {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  line-height: 1;
  padding: 0 1em;
  background-color: white;
  font-size: 2.4rem;
  font-weight: bold;
}
@media screen and (max-width: 600px) {
  .p-limitedBlock__title h3 {
    padding: 0 0.5em;
    font-size: 1.8rem;
    text-align: center;
  }
}
.p-limitedBlock__caption {
  font-size: 1.4rem;
}
.p-limitedBlock__caption span {
  font-size: 1.6rem;
  font-weight: bold;
}
.p-limitedBlock__caption.text-center {
  max-width: 700px;
  margin: auto;
  text-align: left;
}
.p-limitedBlock__redBox {
  position: relative;
  padding: 30px 40px;
  border: solid 1px #EA0029;
  background-color: white;
}
.p-limitedBlock__redBox p {
  font-size: 1.8rem;
  line-height: 1.2;
}
.p-limitedBlock__redBox::before, .p-limitedBlock__redBox::after {
  position: absolute;
  content: "";
  width: 45px;
  height: 55px;
  background-color: white;
}
.p-limitedBlock__redBox::before {
  left: -3px;
  bottom: -3px;
}
.p-limitedBlock__redBox::after {
  right: -3px;
  top: -3px;
}
.p-limitedBlock__tableArea {
  overflow: hidden;
}
.p-limitedBlock__tableArea-title {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 1em;
}
.p-limitedBlock__tableArea-scroll {
  overflow-x: scroll;
}
@media screen and (max-width: 600px) {
  .p-limitedBlock__tableArea-scroll {
    margin-bottom: 30px;
  }
}
.p-limitedBlock__tableArea table {
  position: relative;
  background-color: white;
  border-top: 1px solid #CCCCCC;
  border-bottom: 1px solid #CCCCCC;
  margin-bottom: 30px;
}
@media screen and (max-width: 600px) {
  .p-limitedBlock__tableArea table {
    width: 500px;
    overflow-x: scroll;
  }
}
.p-limitedBlock__tableArea thead {
  border-bottom: 1px solid #F7F6F5;
  border-bottom: 1px solid #CCCCCC;
}
.p-limitedBlock__tableArea tr {
  border-bottom: 1px solid #CCCCCC;
}
.p-limitedBlock__tableArea tr th {
  background-color: #F7F6F5;
  padding: 1em;
  border-right: 1px solid #CCCCCC;
}
.p-limitedBlock__tableArea tr th:last-of-type {
  border-right: unset;
}
.p-limitedBlock__tableArea tr td {
  padding: 1em;
  border-right: 1px solid #CCCCCC;
}
.p-limitedBlock__tableArea tr td:last-of-type {
  border-right: unset;
}
.p-limitedBlock__tableArea tr:last-of-type {
  border-bottom: unset;
}
.p-limitedBlock__tableArea-noteArea__parts {
  display: flex;
  font-size: 2rem;
  font-weight: 500;
  gap: 1em;
}
.p-limitedBlock__tableArea-noteArea__parts-label {
  width: 120px;
}
.p-limitedBlock__tableArea-noteArea__parts-contents {
  width: calc(100% - 140px);
}
@media screen and (max-width: 600px) {
  .p-limitedBlock__tableArea-noteArea__parts {
    flex-direction: column;
    font-size: 1.6rem;
    gap: 10px;
  }
  .p-limitedBlock__tableArea-noteArea__parts-label {
    width: 100%;
  }
  .p-limitedBlock__tableArea-noteArea__parts-contents {
    width: 100%;
  }
}
.p-limitedBlock__swiper {
  position: relative;
}
.p-limitedBlock__swiper .swiper-button-next,
.p-limitedBlock__swiper .swiper-button-prev {
  position: absolute;
  background-color: black;
  width: 55px;
  height: 55px;
}
@media screen and (max-width: 600px) {
  .p-limitedBlock__swiper .swiper-button-next,
  .p-limitedBlock__swiper .swiper-button-prev {
    width: 30px;
    height: 30px;
  }
}
.p-limitedBlock__swiper .swiper-button-next {
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.p-limitedBlock__swiper .swiper-button-prev {
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.p-limitedBlock__swiper .swiper-button-prev:after,
.p-limitedBlock__swiper .swiper-rtl .swiper-button-next:after {
  color: white;
  width: 13px;
  height: 26px;
  font-size: 25px;
}
@media screen and (max-width: 600px) {
  .p-limitedBlock__swiper .swiper-button-prev:after,
  .p-limitedBlock__swiper .swiper-rtl .swiper-button-next:after {
    font-size: 18px;
    height: 20px;
  }
}
.p-limitedBlock__swiper .swiper-button-next:after,
.p-limitedBlock__swiper .swiper-rtl .swiper-button-prev:after {
  color: white;
  width: 13px;
  height: 26px;
  font-size: 25px;
}
@media screen and (max-width: 600px) {
  .p-limitedBlock__swiper .swiper-button-next:after,
  .p-limitedBlock__swiper .swiper-rtl .swiper-button-prev:after {
    font-size: 18px;
    height: 20px;
  }
}
.p-limitedBlock__swiper .swiper-slide img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 600px) {
  .p-limitedBlock__swiper .swiper-slide {
    margin-top: 5px;
    font-size: 1.4rem;
  }
}
.p-limitedBlock__flexArea {
  max-width: 700px;
  display: flex;
  justify-content: space-between;
  gap: 95px;
  margin: auto;
}
.p-limitedBlock__flexArea-parts__image {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  position: relative;
}
.p-limitedBlock__flexArea-parts__image span {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.p-limitedBlock__flexArea-parts p {
  font-size: 1.4rem;
}
@media screen and (max-width: 600px) {
  .p-limitedBlock__flexArea {
    flex-direction: column;
    gap: 30px;
  }
  .p-limitedBlock__flexArea-parts {
    width: 100%;
  }
}
.p-limitedBlock__collaborationArea {
  position: relative;
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 80px;
}
@media screen and (max-width: 600px) {
  .p-limitedBlock__collaborationArea {
    flex-direction: column-reverse;
    margin-bottom: 40px;
  }
}
.p-limitedBlock__collaborationArea-textArea {
  width: 41%;
}
.p-limitedBlock__collaborationArea-textArea p {
  font-size: 2.4rem;
}
@media screen and (max-width: 600px) {
  .p-limitedBlock__collaborationArea-textArea p {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 600px) {
  .p-limitedBlock__collaborationArea-textArea {
    width: 100%;
  }
}
.p-limitedBlock__collaborationArea-imageArea {
  width: 59%;
}
@media screen and (max-width: 600px) {
  .p-limitedBlock__collaborationArea-imageArea {
    width: 100%;
  }
}
.p-limitedBlock__yanaseArea {
  position: relative;
  display: flex;
  gap: 60px;
}
.p-limitedBlock__yanaseArea-imageArea {
  width: 25%;
}
@media screen and (max-width: 600px) {
  .p-limitedBlock__yanaseArea-imageArea {
    width: 50%;
    margin: auto;
  }
}
.p-limitedBlock__yanaseArea-textArea {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 30px;
  width: 75%;
}
@media screen and (max-width: 600px) {
  .p-limitedBlock__yanaseArea-textArea {
    width: 100%;
  }
}
.p-limitedBlock__yanaseArea-textArea__name {
  font-size: 2.4rem;
  line-height: 1.5;
}
.p-limitedBlock__yanaseArea-textArea__name span {
  font-size: 1.5rem;
}
.p-limitedBlock__yanaseArea a {
  font-size: 1.4rem;
  text-decoration: underline;
}
.p-limitedBlock__exampleArea {
  display: flex;
  flex-wrap: wrap;
  gap: 90px;
  margin-top: 90px;
}
.p-limitedBlock__exampleArea-parts {
  width: calc(33.3333333333% - 60px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.p-linkArea {
  position: relative;
  z-index: 1;
}
.p-linkArea .l-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.p-linkArea-link {
  position: relative;
  display: flex;
  width: 100%;
  height: 160px;
  color: white;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 600px) {
  .p-linkArea-link {
    flex-direction: column-reverse;
    height: auto;
  }
}
.p-linkArea-link.goods .p-linkArea-link__label {
  background-color: #EA0029;
}
@media screen and (max-width: 600px) {
  .p-linkArea-link.goods .p-linkArea-link__contents {
    background-image: url(/content/dam/isetan_mitsukoshi/site/maruiimai_s/event_calendar/all/nakajimamiyuki/images/bg_link01.webp);
    background-position: center;
    background-size: cover;
  }
}
.p-linkArea-link.campaign .p-linkArea-link__label {
  background-color: #00ACA0;
}
@media screen and (max-width: 600px) {
  .p-linkArea-link.campaign .p-linkArea-link__contents {
    background-image: url(/content/dam/isetan_mitsukoshi/site/maruiimai_s/event_calendar/all/nakajimamiyuki/images/bg_link02.webp);
    background-position: center;
    background-size: cover;
  }
}
.p-linkArea-link.flower .p-linkArea-link__label {
  background-color: #333333;
}
.p-linkArea-link.flower .p-linkArea-link__contents p::before {
  display: none;
}
@media screen and (max-width: 600px) {
  .p-linkArea-link.flower .p-linkArea-link__contents {
    background-image: url(/content/dam/isetan_mitsukoshi/site/maruiimai_s/event_calendar/all/nakajimamiyuki/images/bg_link03.webp);
    background-position: center;
    background-size: cover;
  }
}
.p-linkArea-link__contents {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: calc(100% - 125px);
}
.p-linkArea-link__contents p {
  position: relative;
  font-size: 3.3rem;
  font-weight: bold;
  line-height: 1;
  text-align: center;
}
.p-linkArea-link__contents p span {
  font-size: 1.4rem;
  line-height: 1;
}
.p-linkArea-link__contents span {
  font-size: 2.5rem;
  margin-bottom: 0.5em;
  line-height: 1;
}
@media screen and (max-width: 600px) {
  .p-linkArea-link__contents {
    width: 100%;
    height: auto;
    padding: 30px;
  }
  .p-linkArea-link__contents p {
    font-size: 2rem;
    text-align: center;
  }
  .p-linkArea-link__contents span {
    font-size: 2rem;
  }
}
.p-linkArea-link__label {
  width: 125px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.p-linkArea-link__label p {
  writing-mode: sideways-rl;
  line-height: 1;
  font-size: 1.4rem;
  font-weight: 500;
}
.p-linkArea-link__label span {
  font-family: "EB Garamond", serif;
  font-size: 1.8rem;
  font-weight: bold;
  writing-mode: vertical-rl;
  line-height: 1;
}
@media screen and (max-width: 600px) {
  .p-linkArea-link__label {
    width: 100%;
    flex-direction: column-reverse;
    padding: 0.5em 0;
    gap: 5px;
  }
  .p-linkArea-link__label p, .p-linkArea-link__label span {
    writing-mode: unset;
  }
}
.p-linkArea-link.goods {
  background-color: #EA0029;
  background-image: url(/content/dam/isetan_mitsukoshi/site/maruiimai_s/event_calendar/all/nakajimamiyuki/images/bg_link01.webp);
}
.p-linkArea-link.campaign {
  background-color: #00ACA0;
  background-image: url(/content/dam/isetan_mitsukoshi/site/maruiimai_s/event_calendar/all/nakajimamiyuki/images/bg_link02.webp);
}
.p-linkArea-link.flower {
  background-color: rgba(0, 0, 0, 0.75);
  background-image: url(/content/dam/isetan_mitsukoshi/site/maruiimai_s/event_calendar/all/nakajimamiyuki/images/bg_link03.webp);
}

.page-lower .p-mv {
  margin-bottom: 130px;
}
@media screen and (max-width: 600px) {
  .page-lower .p-mv {
    margin-bottom: 60px;
  }
}

.p-artproject {
  position: relative;
  overflow: hidden;
}
.p-artproject .l-inner {
  padding: 145px 0 0px;
}
@media screen and (max-width: 600px) {
  .p-artproject .l-inner {
    padding: 60px 30px 0px;
  }
}
.p-artproject .l-inner.border {
  position: relative;
}
.p-artproject .l-inner.border::before, .p-artproject .l-inner.border::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  top: 0;
  background-color: #E9E9E9;
}
.p-artproject .l-inner.border::before {
  left: 10%;
}
.p-artproject .l-inner.border::after {
  right: 10%;
  z-index: -1;
}
@media screen and (max-width: 600px) {
  .p-artproject .l-inner.border::before, .p-artproject .l-inner.border::after {
    display: none;
  }
}
.p-artproject .l-inner {
  display: flex;
}
@media screen and (max-width: 600px) {
  .p-artproject .l-inner {
    flex-direction: column;
    gap: 30px;
  }
}
.p-artproject .l-inner .p-artproject__leftArea {
  position: relative;
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  width: 20%;
  padding-left: 70px;
}
.p-artproject .l-inner .p-artproject__leftArea-deco {
  position: absolute;
  top: 0;
  left: 0;
  writing-mode: vertical-rl;
  font-family: "EB Garamond", serif;
  font-weight: bold;
  font-size: 2.4rem;
  line-height: 1;
}
.p-artproject .l-inner .p-artproject__leftArea-title {
  font-weight: bold;
  font-size: 2.4rem;
  line-height: 1;
  display: flex;
  flex-direction: column;
  writing-mode: vertical-rl;
}
.p-artproject .l-inner .p-artproject__leftArea-title span {
  font-size: 1.5rem;
  line-height: 1;
}
.p-artproject .l-inner .p-artproject__leftArea-copy {
  font-size: 1.3rem;
  writing-mode: vertical-rl;
}
.p-artproject .l-inner .p-artproject__leftArea-copy span {
  writing-mode: initial;
  line-height: 1;
}
@media screen and (max-width: 600px) {
  .p-artproject .l-inner .p-artproject__leftArea {
    flex-direction: column;
    justify-content: unset;
    width: 100%;
    padding-left: unset;
  }
  .p-artproject .l-inner .p-artproject__leftArea-deco {
    position: relative;
    writing-mode: unset;
    margin-bottom: 10px;
  }
  .p-artproject .l-inner .p-artproject__leftArea-title {
    writing-mode: unset;
  }
  .p-artproject .l-inner .p-artproject__leftArea-copy {
    writing-mode: unset;
  }
}
.p-artproject .l-inner .p-artproject__rightArea {
  position: relative;
  width: 80%;
  height: -moz-fit-content;
  height: fit-content;
  color: white;
  padding: 35px 65px;
  background-color: #00ACA0;
  z-index: 1;
}
.p-artproject .l-inner .p-artproject__rightArea::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  right: -100%;
  background-color: #00ACA0;
  top: 0;
}
@media screen and (max-width: 600px) {
  .p-artproject .l-inner .p-artproject__rightArea {
    width: 100%;
    padding: 30px;
  }
  .p-artproject .l-inner .p-artproject__rightArea::before {
    width: 50%;
    right: -30px;
    z-index: -1;
  }
}

@media screen and (min-width: 601px) {
  .u-sp {
    display: none;
  }
}

@media screen and (max-width: 600px) {
  .u-pc {
    display: none;
  }
}

.u-mt05 {
  margin-top: 0.5em;
}

.u-mb05 {
  margin-bottom: 0.5em;
}

.u-pt05 {
  padding-top: 0.5em;
}

.u-pb05 {
  padding-bottom: 0.5em;
}

.u-mt1 {
  margin-top: 1em;
}

.u-mb1 {
  margin-bottom: 1em;
}

.u-pt1 {
  padding-top: 1em;
}

.u-pb1 {
  padding-bottom: 1em;
}

.u-mt2 {
  margin-top: 2em;
}

.u-mb2 {
  margin-bottom: 2em;
}

.u-pt2 {
  padding-top: 2em;
}

.u-pb2 {
  padding-bottom: 2em;
}

.u-mt3 {
  margin-top: 3em;
}

.u-mb3 {
  margin-bottom: 3em;
}

.u-pt3 {
  padding-top: 3em;
}

.u-pb3 {
  padding-bottom: 3em;
}

.u-mt4 {
  margin-top: 4em;
}

.u-mb4 {
  margin-bottom: 4em;
}

.u-pt4 {
  padding-top: 4em;
}

.u-pb4 {
  padding-bottom: 4em;
}

.u-mt5 {
  margin-top: 5em;
}

.u-mb5 {
  margin-bottom: 5em;
}

.u-pt5 {
  padding-top: 5em;
}

.u-pb5 {
  padding-bottom: 5em;
}

.u-white {
  color: #fff;
  fill: #fff;
}
.u-white * {
  color: #fff;
  fill: #fff;
}

.u-center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.u-right {
  text-align: right;
  margin-left: auto;
}

.u-left {
  text-align: left;
  margin-right: auto;
}

@media screen and (min-width: 601px) {
  .u-sp {
    display: none !important;
  }
}

@media screen and (max-width: 600px) {
  .u-pc {
    display: none !important;
  }
}</pre></body></html>