@charset "UTF-8";

/*-------------------------------------------------------------------------------------------------------------------------------
* each 
-------------------------------------------------------------------------------------------------------------------------------*/
main {
  background-color: #212121;
}

/* Local Nav */
.local-nav {
  position: sticky;
  z-index: 100;
  width: 100%;
  top: calc(100dvh - 100px);
  background-color: #ff007f;
}
/* .local-nav.is-fixed {
  position: fixed;
  bottom: 0;
  left: calc(50% - 375px);
  width: 750px;
  z-index: 100;
  background-color: #212121;
} */
.local-nav ul {
  display: flex;
  justify-content: space-between;
}
.local-nav ul li {
  flex: 1;
}

/* info */
.info {
  margin: -100px 0 0;
}
.info-btn {
  text-align: center;
}

/* brand modal */
.modal-thumbnails {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 6px;
}
.modal-thumbnails li {
  width: 246px;
  height: 246px;
  cursor: pointer;
  background-color: #212121;
}
.modal-thumbnails li img {
  transition: opacity 0.3s;
}
.modal-thumbnails li img:hover {
  opacity: 0.8;
}
.modal-thumbnails.group-01 {
  background: url(../img/brand_bg_01.png) no-repeat;
}
.modal-thumbnails.group-02 {
  background: url(../img/brand_bg_02.png) no-repeat;
  height: 876px;
}

/* event */
.event01 {
  position: relative;
}
.event-btn01 {
  position: absolute;
  bottom: 176px;
  left: 47px;
}

.event02-yoyaku {
  position: relative;
}
.event-btn02 {
  position: absolute;
  bottom: 154px;
  left: 122px;
}

/* present */
.present01 {
  position: relative;
}
.app-btn {
  position: absolute;
  bottom: 116px;
  width: 100%;
  display: flex;
  gap: 60px;
  justify-content: center;
}

/* other */
.other-wrapper {
  position: relative;
  border-top: 2px solid #ff007f;
}
.other-content {
  display: block;
  border-bottom: 2px solid #ff007f;
}
.other-wrapper.is-closed .other-content {
  display: none;
}
.other-btn {
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  width: 260px;
  height: 50px;
  background: url(../img/other_btn_open.png) no-repeat center center;
  cursor: pointer;
  font-size: 0;
}
.other-btn.active {
  background: url(../img/other_btn_close.png) no-repeat center center;
}



/*---------------------
Modal（cmn-modal 仕様：luxury 準拠）
----------------------*/
body.oh-open {
  overflow: hidden;
}

.cmn-modal {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  -webkit-overflow-scrolling: touch;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.cmn-modal.cmn-modal--open {
  opacity: 1;
  visibility: visible;
}

.cmn-modal.cmn-modal--open .cmn-modal__in {
  transform: scale(1);
  transition: transform 0.5s ease;
}

.cmn-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  cursor: pointer;
  z-index: 0;
}

.cmn-modal__in {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  transform: scale(0.95);
  transition: transform 0.5s ease;
  z-index: 1;
}

.cmn-modal__main {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: column;
  position: relative;
  width: 750px;
  background-color: #fff;
}

.cmn-modal__close {
  width: 70px;
  height: 70px;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 10;
  background: url(../img/modal_close.png) no-repeat center center;
  cursor: pointer;
  transition: opacity 0.3s;
}

.cmn-modal__close:hover {
  opacity: 0.6;
}

.cmn-modal__slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-bottom: 125px;
  display: none;
}
.cmn-modal__slider.is-active {
  display: block;
}

.cmn-modal-cnt {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  z-index: 1;
  width: 750px;
  height: 80vh;
  height: 80svh;
  margin: 0 25px;
  overflow-y: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
  opacity: 0;
  transition: opacity 0.5s 0.1s ease;
}

.cmn-modal-cnt::-webkit-scrollbar {
  display: none;
}

.cmn-modal-cnt.slick-active,
.cmn-modal-cnt.is-active-next {
  opacity: 1;
}

.cmn-modal-cnt__box {
  position: relative;
}

.cmn-modal-cnt__detail {
  margin: 0 auto;
  width: 750px;
  padding-bottom: 200px;
  height: auto;
}



/* Slick が .cmn-modal__slider 直下に挿入する矢印 */
.cmn-modal__slider .cmn-modal__arrow--prev,
.cmn-modal__slider .cmn-modal__arrow--next {
  position: absolute;
  z-index: 2;
  bottom: 20px;
  width: auto;
  height: 50px;
  width: 70px;
  margin: 0;
  padding: 0;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s;
  outline: none;
}

.cmn-modal__slider .cmn-modal__arrow--prev:hover,
.cmn-modal__slider .cmn-modal__arrow--next:hover {
  opacity: 0.6;
}

.cmn-modal__slider .cmn-modal__arrow--prev {
  left: 50px;
  background: url(../img/modal_prev.png) no-repeat center center;
}

.cmn-modal__slider .cmn-modal__arrow--next {
  right: 50px;
  left: auto;
  padding: 0 20px 0 0;
  background: url(../img/modal_next.png) no-repeat center center;
}

.cmn-modal__slider .cmn-modal__arrow.slick-disabled {
  visibility: hidden;
  opacity: 0;
}

.cmn-modal__scroll {
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 3;
  transform: translateX(-50%);
  width: 60px;
  height: 70px;
  transition: opacity 0.5s ease;
}

.cmn-modal--open .cmn-modal__scroll--hide {
  opacity: 0;
}

.cmn-modal--open .cmn-modal__scroll .cmn-modal__scrolltxt {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -25px;
  opacity: 0;
  font-size: 0;
  animation: txtmove 1.4s ease-in-out infinite;
}

.cmn-modal--open .cmn-modal__scroll::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  background: url(../img/modal_scroll_arrow.png) no-repeat center center;
  height: 50px;
  animation: pathmove01 1.4s ease-in-out infinite;
  opacity: 0;
}

@keyframes pathmove01 {
  0% {
    top: 0;
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    top: 20px;
    opacity: 0;
  }
}
@keyframes txtmove {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.modal-tel {
  position: fixed;
  z-index: 200;
  bottom: 125px;
  left: 0;
  width: 100%;
  height: 200px;
  padding-top: 100px;
  text-align: center;
  background: url(../img/modal_arrow_bg.png) no-repeat center bottom;
}
.modal-tel a {
  display: none;
}
.modal-tel a.is-current {
  display: block;
}
.modal-tel a.disabled {
  pointer-events: none;
}

/* f-note */
.f-note{
  background: url(../img/other_bg.png) no-repeat top center;
  padding: 250px 50px 170px 50px;
  font-size: 23px;
  font-feature-settings: "palt";
  text-align: justify;
}
.f-note p{
  padding-left: 1em;
  text-indent: -1em;
  color: #fff;
}





