@charset "utf-8";

/*
============================ COUNT DOWN CSS ============================
*/

/* ローディング画面 */
.loading {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  background: url(../img/bg02.png);
  display: flex;
  align-items: center;
  justify-content: center;
}
.loader_box {
  position: relative;
  z-index: 100;
  width: 360px;
  display: flex;
  transform: translateY(-110px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.loader {
  width: 500px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.loaded {
  opacity: 0;
  display: none;
  transition: all 0.3s;
  z-index: 1;
}

.stagger-list {
  width: 400px;
  height: 400px;
  position: absolute;
  top: 20%;
  left: 20%;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.stagger-item {
  list-style: none;
  position: absolute;
}

/* 子要素ごとに遅延時間を設定 */
.stagger-item:nth-child(1) {
  top: -12%;
  left: -6%;
  width: 70px;
  animation-name: scale_up;
  animation-duration: 1.5s; /* アニメーションの実行時間 */
  animation-fill-mode: repeat; /* アニメーション終了後も最終状態を維持 */
}
.stagger-item:nth-child(2) {
  top: 0;
  left: -1%;
  width: 270px;
  /* transform-origin: 50% 50%; */
  animation-name: up_down;
  animation-duration: 2.5s; /* アニメーションの実行時間 */
  animation-fill-mode: repeat; /* アニメーション終了後も最終状態を維持 */
}
.stagger-item:nth-child(3) {
  top: 20%;
  left: 68%;
  width: 27px;
  animation-name: scale_up;
  animation-duration: 2.5s; /* アニメーションの実行時間 */
  animation-fill-mode: repeat; /* アニメーション終了後も最終状態を維持 */
}
.stagger-item:nth-child(4) {
  top: 10%;
  left: 65%;
  width: 70px;
  transform-origin: 50% 50%;
  animation-name: fade-in-up;
  animation-duration: 3s; /* アニメーションの実行時間 */
  animation-fill-mode: repeat; /* アニメーション終了後も最終状態を維持 */
}
/* ... 必要なだけ追加 */

/* カスタムプロパティで遅延時間を一括管理 */
.stagger-list {
  --stagger-delay: 0.5s; /* ここで遅延時間を調整 */
}

@keyframes fade-in-up {
  0% {
    transform: rotate(0deg);
  }

  25% {
    transform: rotate(-10deg);
  }
  50% {
    transform: rotate(5deg);
  }

  75% {
    transform: rotate(-10deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

@keyframes scale_up {
  0% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes up_down {
  0% {
    transform: translateY(-20px);
    transform: scale(1.2);
  }
  25% {
    transform: translateY(10px);
    transform: scale(0.8);
  }
  50% {
    transform: translateY(30px);
    transform: scale(1);
  }

  75% {
    transform: translateY(-10px);
    transform: scale(0.3);
  }

  100% {
    transform: translateY(0px);
    transform: scale(1);
  }
}

header,
.header,
footer {
  visibility: hidden;
}

/* articleはstickyのために最初から表示 */
article {
  visibility: visible;
}

body {
  font-family: "Sawarabi Gothic", sans-serif;
  min-height: 150vh;
}
article {
  position: relative;
  z-index: 1;
  padding: 0;
  min-height: 200vh;
}
#kv {
  position: absolute;
  top: -420px;
  left: 0;
  right: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 420px;
  padding: 0;
  margin: 0 auto;
  text-align: center;
  background: url(../img/kv.png) center 0 no-repeat;
  background-size: 1867px 431px;
}
.sec2:after {
  content: "";
  position: absolute;
  top: -380px;
  left: 0;
  right: 0;
  margin: 0 auto;
  transform: translateX(280px);
  z-index: -1;
  display: block;
  width: 430px;
  height: 180px;
  background: url(../img/kv_facility.png) center 0 no-repeat;
  background-size: 430px 180px;
}
.confetti {
  pointer-events: none;
}
.anchor-sticky-active .confetti {
  display: none;
}
.confetti canvas {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

#lottie {
  width: 100%;
  display: block;
  overflow: hidden;
  text-align: center;
  opacity: 1;
}
#lottieSp {
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  text-align: center;
  opacity: 1;
}
#buildingLottie {
  position: relative;
  width: 330px;
  aspect-ratio: 286/137;
  margin: 0 auto 30px;
}
.kvTxt {
  position: absolute;
  top: -420px;
  left: auto;
  width: 509px;
  height: 420px;
  text-align: left;
  transform: translateX(30px);
}
.sec1 .inner {
  padding: 30px 0 0;
}
.readTit {
  width: 313px;
  margin: 0 auto 20px;
}
.read {
  font-size: 1.8rem;
  line-height: 1.8;
  color: #1f3667;
  margin: 0 auto 10px;
}

nav {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  transition: all 0.3s;
}
nav.navOn {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}
nav:after,
nav.navOn:after {
  position: absolute;
  bottom: -10px;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 10px;
  content: "";
  background: #fff url(../img/repeat.png) 0 0 repeat-x;
  background-size: auto 10px;
}
nav ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  max-width: 1000px;
  margin: 0 auto;
}
nav ul li {
  width: 50%;
}
nav ul li:first-child {
  border-right: solid 1px #fff;
}
nav ul li a {
  display: block;
  padding: 12px 0;
  line-height: 1;
  text-align: center;
}
nav ul li a img {
  width: auto;
  height: 18px;
}
ul.anchor {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 600px;
  margin: -180px auto 50px;
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  will-change: transform;
  contain: none;
}

/* sticky状態（上部固定時）でボックス型に */
ul.anchor.sticky-fixed {
  border-radius: 0;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  width: 100vw;
  max-width: none;
  left: 0;
  right: 0;
  margin: -180px 0 auto;
}

ul.anchor li {
  width: 50%;
  border: 3px solid;
  border-radius: 25px;
  background: #fff;
  /* transition: border-radius 0.3s ease; */
}

/* anchor01（NEW SHOP）のボーダーカラー */
ul.anchor li:nth-child(1) {
  border-color: #00b9e7;
  margin-right: 10px;
}

/* anchor02（イベント・キャンペーン）のボーダーカラー */
ul.anchor li:nth-child(2) {
  border-color: #b4d55f;
  margin-left: 10px;
}

/* sticky状態でli要素も角丸なしに */
ul.anchor.sticky-fixed li {
  border-radius: 0;
  margin: 0;
}

/* sticky状態でa要素も調整 */
ul.anchor.sticky-fixed li a {
  padding: 12px 20px;
  border-radius: 0;
}

/* sticky状態時にsec3のマージンをリセット */
ul.anchor.sticky-fixed ~ .sec.sec3 {
  margin-top: 0;
}

ul.anchor li a {
  display: block;
  padding: 8px 15px;
  text-align: center;
  line-height: 1;
}
ul.anchor li a img {
  width: auto;
  height: 20px;
}
hr {
  width: 92%;
  max-width: 1000px;
  margin: 0 auto 50px;
}
.eventArea {
  position: relative;
  height: 900px;
}

body {
  margin: 0;
  font-family: sans-serif;
  line-height: 1.6;
}

/* 共通 */
.sec {
  position: relative;
  padding: 20px 0;
  overflow: visible;
  filter: none;
}
.sec.sec1 {
  height: 440px;
}
.sec.sec3 {
  padding: 40px 0 20px;
  margin-top: 150px; /* ul.anchor用のスペースを適切に調整 */
}
.sec.sec3:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  background: url(../img/cloud04.png) center 0 no-repeat;
  background-size: 1813px 546px;
  z-index: 100;
  pointer-events: none;
}
.sec.sec4:after {
  content: "";
  position: absolute;
  top: -110px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  background: url(../img/cloud03.png) center 0 no-repeat;
  background-size: 1805px 297px;
  z-index: 100;
  transform: translateX(-10px);
  pointer-events: none;
}

.inner {
  position: static;
  z-index: 2;
  width: 92%;
  max-width: 1050px;
  margin: 0 auto;
  text-align: center;
  padding: 0 0 150px;
  min-height: 60vh;
  overflow: visible;
}

/* 各セクションの背景 */
.sky {
  background: url("../img/bg01.png") repeat;
}

.whiteBg {
  background: #fff;
}
.white.sec2 {
  background: url("../img/bg02.png") repeat;
  overflow: visible !important;
}

.grass {
  background: url("../img/bg03.png") repeat;
}

/* 各セクションの重なり順 */
.sec1 {
  z-index: 1;
}
.sec2 {
  z-index: 2;
}
.sec3 {
  z-index: 3;
}
.sec4 {
  z-index: 4;
}
.sec5 {
  z-index: 5;
}

/* 波共通 */
.sec::before {
  content: "";
  position: absolute;

  top: -100px;
  left: 0;

  width: 100%;
  height: 100px;

  background-repeat: repeat-x;
  background-position: center top;
  background-size: 1280px 100px;

  pointer-events: none;
  z-index: 1;
}

/* 1セクション目は波なし */
.sec1::before {
  display: none;
}

/* 各波画像 */
.wave-pattern::before {
  background-image: url("../img/wave_white_pattern.png");
}

.wave-sky::before {
  background-image: url("../img/wave_sky.png");
}

.wave-grass::before {
  background-image: url("../img/wave_grass.png");
}

.wave-white::before {
  background-image: url("../img/wave_white.png");
}

.tit01 {
  position: relative;
  width: 470px;
  margin: 0 auto 25px;
}
.tit02 {
  position: relative;
  width: 345px;
  margin: 0 auto 70px;
}
.tit2:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  background: url(../img/cloud05.png) center 0 no-repeat;
  background-size: 1761px 744px;
  z-index: 100;
  pointer-events: none;
}
.tit03 {
  position: relative;
  width: 396px;
  margin: 0 auto 60px;
  z-index: 2;
}
.tit03Pic {
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 1;
  width: 683px;
}
.soon {
  width: 304px;
  margin: 0 auto;
}

ul.newshop {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  width: 100%;
  padding: 0;
  margin: 0 auto 50px;
}
ul.newshop li {
  width: calc(50% - 15px);
  margin: 0 15px 15px 0;
  background: #fff;
  border-radius: 25px;
  padding: 10px 10px 30px;
}
ul.newshop li:nth-child(4n) {
  margin-right: 0;
}
ul.newshop li:nth-child(2n) {
  margin-right: 0;
}
.obi01 {
  width: 100%;
  height: 252px;
  background: url(../img/obi01.png) center 0 no-repeat;
  background-size: 2158px auto;
  margin: 0 auto;
  position: absolute;
  top: 50px;
  z-index: 2;
}
.obi02 {
  width: 100%;
  height: 252px;
  background: url(../img/obi02.png) center 0 no-repeat;
  background-size: 2158px auto;
  margin: 0 auto;
  position: absolute;
  top: 30px;
  z-index: 2;
}
.stit01 {
  position: relative;
  width: 100%;
  margin: 0 auto 10px;
  background: #ef6000;
  text-align: center;
  padding: 10px 0;
  border-radius: 20px;
}
.stit01 img {
  width: 231px;
}
.stit02 {
  position: relative;
  width: 388px;
  margin: 0 auto 20px;
}
.stit03 {
  position: relative;
  width: 496px;
  margin: 0 auto 20px;
}
.stit04 {
  position: relative;
  width: 388px;
  margin: 0 auto 20px;
}
.stit05 {
  position: relative;
  width: 496px;
  margin: 0 auto 20px;
}
.stit06 {
  position: relative;
  width: 607px;
  margin: 0 auto 20px;
}
.stit07 {
  position: relative;
  width: 778px;
  margin: 0 auto 20px;
}
.stit08 {
  position: relative;
  width: 472px;
  margin: 0 auto 20px;
}
.stit09 {
  position: relative;
  width: 423px;
  margin: 0 auto 20px;
}

.stit10 {
  width: 474px;
  margin: 0 auto 20px;
}

.img01 {
  width: 600px;
  margin: 0 auto 20px;
}
.img04 {
  width: 460px;
  margin: 0 auto 20px;
}
.img05 {
  width: 500px;
  margin: 0 auto 20px;
}
.img06 {
  width: 500px;
  margin: 0 auto 20px;
}
.img07 {
  width: 500px;
  margin: 0 auto 20px;
}

.img08 {
  width: 500px;
  margin: 0 auto 20px;
}

.img09 {
  width: 500px;
  margin: 0 auto 20px;
}

.btnImg {
  display: block;
  width: 300px;
  margin: 0 auto;
}
.btnImg2 {
  display: block;
  width: 500px;
  margin: 0 auto;
}

.btnImg3 {
  display: block;
  width: 350px;
  margin: 0 auto;
}

.pic02 {
  position: absolute;
  top: -4px;
  left: -110px;
  z-index: 2;
  width: 89px;
}

.wInBox {
  position: relative;
  width: 100%;
  padding: 20px 5% 30px;
  margin: 0 0 30px;
  background: #fff;
  border: 6px solid #ff466b;
  z-index: 2;
}
.wBox {
  position: relative;
  width: 100%;
  background: #fff;
  padding: 10px 1% 25px;
  margin: 0 auto;
  border-radius: 25px;
}
ul.tokuten {
  display: flex;
  flex-direction: column;
  width: 96%;
  padding: 0;
  margin: 0 auto 20px;
}
ul.tokuten li {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 38px 60px;
  border-bottom: dotted 1px #f38840;
}
ul.tokuten li .brand {
  width: 22%;
  margin-right: 60px;
}
ul.tokuten li .brand img {
  width: auto;
  max-height: 70px;
}
ul.tokuten li .row {
  flex: 1;
  text-align: left;
}
ul.tokuten li .row p:last-child {
  margin-bottom: 0;
}
ul.tokuten li .limit {
  width: 12em;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  background: #f38840;
  border-radius: 20px;
  line-height: 1;
  text-align: center;
  margin-right: 30px;
  padding: 10px 0;
}
ul.tokuten li .description {
  flex: 1;
  color: #ef6000;
  text-align: left;
  font-size: 2.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  margin: 0 0 5px;
  list-style: 1.2;
}
ul.tokuten li .description span {
  font-size: 3.2rem;
}
ul.tokuten li .description span.bigTxt {
  font-size: 4.2rem;
}
.coution {
  font-size: 1.3rem;
  line-height: 1.6;
}

ul#sns {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: stretch; /* 垂直方向の揃え */
  justify-content: space-between; /* 水平方向の揃え */
  width: 365px;
  padding: 0;
  margin: 0 auto 40px;
}
.cenLine .clumn2 {
  width: 50%;
  padding: 0;
  margin: 0;
}
.cenLine .clumn2:first-child {
  padding-right: 30px;
  border-right: solid 1px #fff;
}
.cenLine .clumn2:last-child {
  padding-left: 30px;
  border-left: solid 1px #ffff;
}

/* IE11 */
@media all and (-ms-high-contrast: none) {
  svg {
    display: none;
  }
  body.fixed {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: auto;
    overflow-x: hidden;
  }
}

/* ザッピング */
.xp-block {
  width: 100%;
  max-width: 1100px;
  padding: 0;
  margin: 0 auto 10px;
  color: #fff;
}
.moviesBox .xp-block {
  color: #000;
}
.scroll {
  width: 69px;
  margin: 0 auto 60px;
}
/* 横スクロール */
ul.xp_thumbnails {
  padding-bottom: 20px;
  overflow-x: scroll;
}
.moviesBox ul.xp_thumbnails {
  overflow-x: hidden;
}
ul.xp_thumbnails::-webkit-scrollbar {
  height: 5px;
}
ul.xp_thumbnails::-webkit-scrollbar-track {
  background: #fff;
  border: solid 1px #263969;
}
ul.xp_thumbnails::-webkit-scrollbar-thumb {
  background: #263969;
}
ul.xp_thumbnails li {
  margin-right: 15px;
}
ul.xp_thumbnails li:last-child {
  margin-right: 0;
}
div.xp_post {
  width: 184px;
}
.xp_thumbnail_image {
  width: 100% !important;
}
.MuiIconButton-root {
  color: #982434 !important;
}
.xp_staff_info_name,
.xp_staff_info_business {
  font-size: 1.2rem;
  color: #982434;
  white-space: normal !important;
}
.moviesBox {
  display: none;
}
.moviesBox.cate00 {
  display: block;
}
.moviesBox div.xp_post {
  width: 124px;
}
.moviesBox ul.xp_thumbnails li {
  margin-right: 10px;
  margin-bottom: 40px;
}
.moviesBox ul.xp_thumbnails li:nth-last-child(7n) {
  margin-right: 0;
}
ul.floor {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  width: 980px;
  padding: 0;
  margin: 0 auto;
}

ul.floor li {
  width: calc(100% / 3 - 15px);
}
.bgWhite {
  position: relative;
  z-index: 5;
  padding: 60px 0 1px;
  margin: 0;
  background: #fff;
}

/* 絞り込み */
.moviesBox div.xp_post {
  width: 138px;
}
.moviesBox ul.xp_thumbnails li {
  margin-right: 10px;
  margin-bottom: 40px;
}
.moviesBox ul.xp_thumbnails li:nth-last-child(7n) {
  margin-right: 0;
}
ul.category {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 700px;
  padding: 0;
  margin: 0 auto 20px;
}
ul.category li {
  padding: 0;
  margin: 0 10px 15px 0;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
}
ul.category li img {
  height: 38px;
}
ul.category li a {
  color: #000 !important;
}
ul.category li.active {
  color: #fff;
  background-color: #000;
}
#cateTit {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0 auto 30px;
  text-align: center;
}
#cateTit img {
  width: auto;
  height: 32px;
}
#cateTit:after {
  position: absolute;
  top: 16px;
  z-index: -1;
  display: block;
  width: 100%;
  height: 1px;
  content: "";
  border-top: 1px solid #e50012;
}
.moviesBox {
  display: none;
}
.cate00 {
  display: block;
}
#goTop {
  position: absolute;
  top: -120px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 90px;
  height: 114px;
  z-index: 1000;
}
#goTop2 {
  position: fixed;
  right: 30px;
  bottom: 80px;
  z-index: 500;
  width: 70px;
  opacity: 0;
}



