@charset "UTF-8";
/*------------------------------------------
  Base Setting
------------------------------------------*/
html {
  font-size: 62.5%;
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  background: #fff;
  color: #000;
  font-family: "Shippori Mincho", serif;
  font-size: 1.6em;
  letter-spacing: 0;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

@media only screen and (max-width: 767px) {
  body {
    font-size: 1.3em;
  }
}
a {
  color: #000;
  text-decoration: none;
}

img {
  width: 100%;
}

.is--tab {
  display: none;
}

.is--sp {
  display: none;
}

@media only screen and (max-width: 1024px) {
  .is--tab {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  .is--pc {
    display: none;
  }
  .is--sp {
    display: block;
  }
}
/*------------------------------------------
  layout
------------------------------------------*/
.main {
  position: relative;
  z-index: 10;
}
.main__space {
  width: 100%;
  height: 100vh;
}
.main__contents {
  position: relative;
  z-index: 11;
}
.main__contents--page {
  display: flex;
}

@media only screen and (max-width: 767px) {
  .main__contents--page {
    display: block;
  }
}
.page-nav {
  padding-left: 60px;
  width: 215px;
  height: 100vh;
  position: sticky;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  z-index: 10;
}
.page-nav__list li {
  margin-bottom: 18px;
}
.page-nav__list li:last-child {
  margin-bottom: 0;
}
.page-nav__list a {
  font-family: "ivymode", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.04em;
  opacity: 0.5;
  display: block;
  padding-bottom: 0.3em;
}
.page-nav__list a.is--current {
  opacity: 1;
  border-bottom: 1px solid #000;
}
.page-nav__top {
  position: absolute;
  bottom: 20px;
  left: 20px;
}
.page-nav__top a {
  font-size: 1.3rem;
  padding-left: 30px;
  padding-bottom: 0.2em;
}
.page-nav__top a:before {
  content: "";
  width: 5px;
  height: 5px;
  border-top: 1px solid #000;
  border-left: 1px solid #000;
  transform: rotate(-45deg);
  position: absolute;
  left: 3px;
  top: 50%;
  margin-top: -5px;
}

@media only screen and (max-width: 767px) {
  .page-nav {
    padding: 18px 0 0;
    width: 100%;
    height: auto;
    justify-content: center;
  }
  .page-nav__list {
    display: flex;
    justify-content: center;
    gap: 0 17px;
  }
  .page-nav__list li {
    margin-bottom: 0;
  }
  .page-nav__list a {
    font-size: 1.2rem;
  }
  .page-nav__top {
    position: fixed;
    bottom: 20px;
    right: 10px;
    left: auto;
  }
  .page-nav__top a {
    font-size: 1.2rem;
    padding-left: 18px;
  }
  .page-nav__top a:before {
    margin-top: -5px;
  }
}
.page-contents {
  width: calc(94% - 215px);
  margin-left: auto;
}

@media only screen and (max-width: 767px) {
  .page-contents {
    width: 100%;
  }
}
.page-btn--top {
  text-align: center;
  margin-top: 60px;
}
.page-btn--top a {
  font-size: 1.5rem;
  padding-left: 30px;
  padding-bottom: 0.2em;
}
.page-btn--top a:before {
  content: "";
  width: 5px;
  height: 5px;
  border-top: 1px solid #000;
  border-left: 1px solid #000;
  transform: rotate(-45deg);
  position: absolute;
  left: 3px;
  top: 50%;
  margin-top: -4px;
}

@media only screen and (max-width: 767px) {
  .page-btn--top {
    margin-top: 30px;
  }
  .page-btn--top a {
    font-size: 1.3rem;
  }
}
.l-flex {
  display: -moz-flex;
  display: flex;
  -ms-flex-pack: justify;
  flex-wrap: wrap;
}

.l-inner {
  position: relative;
  padding: 0 60px;
}

@media only screen and (max-width: 767px) {
  .l-inner {
    position: relative;
    padding: 0 24px;
  }
}
/*------------------------------------------
  component
------------------------------------------*/
.c-ttl {
  text-align: center;
  font-family: "ivymode", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 5rem;
  letter-spacing: 0.04em;
  line-height: 1.3;
}
.c-ttl span {
  font-size: 4rem;
}

@media only screen and (max-width: 767px) {
  .c-ttl {
    font-size: 2.5rem;
  }
  .c-ttl span {
    font-size: 2rem;
  }
}
.c-btn {
  display: inline-block;
  font-family: "ivymode", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.04em;
  font-size: 1.3rem;
  position: relative;
}
.c-btn:after {
  content: "";
  background: #000;
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  margin: auto;
  transition: transform 0.3s ease-in-out;
  transform-origin: left top;
  transform: scale(1, 1);
}
.c-btn:hover:after {
  transform-origin: right top;
  transform: scale(0, 1);
}
.c-btn.white {
  color: #fff;
}
.c-btn.white:after {
  background: #fff;
}

@media only screen and (max-width: 767px) {
  .c-btn {
    font-size: 1.2rem;
  }
  .c-btn:hover:after {
    transform: scale(1, 1);
  }
}
.c-txtlink {
  text-decoration: underline;
}

.c-oplink {
  transition: opacity 0.3s;
}
.c-oplink:hover {
  opacity: 0.7;
}

@media only screen and (max-width: 767px) {
  .c-oplink:hover {
    opacity: 1;
  }
}
.js-modal {
  display: none;
  position: fixed;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  z-index: 100;
}
.js-modalOuter {
  width: 100%;
  height: 100vh;
  height: 100dvh;
}
.js-modalIn {
  padding: 0 60px;
  position: relative;
}
.js-modalIn:before {
  content: "";
  width: 60px;
  height: 100%;
  background: #fff;
  position: absolute;
  left: 0;
  top: 0;
}
.js-modalContent {
  position: relative;
  margin: auto;
  box-sizing: border-box;
}
.js-modalOpen {
  cursor: pointer;
}
.js-modalClose {
  cursor: pointer;
}

.modal-close {
  text-align: center;
  mix-blend-mode: difference;
  z-index: 100;
}
.modal-close__icon {
  height: 7px;
  width: 30px;
  margin: auto;
  position: relative;
}
.modal-close__icon span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: #fff;
  transition: 0.4s;
}
.modal-close__icon span:first-child {
  top: 50%;
  margin-top: -0.5px;
  transform: rotate(-15deg);
}
.modal-close__icon span:last-child {
  bottom: 50%;
  margin-bottom: -0.5px;
  transform: rotate(15deg);
}
.modal-close__label {
  font-family: "ivymode", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.4rem;
  line-height: 1.3;
  color: #fff;
}
.modal-close--top {
  position: fixed;
  top: 15px;
  right: 0;
  width: 60px;
}
.modal-close--bottom {
  position: absolute;
  bottom: 25px;
  left: 0;
  width: 50%;
}

.modal-contents {
  display: -moz-flex;
  display: flex;
  -ms-flex-pack: justify;
  flex-wrap: wrap;
}
.modal-contents__left {
  width: 50%;
  height: 100vh;
  background: #fff;
  position: relative;
  padding: 40px 12.5% 88px 0;
  display: flex;
  align-items: flex-end;
}
.modal-contents__left .modal-close {
  width: 100%;
  position: absolute;
  bottom: 24px;
  left: 0;
}
.modal-contents__right {
  width: 50%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.modal-event__head {
  margin-bottom: 28px;
  padding-bottom: 1em;
  border-bottom: 1px solid #000;
}
.modal-event__summary {
  margin-bottom: 24px;
  display: -moz-flex;
  display: flex;
  -ms-flex-pack: justify;
  flex-wrap: wrap;
  gap: 3px 0;
}
.modal-event__summary dt {
  width: 76px;
  font-family: "ivymode", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.04em;
}
.modal-event__summary dd {
  width: calc(100% - 76px);
  margin-left: auto;
  font-size: 1.4rem;
}
.modal-event__txt {
  line-height: 1.85;
  font-size: 1.3rem;
}
.modal-event__more {
  margin-top: 35px;
}

.modal-limiteditem {
  font-size: 1.4rem;
}
.modal-limiteditem__floor {
  margin-bottom: 18px;
}
.modal-limiteditem__floor span {
  display: inline-block;
  font-family: "ivymode", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.04em;
  min-width: 37px;
  background: #E8E8E8;
  text-align: center;
  padding: 1px 0;
}
.modal-limiteditem__brand {
  margin-bottom: 5px;
}
.modal-limiteditem__name {
  margin-bottom: 24px;
}
.modal-limiteditem__price {
  margin-bottom: 30px;
}
.modal-limiteditem__price .tax {
  font-size: 1rem;
}
.modal-limiteditem__txt {
  font-size: 1.3rem;
  line-height: 1.85;
}

.modal-img__item {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}
.modal-img__item .img-main {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.modal-img__item .img-main img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.modal-img__item .img-bg {
  position: absolute;
  top: -20px;
  left: -20px;
  width: calc(100% + 40px);
  height: calc(100% + 40px);
  overflow: hidden;
}
.modal-img__item .img-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  filter: blur(20px) brightness(60%);
}
.modal-img .swiper .modal-img__item {
  padding-bottom: 30px;
}
.modal-img .swiper-pagination {
  bottom: 60px;
  padding: 0;
  gap: 0 20px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-img .swiper-pagination-bullet {
  margin: 0 !important;
  display: block;
  background: #AFAFAF;
  opacity: 1;
  cursor: pointer;
}
.modal-img .swiper-pagination-bullet-active {
  transform: scale(1);
  background: #fff;
}

@media only screen and (max-width: 767px) {
  .js-modalIn {
    padding: 0 24px 0 0;
  }
  .js-modalIn:before {
    content: none;
  }
  .js-modalContent {
    min-height: 100vh;
    background: #fff;
  }
  .modal-close--top {
    top: 10px;
    width: 46px;
  }
  .modal-close--top .modal-close__icon {
    width: 26px;
  }
  .modal-close--top .modal-close__label {
    font-size: 1.1rem;
  }
  .modal-close--bottom {
    width: calc(100% - 24px);
    bottom: 38px;
  }
  .modal-contents__left {
    width: 100%;
    height: auto;
    -ms-order: 2;
    order: 2;
    display: block;
    padding: 24px 24px 100px;
  }
  .modal-contents__right {
    width: 100%;
    height: auto;
    -ms-order: 1;
    order: 1;
  }
  .modal-event__head {
    font-size: 1.4rem;
    line-height: 1.7;
    margin-bottom: 20px;
  }
  .modal-event__summary dt {
    width: 42px;
    font-size: 1.4rem;
  }
  .modal-event__summary dd {
    width: calc(100% - 42px);
    font-size: 1.2rem;
  }
  .modal-event__txt {
    line-height: 1.85;
    font-size: 1.2rem;
  }
  .modal-event__more {
    text-align: right;
    margin-top: 10px;
  }
  .modal-limiteditem {
    font-size: 1.3rem;
    line-height: 1.4;
  }
  .modal-limiteditem__floor {
    margin-bottom: 15px;
  }
  .modal-limiteditem__floor span {
    min-width: 34px;
  }
  .modal-limiteditem__price {
    margin-bottom: 17px;
  }
  .modal-limiteditem__price .tax {
    font-size: 0.9rem;
  }
  .modal-limiteditem__txt {
    font-size: 1.2rem;
    line-height: 1.85;
  }
  .modal-img__item {
    height: auto;
    padding: 30px 0;
  }
  .modal-img .img-main {
    width: 100%;
    aspect-ratio: 1/1;
  }
  .modal-img .img-main img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: center;
       object-position: center;
  }
  .modal-img .swiper .modal-img__item {
    padding-bottom: 50px;
  }
  .modal-img .swiper-pagination {
    bottom: 25px;
    gap: 0 15px;
  }
}
.fadeIn {
  opacity: 0;
}
.fadeIn.js-scr-active {
  opacity: 1;
  transition: 1400ms;
}

.fadeInUpBlur {
  opacity: 0;
  filter: blur(0.4rem);
  transform: translateY(20px);
}
.fadeInUpBlur.js-scr-active {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
  transition: 1400ms;
}

/*------------------------------------------
  fixed logo
------------------------------------------*/
.fixed-logo {
  position: fixed;
  left: 25px;
  top: 20px;
  z-index: 100;
  mix-blend-mode: difference;
}

@media only screen and (max-width: 767px) {
  .fixed-logo {
    top: 10px;
    left: 10px;
  }
  .fixed-logo svg {
    width: 41px;
    height: auto;
  }
}
/*------------------------------------------
  fixed btn
------------------------------------------*/
.fixed-btn {
  position: fixed;
  right: 15px;
  top: 15px;
  z-index: 100;
  mix-blend-mode: difference;
  cursor: pointer;
}
.fixed-btn__icon {
  height: 7px;
  width: 30px;
  margin: auto;
  position: relative;
}
.fixed-btn__icon span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: #fff;
  transition: 0.4s;
}
.fixed-btn__icon span:first-child {
  top: 0;
}
.fixed-btn__icon span:last-child {
  bottom: 0;
}
.fixed-btn__label {
  color: #fff;
  font-family: "ivymode", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  line-height: 1.1;
  margin-top: 0.8em;
}
.fixed-btn__label:after {
  content: "menu";
}
.fixed-btn.is--active .fixed-btn__icon span:first-child {
  top: 50%;
  margin-top: -0.5px;
  transform: rotate(-15deg);
}
.fixed-btn.is--active .fixed-btn__icon span:last-child {
  bottom: 50%;
  margin-bottom: -0.5px;
  transform: rotate(15deg);
}
.fixed-btn.is--active .fixed-btn__label:after {
  content: "close";
}

@media only screen and (max-width: 767px) {
  .fixed-btn {
    right: 10px;
    top: 10px;
  }
  .fixed-btn__icon {
    height: 6px;
    width: 24px;
  }
  .fixed-btn__label {
    font-size: 0.9rem;
    margin-top: 0.5em;
  }
}
/*------------------------------------------
  gnav
------------------------------------------*/
.gnav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 99;
}
.gnav:before {
  content: "";
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
  position: absolute;
  top: 0;
  left: 0;
}
.gnav__inner {
  width: calc(100% - 60px);
  height: 100%;
  padding-left: 60px;
  padding-bottom: 88px;
  display: flex;
  align-items: flex-end;
  position: relative;
  z-index: 1;
  transform: translateX(-100%);
  opacity: 0;
  transition: 0.8s 0.2s ease-in-out;
}
.gnav__inner:before {
  content: "";
  height: 100%;
  width: 100%;
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
}
.gnav-list {
  position: relative;
  font-family: "ivymode", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
}
.gnav-list li {
  margin-top: 1.2em;
}
.gnav.is--active .gnav__inner {
  opacity: 1;
  transform: translateX(0);
}

@media only screen and (max-width: 767px) {
  .gnav__inner {
    width: calc(100% - 24px);
    padding-left: 24px;
    padding-bottom: 40px;
  }
  .gnav-list {
    font-size: 1.2rem;
  }
  .gnav-list li {
    margin-bottom: 1.5em;
  }
}
/*------------------------------------------
  footer
------------------------------------------*/
.footer {
  position: relative;
  width: 100%;
  height: 280px;
  z-index: 10;
  display: flex;
  align-items: flex-end;
}
.footer__inner {
  width: 100%;
  padding: 0 60px 28px 40px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.footer-credit {
  display: none;
}
.footer-logo {
  width: 70px;
}
.footer-logo path {
  fill: #000;
}
.footer-info__sns {
  display: flex;
  justify-content: flex-end;
  gap: 0 14px;
}
.footer-info__sns a {
  display: block;
  width: 18px;
  height: 19px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}
.footer-info__sns .x {
  background-image: url(../images/ico-x.svg);
}
.footer-info__sns .instagram {
  background-image: url(../images/ico-instagram.svg);
}
.footer-info__sns .line {
  background-image: url(../images/ico-line.svg);
}
.footer-info__copy {
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  font-family: "ivymode", sans-serif;
  font-weight: 400;
  font-style: normal;
  margin-top: 1em;
}

body.home .footer {
  height: 100vh !important;
}
body.home .footer-credit {
  display: block;
  color: #fff;
  font-size: 1.1rem;
}
body.home .footer-logo {
  margin-left: auto;
}
body.home .footer-logo path {
  fill: #fff;
}
body.home .footer-info {
  margin-left: 24px;
}
body.home .footer-info__sns .x {
  background-image: url(../images/ico-x-wh.svg);
}
body.home .footer-info__sns .instagram {
  background-image: url(../images/ico-instagram-wh.svg);
}
body.home .footer-info__sns .line {
  background-image: url(../images/ico-line-wh.svg);
}
body.home .footer-info__copy {
  color: #fff;
}

@media only screen and (max-width: 767px) {
  .footer {
    height: 162px;
  }
  .footer__inner {
    padding: 0 10px 10px;
    display: block;
  }
  .footer-logo {
    width: 49px;
    position: absolute;
    left: 10px;
    bottom: 32px;
  }
  .footer-logo svg {
    width: 100%;
    height: auto;
  }
  .footer-info__sns {
    padding-left: 70px;
    justify-content: flex-start;
  }
  .footer-info__copy {
    font-size: 0.9rem;
    margin-top: 1.5em;
  }
  body.home .footer-credit {
    font-size: 0.9rem;
    margin-bottom: 70px;
  }
  body.home .footer-info {
    margin-left: 0;
  }
}
/*------------------------------------------
  loading
------------------------------------------*/
.loading {
  position: fixed;
  width: 100%;
  height: 100vh;
  z-index: 1000;
  background: #fff;
}
.loading__inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.loading-btn {
  position: absolute;
  top: 50%;
  right: 15%;
  transform: translateY(-50%);
  text-align: center;
  font-family: "ivymode", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.04em;
  font-size: 1.4rem;
  z-index: 10;
  mix-blend-mode: difference;
}
.loading-btn__label {
  color: #818181;
  margin-bottom: 0.8em;
}
.loading-btn__list {
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  gap: 0 64px;
}
.loading-btn__list:after {
  content: "";
  width: 1px;
  height: 18px;
  background: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(0, -50%);
  margin-left: -0.5px;
}
.loading-btn__list button {
  display: block;
  padding: 0;
  margin: 0;
  border: none;
  background: none;
  color: #fff;
  font-family: "ivymode", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.04em;
  font-size: 1.4rem;
  line-height: 25px;
  padding-left: 28px;
  background-repeat: no-repeat;
  background-position: center left;
  background-size: 24px;
  cursor: pointer;
}
.loading-btn__list button.js-loadingBtn--on {
  background-image: url(../images/sound-on.svg);
}
.loading-btn__list button.js-loadingBtn--off {
  background-image: url(../images/sound-off.svg);
}
.loading-video {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.loading-video iframe {
  box-sizing: border-box;
  min-height: 100%;
  min-width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.loading-video__pc {
  width: 100%;
  height: 100%;
}
.loading-video__pc iframe {
  width: 177.77777778vh;
  height: 56.25vw;
}
.loading-video__sp {
  width: 100%;
  height: 100%;
}
.loading-video__sp iframe {
  height: 177.77777778vh;
  width: 56.25vw;
}

@media only screen and (max-width: 767px) {
  .loading-btn {
    font-size: 1.3rem;
    right: 50%;
    transform: translate(50%, -50%);
  }
  .loading-btn__label {
    color: #fff;
  }
  .loading-btn__list {
    gap: 0 40px;
  }
  .loading-btn__list button {
    font-size: 1.3rem;
  }
}
.--dev .loading {
  display: none;
}

/*------------------------------------------
  bg video
------------------------------------------*/
.bg-video {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  overflow: hidden;
  background: #000;
}
.bg-video iframe {
  box-sizing: border-box;
  min-height: 100%;
  min-width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.bg-video__pc {
  width: 100%;
  height: 100%;
}
.bg-video__pc iframe {
  width: 177.77777778vh;
  height: 56.25vw;
}
.bg-video__sp {
  width: 100%;
  height: 100%;
}
.bg-video__sp iframe {
  height: 177.77777778vh;
  width: 56.25vw;
}

/*------------------------------------------
  fixed bg
------------------------------------------*/
.fixed-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1;
  background: rgba(0, 0, 0, 0);
  transition: background 1s;
}

body.is--areaNovelty .fixed-bg {
  background: rgba(67, 67, 67, 0.7);
}
body.is--areaCreative .fixed-bg {
  background: rgba(0, 0, 0, 0.7);
}
body.is--areaFooter .fixed-bg {
  background: rgba(0, 0, 0, 0);
}

/*------------------------------------------
  sound
------------------------------------------*/
.sound {
  position: fixed;
  bottom: 26px;
  right: 20px;
  z-index: 100;
  cursor: pointer;
  width: 24px;
  height: 25px;
  mix-blend-mode: difference;
  background-image: url(../images/sound-off.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}
.sound.is--active {
  background-image: url(../images/sound-on.svg);
}

@media only screen and (max-width: 767px) {
  .sound {
    bottom: 10px;
    right: 10px;
    width: 21px;
    height: 22px;
  }
}
/*------------------------------------------
  section
------------------------------------------*/
.sec {
  position: relative;
}
.sec__inner {
  position: relative;
}

/*------------------------------------------
  OPENING PARTY
------------------------------------------*/
.sec--lead {
  padding-top: 300px;
  padding-bottom: 110px;
  color: #fff;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.61) 75%, rgba(0, 0, 0, 0) 100%);
}
.sec--lead a {
  color: #fff;
}
.sec--lead .lead-message {
  line-height: 2.125;
  margin-bottom: 128px;
}
.sec--lead .lead-message__inner {
  width: 88%;
  margin: auto;
}
.sec--lead .lead-message .message-txt {
  width: 43%;
}
.sec--lead .lead-message .message-txt p {
  margin-bottom: 40px;
}
.sec--lead .lead-message .message-txt p:last-child {
  margin-bottom: 0;
}
.sec--lead .lead-campaign__inner {
  width: 88%;
  margin: auto;
}
.sec--lead .lead-campaign .campaign-txt {
  position: relative;
  width: 43%;
  padding-left: 30px;
  margin-bottom: 60px;
  margin-left: auto;
}
.sec--lead .lead-campaign .campaign-txt:before {
  content: "";
  width: 1px;
  height: 96%;
  background: #fff;
  position: absolute;
  left: 0;
  top: 3%;
}
.sec--lead .lead-campaign .campaign-txt:last-child {
  margin-bottom: 0;
}
.sec--lead .lead-campaign .campaign-txt__ttl {
  line-height: 2.125;
  margin-bottom: 20px;
}
.sec--lead .lead-campaign .campaign-txt__txt {
  font-size: 1.4rem;
  line-height: 1.7;
}
.sec--lead .lead-opening {
  margin-top: 180px;
  position: relative;
}
.sec--lead .lead-opening__ttl {
  margin-bottom: 45px;
}
.sec--lead .lead-opening__item {
  display: block;
  position: relative;
  z-index: 1;
  width: 50%;
  margin: auto;
}
.sec--lead .lead-opening__item .item-img {
  margin-bottom: 20px;
  overflow: hidden;
}
.sec--lead .lead-opening__item .item-img img {
  transition: 1.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.sec--lead .lead-opening__item .item-txt {
  position: relative;
  padding-right: 12.5%;
  font-size: 1.4rem;
  line-height: 1.7;
}
.sec--lead .lead-opening__item .item-txt__lead {
  margin-bottom: 20px;
}
.sec--lead .lead-opening__item .item-txt__summary {
  display: -moz-flex;
  display: flex;
  -ms-flex-pack: justify;
  flex-wrap: wrap;
  align-items: center;
}
.sec--lead .lead-opening__item .item-txt__summary dt {
  width: 78px;
  font-family: "ivymode", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
}
.sec--lead .lead-opening__item .item-txt__summary dd {
  width: calc(100% - 78px);
  margin-left: auto;
}
.sec--lead .lead-opening__item .item-txt__btn {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.sec--lead .lead-opening__item .item-txt__btn span {
  display: block;
  position: relative;
  padding-bottom: 3px;
  font-family: "ivymode", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.3rem;
  letter-spacing: 0.04em;
}
.sec--lead .lead-opening__item .item-txt__btn span:after {
  content: "";
  background: #fff;
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  margin: auto;
  transition: transform 0.3s ease-in-out;
  transform-origin: left top;
  transform: scale(1, 1);
}
.sec--lead .lead-opening__item:hover .item-img img {
  transform: scale(1.04);
}
.sec--lead .lead-opening__item:hover .item-txt__btn span:after {
  transform-origin: right top;
  transform: scale(0, 1);
}
.sec--lead .lead-opening__logo {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 128px;
  background-image: url(../images/opening-logo.svg);
  background-repeat: repeat-x;
  background-position: 0 0;
  background-size: auto 128px;
  animation: openingLoop 50s linear infinite;
}

@keyframes openingLoop {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -1344px 0;
  }
}
@media only screen and (max-width: 767px) {
  .sec--lead {
    padding-top: 150px;
    padding-bottom: 60px;
  }
  .sec--lead .lead-message {
    line-height: 1.7;
    margin-bottom: 60px;
  }
  .sec--lead .lead-message__inner {
    width: 100%;
  }
  .sec--lead .lead-message .message-txt {
    width: 100%;
  }
  .sec--lead .lead-message .message-txt p {
    margin-bottom: 25px;
  }
  .sec--lead .lead-campaign__inner {
    width: 100%;
  }
  .sec--lead .lead-campaign .campaign-txt {
    width: 87.5%;
    padding-left: 20px;
    margin-bottom: 30px;
  }
  .sec--lead .lead-campaign .campaign-txt__ttl {
    font-size: 1.4rem;
    margin-bottom: 0.7em;
  }
  .sec--lead .lead-campaign .campaign-txt__txt {
    font-size: 1.2rem;
    line-height: 1.833;
  }
  .sec--lead .lead-opening {
    margin-top: 80px;
  }
  .sec--lead .lead-opening__ttl {
    margin-bottom: 35px;
  }
  .sec--lead .lead-opening__item {
    width: 75%;
  }
  .sec--lead .lead-opening__item .item-img {
    margin-bottom: 15px;
  }
  .sec--lead .lead-opening__item .item-txt {
    padding-right: 0;
    font-size: 1.2rem;
    line-height: 1.833;
  }
  .sec--lead .lead-opening__item .item-txt__lead {
    font-size: 1.2rem;
    line-height: 1.833;
  }
  .sec--lead .lead-opening__item .item-txt__summary dt {
    width: 42px;
    font-size: 1.4rem;
  }
  .sec--lead .lead-opening__item .item-txt__summary dd {
    width: calc(100% - 42px);
  }
  .sec--lead .lead-opening__item .item-txt__btn {
    display: block;
    position: static;
    margin-top: 15px;
    text-align: right;
  }
  .sec--lead .lead-opening__item .item-txt__btn span {
    font-size: 1.2rem;
    display: inline-block;
  }
  .sec--lead .lead-opening__item:hover .item-img img {
    transform: scale(1);
  }
  .sec--lead .lead-opening__item:hover .item-txt__btn span:after {
    transform: scale(1, 1);
  }
  .sec--lead .lead-opening__logo {
    top: 40%;
    height: 52px;
    background-size: auto 52px;
    animation-duration: 90s;
  }
  @keyframes openingLoop {
    from {
      background-position: 0 0;
    }
    to {
      background-position: -546px 0;
    }
  }
}
/*------------------------------------------
  EVENT & POP UP
------------------------------------------*/
.sec--event {
  padding: 70px 0 0;
  background: #fff;
}
.sec--event .event-ttl {
  margin-bottom: 40px;
}
.sec--event .event-slider {
  position: relative;
  overflow: hidden;
}
.sec--event .event-slider:before {
  content: "";
  width: 150%;
  height: 200px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  bottom: 100%;
  margin-bottom: -35px;
  transform: translateX(-50%);
  z-index: 2;
}
.sec--event .event-slider:after {
  content: "";
  width: 120%;
  height: 200px;
  background: #fff;
  filter: blur(20px);
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 100%;
  margin-top: -100px;
  transform: translateX(-50%);
  z-index: 2;
}
.sec--event .event-slider__inner {
  position: relative;
}
.sec--event .event-slider .swiper-pagination {
  padding: 0;
  bottom: 100px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sec--event .event-slider .swiper-pagination-bullet {
  margin: 0;
  display: block;
  border-radius: 0;
  width: clamp(25px, 3.6603221083vw, 50px);
  height: 1px;
  background: #fff;
  opacity: 1;
}
.sec--event .event-slider .swiper-pagination-bullet-active {
  height: 3px;
}
.sec--event .event-slider .swiper-slide {
  height: auto;
}
.sec--event .event-item {
  display: block;
  position: relative;
  padding: 54px 0 160px;
  overflow: hidden;
  border-left: 1px solid #fff;
  border-left: 1px solid #fff;
  height: 100%;
}
.sec--event .event-item .item-img {
  width: 100%;
  aspect-ratio: 1/1;
  position: relative;
  z-index: 10;
  overflow: hidden;
}
.sec--event .event-item .item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  transition: 1.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.sec--event .event-item .item-txt {
  position: relative;
  font-size: 1.4rem;
  padding: 1em 20px;
  z-index: 10;
}
.sec--event .event-item .item-txt p {
  color: #fff;
  text-shadow: 0px 0px 10px black;
}
.sec--event .event-item .item-txt__date {
  font-family: "ivymode", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.04em;
  margin-bottom: 0.3em;
}
.sec--event .event-item .item-txt__ttl {
  line-height: 1.428;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.sec--event .event-item .item-bg {
  position: absolute;
  top: -20px;
  left: -20px;
  width: calc(100% + 40px);
  height: calc(100% + 40px);
  overflow: hidden;
}
.sec--event .event-item .item-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  filter: blur(20px) brightness(60%);
}
.sec--event .event-item:hover .item-img img {
  transform: scale(1.04);
}

@media only screen and (max-width: 767px) {
  .sec--event {
    padding: 40px 0 0;
  }
  .sec--event .event-ttl {
    margin-bottom: 25px;
  }
  .sec--event .event-slider:before {
    height: 80px;
    margin-bottom: -15px;
  }
  .sec--event .event-slider:after {
    width: 180%;
    height: 160px;
    filter: blur(15px);
    margin-top: -50px;
  }
  .sec--event .event-slider .swiper-pagination {
    bottom: 60px;
  }
  .sec--event .event-slider .swiper-pagination-bullet {
    width: 4vw;
  }
  .sec--event .event-item {
    padding: 40px 0 100px;
  }
  .sec--event .event-item .item-txt {
    font-size: 1.2rem;
    padding: 10px 15px;
  }
  .sec--event .event-item .item-txt__ttl {
    line-height: 1.66;
    -webkit-line-clamp: 3;
  }
  .sec--event .event-item:hover .item-img img {
    transform: scale(1);
  }
}
/*------------------------------------------
  SPECIAL ITEM
------------------------------------------*/
.sec--special {
  padding: 90px 0 190px;
  background: #fff;
}
.sec--special .special-ttl {
  margin-bottom: 80px;
}
.sec--special .special-contents {
  display: -moz-flex;
  display: flex;
  -ms-flex-pack: justify;
  flex-wrap: wrap;
}
.sec--special .special-contents__head {
  position: relative;
  width: 38.5%;
  display: flex;
  align-items: flex-end;
  background-image: url(../images/special-head-bg.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  overflow: hidden;
}
.sec--special .special-contents__head .head-img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  overflow: hidden;
  width: 48.7554904832vw;
}
.sec--special .special-contents__head .head-txt {
  width: 100%;
  padding: 40px 15% 60px 60px;
  position: relative;
  z-index: 1;
}
.sec--special .special-contents__head .head-txt:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
}
.sec--special .special-contents__head .head-txt p {
  position: relative;
}
.sec--special .special-contents__head .head-txt__lead {
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.7;
}
.sec--special .special-contents__head .head-txt__more {
  margin-top: 35px;
  text-align: right;
}
.sec--special .special-contents__item {
  position: relative;
  width: 61.5%;
  border-bottom: 1px solid #E8E8E8;
}
.sec--special .special-contents__item .item-loop {
  display: flex;
  width: 100%;
  overflow: hidden;
  border-top: 1px solid #E8E8E8;
}
.sec--special .special-contents__item .item-loop ul {
  width: auto;
  height: 100%;
  display: flex;
}
.sec--special .special-contents__item .item-loop li {
  width: 281px;
  box-sizing: border-box;
  border-right: 1px solid #E8E8E8;
  position: relative;
}
.sec--special .special-contents__item .item-loop a {
  display: block;
  position: relative;
  padding: 20px;
}
.sec--special .special-contents__item .item-loop p {
  position: absolute;
  font-size: 1.2rem;
  padding: 0;
  left: 0;
  bottom: 0;
  background: #E8E8E8;
  padding: 0 1em;
}
.sec--special .special-contents__item .item-loop__left ul:first-child {
  animation: loopLeft 110s -55s linear infinite;
}
.sec--special .special-contents__item .item-loop__left ul:last-child {
  animation: loopLeft2 110s linear infinite;
}
.sec--special .special-contents__item .item-loop__right ul:first-child {
  animation: loopRight 110s -55s linear infinite;
}
.sec--special .special-contents__item .item-loop__right ul:last-child {
  animation: loopRight2 110s linear infinite;
}
.sec--special .special-contents__item .item-more {
  text-align: center;
  width: 100%;
  position: absolute;
  top: 100%;
  margin-top: 50px;
  left: 0;
}

@keyframes loopLeft {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes loopLeft2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
@keyframes loopRight {
  0% {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(100%);
  }
}
@keyframes loopRight2 {
  0% {
    transform: translateX(-200%);
  }
  to {
    transform: translateX(0);
  }
}
@media only screen and (max-width: 767px) {
  .sec--special {
    padding: 32px 0 100px;
  }
  .sec--special .special-ttl {
    margin-bottom: 35px;
  }
  .sec--special .special-contents__head {
    width: 100%;
    height: 300px;
    background-image: url(../images/special-head-bg-sp.webp);
  }
  .sec--special .special-contents__head:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
  }
  .sec--special .special-contents__head .head-img {
    width: 116.5333333333vw;
  }
  .sec--special .special-contents__head .head-txt {
    padding: 0 24px 30px;
  }
  .sec--special .special-contents__head .head-txt:before {
    content: none;
  }
  .sec--special .special-contents__head .head-txt__lead {
    font-size: 1.2rem;
    line-height: 1.66;
  }
  .sec--special .special-contents__head .head-txt__more {
    margin-top: 15px;
  }
  .sec--special .special-contents__item {
    width: 100%;
  }
  .sec--special .special-contents__item .item-loop:last-child {
    display: none;
  }
  .sec--special .special-contents__item .item-loop li {
    width: 164px;
  }
  .sec--special .special-contents__item .item-loop a {
    padding: 12px;
  }
  .sec--special .special-contents__item .item-loop p {
    font-size: 0.9rem;
  }
  .sec--special .special-contents__item .item-more {
    margin-top: 30px;
  }
}
/*------------------------------------------
  NOVELTY
------------------------------------------*/
.sec--novelty {
  padding: 80px 0;
  color: #fff;
}
.sec--novelty .novelty-ttl {
  margin-bottom: 45px;
}
.sec--novelty .novelty-item {
  position: relative;
  z-index: 1;
  width: 50%;
  margin: auto;
}
.sec--novelty .novelty-item .item-img {
  text-align: center;
  margin-bottom: 20px;
}
.sec--novelty .novelty-item .item-txt {
  font-size: 1.4rem;
  line-height: 1.7;
}
.sec--novelty .novelty-item .item-txt__date {
  font-family: "ivymode", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.04em;
  margin-bottom: 0.5em;
}
.sec--novelty .novelty-logo {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 128px;
  background-image: url(../images/novelty-logo.svg);
  background-repeat: repeat-x;
  background-position: 0 0;
  background-size: auto 128px;
  animation: openingLoop 60s linear infinite;
}

@keyframes openingLoop {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -1598px 0;
  }
}
@media only screen and (max-width: 767px) {
  .sec--novelty {
    padding: 50px 0 65px;
  }
  .sec--novelty .novelty-ttl {
    margin-bottom: 30px;
  }
  .sec--novelty .novelty-item {
    width: 75%;
  }
  .sec--novelty .novelty-item .item-img {
    margin-bottom: 15px;
  }
  .sec--novelty .novelty-item .item-txt {
    font-size: 1.2rem;
    line-height: 1.833;
  }
  .sec--novelty .novelty-logo {
    top: 40%;
    height: 52px;
    background-size: auto 52px;
    animation-duration: 100s;
  }
  @keyframes openingLoop {
    from {
      background-position: 0 0;
    }
    to {
      background-position: -650px 0;
    }
  }
}
/*------------------------------------------
  CREATIVE
------------------------------------------*/
.sec--creative {
  color: #fff;
  padding: 80px 0;
}
.sec--creative .creative-ttl {
  margin-bottom: 7.03125vh;
}
.sec--creative .creative-visual__inner {
  height: 100vh;
  width: 100%;
}
.sec--creative .creative-visual .visual-scroll {
  align-items: center;
  display: flex;
  height: 100vh;
  margin-inline: auto;
  overflow: hidden;
  padding: 0 60px;
}
.sec--creative .creative-visual .visual-scroll__list {
  display: flex;
}
.sec--creative .creative-visual .visual-scroll__item .img {
  width: 81.1197916667vh;
  height: 85.9375vh;
  margin: auto;
}
.sec--creative .creative-visual .visual-scroll__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.sec--creative .creative-member {
  margin-top: 7.03125vh;
}
.sec--creative .creative-member__list {
  width: 88%;
  margin: auto;
  display: -moz-flex;
  display: flex;
  -ms-flex-pack: justify;
  flex-wrap: wrap;
  gap: 45px 0;
  justify-content: space-between;
}
.sec--creative .creative-member__item {
  width: 43%;
  display: -moz-flex;
  display: flex;
  -ms-flex-pack: justify;
  flex-wrap: wrap;
  align-items: flex-start;
}
.sec--creative .creative-member__item .item-img {
  width: 27%;
  aspect-ratio: 1/1;
  position: relative;
  overflow: hidden;
}
.sec--creative .creative-member__item .item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.sec--creative .creative-member__item .item-txt {
  width: 67%;
  margin-left: auto;
}
.sec--creative .creative-member__item .item-txt__name {
  font-family: "ivymode", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.04em;
  margin-bottom: 0.5em;
}
.sec--creative .creative-member__item .item-txt__profile {
  font-size: 1.3rem;
  line-height: 1.7;
}
.sec--creative .creative-member__item .item-txt__link {
  margin-top: 20px;
  display: -moz-flex;
  display: flex;
  -ms-flex-pack: justify;
  flex-wrap: wrap;
  gap: 5px 20px;
  font-size: 1.2rem;
}
.sec--creative .creative-member__item .item-txt__link a {
  color: #fff;
  position: relative;
  padding-left: 16px;
  background: url(../images/ico-link.svg) no-repeat left bottom 2px;
  background-size: 10px;
}
.sec--creative .creative-member__item .item-txt__link a span {
  display: inline-block;
  text-decoration: underline;
}

@media only screen and (max-width: 767px) {
  .sec--creative {
    padding: 50px 0;
  }
  .sec--creative .creative-ttl {
    margin-bottom: 0;
  }
  .sec--creative .creative-visual .visual-scroll {
    padding: 0;
  }
  .sec--creative .creative-visual .visual-scroll__item .img {
    width: 49.0254872564vh;
    height: 52.1739130435vh;
  }
  .sec--creative .creative-visual .visual-scroll__item img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: center;
       object-position: center;
  }
  .sec--creative .creative-member {
    margin-top: 0;
  }
  .sec--creative .creative-member__list {
    width: 100%;
    gap: 30px 0;
  }
  .sec--creative .creative-member__item {
    width: 100%;
  }
  .sec--creative .creative-member__item.member01 {
    -ms-order: 1;
    order: 1;
  }
  .sec--creative .creative-member__item.member02 {
    -ms-order: 2;
    order: 2;
  }
  .sec--creative .creative-member__item.member03 {
    -ms-order: 4;
    order: 4;
  }
  .sec--creative .creative-member__item.member04 {
    -ms-order: 3;
    order: 3;
  }
  .sec--creative .creative-member__item .item-img {
    width: 20%;
  }
  .sec--creative .creative-member__item .item-txt {
    width: 75%;
  }
  .sec--creative .creative-member__item .item-txt__name {
    font-size: 1.4rem;
  }
  .sec--creative .creative-member__item .item-txt__profile {
    font-size: 1.1rem;
  }
  .sec--creative .creative-member__item .item-txt__link {
    margin-top: 15px;
    gap: 15px 25px;
    font-size: 1.1rem;
  }
}
/*------------------------------------------
  SPONSOR
------------------------------------------*/
.sec--sponsor {
  padding: 80px 0 0;
  color: #fff;
}
.sec--sponsor .sponsor-ttl {
  font-size: 3rem;
  margin-bottom: 55px;
}
.sec--sponsor .sponsor-list {
  display: -moz-flex;
  display: flex;
  -ms-flex-pack: justify;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 624px;
  margin: auto;
  gap: 0 12.5%;
}
.sec--sponsor .sponsor-list li {
  text-align: center;
  width: 25%;
}
.sec--sponsor .sponsor-list a {
  display: block;
}

@media only screen and (max-width: 767px) {
  .sec--sponsor {
    padding: 30px 0 0;
  }
  .sec--sponsor .sponsor-ttl {
    font-size: 2rem;
    margin-bottom: 20px;
  }
}
/*------------------------------------------
  下層 LIMITED ITEM
------------------------------------------*/
.sec--limiteditem {
  padding: 60px 0 115px;
}
.sec--limiteditem .limiteditem-ttl {
  text-align: left;
  font-size: 2rem;
  margin-bottom: 24px;
}
.sec--limiteditem .limiteditem-list {
  display: -moz-flex;
  display: flex;
  -ms-flex-pack: justify;
  flex-wrap: wrap;
  border-top: 1px solid #E8E8E8;
}
.sec--limiteditem .limiteditem-list__item {
  display: block;
  width: 33.333%;
  padding-bottom: 32px;
  border-left: 1px solid #E8E8E8;
  border-bottom: 1px solid #E8E8E8;
}
.sec--limiteditem .limiteditem-list__item.empty {
  border-bottom: none;
  padding: 0;
}
.sec--limiteditem .limiteditem-list__item .item-img {
  padding: 25px 25px 20px;
}
.sec--limiteditem .limiteditem-list__item .item-img div {
  overflow: hidden;
}
.sec--limiteditem .limiteditem-list__item .item-img img {
  transition: 1.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.sec--limiteditem .limiteditem-list__item .item-txt {
  position: relative;
  padding-left: 54px;
  padding-right: 20px;
  font-size: 1.3rem;
}
.sec--limiteditem .limiteditem-list__item .item-txt p {
  -ms-word-break: break-all;
  word-break: break-all;
}
.sec--limiteditem .limiteditem-list__item .item-txt .floor {
  position: absolute;
  left: 0;
  top: 0;
  font-family: "ivymode", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.04em;
  background: #E8E8E8;
  min-width: 37px;
  text-align: center;
  padding: 2px 0;
}
.sec--limiteditem .limiteditem-list__item .item-txt .brand {
  margin-bottom: 10px;
}
.sec--limiteditem .limiteditem-list__item .item-txt .name {
  line-height: 1.7;
  margin-bottom: 20px;
}
.sec--limiteditem .limiteditem-list__item .item-txt .price__tax {
  font-size: 1rem;
}
.sec--limiteditem .limiteditem-list__item:hover .item-img img {
  transform: scale(1.04);
}

@media only screen and (max-width: 767px) {
  .sec--limiteditem {
    padding: 80px 0 30px;
  }
  .sec--limiteditem .limiteditem-ttl {
    padding: 0 24px;
    font-size: 1.6rem;
    margin-bottom: 13px;
  }
  .sec--limiteditem .limiteditem-list__item {
    width: 50%;
    padding-bottom: 22px;
    border-left: 1px solid #E8E8E8;
  }
  .sec--limiteditem .limiteditem-list__item:nth-child(odd) {
    border-left: none;
  }
  .sec--limiteditem .limiteditem-list__item .item-img {
    padding: 13px 13px 10px;
  }
  .sec--limiteditem .limiteditem-list__item .item-txt {
    padding-left: 40px;
    font-size: 1.1rem;
  }
  .sec--limiteditem .limiteditem-list__item .item-txt .floor {
    min-width: 31px;
  }
  .sec--limiteditem .limiteditem-list__item .item-txt .brand {
    margin-bottom: 5px;
  }
  .sec--limiteditem .limiteditem-list__item .item-txt .name {
    line-height: 2;
    margin-bottom: 12px;
  }
  .sec--limiteditem .limiteditem-list__item .item-txt .price__tax {
    font-size: 0.9rem;
  }
  .sec--limiteditem .limiteditem-list__item:hover .item-img img {
    transform: scale(1);
  }
}
/*------------------------------------------
  下層 SHOP EVENT
------------------------------------------*/
.sec--shopevent {
  padding: 0;
}
.sec--shopevent .shopevent-ttl {
  text-align: left;
  font-size: 2rem;
  margin-bottom: 24px;
}
.sec--shopevent .shopevent-list {
  display: -moz-flex;
  display: flex;
  -ms-flex-pack: justify;
  flex-wrap: wrap;
  border-top: 1px solid #E8E8E8;
}
.sec--shopevent .shopevent-list__item {
  width: 50%;
  padding: 20px 60px 20px 0;
  position: relative;
  display: -moz-flex;
  display: flex;
  -ms-flex-pack: justify;
  flex-wrap: wrap;
  border-bottom: 1px solid #E8E8E8;
}
.sec--shopevent .shopevent-list__item .item-img {
  width: 22%;
}
.sec--shopevent .shopevent-list__item .item-txt {
  width: 74%;
  margin-left: auto;
}
.sec--shopevent .shopevent-list__item .item-txt .shop {
  font-size: 1.2rem;
  margin-bottom: 1em;
}
.sec--shopevent .shopevent-list__item .item-txt .date {
  font-size: 1.2rem;
  margin-bottom: 20px;
}
.sec--shopevent .shopevent-list__item .item-txt .txt {
  font-size: 1.3rem;
  line-height: 1.7;
}

@media only screen and (max-width: 767px) {
  .sec--shopevent {
    padding: 30px 0 0;
  }
  .sec--shopevent .shopevent-ttl {
    padding: 0 24px;
    font-size: 1.6rem;
    margin-bottom: 13px;
  }
  .sec--shopevent .shopevent-list__item {
    width: 100%;
    padding: 15px 24px;
  }
  .sec--shopevent .shopevent-list__item .item-img {
    width: 20%;
  }
  .sec--shopevent .shopevent-list__item .item-txt {
    width: 75%;
  }
  .sec--shopevent .shopevent-list__item .item-txt .shop {
    font-size: 1.1rem;
    margin-bottom: 6px;
  }
  .sec--shopevent .shopevent-list__item .item-txt .date {
    font-size: 1.1rem;
    margin-bottom: 8px;
  }
  .sec--shopevent .shopevent-list__item .item-txt .txt {
    font-size: 1.1rem;
  }
}