@charset "UTF-8";
html {
  scrollbar-gutter: stable;
}

img {
  vertical-align: top;
  width: 100%;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -10;
  background: url("../images/common/bg.webp") center top / cover no-repeat;
}
.main-contents {
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  max-width: 500px;
  margin: 0 auto;
  z-index: 55;
}
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
video {
  width: 100%;
  margin: 0px;
  padding: 0px;
  vertical-align: bottom;
}

h1 {
  margin: 0 auto;
  background: #aeb3b5;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
h3 {
  font-size: 5vw;
  margin-bottom: 1vw;
}
p {
  font-size: 2.5vw;
  line-height: 2;
}
.opacity:hover {
  opacity: 0.8;
}
.noopacity:hover {
  opacity: 0;
}

.area {
  max-width: 1100px;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
}

.content-warpper {
  position: relative;
  height: auto;
}

.content-warpper .decolation {
  position: absolute;
}

/*-------------------------------------------
POPUP
--------------------------------------------*/
.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 10000;
}

.overlay.is-active {
  display: flex;
}

.popup-trigger {
  cursor: pointer;
}

.popup-content {
  position: relative;
  max-width: 460px;
  margin: 0 10px;
}

.popup-close {
  width: 5%;
  top: 2.5%;
  right: 3%;
  position: absolute;
  cursor: pointer;
}

/* スクロール制御 */
body.is-locked {
  overflow: hidden;
}

/*-------------------------------------------
side-deco
--------------------------------------------*/
.side-wakkunn {
  width: 24vw;
  height: auto;
  position: fixed;
  top: 50%;
  left: 0%;
  transform: translate(15%, -50%);
  z-index: 0;
}

.side-logo {
  width: 8vw;

  height: auto;
  position: fixed;

  top: 0%;
  left: 0%;
  transform: translate(15%, 15%);
}

.side-confetti {
  width: 15dvw;

  height: auto;
  position: fixed;

  top: 10%;
  right: 7%;
}

/*-------------------------------------------
side-nav
--------------------------------------------*/
.side-nav {
  width: 20vw;

  height: auto;
  position: fixed;

  top: 50%;
  right: 0%;
  transform: translate(-31%, -50%);

  z-index: 0;
}

.side-nav-list {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1vw;
}

@media only screen and (min-width: 1920px) {
  .side-nav {
    transform: translate(-50%, -50%);
  }
}

/*-------------------------------------------
global-nav
--------------------------------------------*/
.global-nav {
  width: 100%;
  max-width: 500px;
  height: auto;
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translate(-50%);
  background-color: #ec73a2;
  z-index: 1000;
}
.global-nav nav {
  width: 100%;
}
.global-nav__list {
  display: flex;
  align-items: center;
  justify-content: center;
}

.global-nav__list__item {
  border-top: 3px solid #f2a3c0;
}

.global-nav__list__item:not(:last-child) {
  border-right: 3px solid #f2a3c0;
}

.global-nav__list__item a {
  width: 125px;
  height: auto;
}
.global-nav__list__item img {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 501px) {
  .global-nav {
    width: 100%;
    max-width: 500px;
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translate(-50%);
  }
  .global-nav nav {
    width: 100%;
  }
  .global-nav__list {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .global-nav__list__item a {
    width: 125px;
    height: auto;
  }
  .global-nav__list__item img {
    width: 100%;
    height: auto;
  }
}
/*-------------------------------------------
l-footer
--------------------------------------------*/

@media screen and (min-width: 1096px) {
  .l-footer {
    margin-bottom: 0px;
  }
}

@media screen and (max-width: 1096px) {
  .l-footer {
    margin-bottom: 113px;
  }
}

@media screen and (max-width: 501px) {
  .l-footer {
    margin-bottom: calc(100vw * 113 / 499);
  }
}

/*-------------------------------------------
page-top
--------------------------------------------*/
#page-top {
  width: 15vw;
  position: fixed;
  right: 2vw;
  bottom: 25vw;
  z-index: 100;
}
@media screen and (min-width: 501px) {
  #page-top {
    width: 80px;
    position: fixed;
    right: 50px;
    bottom: 136px;
    z-index: 100;
  }
}

/*---------------------------------------------------------
ループアニメーション
---------------------------------------------------------*/

.loop__wrap {
  overflow: hidden;
  display: flex;
  /* margin-bottom: 500px; */
}

.loop__wrap__inner {
  width: 190%;
  flex: 0 0 auto;

  white-space: nowrap;
  overflow: hidden;
  animation: 40s linear 0s infinite normal none running loop;
}

@keyframes loop {
  0% {
    transform: translateX(0px);
  }
  100% {
    transform: translateX(-100%);
  }
}

/*---------------------------------------------------------
レスポンシブ
---------------------------------------------------------*/
.pc {
  display: block;
}
.sp {
  display: none;
}

@media only screen and (max-width: 500px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}

/*---------------------------------------------------------
swiper
---------------------------------------------------------*/
.swiper {
  margin-top: 45%;
  max-width: 500px;
  height: auto;
}

.swiper-slide {
  opacity: 0.5;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.swiper-slide img {
  height: auto;
  width: 100%;
}

/* 中央 */
.swiper-slide-active {
  transform: scale(1);
  opacity: 1;
}

.swiper-pagination {
  margin-bottom: 20%;
  /* width: 50%; */
}

.swiper-pagination-bullet {
  width: 8px !important;
  height: 8px !important;
  /* background: #ccc; */
  opacity: 1;
}

/* アクティブ（現在地）のドット */
.swiper-pagination-bullet-active {
  background: #425ba8 !important;
}

/* レスポンシブ */
@media (max-width: 500px) {
  .swiper-pagination {
    margin-bottom: 21%;
    /* width: 50%; */
  }

  .swiper-pagination-bullet {
    width: 6px !important;
    height: 6px !important;
    /* background: #ccc; */
    opacity: 1;
  }
}

@media (max-width: 400px) {
  .swiper-pagination {
    margin-bottom: 20%;
    /* width: 50%; */
  }
  .swiper-pagination-bullet {
    width: 5px !important;
    height: 5px !important;
    /* background: #ccc; */
    opacity: 1;
  }
}
/*---------------------------------------------------------
index.html
---------------------------------------------------------*/
[class^="main_logo_0"] {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
}

.main_logo_02 {
  width: 100%;
  top: -2%;
}

.area-contents {
  width: 100%;
  position: absolute;
  top: 0;
}

.main_logo_01 {
  z-index: 5;
}

.area {
  background-color: #f4f5f4;
}

/*-------------------------------------------
FirstView
--------------------------------------------*/
.zoomIn_start {
  animation-name: zoomInAnime2;
  animation-duration: 0.75s;
  animation-delay: 0.8s;
  animation-fill-mode: forwards;
  transition-timing-function: ease;
  opacity: 0;
  z-index: 5;
}

.blur_start {
  animation-name: blurAnime;
  animation-duration: 1s;
  animation-delay: 2.1s;
  opacity: 0;
  animation-fill-mode: forwards;
  z-index: 0;
}

.wakusei {
  width: 66%;
  top: -60%;
  right: -32%;
}

.claud_01 {
  width: 21%;
  top: 27%;
  left: -3%;
}

.confetti_01 {
  width: 19%;
  top: 55%;
  left: -2%;
}

.confetti_02 {
  width: 15%;
  top: 62%;
  right: 0%;
}

.claud_02 {
  width: 22%;
  top: -13%;
  right: -10%;
}

.thander_01 {
  width: 11%;
  top: 25%;
  right: 1%;
}

.entame {
  width: 100%;
  top: 0%;
  right: 0%;
  z-index: 10;
}

.thander_01_img {
  opacity: 0;
  transform: translate(12px, 12px);
  animation: thander 0.5s 2.5s ease forwards;
}

@keyframes thander {
  0% {
    opacity: 0;
    transform: translate(-4%, 4%);
  }

  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
.butterfly {
  width: 15%;
  top: 127%;
  left: 1%;
}

.waninaru {
  width: 100%;
  top: 0;
  right: 0;
  z-index: 1;
}

.wakkunn_fb {
  width: 100%;
  bottom: -48%;
  right: 0;
  z-index: 0;
}

.hand {
  width: 101%;
  top: -2px;
  right: -1px;
  z-index: 0;
}

/*---------------------------------------------------------
わっくん動き
---------------------------------------------------------*/
.wakkunn_move {
  animation: easeOutElastic52 4s 1.3s ease-in-out;
  animation-fill-mode: forwards;
  opacity: 0;
  /* animation-timing-function: linear(0, 1.32, 0.87, 1.05, 0.98, 1.01, 1, 1), ease-out; */
}
@keyframes easeOutElastic52 {
  0% {
    transform: translateY(0%);
  }
  1% {
    opacity: 1;
  }

  /* 控えめに飛び出す */
  14% {
    transform: translateY(-56%);
  }

  /* すぐ戻る */
  34% {
    transform: translateY(-50.5%);
  }

  /* 軽く反動 */
  60% {
    transform: translateY(-51.8%);
  }

  /* 収束 */
  82% {
    transform: translateY(-52%);
  }

  100% {
    transform: translateY(-52%);
    opacity: 1;
  }
}

.sway {
  animation: sway 6s ease infinite;
  transform-origin: center bottom;
}

.sway_wakusei {
  animation: sway 12s ease infinite;
  transform-origin: center center;
}

@keyframes sway {
  0%,
  100% {
    transform: rotate(-5deg);
  }

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

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

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

/*-------------------------------------------
TOPICS
--------------------------------------------*/

.wakkunn_02 {
  width: 35%;
  top: -2%;
  right: 5%;
}

.confetti_03 {
  width: 9%;
  top: 16%;
  left: 9%;
}

.confetti_04 {
  width: 6%;
  top: 16%;
  right: 8%;
}

.wakkunn_03 {
  width: 30%;
  top: -32%;
  right: 1%;
}

.topics_btn_01 {
  width: 43%;
  bottom: 6%;
  right: 28.5%;
}

.wakkunn_04 {
  width: 31%;
  bottom: 31%;
  left: -2%;
}

.renewal {
  width: 29%;
  top: -15%;
  left: 0%;
}

/*-------------------------------------------
new_shop
--------------------------------------------*/
.new_shop_deco_01 {
  width: 12%;
  top: 38%;
  right: 9%;
}
.new_shop_deco_02 {
  width: 13%;
  bottom: -4%;
  right: 12%;
}
.new_shop_deco_03 {
  width: 8%;
  bottom: 3%;
  left: 8%;
}
.new_shop_deco_04 {
  width: 50%;
  top: 0%;
  left: 10%;
}
.new_shop_deco_05 {
  width: 29%;
  top: 61%;
  left: 16%;
}

.new_shop_deco_06 {
  width: 98%;
  top: 2%;
  left: 1%;
}

/*-------------------------------------------
shop_List
--------------------------------------------*/
.shop_List .area-contents {
  display: block;
  width: 100%;
}

.shop-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  height: auto;
  padding-inline: 10.7%;
  gap: 3.3%;
  justify-content: space-between;
  box-sizing: border-box;
  column-gap: 3.3%;
  grid-auto-rows: max-content;
}

.shop-list.first {
  padding-bottom: 3.3%;
  padding-inline: 10.7%;
  row-gap: 6.2%;
}

.shop-list.second {
  padding-bottom: 10.7%;
  row-gap: 2.9%;
  column-gap: 3.3%;
}

.shop-list__logo img {
  display: block;
  width: 100%;
  height: 100%;
}

/*---------------------------------------------------------
Wakkunn
---------------------------------------------------------*/
.wakkunn {
  background-color: #f5f6f6;
}

.wakkunn_deco_01 {
  width: 12%;
  top: 0%;
  right: 4%;
}
.wakkunn_deco_02 {
  width: 13%;
  top: 43%;
  right: 0%;
}
.wakkunn_deco_03 {
  width: 15%;
  top: 68%;
  left: 0%;
}
.wakkunn_deco_04 {
  width: 25%;
  top: 25%;
  right: 86%;
}
.wakkunn_deco_05 {
  width: 94%;
  top: 32%;
  right: 2%;
  z-index: 2;
}
.wakkunn_deco_06 {
  width: 42%;
  top: 83%;
  right: 26%;
}
.wakkunn_deco_07 {
  width: 67%;
  top: -31%;
  right: 17%;
}

.ion_logo {
  width: 27%;
  top: 32%;
  right: 38%;
}
/*---------------------------------------------------------
ふわふわ漂う
---------------------------------------------------------*/

.floating {
  animation: floating-y 2s ease-in-out infinite alternate-reverse;
}
@keyframes floating-y {
  0% {
    transform: translateY(-2%);
  }
  100% {
    transform: translateY(2%);
  }
}

.floating-xy {
  animation: floating-xy 2s ease-in-out infinite alternate-reverse;
}

@keyframes floating-xy {
  0% {
    transform: translate(6%, 6%);
  }
  100% {
    transform: translate(-6%, -6%);
  }
}

.floating-claud {
  animation: floating-claud 2s ease-in-out infinite alternate-reverse;
}

.floating-claud-reverce {
  animation: floating-claud-reverce 2s ease-in-out infinite alternate-reverse;
}

@keyframes floating-claud-reverce {
  0% {
    transform: translate(-3%, 4%);
  }
  100% {
    transform: translate(3%, -4%);
  }
}

@keyframes floating-claud {
  0% {
    transform: translate(3%, -4%);
  }
  100% {
    transform: translate(-3%, 4%);
  }
}

.floating-reverce {
  animation: floating-y-rev 2s ease-in-out infinite alternate-reverse;
}
@keyframes floating-y-rev {
  0% {
    transform: translateY(2%);
  }
  100% {
    transform: translateY(-2%);
  }
}

/*---------------------------------------------------------
 ぽよんぽよんする動き
---------------------------------------------------------*/

.zoomIndelay_bound {
  opacity: 0;
  animation-name: zoomInAnimedelay_bound, fadeIn;
  animation: zoomInAnimedelay_bound 1.13s 1.27s;

  animation-fill-mode: forwards;
  animation-timing-function: linear(0, 1.12, 0.87, 1.02, 0.98, 1.01, 1, 1), ease-out;
}

@keyframes zoomInAnimedelay_bound {
  0% {
    transform: scale(0) rotate(-30deg);
    opacity: 0;
  }

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

.lightning {
  animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
  0%,
  100% {
    filter: brightness(1);
  }

  50% {
    filter: brightness(1.075);
  }
}

.scale_loop {
  animation: scale_loop 3s ease-in-out infinite alternate-reverse;
}
@keyframes scale_loop {
  0%,
  100% {
    scale: 1;
  }
  50% {
    scale: 1.05;
  }
}

.scale_loop_shop {
  animation: scale_loop_shop 3s ease-in-out infinite alternate-reverse;
}
@keyframes scale_loop_shop {
  0%,
  100% {
    scale: 1;
  }
  50% {
    scale: 1.1;
  }
}

/*---------------------------------------------------------
responsive
---------------------------------------------------------*/
@media only screen and (max-width: 1096px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}

@media only screen and (max-width: 1096px) {
  .tab {
    display: none;
  }
  .sp {
    display: block;
  }
}
