@charset "UTF-8";
@-webkit-keyframes fadeIn {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
  }
}
@-moz-keyframes fadeIn {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
  }
}
@-webkit-keyframes fadeOut {
  0% {
    display: block;
    opacity: 1;
  }
  99% {
    display: block;
    opacity: 0;
  }
  100% {
    display: none;
    opacity: 0;
  }
}
@-moz-keyframes fadeOut {
  0% {
    display: block;
    opacity: 1;
  }
  99% {
    display: block;
    opacity: 0;
  }
  100% {
    display: none;
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    display: block;
    opacity: 1;
  }
  99% {
    display: block;
    opacity: 0;
  }
  100% {
    display: none;
    opacity: 0;
  }
}
@-webkit-keyframes zoomIn {
  0% {
    transform: scale(0.2);
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@-moz-keyframes zoomIn {
  0% {
    transform: scale(0.2);
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes zoomIn {
  0% {
    transform: scale(0.2);
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
@-moz-keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
@-webkit-keyframes floatY {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
  100% {
    transform: translateY(0);
  }
}
@-moz-keyframes floatY {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes floatY {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
  100% {
    transform: translateY(0);
  }
}
.fadeUpIn {
  opacity: 0;
  transform: translateY(50px);
}

.fadeUpIn.is-active {
  opacity: 1;
  transform: translateY(0);
  transition: all 1s;
}

.fadeIn {
  opacity: 0;
}

.fadeIn.is-active {
  opacity: 1;
  transition: all 1s;
}

/*=============================
.btn-trigger
=============================*/
.btn-trigger {
  position: relative;
  width: 26px;
  height: 10px;
  margin: 10px auto 0 auto;
  display: inline-block;
  transition: all 0.5s;
  box-sizing: border-box;
}
.btn-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #23ac38;
  border-radius: 2px;
  display: inline-block;
  transition: all 0.5s;
  box-sizing: border-box;
}
.btn-trigger span:nth-of-type(1) {
  top: 0;
}
.btn-trigger span:nth-of-type(2) {
  bottom: 0;
}
.btn-trigger.active span:nth-of-type(1) {
  transform: translateY(4px) rotate(-45deg);
}
.btn-trigger.active span:nth-of-type(2) {
  transform: translateY(-4px) rotate(45deg);
}

.sp-site-menu {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9992;
  width: 100%;
  height: 57px;
}
.sp-site-menu #menuButton {
  position: absolute;
  z-index: 0;
  width: 80px;
  height: 80px;
  top: 0;
  right: 0;
  cursor: pointer;
  background: #e8e7eb;
  border-radius: 0 0 0 40px;
  text-align: center;
  z-index: 9999;
}
.sp-site-menu #menuButton .menu-text {
  font-weight: bold;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.05em;
  text-align: center;
  color: #23ac38;
  padding-top: 20px;
  transition: opacity 0.2s ease;
}
.sp-site-menu #menuButton .menu-text.fade-out {
  opacity: 0;
}
.sp-site-menu #menuButton .menu-text.fade-in {
  opacity: 1;
}
.sp-site-menu #menuButton .btn-trigger {
  position: relative;
  width: 26px;
  height: 10px;
  margin: 10px auto 0 auto;
  display: inline-block;
  transition: all 0.5s;
  box-sizing: border-box;
}
.sp-site-menu #menuButton .btn-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #23ac38;
  border-radius: 2px;
  display: inline-block;
  transition: all 0.5s;
  box-sizing: border-box;
}
.sp-site-menu #menuButton .btn-trigger span:nth-of-type(1) {
  top: 0;
}
.sp-site-menu #menuButton .btn-trigger span:nth-of-type(2) {
  bottom: 0;
}
.sp-site-menu #menuButton.active .btn-trigger span:nth-of-type(1) {
  transform: translateY(4px) rotate(-45deg);
}
.sp-site-menu #menuButton.active .btn-trigger span:nth-of-type(2) {
  transform: translateY(-4px) rotate(45deg);
}
.sp-site-menu .menu-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
}
.sp-site-menu .menu-popup .menu-bg {
  position: absolute;
  background-color: #fff;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  position: fixed;
}
.sp-site-menu .menu-popup .header-sp-nav {
  position: absolute;
  overflow: auto;
  width: 100%;
  height: auto;
  max-height: 100vh;
  z-index: 1;
  padding: 0 35px 100px 35px;
  display: none;
  opacity: 0;
}
.sp-site-menu .menu-popup .header-sp-nav.is-open {
  -webkit-animation: fadeIn 0.5s linear forwards;
  -moz-animation: fadeIn 0.5s linear forwards;
  animation: fadeIn 0.5s linear forwards;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  animation-fill-mode: both;
  display: block;
}
.sp-site-menu .menu-popup .header-sp-nav .nav-inner {
  width: 100%;
  max-width: 800px;
  margin: 70px auto 0 auto;
}
.sp-site-menu .menu-popup .header-sp-nav .menu-list-box .menu-list li {
  border-top: 2px solid #e8e7eb;
}
.sp-site-menu .menu-popup .header-sp-nav .menu-list-box .menu-list li:first-child {
  border-top: none;
}
.sp-site-menu .menu-popup .header-sp-nav .menu-list-box .menu-list li a {
  text-align: center;
  display: block;
  height: 100%;
  padding: 15px 0 16px 0;
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 0.01em;
  line-height: 22px;
  color: #000;
  position: relative;
}
.sp-site-menu .menu-popup .header-sp-nav .menu-list-box .menu-list li a .ttl-jp {
  font-weight: bold;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.11em;
  color: #767676;
}
.sp-site-menu .menu-popup .header-sp-nav .menu-list-box .menu-list li a .ttl-en {
  margin-top: 12px;
  font-weight: bold;
  font-size: 20px;
  letter-spacing: 0.05em;
  line-height: 1;
  text-align: center;
  color: #23ac38;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  .sp-site-menu .menu-popup .header-sp-nav .menu-list-box _::-webkit-full-page-media,
  .sp-site-menu .menu-popup .header-sp-nav .menu-list-box _:future,
  .sp-site-menu .menu-popup .header-sp-nav .menu-list-box :root .language-selectbox::after {
    top: 15px;
  }
}
@media screen and (min-width: 769px) {
  .sp-site-menu {
    display: none;
  }
}

/**************************\
  Basic Modal Styles
\**************************/
#modal-1.is-open {
  display: block;
}

.modal {
  display: none;
}

.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: rgba(173, 173, 173, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal__container {
  background-color: #fff;
  padding: 30px;
  margin-right: 20px;
  margin-left: 20px;
  max-width: 640px;
  max-height: 100vh;
  width: 100%;
  border-radius: 4px;
  overflow-y: auto;
  box-sizing: border-box;
}

.modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal__title {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.25;
  color: #00449e;
  box-sizing: border-box;
}

.modal__close {
  background: transparent;
  border: 0;
}

.modal__header .modal__close:before {
  content: "\2715";
}

.modal__content {
  margin-top: 2rem;
  margin-bottom: 2rem;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.8);
}

.modal__btn {
  font-size: 1rem;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: #1B95E0;
  color: #fff;
  border-radius: 4px;
  border-style: none;
  border-width: 0;
  cursor: pointer;
  -webkit-appearance: button;
  text-transform: none;
  overflow: visible;
  line-height: 1.15;
  width: 100%;
  max-width: 320px;
  margin: 0;
  will-change: transform;
  -moz-osx-font-smoothing: grayscale;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  transition: -webkit-transform .25s ease-out;
  transition: transform .25s ease-out;
  transition: transform .25s ease-out,-webkit-transform .25s ease-out;
}

.modal__btn:focus, .modal__btn:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.modal__btn-primary {
  background-color: #00449e;
  color: #fff;
}

/**************************\
  Demo Animation Style
\**************************/
@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes mmslideIn {
  from {
    transform: translateY(15%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes mmslideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10%);
  }
}
.micromodal-slide {
  display: none;
}

.micromodal-slide.is-open {
  display: block;
}

.micromodal-slide[aria-hidden="false"] .modal__overlay {
  animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden="false"] .modal__container {
  animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal__overlay {
  animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal__container {
  animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
  will-change: transform;
}

/* ページネーション */
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: -25px;
}

.swiper-pagination {
  bottom: -30px !important;
}

.swiper-pagination-bullet {
  border: 1px solid #222 !important;
  background-color: #f4f4f4 !important;
}

.swiper-pagination-bullet-active {
  background-color: #222 !important;
}

@media (min-width: 751px) {
  a[href^="tel:"] {
    pointer-events: none;
    cursor: default;
  }
}
body {
  background: #fff;
  color: #222;
  font-family: "Zen Kaku Gothic New", serif;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  word-break: break-word;
  font-feature-settings: "palt";
}
body.is-scroll-fixed {
  position: fixed;
  width: 100%;
}
body.fixed {
  position: fixed;
  width: 100%;
}
body.fixed:before {
  position: fixed;
  content: "";
  inset: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 9999;
  opacity: 1;
  transition: opacity 1s ease;
}
body.loaded:before {
  opacity: 0;
  pointer-events: none;
}

input,
button,
textarea,
select {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  box-sizing: border-box;
  outline: none;
}

* {
  letter-spacing: 0.05em;
}
*:before, *:after {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}
img.w100 {
  width: 100%;
}

a {
  text-decoration: none;
}

@media (max-width: 768px) {
  .pc-br {
    display: none;
  }
}
@media (min-width: 769px) {
  .pc-br {
    display: inline;
  }
}

@media (max-width: 768px) {
  .sp-br {
    display: inline;
  }
}
@media (min-width: 769px) {
  .sp-br {
    display: none;
  }
}

@media (max-width: 768px) {
  .disp-pc {
    display: none !important;
  }
}

@media (min-width: 769px) {
  .disp-sp {
    display: none !important;
  }
}

@media (min-width: 1025px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
@media (hover: hover) {
  .opacity-link {
    transition: opacity 0.2s ease;
  }
  .opacity-link:hover {
    opacity: 0.6;
  }
}
@media (hover: hover) {
  .underline-link {
    transition: 0.2s;
  }
  .underline-link:hover {
    text-decoration: underline;
  }
}
.font-en, .sp-site-menu #menuButton .menu-text, .sp-site-menu .menu-popup .header-sp-nav .menu-list-box .menu-list li a .ttl-en, .navi-contents .navi-list li a .ttl-en, .news-shop1-contents .ttl-box .ttl-en, .news-shop1-contents .floor-shop-list .floor .floor-name, .news-shop2-contents .floor-shop-list .floor .floor-name, .renewal-floor-contents .ttl-box .ttl-en, .renewal-floor-contents .floor-list li a p, .kids-baby-contents .ttl-box .ttl-en, .kids-baby-contents .item-box .item-ttl.type1 span, .event-contents .ttl-box .ttl-en, .recruit-contents .ttl-box .ttl-en {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
}

/* =========================================================
common parts
========================================================= */
.wrapper {
  min-width: 320px;
}

section {
  width: 100%;
}

/* =========================================================
common layout
========================================================= */
/* =========================================================
animation
========================================================= */
/*------------------------------------------
fade
------------------------------------------*/
.fade {
  opacity: 0;
  transition: opacity 0.7s ease-in-out;
}
.fade.is-active {
  opacity: 1;
}

/*------------------------------------------
fade up
------------------------------------------*/
.fadeup {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease-in-out, transform 0.7s ease-in-out;
}
.fadeup.is-active {
  opacity: 1;
  transform: translateY(0);
}

.mv-contents {
  width: 100%;
  margin-bottom: -2px;
}
.mv-contents img {
  width: 100%;
}

.navi-contents {
  background: #fff;
  width: 100%;
  min-height: 90px;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 100;
  padding: 15px 0;
}
.navi-contents .navi-list {
  display: flex;
  justify-content: center;
}
.navi-contents .navi-list li {
  padding: 10px calc(30 / 1366 * 100%);
  border-left: 1px solid #e8e7eb;
}
.navi-contents .navi-list li:first-child {
  border-left: none;
}
.navi-contents .navi-list li:last-child {
  padding-right: 110px;
}
.navi-contents .navi-list li a .ttl-jp {
  font-weight: bold;
  font-size: clamp(9px, 0.878vw, 12px);
  letter-spacing: 0.11em;
  text-align: center;
  color: #767676;
}
.navi-contents .navi-list li a .ttl-en {
  margin-top: 10px;
  font-weight: bold;
  font-size: clamp(12px, 1.464vw, 24px);
  letter-spacing: 0.05em;
  line-height: 23px;
  text-align: center;
  color: #23ac38;
}
.navi-contents .page-top {
  position: absolute;
  top: 13px;
  right: 20px;
  width: 70px;
  height: 70px;
}
@media (max-width: 768px) {
  .navi-contents {
    min-height: 0;
    height: 0;
    padding: 0;
  }
  .navi-contents .navi-list {
    display: none;
  }
  .navi-contents .page-top {
    position: fixed;
    top: auto;
    bottom: 10px;
    right: 5px;
    width: 50px;
    height: 50px;
  }
}

.section1 {
  position: relative;
  background: #f7f7ef;
  padding: 160px 0 170px 0;
}
.section1 .top-bg {
  width: 100%;
  left: 0;
  top: 0;
  position: absolute;
  background: #dcdbe1;
}
.section1 .top-bg img {
  width: 100%;
}
@media (max-width: 768px) {
  .section1 {
    padding: 50px 0 80px 0;
  }
}

.section2 {
  position: relative;
  background: #e2f0fd;
  padding: 200px 0 75px 0;
}
.section2 .top-bg {
  width: 100%;
  left: 0;
  top: 0;
  position: absolute;
  background: #f7f7ef;
}
.section2 .top-bg img {
  width: 100%;
}
@media (max-width: 768px) {
  .section2 {
    padding: 50px 0 80px 0;
  }
}

.section3 {
  position: relative;
  background: #e4f7e7;
  padding: 230px 0 75px 0;
}
.section3 .top-bg {
  width: 100%;
  left: 0;
  top: 0;
  position: absolute;
  background: #e2f0fd;
}
.section3 .top-bg img {
  width: 100%;
}
@media (max-width: 768px) {
  .section3 {
    padding: 50px 0 80px 0;
  }
}

.section4 {
  position: relative;
  background: #f7f7ef;
  padding: 180px 0 108px 0;
}
.section4 .top-bg {
  width: 100%;
  left: 0;
  top: 0;
  position: absolute;
  background: #e4f7e7;
}
.section4 .top-bg img {
  width: 100%;
}
@media (max-width: 768px) {
  .section4 {
    padding: 50px 0 80px 0;
  }
}

.section5 {
  position: relative;
  background: #ffffe3;
  padding: 100px 0 140px 0;
}
.section5 .top-bg {
  width: 100%;
  left: 0;
  top: 0;
  position: absolute;
  background: #f7f7ef;
}
.section5 .top-bg img {
  width: 100%;
}
@media (max-width: 768px) {
  .section5 {
    padding: 50px 0 80px 0;
  }
}

.top-info-contents {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}
.top-info-contents .open-ttl {
  width: 720px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.top-info-contents .open-ttl .ttl1 {
  width: 352px;
  position: relative;
  opacity: 0;
}
.top-info-contents .open-ttl .ttl1.is-active {
  animation: fadeInUp 1s linear forwards;
}
.top-info-contents .open-ttl .ttl1 .ribbon-box {
  position: absolute;
  width: 290px;
  top: -40px;
  left: 0;
  right: 0;
  margin: auto;
}
.top-info-contents .open-ttl .ttl1 .ribbon-box .box-in {
  position: relative;
  width: 100%;
  height: 100%;
}
.top-info-contents .open-ttl .ttl1 .ribbon-box .box-in span {
  font-family: "Noto Sans JP", sans-serif;
  position: absolute;
  width: 100%;
  display: block;
  top: 22px;
  font-weight: bold;
  font-size: 20px;
  letter-spacing: 0.11em;
  text-align: center;
  color: #fff739;
}
.top-info-contents .open-ttl .ttl1 .info-box {
  width: 100%;
  height: 90px;
  background: #fff;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.top-info-contents .open-ttl .ttl1 .info-box .date-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: 26px;
  padding-top: 10px;
  line-height: 1;
  letter-spacing: 0.11em;
  text-align: center;
  color: #1267b1;
}
.top-info-contents .open-ttl .ttl1:nth-child(2) .info-box .date-text {
  color: #23ac38;
}
.top-info-contents .info-msg {
  position: relative;
  text-align: center;
  width: 100%;
  max-width: 920px;
  margin: 20px auto 0 auto;
}
.top-info-contents .info-msg .effects-bg {
  width: 100%;
  opacity: 0;
}
.top-info-contents .info-msg .effects {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(0.2);
  opacity: 0;
}
.top-info-contents .info-msg .msg {
  position: absolute;
  bottom: 55px;
  left: 50%;
  transform: translateX(-50%);
}
.top-info-contents .info-msg.is-active .effects {
  animation: zoomIn 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
.top-info-contents .lead-text-box {
  width: 100%;
  position: relative;
  margin-top: 30px;
}
.top-info-contents .lead-text-box .lead-text {
  font-size: 18px;
  letter-spacing: 0.11em;
  line-height: 30px;
  text-align: center;
  color: #464646;
  opacity: 0;
}
.top-info-contents .lead-text-box .character1 {
  position: absolute;
  width: 83px;
  top: -30px;
  left: 0;
  opacity: 0;
}
.top-info-contents .lead-text-box .character2 {
  position: absolute;
  width: 184px;
  top: 110px;
  left: 50px;
  opacity: 0;
}
.top-info-contents .lead-text-box .character3 {
  position: absolute;
  width: 125px;
  top: 70px;
  right: 106px;
  opacity: 0;
}
.top-info-contents .lead-text-box .character4 {
  position: absolute;
  width: 44px;
  top: -80px;
  right: 20px;
  opacity: 0;
}
.top-info-contents .lead-text-box.is-active .lead-text {
  animation: fadeInUp 1s linear forwards;
}
.top-info-contents .lead-text-box.is-active .character1 {
  animation: fadeInUp 0.2s 0.3s linear forwards;
}
.top-info-contents .lead-text-box.is-active .character2 {
  animation: fadeInUp 0.2s 0.4s linear forwards;
}
.top-info-contents .lead-text-box.is-active .character3 {
  animation: fadeInUp 0.2s 0.6s linear forwards;
}
.top-info-contents .lead-text-box.is-active .character4 {
  animation: fadeInUp 0.2s 0.7s linear forwards;
}
@media (max-width: 768px) {
  .top-info-contents {
    padding: 0 0 130px 0;
  }
  .top-info-contents .open-ttl {
    width: 100%;
    margin: 0 auto;
    display: block;
  }
  .top-info-contents .open-ttl .ttl1 {
    width: 240px;
    margin: 50px auto 0 auto;
  }
  .top-info-contents .open-ttl .ttl1 .ribbon-box {
    width: 220px;
    top: -30px;
  }
  .top-info-contents .open-ttl .ttl1 .ribbon-box .box-in span {
    top: 16px;
    font-size: 16px;
  }
  .top-info-contents .open-ttl .ttl1 .info-box {
    height: 70px;
    border-radius: 20px;
  }
  .top-info-contents .open-ttl .ttl1 .info-box .date-text {
    font-size: 18px;
    padding-top: 5px;
  }
  .top-info-contents .info-msg {
    position: relative;
    text-align: center;
    width: 100%;
    margin: 20px auto 0 auto;
  }
  .top-info-contents .info-msg .effects-bg {
    width: 100%;
    opacity: 0;
  }
  .top-info-contents .info-msg .effects {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
  .top-info-contents .info-msg .msg {
    position: absolute;
    width: calc(312 / 375 * 100%);
    bottom: 55px;
    left: 50%;
    transform: translateX(-50%);
  }
  .top-info-contents .lead-text-box {
    width: 100%;
    position: relative;
    margin-top: 30px;
  }
  .top-info-contents .lead-text-box .lead-text {
    font-size: 14px;
    letter-spacing: 0.11em;
    line-height: 26px;
    text-align: center;
    color: #464646;
  }
  .top-info-contents .lead-text-box .character1 {
    position: absolute;
    width: 54px;
    top: auto;
    bottom: -96px;
    left: calc(36 / 375 * 100%);
  }
  .top-info-contents .lead-text-box .character2 {
    position: absolute;
    width: 120px;
    top: auto;
    bottom: -148px;
    left: calc(125 / 375 * 100%);
  }
  .top-info-contents .lead-text-box .character3 {
    display: none;
  }
  .top-info-contents .lead-text-box .character4 {
    position: absolute;
    width: 29px;
    top: auto;
    bottom: -93px;
    right: calc(50 / 375 * 100%);
  }
}

.news-shop1-contents {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
.news-shop1-contents .character1 {
  position: absolute;
  width: 96px;
  top: 10px;
  left: 200px;
  opacity: 0;
}
.news-shop1-contents .character1.is-active {
  animation: fadeInUp 0.2s linear forwards;
}
.news-shop1-contents .character2 {
  position: absolute;
  width: 65px;
  top: 40px;
  right: 240px;
  opacity: 0;
}
.news-shop1-contents .character2.is-active {
  animation: fadeInUp 0.2s 0.2s linear forwards;
}
.news-shop1-contents .character3 {
  position: absolute;
  width: 45px;
  top: 10px;
  right: 180px;
  opacity: 0;
}
.news-shop1-contents .character3.is-active {
  animation: fadeInUp 0.2s 0.4s linear forwards;
}
.news-shop1-contents .top-parts-l {
  position: absolute;
  width: 330px;
  top: -180px;
  left: 10px;
}
.news-shop1-contents .top-parts-r {
  position: absolute;
  width: 330px;
  top: -180px;
  right: 10px;
}
.news-shop1-contents .ttl-box {
  position: relative;
  text-align: center;
  font-weight: bold;
  color: #1267b1;
  line-height: 1;
  padding-top: 55px;
  z-index: 1;
  opacity: 0;
}
.news-shop1-contents .ttl-box.is-active {
  animation: fadeInUp 1s linear forwards;
}
.news-shop1-contents .ttl-box:before {
  content: "";
  position: absolute;
  width: 92px;
  height: 39px;
  background: url(../images/ttl_parts_img1.svg) no-repeat;
  background-size: 92px 39px;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.news-shop1-contents .ttl-box .ttl-en {
  font-size: 66px;
  letter-spacing: 0.05em;
}
.news-shop1-contents .ttl-box .ttl-jp {
  margin-top: 10px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.11em;
}
.news-shop1-contents .ttl1 {
  width: 458px;
  margin: 115px auto 10px auto;
  position: relative;
  opacity: 0;
}
.news-shop1-contents .ttl1.is-active {
  animation: fadeInUp 1s linear forwards;
}
.news-shop1-contents .ttl1 .ribbon-box {
  position: absolute;
  width: 378px;
  top: -58px;
  left: 0;
  right: 0;
  margin: auto;
}
.news-shop1-contents .ttl1 .ribbon-box .box-in {
  position: relative;
  width: 100%;
  height: 100%;
}
.news-shop1-contents .ttl1 .ribbon-box .box-in span {
  position: absolute;
  width: 100%;
  display: block;
  top: 28px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  font-size: 28px;
  letter-spacing: 0.11em;
  text-align: center;
  color: #fff739;
}
.news-shop1-contents .ttl1 .info-box {
  width: 100%;
  height: 120px;
  background: #fff;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.news-shop1-contents .ttl1 .info-box .date-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: 36px;
  line-height: 1;
  letter-spacing: 0.11em;
  text-align: center;
  color: #1267b1;
}
.news-shop1-contents .ttl1 .parts1-img {
  width: 47px;
  position: absolute;
  left: -53px;
  bottom: 5px;
}
.news-shop1-contents .ttl1 .parts2-img {
  width: 47px;
  position: absolute;
  top: -30px;
  right: -30px;
}
.news-shop1-contents .floor-shop-list {
  margin-bottom: 80px;
}
.news-shop1-contents .floor-shop-list:last-child {
  margin-bottom: 0;
}
.news-shop1-contents .floor-shop-list .floor {
  width: 168px;
  position: relative;
  margin-left: 15px;
  opacity: 0;
}
.news-shop1-contents .floor-shop-list .floor.is-active {
  animation: fadeInUp 1s linear forwards;
}
.news-shop1-contents .floor-shop-list .floor .floor-name {
  position: absolute;
  display: block;
  width: 100%;
  top: 13px;
  font-weight: bold;
  font-size: 41px;
  line-height: 1;
  letter-spacing: 0.11em;
  text-align: center;
  color: #fff;
}
.news-shop1-contents .floor-shop-list .shop-list {
  display: flex;
}
.news-shop1-contents .floor-shop-list .shop-list li {
  width: calc((100% - 60px) / 4);
  margin: 35px 0 0 15px;
  position: relative;
  opacity: 0;
}
.news-shop1-contents .floor-shop-list .shop-list li.is-active {
  animation: fadeInUp 1s linear forwards;
}
.news-shop1-contents .floor-shop-list .shop-list li .badge {
  position: absolute;
  top: -7px;
  left: -10px;
  z-index: 10;
}
.news-shop1-contents .floor-shop-list .shop-list li .badge span {
  position: absolute;
  width: 100%;
  display: block;
  top: 11px;
  font-weight: bold;
  font-size: 18px;
  letter-spacing: 0.06em;
  line-height: 1;
  color: #fff739;
  text-align: center;
}
.news-shop1-contents .floor-shop-list .shop-list li .shop-logo {
  border-radius: 40px 40px 0 0;
  overflow: hidden;
}
.news-shop1-contents .floor-shop-list .shop-list li .shop-logo img {
  transition: transform 0.3s ease;
}
.news-shop1-contents .floor-shop-list .shop-list li .shop-logo:hover img {
  transform: scale(1.1);
}
.news-shop1-contents .floor-shop-list .shop-list li .shop-info {
  padding: 20px 30px 30px 30px;
  margin-bottom: 1px;
  background: #1267b1;
  color: #fff;
  border-radius: 0 0 40px 40px;
}
.news-shop1-contents .floor-shop-list .shop-list li .shop-info .shop-name {
  font-weight: bold;
  font-size: 20px;
  text-align: left;
  color: #fff;
}
.news-shop1-contents .floor-shop-list .shop-list li .shop-info .note-text {
  margin-top: 6px;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  text-align: left;
  color: #fff;
}
.news-shop1-contents .floor-shop-list .shop-list li .shop-info .shop-category {
  margin-top: 20px;
  font-size: 16px;
  text-align: left;
  color: #fff;
  padding-left: 15px;
  position: relative;
}
.news-shop1-contents .floor-shop-list .shop-list li .shop-info .shop-category:before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff739;
  top: 6px;
  left: 0;
}
@media (max-width: 768px) {
  .news-shop1-contents .character1 {
    width: 57px;
    top: 40px;
    left: 20px;
  }
  .news-shop1-contents .character2 {
    width: 42px;
    top: 60px;
    right: 37px;
  }
  .news-shop1-contents .character3 {
    width: 30px;
    top: 30px;
    right: 2px;
  }
  .news-shop1-contents .top-parts-l {
    width: 102px;
    top: -40px;
    left: 0;
  }
  .news-shop1-contents .top-parts-r {
    width: 102px;
    top: -40px;
    right: 0;
  }
  .news-shop1-contents .ttl-box {
    padding-top: 55px;
  }
  .news-shop1-contents .ttl-box .ttl-en {
    font-size: 32px;
  }
  .news-shop1-contents .ttl-box .ttl-jp {
    margin-top: 10px;
    font-size: 14px;
  }
  .news-shop1-contents .ttl1 {
    width: 300px;
    margin: 75px auto 10px auto;
  }
  .news-shop1-contents .ttl1 .ribbon-box {
    width: 250px;
    top: -40px;
  }
  .news-shop1-contents .ttl1 .ribbon-box .box-in span {
    position: absolute;
    width: 100%;
    display: block;
    top: 20px;
    font-size: 15px;
  }
  .news-shop1-contents .ttl1 .info-box {
    height: 80px;
    border-radius: 20px;
  }
  .news-shop1-contents .ttl1 .info-box .date-text {
    font-size: 19px;
  }
  .news-shop1-contents .ttl1 .parts1-img {
    width: 32px;
    left: -15px;
    bottom: -22px;
  }
  .news-shop1-contents .ttl1 .parts2-img {
    width: 32px;
    top: -20px;
    right: -25px;
  }
  .news-shop1-contents .floor-shop-list {
    width: calc(100% - 40px);
    margin: 50px auto 0 auto;
  }
  .news-shop1-contents .floor-shop-list .floor {
    width: 95px;
    margin: 0 auto;
  }
  .news-shop1-contents .floor-shop-list .floor .floor-name {
    top: 8px;
    font-size: 23px;
  }
  .news-shop1-contents .floor-shop-list .shop-list {
    display: flex;
    flex-wrap: wrap;
  }
  .news-shop1-contents .floor-shop-list .shop-list li {
    width: calc((100% - 10px) / 2);
    margin: 25px 0 0 10px;
    position: relative;
  }
  .news-shop1-contents .floor-shop-list .shop-list li:nth-child(2n + 1) {
    margin: 25px 0 0 0;
  }
  .news-shop1-contents .floor-shop-list .shop-list li .badge {
    width: 138px;
    top: -10px;
    left: -10px;
  }
  .news-shop1-contents .floor-shop-list .shop-list li .badge span {
    top: 8px;
    font-size: 14px;
  }
  .news-shop1-contents .floor-shop-list .shop-list li .shop-logo {
    border-radius: 20px 20px 0 0;
  }
  .news-shop1-contents .floor-shop-list .shop-list li .shop-info {
    padding: 20px 15px 20px 15px;
    border-radius: 0 0 20px 20px;
  }
  .news-shop1-contents .floor-shop-list .shop-list li .shop-info .shop-name {
    font-size: 15px;
    line-height: 22px;
  }
  .news-shop1-contents .floor-shop-list .shop-list li .shop-info .note-text {
    font-size: 12px;
    line-height: 18px;
  }
  .news-shop1-contents .floor-shop-list .shop-list li .shop-info .shop-category {
    margin-top: 10px;
    font-size: 16px;
    padding-left: 10px;
  }
  .news-shop1-contents .floor-shop-list .shop-list li .shop-info .shop-category:before {
    width: 5px;
    height: 5px;
    top: 8px;
  }
}

.news-shop2-contents {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
.news-shop2-contents .top-parts-l {
  position: absolute;
  width: 330px;
  top: -180px;
  left: 10px;
}
.news-shop2-contents .top-parts-r {
  position: absolute;
  width: 330px;
  top: -180px;
  right: 10px;
}
.news-shop2-contents .ttl1 {
  width: 458px;
  margin: 0 auto 10px auto;
  position: relative;
  opacity: 0;
}
.news-shop2-contents .ttl1.is-active {
  animation: fadeInUp 1s linear forwards;
}
.news-shop2-contents .ttl1 .ribbon-box {
  position: absolute;
  width: 378px;
  top: -58px;
  left: 0;
  right: 0;
  margin: auto;
}
.news-shop2-contents .ttl1 .ribbon-box .box-in {
  position: relative;
  width: 100%;
  height: 100%;
}
.news-shop2-contents .ttl1 .ribbon-box .box-in span {
  font-family: "Noto Sans JP", sans-serif;
  position: absolute;
  width: 100%;
  display: block;
  top: 28px;
  font-weight: bold;
  font-size: 28px;
  letter-spacing: 0.11em;
  text-align: center;
  color: #fff739;
}
.news-shop2-contents .ttl1 .info-box {
  width: 100%;
  height: 120px;
  background: #fff;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.news-shop2-contents .ttl1 .info-box .date-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: 36px;
  line-height: 1;
  letter-spacing: 0.11em;
  text-align: center;
  color: #23ac38;
}
.news-shop2-contents .ttl1 .parts1-img {
  width: 47px;
  position: absolute;
  left: -53px;
  bottom: 5px;
}
.news-shop2-contents .ttl1 .parts2-img {
  width: 47px;
  position: absolute;
  top: -30px;
  right: -30px;
}
.news-shop2-contents .floor-shop-list {
  margin-bottom: 80px;
}
.news-shop2-contents .floor-shop-list:last-child {
  margin-bottom: 0;
}
.news-shop2-contents .floor-shop-list .floor {
  width: 168px;
  position: relative;
  margin-left: 15px;
  opacity: 0;
}
.news-shop2-contents .floor-shop-list .floor.is-active {
  animation: fadeInUp 1s linear forwards;
}
.news-shop2-contents .floor-shop-list .floor .floor-name {
  position: absolute;
  display: block;
  width: 100%;
  top: 13px;
  font-weight: bold;
  font-size: 41px;
  line-height: 1;
  letter-spacing: 0.11em;
  text-align: center;
  color: #fff;
}
.news-shop2-contents .floor-shop-list .shop-list {
  display: flex;
  flex-wrap: wrap;
}
.news-shop2-contents .floor-shop-list .shop-list li {
  width: calc((100% - 60px) / 4);
  margin: 35px 0 0 15px;
  position: relative;
  opacity: 0;
}
.news-shop2-contents .floor-shop-list .shop-list li.is-active {
  animation: fadeInUp 1s linear forwards;
}
.news-shop2-contents .floor-shop-list .shop-list li .badge {
  position: absolute;
  top: -7px;
  left: -10px;
  z-index: 10;
}
.news-shop2-contents .floor-shop-list .shop-list li .badge span {
  position: absolute;
  width: 100%;
  display: block;
  top: 11px;
  font-weight: bold;
  font-size: 18px;
  letter-spacing: 0.06em;
  line-height: 1;
  color: #fff739;
  text-align: center;
}
.news-shop2-contents .floor-shop-list .shop-list li .shop-logo {
  border-radius: 40px 40px 0 0;
  overflow: hidden;
}
.news-shop2-contents .floor-shop-list .shop-list li .shop-logo img {
  transition: transform 0.3s ease;
}
.news-shop2-contents .floor-shop-list .shop-list li .shop-logo:hover img {
  transform: scale(1.1);
}
.news-shop2-contents .floor-shop-list .shop-list li .shop-info {
  padding: 20px 30px 30px 30px;
  background: #23ac38;
  color: #fff;
  border-radius: 0 0 40px 40px;
}
.news-shop2-contents .floor-shop-list .shop-list li .shop-info .shop-name {
  font-weight: bold;
  font-size: 20px;
  text-align: left;
  color: #fff;
}
.news-shop2-contents .floor-shop-list .shop-list li .shop-info .note-text {
  margin-top: 6px;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  text-align: left;
  color: #fff;
}
.news-shop2-contents .floor-shop-list .shop-list li .shop-info .shop-category {
  margin-top: 20px;
  font-size: 16px;
  text-align: left;
  color: #fff;
  padding-left: 15px;
  position: relative;
}
.news-shop2-contents .floor-shop-list .shop-list li .shop-info .shop-category:before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff739;
  top: 6px;
  left: 0;
}
@media (max-width: 768px) {
  .news-shop2-contents .top-parts-l {
    width: 102px;
    top: -100px;
    left: 0;
  }
  .news-shop2-contents .top-parts-r {
    width: 102px;
    top: -100px;
    right: 0;
  }
  .news-shop2-contents .ttl1 {
    width: 300px;
    margin: 75px auto 10px auto;
  }
  .news-shop2-contents .ttl1 .ribbon-box {
    width: 250px;
    top: -40px;
  }
  .news-shop2-contents .ttl1 .ribbon-box .box-in span {
    position: absolute;
    width: 100%;
    display: block;
    top: 20px;
    font-size: 15px;
  }
  .news-shop2-contents .ttl1 .info-box {
    height: 80px;
    border-radius: 20px;
  }
  .news-shop2-contents .ttl1 .info-box .date-text {
    font-size: 19px;
  }
  .news-shop2-contents .ttl1 .parts1-img {
    width: 32px;
    left: -15px;
    bottom: -22px;
  }
  .news-shop2-contents .ttl1 .parts2-img {
    width: 32px;
    top: -20px;
    right: -25px;
  }
  .news-shop2-contents .floor-shop-list {
    width: calc(100% - 40px);
    margin: 30px auto 0 auto;
  }
  .news-shop2-contents .floor-shop-list .floor {
    width: 95px;
    margin: 0 auto;
  }
  .news-shop2-contents .floor-shop-list .floor .floor-name {
    top: 8px;
    font-size: 23px;
  }
  .news-shop2-contents .floor-shop-list .shop-list {
    display: flex;
    flex-wrap: wrap;
  }
  .news-shop2-contents .floor-shop-list .shop-list li {
    width: calc((100% - 10px) / 2);
    margin: 25px 0 0 10px;
    position: relative;
  }
  .news-shop2-contents .floor-shop-list .shop-list li:nth-child(2n + 1) {
    margin: 25px 0 0 0;
  }
  .news-shop2-contents .floor-shop-list .shop-list li .badge {
    width: 138px;
    top: -10px;
    left: -10px;
  }
  .news-shop2-contents .floor-shop-list .shop-list li .badge span {
    top: 8px;
    font-size: 14px;
  }
  .news-shop2-contents .floor-shop-list .shop-list li .shop-logo {
    border-radius: 20px 20px 0 0;
  }
  .news-shop2-contents .floor-shop-list .shop-list li .shop-info {
    padding: 20px 15px 20px 15px;
    border-radius: 0 0 20px 20px;
  }
  .news-shop2-contents .floor-shop-list .shop-list li .shop-info .shop-name {
    font-size: 15px;
    line-height: 22px;
  }
  .news-shop2-contents .floor-shop-list .shop-list li .shop-info .note-text {
    font-size: 12px;
    line-height: 18px;
  }
  .news-shop2-contents .floor-shop-list .shop-list li .shop-info .shop-category {
    margin-top: 10px;
    font-size: 16px;
    padding-left: 10px;
  }
  .news-shop2-contents .floor-shop-list .shop-list li .shop-info .shop-category:before {
    width: 5px;
    height: 5px;
    top: 8px;
  }
}

.renewal-floor-contents {
  width: 100%;
  max-width: 1086px;
  margin: 0 auto;
  position: relative;
}
.renewal-floor-contents .balloon1 {
  position: absolute;
  width: 91px;
  top: -163px;
  left: 180px;
  opacity: 0;
}
.renewal-floor-contents .balloon1.is-active {
  animation: fadeInUp 1s linear forwards, floatY 3s 1s ease-in-out infinite;
}
.renewal-floor-contents .balloon2 {
  position: absolute;
  width: 99px;
  top: -194px;
  right: 178px;
  opacity: 0;
}
.renewal-floor-contents .balloon2.is-active {
  animation: fadeInUp 1s linear forwards, floatY 3s ease-in-out infinite;
}
.renewal-floor-contents .character1 {
  position: absolute;
  width: 90px;
  top: 10px;
  left: 70px;
  opacity: 0;
}
.renewal-floor-contents .character1.is-active {
  animation: fadeInUp 0.2s linear forwards;
}
.renewal-floor-contents .character2 {
  position: absolute;
  width: 47px;
  top: 40px;
  right: 150px;
  opacity: 0;
}
.renewal-floor-contents .character2.is-active {
  animation: fadeInUp 0.2s 0.2s linear forwards;
}
.renewal-floor-contents .character3 {
  position: absolute;
  width: 105px;
  top: -20px;
  right: 0;
  opacity: 0;
}
.renewal-floor-contents .character3.is-active {
  animation: fadeInUp 0.2s 0.4s linear forwards;
}
.renewal-floor-contents .ttl-box {
  position: relative;
  text-align: center;
  font-weight: bold;
  color: #f88870;
  line-height: 1;
  padding-top: 56px;
  z-index: 1;
  opacity: 0;
}
.renewal-floor-contents .ttl-box.is-active {
  animation: fadeInUp 1s linear forwards;
}
.renewal-floor-contents .ttl-box:before {
  content: "";
  position: absolute;
  width: 92px;
  height: 39px;
  background: url(../images/ttl_parts_img1.svg) no-repeat;
  background-size: 92px 39px;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.renewal-floor-contents .ttl-box .ttl-en {
  font-size: 66px;
  letter-spacing: 0.05em;
}
.renewal-floor-contents .ttl-box .ttl-jp {
  margin-top: 10px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.11em;
}
.renewal-floor-contents .floor-list {
  width: 100%;
  max-width: 812px;
  margin: 70px auto 0 auto;
  display: flex;
  justify-content: space-between;
  opacity: 0;
}
.renewal-floor-contents .floor-list.is-active {
  animation: fadeInUp 1s linear forwards;
}
.renewal-floor-contents .floor-list li {
  display: inline-block;
  position: relative;
  width: calc(250 / 812 * 100%);
}
.renewal-floor-contents .floor-list li:before {
  content: "";
  position: absolute;
  inset: 0;
  background: #ffd3c9;
  border-radius: 9999px;
  transform: translate(6px, 6px);
  z-index: 0;
  transition: transform 0.15s ease;
}
.renewal-floor-contents .floor-list li a {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 106px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f88870;
  border-radius: 9999px;
  transition: transform 0.15s ease;
}
.renewal-floor-contents .floor-list li a p {
  font-weight: bold;
  font-size: 34px;
  line-height: 1;
  letter-spacing: 0.11em;
  color: #fff;
}
.renewal-floor-contents .floor-list li a span {
  width: 50px;
  position: absolute;
  top: 28px;
  right: 20px;
}
.renewal-floor-contents .floor-list li:hover:before {
  transform: translate(3px, 3px);
}
.renewal-floor-contents .floor-list li:hover a {
  transform: translate(3px, 3px);
}
@media (max-width: 768px) {
  .renewal-floor-contents {
    padding: 0 0 40px 0;
    width: 100%;
  }
  .renewal-floor-contents .balloon1 {
    position: absolute;
    width: 58px;
    top: -68px;
    left: 20px;
  }
  .renewal-floor-contents .balloon2 {
    position: absolute;
    width: 62px;
    top: -79px;
    right: 20px;
  }
  .renewal-floor-contents .character1 {
    display: none;
  }
  .renewal-floor-contents .character2 {
    position: absolute;
    width: 32px;
    top: auto;
    bottom: 0;
    right: 115px;
  }
  .renewal-floor-contents .character3 {
    position: absolute;
    width: 77px;
    top: auto;
    bottom: 56px;
    right: 20px;
  }
  .renewal-floor-contents .ttl-box {
    padding-top: 55px;
  }
  .renewal-floor-contents .ttl-box .ttl-en {
    font-size: 32px;
  }
  .renewal-floor-contents .ttl-box .ttl-jp {
    margin-top: 10px;
    font-size: 14px;
  }
  .renewal-floor-contents .floor-list {
    width: calc(100% - 40px);
    margin: 40px auto 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .renewal-floor-contents .floor-list li {
    display: inline-block;
    position: relative;
    width: calc((100% - 20px) / 2);
    margin: 0 0 25px 0;
  }
  .renewal-floor-contents .floor-list li:nth-child(2) {
    margin: 0 0 25px 20px;
  }
  .renewal-floor-contents .floor-list li a {
    width: 100%;
    height: 77px;
  }
  .renewal-floor-contents .floor-list li a p {
    font-size: 26px;
  }
  .renewal-floor-contents .floor-list li a span {
    width: 35px;
    top: 21px;
    right: 21px;
  }
}

.kids-baby-contents {
  width: 100%;
  max-width: 1086px;
  margin: 100px auto 0 auto;
}
.kids-baby-contents .contents-inner {
  width: 100%;
  max-width: 904px;
  margin: 0 auto;
  position: relative;
}
.kids-baby-contents .character1 {
  position: absolute;
  width: 122px;
  top: 98px;
  left: 85px;
  opacity: 0;
}
.kids-baby-contents .character1.is-active {
  animation: fadeInUp 0.2s linear forwards;
}
.kids-baby-contents .character2 {
  position: absolute;
  width: 112px;
  top: 167px;
  right: 90px;
  opacity: 0;
}
.kids-baby-contents .character2.is-active {
  animation: fadeInUp 0.2s 0.2s linear forwards;
}
.kids-baby-contents .ttl-box {
  position: relative;
  text-align: center;
  font-weight: bold;
  color: #f88870;
  line-height: 1;
  padding-top: 55px;
  z-index: 1;
  opacity: 0;
}
.kids-baby-contents .ttl-box.is-active {
  animation: fadeInUp 1s linear forwards;
}
.kids-baby-contents .ttl-box:before {
  content: "";
  position: absolute;
  width: 92px;
  height: 39px;
  background: url(../images/ttl_parts_img1.svg) no-repeat;
  background-size: 92px 39px;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.kids-baby-contents .ttl-box .ttl-en {
  font-size: 66px;
  letter-spacing: 0.05em;
}
.kids-baby-contents .ttl-box .ttl-en span {
  font-size: 56px;
}
.kids-baby-contents .ttl-box .ttl-jp {
  margin-top: 10px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.11em;
}
.kids-baby-contents .item-box {
  position: relative;
  width: 100%;
  max-width: 904px;
  margin: 100px auto 0 auto;
  opacity: 0;
}
.kids-baby-contents .item-box.is-active {
  animation: fadeInUp 1s linear forwards;
}
.kids-baby-contents .item-box .item-text {
  background: #fff;
  border-radius: 0 0 60px 60px;
  padding: 40px;
  font-size: 16px;
  line-height: 28px;
  text-align: left;
  color: #464646;
}
.kids-baby-contents .item-box .item-text span {
  font-size: 14px;
  line-height: 24px;
}
.kids-baby-contents .item-box .item-ttl {
  position: absolute;
  width: 421px;
  top: -40px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.kids-baby-contents .item-box .item-ttl .box-in {
  position: relative;
  width: 100%;
}
.kids-baby-contents .item-box .item-ttl .box-in span {
  padding-bottom: 20px;
  width: 100%;
  font-weight: bold;
  font-size: 36px;
  letter-spacing: 0.11em;
  text-align: center;
  line-height: 1;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.kids-baby-contents .item-box .item-ttl.type1 span {
  letter-spacing: 0.08em;
}
.kids-baby-contents .bottom-box {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 30px auto 0 auto;
  opacity: 0;
}
.kids-baby-contents .bottom-box.is-active {
  animation: fadeInUp 1s linear forwards;
}
.kids-baby-contents .bottom-box .parts1-img {
  width: calc(200 / 1086 * 100%);
  position: absolute;
  top: 0;
  left: 0;
}
.kids-baby-contents .bottom-box .parts2-img {
  width: calc(200 / 1086 * 100%);
  position: absolute;
  top: 0;
  right: 0;
}
.kids-baby-contents .bottom-box .text1 {
  font-weight: bold;
  font-size: 26px;
  letter-spacing: 0.11em;
  line-height: 50px;
  text-align: center;
  color: #f88870;
  padding-top: 5%;
}
.kids-baby-contents .bottom-box .text1 a {
  text-decoration: underline;
  background: #fff739;
}
@media (max-width: 768px) {
  .kids-baby-contents {
    width: 100%;
    margin: 40px auto 0 auto;
  }
  .kids-baby-contents .contents-inner {
    width: calc(100% - 40px);
    margin: 0 auto;
    position: relative;
  }
  .kids-baby-contents .character1 {
    width: 83px;
    top: 70px;
    left: -10px;
  }
  .kids-baby-contents .character2 {
    width: 76px;
    top: 85px;
    right: 0;
  }
  .kids-baby-contents .ttl-box {
    padding-top: 55px;
  }
  .kids-baby-contents .ttl-box .ttl-en {
    font-size: 32px;
  }
  .kids-baby-contents .ttl-box .ttl-en span {
    font-size: 26px;
  }
  .kids-baby-contents .ttl-box .ttl-jp {
    margin-top: 10px;
    font-size: 14px;
  }
  .kids-baby-contents .item-box {
    position: relative;
    width: 100%;
    margin: 95px auto 0 auto;
  }
  .kids-baby-contents .item-box .item-text {
    border-radius: 0 0 30px 30px;
    padding: 18px;
    font-size: 14px;
    line-height: 20px;
  }
  .kids-baby-contents .item-box .item-text span {
    font-size: 12px;
    line-height: 18px;
  }
  .kids-baby-contents .item-box .item-ttl {
    position: absolute;
    width: 242px;
    top: -35px;
  }
  .kids-baby-contents .item-box .item-ttl .box-in {
    position: relative;
    width: 100%;
  }
  .kids-baby-contents .item-box .item-ttl .box-in span {
    font-size: 20px;
    padding-bottom: 10px;
  }
  .kids-baby-contents .bottom-box {
    position: relative;
    width: 100%;
    overflow: hidden;
    max-width: 1000px;
    margin: 70px auto 0 auto;
  }
  .kids-baby-contents .bottom-box .parts1-img {
    width: calc(85 / 375 * 100%);
    max-width: 150px;
    position: absolute;
    top: 20px;
    left: -20px;
  }
  .kids-baby-contents .bottom-box .parts2-img {
    width: calc(96 / 375 * 100%);
    max-width: 150px;
    position: absolute;
    top: 20px;
    right: -20px;
  }
  .kids-baby-contents .bottom-box .text1 {
    font-size: 18px;
    line-height: 30px;
    padding-top: 0;
  }
}

.event-contents {
  width: 720px;
  margin: 0 auto;
  position: relative;
}
.event-contents .balloon1 {
  position: absolute;
  width: 112px;
  top: -57px;
  left: 0;
  opacity: 0;
}
.event-contents .balloon1.is-active {
  animation: fadeInUp 1s linear forwards, floatY 3s ease-in-out infinite;
}
.event-contents .balloon2 {
  position: absolute;
  width: 112px;
  top: -67px;
  right: 0;
  opacity: 0;
}
.event-contents .balloon2.is-active {
  animation: fadeInUp 1s linear forwards, floatY 3s 2s ease-in-out infinite;
}
.event-contents .ttl-box {
  position: relative;
  text-align: center;
  font-weight: bold;
  color: #23ac38;
  line-height: 1;
  padding-top: 55px;
  opacity: 0;
}
.event-contents .ttl-box.is-active {
  animation: fadeInUp 1s linear forwards;
}
.event-contents .ttl-box:before {
  content: "";
  position: absolute;
  width: 92px;
  height: 39px;
  background: url(../images/ttl_parts_img1.svg) no-repeat;
  background-size: 92px 39px;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.event-contents .ttl-box .ttl-en {
  font-size: 66px;
  letter-spacing: 0.05em;
}
.event-contents .ttl-box .ttl-jp {
  margin-top: 10px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.11em;
}
.event-contents .top-info-text {
  margin-top: 40px;
  font-size: 22px;
  letter-spacing: 0.11em;
  line-height: 36px;
  text-align: center;
  color: #464646;
  opacity: 0;
}
.event-contents .top-info-text.is-active {
  animation: fadeInUp 1s linear forwards;
}
.event-contents .event-img {
  margin-top: 40px;
  opacity: 0;
}
.event-contents .event-img.is-active {
  animation: fadeInUp 1s linear forwards;
}
@media (max-width: 768px) {
  .event-contents {
    width: calc(100% - 40px);
  }
  .event-contents .balloon1 {
    position: absolute;
    width: 83px;
    top: -57px;
    left: 0;
  }
  .event-contents .balloon2 {
    position: absolute;
    width: 77px;
    top: -80px;
    right: 0;
  }
  .event-contents .ttl-box {
    padding-top: 55px;
  }
  .event-contents .ttl-box .ttl-en {
    font-size: 32px;
  }
  .event-contents .ttl-box .ttl-jp {
    margin-top: 10px;
    font-size: 14px;
  }
  .event-contents .top-info-text {
    margin-top: 30px;
    font-size: 16px;
    line-height: 24px;
  }
  .event-contents .event-img {
    margin-top: 20px;
  }
}

.recruit-contents {
  width: 720px;
  margin: 100px auto 0 auto;
}
.recruit-contents .ttl-box {
  position: relative;
  text-align: center;
  font-weight: bold;
  color: #23ac38;
  line-height: 1;
  padding-top: 55px;
  opacity: 0;
}
.recruit-contents .ttl-box.is-active {
  animation: fadeInUp 1s linear forwards;
}
.recruit-contents .ttl-box:before {
  content: "";
  position: absolute;
  width: 92px;
  height: 39px;
  background: url(../images/ttl_parts_img1.svg) no-repeat;
  background-size: 92px 39px;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.recruit-contents .ttl-box .ttl-en {
  font-size: 66px;
  letter-spacing: 0.05em;
}
.recruit-contents .ttl-box .ttl-jp {
  margin-top: 10px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.11em;
}
.recruit-contents .top-info-text {
  margin-top: 40px;
  font-size: 22px;
  letter-spacing: 0.11em;
  line-height: 36px;
  text-align: center;
  color: #464646;
  opacity: 0;
}
.recruit-contents .top-info-text.is-active {
  animation: fadeInUp 1s linear forwards;
}
.recruit-contents .recruit-img {
  margin-top: 40px;
  opacity: 0;
}
.recruit-contents .recruit-img.is-active {
  animation: fadeInUp 1s linear forwards;
}
@media (max-width: 768px) {
  .recruit-contents {
    width: calc(100% - 40px);
    margin: 60px auto 0 auto;
  }
  .recruit-contents .ttl-box {
    padding-top: 55px;
  }
  .recruit-contents .ttl-box .ttl-en {
    font-size: 32px;
  }
  .recruit-contents .ttl-box .ttl-jp {
    margin-top: 10px;
    font-size: 14px;
  }
  .recruit-contents .top-info-text {
    margin-top: 30px;
    font-size: 16px;
    line-height: 24px;
  }
  .recruit-contents .recruit-img {
    margin-top: 20px;
  }
}

.cmn-footer {
  position: relative;
  width: 100%;
  height: 400px;
  background: #ffffe3;
}
.cmn-footer:before {
  content: "";
  position: absolute;
  inset: 0;
  background: #f7f7ef;
  border-radius: 0 260px 0 0;
}
.cmn-footer .footer-inner {
  width: 100%;
  max-width: 1100px;
  padding: 78px 20px 0 20px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.cmn-footer .footer-inner .parts-img1 {
  position: absolute;
  top: -20px;
  right: 148px;
  width: calc(204 / 1100 * 100%);
}
.cmn-footer .footer-inner .parts-img2 {
  position: absolute;
  top: 100px;
  right: 0;
  width: calc(122 / 1100 * 100%);
}
.cmn-footer .footer-inner .footer-info-box {
  display: flex;
  align-items: center;
  display: flex;
}
.cmn-footer .footer-inner .footer-info-box .footer-logo {
  display: block;
  width: 240px;
}
.cmn-footer .footer-inner .footer-info-box .info-text {
  width: calc(100% - 240px -35px);
  margin-left: 35px;
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 0.11em;
  line-height: 28px;
  text-align: left;
  color: #23ac38;
}
.cmn-footer .footer-inner .copyright-text {
  margin-top: 35px;
  font-weight: bold;
  font-size: 12px;
  letter-spacing: 0.11em;
  line-height: 1;
  text-align: center;
  color: #bfbfbf;
}
@media (max-width: 768px) {
  .cmn-footer {
    height: auto;
    background: #ffffe3;
  }
  .cmn-footer:before {
    content: "";
    border-radius: 0 120px 0 0;
  }
  .cmn-footer .footer-inner {
    width: calc(100% - 40px);
    max-width: auto;
    padding: 70px 0 40px 0;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }
  .cmn-footer .footer-inner .parts-img1 {
    position: absolute;
    top: -25px;
    left: 0;
    right: auto;
    width: calc(125 / 375 * 100%);
  }
  .cmn-footer .footer-inner .parts-img2 {
    display: none;
  }
  .cmn-footer .footer-inner .footer-info-box {
    display: block;
  }
  .cmn-footer .footer-inner .footer-info-box .footer-logo {
    width: 185px;
    margin: 0 auto;
  }
  .cmn-footer .footer-inner .footer-info-box .info-text {
    width: calc(100% - 40px);
    margin: 35px auto 0 auto;
    font-size: 16px;
    line-height: 24px;
  }
  .cmn-footer .footer-inner .copyright-text {
    margin-top: 35px;
    font-size: 12px;
    line-height: 18px;
  }
}

.modal__container {
  width: calc(1174 / 1366 * 100%);
  max-width: 1174px;
  padding: 50px 100px;
  position: relative;
  overflow: visible;
}
.modal__container .modal-swiper {
  overflow: hidden;
}
.modal__container .btn_modal__close {
  width: 26px;
  position: absolute;
  top: 0;
  right: -50px;
  cursor: pointer;
}
.modal__container .modal__content-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.modal__container .modal__content-inner .event-img-box {
  width: 55%;
  position: relative;
}
.modal__container .modal__content-inner .event-img-box .event-img-list .event-img {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  background-color: #eaeaea;
}
.modal__container .modal__content-inner .event-img-box .event-img-list .event-img .bg-img {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  -webkit-filter: brightness(1.2) blur(5px);
  filter: brightness(1.2) blur(5px);
}
.modal__container .modal__content-inner .event-img-box .event-img-list .event-img img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.modal__container .modal__content-inner .event-img-box .info-tab {
  position: absolute;
  left: 0;
  top: 0;
  font-family: "Montserrat", serif;
  font-weight: bold;
  font-size: 12px;
  letter-spacing: 0.04em;
  line-height: 1;
  display: flex;
  padding: 8px 8px 7px 8px;
  background-color: #fff;
  z-index: 10;
}
.modal__container .modal__content-inner .event-img-box .info-tab .tab-text {
  color: #adadad;
  margin-left: 8px;
}
.modal__container .modal__content-inner .event-info {
  width: 40%;
}
.modal__container .modal__content-inner .event-info .event-date {
  font-family: "Montserrat", serif;
  font-weight: normal;
  font-size: 12px;
  letter-spacing: 0.11em;
  line-height: 1;
  margin-bottom: 30px;
}
.modal__container .modal__content-inner .event-info .shop-name {
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 14px;
  letter-spacing: 0.07em;
  line-height: 24px;
  text-align: left;
}
.modal__container .modal__content-inner .event-info .event-ttl {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.07em;
  line-height: 24px;
}
.modal__container .modal__content-inner .event-info .event-text {
  margin-top: 20px;
  font-size: 13px;
  letter-spacing: 0.07em;
  line-height: 26px;
}
.modal__container .modal__content-inner .event-info .event-bottom-box {
  margin-top: 40px;
}
.modal__container .modal__content-inner .event-info .event-bottom-box .item-box {
  display: flex;
  align-items: center;
  margin-top: 12px;
}
.modal__container .modal__content-inner .event-info .event-bottom-box .item-box:first-child {
  margin-top: 0;
}
.modal__container .modal__content-inner .event-info .event-bottom-box .item-box .item-icon {
  width: 30px;
  display: flex;
  align-items: center;
}
.modal__container .modal__content-inner .event-info .event-bottom-box .item-box .item-icon.calendar img {
  width: 15.5px;
}
.modal__container .modal__content-inner .event-info .event-bottom-box .item-box .item-icon.place img {
  width: 15px;
}
.modal__container .modal__content-inner .event-info .event-bottom-box .item-box .item-text {
  width: calc(100% - 30px);
  font-size: 13px;
  letter-spacing: 0.11em;
  line-height: 20px;
}
.modal__container .modal__content-inner .event-info .event-bottom-box .item-box .item-text.calendar {
  font-family: "Montserrat", serif;
  font-size: 14px;
  letter-spacing: 0.11em;
  line-height: 1;
}
@media (max-width: 768px) {
  .modal__container {
    width: 100%;
    max-width: 600px;
    max-height: calc(100vh - 100px);
    padding: 0;
    margin: 0;
  }
  .modal__container .modal__content_wrap {
    overflow: hidden;
    height: 100%;
    max-height: calc(100vh - 100px);
  }
  .modal__container .modal__content {
    color: #222;
    margin: 0;
    overflow: auto;
  }
  .modal__container .btn_modal__close {
    width: 86.5px;
    position: absolute;
    top: -38px;
    right: 20px;
    cursor: pointer;
  }
  .modal__container .modal__content-inner {
    display: block;
    height: 100%;
    max-height: calc(100vh - 100px);
  }
  .modal__container .modal__content-inner .event-img-box {
    width: 100%;
    position: relative;
  }
  .modal__container .modal__content-inner .event-img-box .info-tab {
    position: absolute;
    left: 0;
    top: 0;
    font-family: "Montserrat", serif;
    font-weight: bold;
    font-size: 12px;
    letter-spacing: 0.04em;
    line-height: 1;
    display: flex;
    padding: 8px 8px 7px 8px;
    background-color: #fff;
    z-index: 10;
  }
  .modal__container .modal__content-inner .event-img-box .info-tab .tab-text {
    color: #adadad;
    margin-left: 8px;
  }
  .modal__container .modal__content-inner .event-info {
    width: calc(100% - 40px);
    margin: 60px auto 0 auto;
    padding-bottom: 50px;
  }
  .modal__container .modal__content-inner .event-info .event-date {
    font-size: 14px;
  }
  .modal__container .modal__content-inner .event-info .event-ttl {
    font-size: 16px;
  }
  .modal__container .modal__content-inner .event-info .event-text {
    margin-top: 20px;
    font-size: 14px;
    letter-spacing: 0.07em;
    line-height: 26px;
  }
  .modal__container .modal__content-inner .event-info .event-bottom-box {
    margin-top: 40px;
  }
  .modal__container .modal__content-inner .event-info .event-bottom-box .item-box {
    display: flex;
    align-items: center;
    margin-top: 12px;
  }
  .modal__container .modal__content-inner .event-info .event-bottom-box .item-box:first-child {
    margin-top: 0;
  }
  .modal__container .modal__content-inner .event-info .event-bottom-box .item-box .item-text {
    font-size: 14px;
  }
}
