@charset "UTF-8";
/* =========================================================
colors
========================================================= */
/*
    変数
*/
/* font */
/* color */
/* switching */
/*
    共通style
*/
/* -- btn --*/
/* -- crm -- */
/* -- 中央配置 -- */
/* -- アニメーション -- */
/* フェードアップ */
@import url("https://fonts.googleapis.com/css?family=Roboto+Condensed:700&display=swap");
.mv-tit {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s, transform 0.6s;
}
.mv-tit.on {
  transform: translateY(0);
  opacity: 1;
}

/* ぽよん */
.mv-img {
  opacity: 0;
  transform: scale(0.5);
}
.mv-img.on {
  animation: poyon 0.5s ease forwards;
}
.mv-img01, .mv-img02 {
  opacity: 1;
  transform: scale(1);
  animation: none !important;
}

@keyframes poyon {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  70% {
    opacity: 1;
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
/* 左右に揺れる */
.mv-img {
  display: block;
  transform-style: preserve-3d;
}
.mv-img:nth-child(2n+1).act:not(.mv-img01, .mv-img02) span {
  display: block;
  animation: rlanm 3s infinite steps(1, end) normal;
}
.mv-img:nth-child(2n+1).act:not(.mv-img01, .mv-img02) span img {
  width: 200%;
  max-width: none;
}
.mv-img:nth-child(2n).act:not(.mv-img01, .mv-img02) span {
  display: block;
  animation: rlanm 3s infinite steps(1, end) reverse;
}
.mv-img:nth-child(2n).act:not(.mv-img01, .mv-img02) span img {
  width: 200%;
  max-width: none;
}

.facility-cnt {
  transform-style: preserve-3d;
}
.facility-cnt > *:nth-child(2n+1) .facility-cnt-imgcnt-subimg span {
  display: block;
  animation: rlanm 3s infinite steps(1, end) normal;
}
.facility-cnt > *:nth-child(2n+1) .facility-cnt-imgcnt-subimg span img {
  width: 200%;
  max-width: none;
}
.facility-cnt > *:nth-child(2n) .facility-cnt-imgcnt-subimg span {
  display: block;
  animation: rlanm 3s infinite steps(1, end) reverse;
}
.facility-cnt > *:nth-child(2n) .facility-cnt-imgcnt-subimg span img {
  width: 200%;
  max-width: none;
}

@keyframes rlanm {
  0% {
    transform: rotate(0) scale(0.5) translate3d(-50%, -50%, 0);
  }
  50% {
    transform: rotate(-10deg) scale(0.5) translate3d(-50%, -50%, 0);
  }
  100% {
    transform: rotate(0) scale(0.5) translate3d(-50%, -50%, 0);
  }
}
/* フェード */
.fade,
.mv-subtit {
  opacity: 0;
  transition: opacity 1.2s;
}
.fade.on,
.mv-subtit.on {
  opacity: 1;
}

/* =========================================================
body
========================================================= */
html {
  font-size: 62.5%;
  letter-spacing: 0.03em;
  line-height: 1.3rem;
}

body {
  font: 20px/1.5 "Zen Maru Gothic", sans-serif;
  color: #653319;
  background: #FFE9CE;
  -webkit-overflow-scrolling: touch;
}
@media screen and (max-width: 900px) {
  body {
    font-size: 16px;
  }
}

a {
  color: #653319;
  text-decoration: none;
  transition: opacity 0.6s;
}
@media screen and (min-width: 901px) {
  a:hover {
    opacity: 0.6;
  }
}

img {
  max-width: 100%;
  height: auto;
}
@media screen and (max-width: 900px) {
  img {
    max-width: none;
    width: 100%;
  }
}

@media print {
  html, body {
    _zoom: 70% !important;
  }
}
main {
  display: block; /*IE*/
}

/* =========================================================
default
========================================================= */
/* =========================================================
PARCO Header
========================================================= */
.phd {
  padding: 0 10px;
  background: #fff;
  border-bottom: 1px solid #ccc;
  overflow: hidden;
}
.phd__in {
  height: 55px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  box-sizing: border-box;
}
.phd__logo a {
  display: inline-block;
  line-height: 0;
  font-size: 0;
  text-decoration: none;
}
.phd__logo__txt {
  width: 13px;
  height: 26px;
  margin-right: 2px;
}
.phd__logo__img {
  width: 92px;
  height: 27px;
  vertical-align: bottom;
  margin-bottom: -1px;
}
.phd__logo__img.parcoya-ueno {
  width: 155px;
  height: 25px;
}
.phd__sns {
  display: flex;
  align-items: center;
  justify-content: center;
}
.phd__sns li {
  margin-right: 8px;
}
.phd__sns li:last-child {
  margin-right: 0;
}
.phd__sns li a {
  display: flex;
  align-items: center;
  width: 35px;
  height: 35px;
  background: #222;
  border-radius: 50%;
}
@media screen and (min-width: 769px) {
  .phd__sns li a {
    width: 28px;
    height: 28px;
  }
  .phd__sns li a:hover {
    opacity: 0.7;
  }
}
.phd__sns li a svg {
  fill: #FFF;
  width: 100%;
}

@media screen and (min-width: 769px) {
  .phd {
    padding: 0 20px;
  }
  .phd__in {
    height: 64px;
  }
  .phd__logo__txt {
    display: inline-block;
    font-size: 1.5rem;
    width: 14px;
    height: 32px;
    margin-right: 4px;
    vertical-align: middle;
  }
  .phd__logo__img {
    width: 120px;
    height: 36px;
    vertical-align: middle;
  }
  .phd__logo__img.parcoya-ueno {
    width: 205px;
    height: 34px;
  }
}
.phd__sns li .phd__sns__item__link-facebook {
  background: transparent;
}

.phd__sns li .phd__sns__item__link-facebook svg {
  height: 35px;
}
@media screen and (min-width: 769px) {
  .phd__sns li .phd__sns__item__link-facebook svg {
    height: 28px;
  }
}

.phd__sns li .phd__sns__item__link-x {
  background: #000;
}

.phd__sns li .phd__sns__item__link-x svg {
  fill: #fff;
  height: 18px;
}
@media screen and (min-width: 769px) {
  .phd__sns li .phd__sns__item__link-x svg {
    height: 13px;
  }
}

.phd__sns li .phd__sns__item__link-twitter {
  background: #3AB1DB;
}

.phd__sns li .phd__sns__item__link-twitter svg {
  height: 16px;
}
@media screen and (min-width: 769px) {
  .phd__sns li .phd__sns__item__link-twitter svg {
    height: 11px;
  }
}

.phd__sns li .phd__sns__item__link-lineat {
  background: transparent;
}

.phd__sns li .phd__sns__item__link-lineat svg {
  height: 35px;
}
@media screen and (min-width: 769px) {
  .phd__sns li .phd__sns__item__link-lineat svg {
    height: 28px;
  }
}

.phd__sns li .phd__sns__item__link-instagram {
  background: #d93174;
}

.phd__sns li .phd__sns__item__link-instagram svg {
  height: 19px;
}
@media screen and (min-width: 769px) {
  .phd__sns li .phd__sns__item__link-instagram svg {
    height: 15px;
  }
}

.phd__sns li .phd__sns__item__link-tiktok {
  background: #000000;
}

.phd__sns li .phd__sns__item__link-tiktok svg {
  height: 19px;
}
@media screen and (min-width: 769px) {
  .phd__sns li .phd__sns__item__link-tiktok svg {
    height: 17px;
  }
}

/* =========================================================
PARCO Footer
========================================================= */
.pft {
  font-family: "Noto Sans JP", sans-serif;
  padding: 45px 0 58px;
  background: #222;
  position: relative;
}
@media screen and (min-width: 769px) {
  .pft {
    padding: 50px 0 40px;
  }
}
.pft__in {
  position: relative;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .pft__in {
    max-width: 930px;
  }
}
.pft__logo {
  text-align: center;
}
.pft__logo svg {
  fill: #fff;
  vertical-align: bottom;
}
.pft__logo a {
  text-decoration: none;
}
.pft__logo__txt {
  width: 14px;
  height: 32px;
  margin-right: 4px;
  position: relative;
  top: -1px;
}
.pft__logo__img {
  width: 120px;
  height: 36px;
  vertical-align: bottom;
  margin-bottom: -1px;
}
.pft__logo__img.parcoya-ueno {
  width: 205px;
  height: 34px;
}
.pft__logo.nagoya .pft__logo__txt {
  margin-right: 5px;
}
.pft__pageTop {
  position: fixed;
  bottom: 9px;
  right: 9px;
  z-index: 100;
}
.pft__pageTop a {
  display: block;
  width: 70px;
  height: 70px;
  background: url(../images/pagetop.svg) no-repeat 0 0/100% auto;
  text-indent: 100%;
  overflow: hidden;
  white-space: nowrap;
}
.pft__copyright {
  margin-top: 30px;
  text-align: center;
  line-height: 0;
}
.pft__copyright svg {
  height: 11px;
  fill: #fff;
  overflow: hidden;
}

/* =========================================================
layout
========================================================= */
/* =========================================================
colors
========================================================= */
/*
    変数
*/
/* font */
/* color */
/* switching */
/*
    共通style
*/
/* -- btn --*/
/* -- crm -- */
/* -- 中央配置 -- */
/* -- アニメーション -- */
/* フェードアップ */
.mv-tit {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s, transform 0.6s;
}
.mv-tit.on {
  transform: translateY(0);
  opacity: 1;
}

/* ぽよん */
.mv-img {
  opacity: 0;
  transform: scale(0.5);
}
.mv-img.on {
  animation: poyon 0.5s ease forwards;
}
.mv-img01, .mv-img02 {
  opacity: 1;
  transform: scale(1);
  animation: none !important;
}

@keyframes poyon {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  70% {
    opacity: 1;
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
/* 左右に揺れる */
.mv-img {
  display: block;
  transform-style: preserve-3d;
}
.mv-img:nth-child(2n+1).act:not(.mv-img01, .mv-img02) span {
  display: block;
  animation: rlanm 3s infinite steps(1, end) normal;
}
.mv-img:nth-child(2n+1).act:not(.mv-img01, .mv-img02) span img {
  width: 200%;
  max-width: none;
}
.mv-img:nth-child(2n).act:not(.mv-img01, .mv-img02) span {
  display: block;
  animation: rlanm 3s infinite steps(1, end) reverse;
}
.mv-img:nth-child(2n).act:not(.mv-img01, .mv-img02) span img {
  width: 200%;
  max-width: none;
}

.facility-cnt {
  transform-style: preserve-3d;
}
.facility-cnt > *:nth-child(2n+1) .facility-cnt-imgcnt-subimg span {
  display: block;
  animation: rlanm 3s infinite steps(1, end) normal;
}
.facility-cnt > *:nth-child(2n+1) .facility-cnt-imgcnt-subimg span img {
  width: 200%;
  max-width: none;
}
.facility-cnt > *:nth-child(2n) .facility-cnt-imgcnt-subimg span {
  display: block;
  animation: rlanm 3s infinite steps(1, end) reverse;
}
.facility-cnt > *:nth-child(2n) .facility-cnt-imgcnt-subimg span img {
  width: 200%;
  max-width: none;
}

@keyframes rlanm {
  0% {
    transform: rotate(0) scale(0.5) translate3d(-50%, -50%, 0);
  }
  50% {
    transform: rotate(-10deg) scale(0.5) translate3d(-50%, -50%, 0);
  }
  100% {
    transform: rotate(0) scale(0.5) translate3d(-50%, -50%, 0);
  }
}
/* フェード */
.fade,
.mv-subtit {
  opacity: 0;
  transition: opacity 1.2s;
}
.fade.on,
.mv-subtit.on {
  opacity: 1;
}

/* =========================================================
Main
========================================================= */
/* -- body -- */
body {
  font: 20px/1.5 "Zen Maru Gothic", sans-serif;
  color: #653319;
  background: #FFE9CE;
}
@media screen and (max-width: 900px) {
  body {
    font-size: 16px;
  }
}

/* -- inner -- */
.inner {
  margin: 0 auto;
  width: 100%;
  max-width: 1220px;
}
@media screen and (max-width: 1252px) {
  .inner {
    margin: 0 16px;
    width: auto;
  }
}

/*
    common
*/
/* -- hide -- */
@media screen and (min-width: 901px) {
  .pc_hide {
    display: none !important;
  }
}
@media screen and (max-width: 900px) {
  .sp_hide {
    display: none !important;
  }
}
/*
    contents
*/
/* -- mv -- */
.mv {
  position: relative;
  overflow: hidden;
  padding: 85px 0 13px;
}
.mv-inner {
  position: relative;
  margin: 0 auto;
  max-width: 1250px;
}
.mv-tit {
  text-align: center;
  position: relative;
  z-index: 20;
}
.mv-subtit {
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.11em;
  text-align: center;
  position: relative;
  margin-top: 34px;
  z-index: 20;
}
.mv-subtit > *:not(:last-child) {
  margin-bottom: 11px;
}
.mv-subtit > * > span {
  display: inline-block;
  padding: 0 23px 1px;
  border-radius: 10em;
  background: #FFF;
}
.mv-subtit > * > span > span {
  color: #FF6C00;
}
.mv-img {
  position: absolute;
}
.mv-img01 {
  top: 0;
  left: 0;
}
.mv-img02 {
  top: 0;
  right: 0;
}
.mv-img02 span {
  display: block;
  transform: scale(-1, 1);
}
.mv-img03 {
  top: 1.2%;
  left: 12.2%;
  width: 8.8%;
}
.mv-img04 {
  top: 48.9%;
  left: 1.2%;
  width: 11.1%;
}
.mv-img05 {
  top: 66.3%;
  left: 16.1%;
  width: 8.3%;
}
.mv-img06 {
  top: 1.2%;
  right: 16.3%;
  width: 6.1%;
}
.mv-img07 {
  top: 25.6%;
  right: 7.6%;
  width: 10%;
}
@media screen and (min-width: 901px) and (max-width: 1100px) {
  .mv-img07 {
    right: 1.5%;
  }
}
.mv-img08 {
  top: 64.4%;
  right: 0.1%;
  width: 9.3%;
}
.mv-img09 {
  top: 79.9%;
  right: 15.3%;
  width: 9.3%;
}
@media screen and (max-width: 900px) {
  .mv {
    padding: 15% 0 29px;
  }
  .mv-inner {
    max-width: 600px;
  }
  .mv-tit {
    margin: 0 auto;
    width: 86%;
  }
  .mv-subtit {
    font-size: 16px;
    letter-spacing: 0.06em;
    margin-top: 30%;
  }
  .mv-subtit > *:not(:last-child) {
    margin-bottom: 8px;
  }
  .mv-subtit > * > span {
    padding: 2px 14px 4px;
  }
  .mv-img01 {
    width: 29%;
  }
  .mv-img02 {
    width: 29%;
  }
  .mv-img03 {
    top: 3.5%;
    left: 7.8%;
    width: 18.9%;
  }
  .mv-img04 {
    top: 62%;
    bottom: auto;
    left: 0.2%;
    width: 24.1%;
  }
  .mv-img05 {
    top: 58%;
    bottom: auto;
    right: 2.6%;
    left: auto;
    width: 19.7%;
  }
  .mv-img06 {
    top: 4.8%;
    right: 12.3%;
    width: 13.3%;
  }
  .mv-img07 {
    display: none;
  }
  .mv-img08 {
    top: 71.6%;
    bottom: auto;
    right: auto;
    left: 21.8%;
    width: 20.6%;
  }
  .mv-img09 {
    top: 68.4%;
    bottom: auto;
    right: 29.3%;
    width: 20.3%;
  }
}

/* -- alink -- */
.alink {
  position: relative;
  padding-top: 6.4%;
  background: #FFF4ED;
}
.alink::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  bottom: auto;
  padding-top: 16%;
  background: #FFE9CE url(../images/mv_bg.svg) no-repeat top center/100% auto;
  z-index: 10;
  content: "";
}
.alink .inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 20;
}
.alink .inner > * {
  max-width: 499px;
  width: calc((100% - 16px) / 2);
}
.alink .inner > *:nth-child(2n+1) {
  margin-right: 16px;
}
.alink .inner > * a {
  line-height: 1;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 0;
  height: 100px;
  background: none;
  border: none;
  border-radius: 10rem;
  font-weight: 700;
  font-size: 30px;
  letter-spacing: 0.05em;
  color: #fff;
}
.alink .inner > * a::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  border: 6px solid #FFF;
  border-radius: 10em;
  transition: transform 0.25s;
  content: "";
}
.alink .inner > * a::before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 30px;
  margin: auto 0;
  width: 50px;
  height: 50px;
  background-image: url(../images/icon_arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px auto;
  border-radius: 10em;
  content: "";
  transition: transform 0.6s;
  z-index: 10;
}
.alink .inner > * a span {
  position: relative;
  z-index: 20;
}
@media screen and (min-width: 901px) {
  .alink .inner > * a:hover {
    opacity: 1;
  }
  .alink .inner > * a:hover::after {
    transform: scale(1.05);
  }
}
.alink01 a::after {
  background: #FF6E9B;
}
.alink01 a::before {
  background-color: #DB4372;
}
.alink02 a::after {
  background: #FF6C00;
}
.alink02 a::before {
  background-color: #E24E00;
}
@media screen and (max-width: 900px) {
  .alink {
    padding-top: 15.6%;
  }
  .alink::after {
    padding-top: 15%;
  }
  .alink .inner > * {
    width: calc((100% - 11px) / 2);
  }
  .alink .inner > *:nth-child(2n+1) {
    margin-right: 11px;
  }
  .alink .inner > * a {
    font-size: 22px;
    align-items: flex-start;
    padding: 36px 0 0;
    height: 122px;
    border-radius: 30px;
    box-sizing: border-box;
  }
  .alink .inner > * a::after {
    border-radius: 30px;
  }
  .alink .inner > * a::before {
    top: auto;
    bottom: 19px;
    right: 0;
    left: 0;
    margin: auto;
    width: 30px;
    height: 30px;
    background-image: url(../images/icon_arrow_sp.svg);
    background-size: 15px auto;
  }
}

/* -- kidsmenu -- */
.kidsmenu {
  padding: 80px 0 151px;
  background: #FFF4ED;
}
.kidsmenu-tit {
  text-align: center;
}
.kidsmenu-icon {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-top: 43px;
}
.kidsmenu-icon > * {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.kidsmenu-icon > *:not(:last-child) {
  margin-right: 30px;
}
.kidsmenu-icon > *.chair {
  color: #FF6E9B;
}
.kidsmenu-icon > *.chair span {
  background-image: radial-gradient(circle, #FF6E9B 2px, transparent 2px);
}
.kidsmenu-icon > *.strollers {
  color: #6BB2E8;
}
.kidsmenu-icon > *.strollers span {
  background-image: radial-gradient(circle, #6BB2E8 2px, transparent 2px);
}
.kidsmenu-icon > *.cutlery {
  color: #ABC445;
}
.kidsmenu-icon > *.cutlery span {
  background-image: radial-gradient(circle, #ABC445 2px, transparent 2px);
}
.kidsmenu-icon span {
  font-weight: 700;
  letter-spacing: 0.04em;
  margin: 0 0 4px 8px;
  padding-bottom: 7px;
  background-position: left -3px bottom;
  background-repeat: repeat-x;
  background-size: 10px 4px;
}
.kidsmenu-cnt {
  margin-top: 50px;
}
.kidsmenu-cnt > * {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  margin-right: 5.4%;
  padding: 87px 5.4% 73px;
  border-radius: 0 200px 200px 0;
  background: #FFE2DD;
}
.kidsmenu-cnt > *:not(:last-child) {
  margin-bottom: 80px;
}
.kidsmenu-cnt > * > * {
  position: relative;
  z-index: 20;
}
.kidsmenu-cnt-img {
  width: 43.783%;
  max-width: 500px;
}
.kidsmenu-cnt-txtcnt {
  margin: 38px 0 0 5.2%;
  width: 48.774%;
  max-width: 558px;
}
.kidsmenu-cnt-txtcnt-box {
  display: grid;
  grid-template-columns: 35.824% 60.001%;
  grid-template-rows: 50px 1fr;
  gap: 0 21px;
}
.kidsmenu-cnt-txtcnt-box-icon {
  grid-column: 1/2;
  grid-row: 1/3;
  margin-top: 2px;
}
.kidsmenu-cnt-txtcnt-box-detail {
  grid-column: 2/3;
  grid-row: 1/2;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
}
.kidsmenu-cnt-txtcnt-box-detail-floor {
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #FFF;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2px 26px 0 0;
  width: 90px;
  height: 45px;
  background: #653319;
  border-radius: 10em;
}
.kidsmenu-cnt-txtcnt-box-detail .kidsmenu-icon {
  margin-top: 0;
}
.kidsmenu-cnt-txtcnt-box-detail .kidsmenu-icon > *:not(:last-child) {
  margin-right: 14px;
}
.kidsmenu-cnt-txtcnt-box-info {
  grid-column: 2/3;
  grid-row: 2/3;
  margin-top: 21px;
}
.kidsmenu-cnt-txtcnt-box-info-shop {
  font-weight: 700;
  font-size: 28px;
  line-height: 1.3571428571em;
  letter-spacing: 0.04em;
  color: #FF6E9B;
}
.kidsmenu-cnt-txtcnt-box-info-category {
  font-weight: 700;
  line-height: 1.3em;
  letter-spacing: 0.04em;
  margin-top: 13px;
}
.kidsmenu-cnt-txtcnt-box-info-tell {
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  margin-top: 17px;
}
.kidsmenu-cnt-txtcnt-box-info-tell > * {
  vertical-align: middle;
}
.kidsmenu-cnt-txtcnt-box-info-tell span {
  position: relative;
  top: 1px;
  margin-left: 9px;
}
@media screen and (min-width: 900px) and (max-width: 1215px) {
  .kidsmenu-cnt-txtcnt-box {
    grid-template-rows: 107px 1fr;
  }
  .kidsmenu-cnt-txtcnt-box-detail {
    display: block;
  }
  .kidsmenu-cnt-txtcnt-box-detail .kidsmenu-icon {
    justify-content: flex-start;
    margin-top: 10px;
  }
}
.kidsmenu-cnt-txtcnt-btn {
  margin-top: 56px;
  max-width: 370px;
}
.kidsmenu-cnt-txtcnt-btn a {
  line-height: 1;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 1px 10px 0 17px;
  height: 80px;
  background: none;
  border: none;
  border-radius: 10rem;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.05em;
  color: #fff;
  box-sizing: border-box;
}
.kidsmenu-cnt-txtcnt-btn a::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  border-radius: 10em;
  background: #FF6E9B;
  transition: transform 0.25s;
  content: "";
}
.kidsmenu-cnt-txtcnt-btn a span {
  position: relative;
  z-index: 20;
}
.kidsmenu-cnt-txtcnt-btn a img {
  position: relative;
  top: -2px;
  padding-left: 11px;
  z-index: 20;
}
@media screen and (min-width: 901px) {
  .kidsmenu-cnt-txtcnt-btn a:hover {
    opacity: 1;
  }
  .kidsmenu-cnt-txtcnt-btn a:hover::after {
    transform: scale(1.05);
  }
}
.kidsmenu-cnt-deco {
  position: absolute;
  z-index: 10;
}
.kidsmenu-cnt > *:nth-child(1) .kidsmenu-cnt-deco {
  right: -1px;
  bottom: -21px;
}
.kidsmenu-cnt > *:nth-child(2) .kidsmenu-cnt-deco {
  left: -5px;
  bottom: -19px;
}
.kidsmenu-cnt > *:nth-child(3) .kidsmenu-cnt-deco {
  right: -7px;
  bottom: -24px;
}
.kidsmenu-cnt > *:nth-child(4) .kidsmenu-cnt-deco {
  left: -1px;
  bottom: -57px;
}
@media screen and (min-width: 901px) {
  .kidsmenu-cnt > *:nth-child(2n) {
    flex-direction: row-reverse;
    margin-right: 0;
    margin-left: 5.4%;
    border-radius: 200px 0 0 200px;
  }
  .kidsmenu-cnt > *:nth-child(2n) .kidsmenu-cnt-txtcnt {
    margin-right: 5.2%;
    margin-left: 0;
  }
}
@media screen and (max-width: 900px) {
  .kidsmenu {
    overflow: hidden;
    padding: 39px 0 64px;
  }
  .kidsmenu-tit {
    margin: 0 auto;
    max-width: 230px;
  }
  .kidsmenu-icon {
    justify-content: flex-start;
    margin: 26px -38px 0 0;
  }
  .kidsmenu-icon > * {
    margin-bottom: 10px;
  }
  .kidsmenu-icon > *:not(:last-child) {
    margin-right: 38px;
  }
  .kidsmenu-icon img {
    width: 50px;
  }
  .kidsmenu-icon span {
    font-size: 13px;
    margin: 0 0 2px 7px;
    padding-bottom: 8px;
    background-position: left -2px bottom;
  }
  .kidsmenu-cnt {
    margin-top: 20px;
  }
  .kidsmenu-cnt > * {
    display: block;
    margin-right: 0;
    padding: 40px 11.334% 59px;
    border-radius: 0 80px 80px 0;
  }
  .kidsmenu-cnt > *:not(:last-child) {
    margin-bottom: 41px;
  }
  .kidsmenu-cnt-img {
    width: auto;
    max-width: none;
  }
  .kidsmenu-cnt-txtcnt {
    margin: 15px 0 0;
    width: auto;
    max-width: none;
  }
  .kidsmenu-cnt-txtcnt-box {
    grid-template-columns: 124px 1fr;
    grid-template-rows: 124px 1fr;
    gap: 0 12px;
  }
  .kidsmenu-cnt-txtcnt-box-icon {
    grid-row: 1/2;
    margin-top: 0;
  }
  .kidsmenu-cnt-txtcnt-box-icon img {
    overflow: hidden;
    border-radius: 20px;
  }
  .kidsmenu-cnt-txtcnt-box-detail {
    display: block;
    margin-top: 10px;
  }
  .kidsmenu-cnt-txtcnt-box-detail-floor {
    font-size: 20px;
    margin: 0;
    width: 70px;
    height: 35px;
  }
  .kidsmenu-cnt-txtcnt-box-detail .kidsmenu-icon {
    margin-top: 19px;
  }
  .kidsmenu-cnt-txtcnt-box-detail .kidsmenu-icon > * {
    margin-bottom: 0;
  }
  .kidsmenu-cnt-txtcnt-box-detail .kidsmenu-icon > *:not(:last-child) {
    margin-right: 7px;
  }
  .kidsmenu-cnt-txtcnt-box-detail .kidsmenu-icon img {
    width: 46px;
  }
  .kidsmenu-cnt-txtcnt-box-info {
    grid-column: 1/3;
    margin-top: 20px;
  }
  .kidsmenu-cnt-txtcnt-box-info-shop {
    font-size: 24px;
    line-height: 1.5em;
  }
  .kidsmenu-cnt-txtcnt-box-info-category {
    font-size: 18px;
    line-height: 1.3333333333em;
    margin-top: 10px;
  }
  .kidsmenu-cnt-txtcnt-box-info-tell {
    font-size: 20px;
  }
  .kidsmenu-cnt-txtcnt-box-info-tell img {
    width: 40px;
  }
  .kidsmenu-cnt-txtcnt-box-info-tell span {
    top: 0;
  }
  .kidsmenu-cnt-txtcnt-btn {
    margin-top: 30px;
    max-width: none;
  }
  .kidsmenu-cnt-txtcnt-btn a {
    padding: 1px 10px 0 38px;
    height: 60px;
    font-size: 20px;
  }
  .kidsmenu-cnt-txtcnt-btn a img {
    top: -1px;
    padding-left: 10px;
    width: 21px;
  }
  .kidsmenu-cnt > *:nth-child(1) .kidsmenu-cnt-deco {
    right: -4px;
    bottom: -42px;
    width: 92px;
  }
  .kidsmenu-cnt > *:nth-child(2) .kidsmenu-cnt-deco {
    left: -1px;
    bottom: -53px;
    width: 99px;
  }
  .kidsmenu-cnt > *:nth-child(3) .kidsmenu-cnt-deco {
    right: 2px;
    bottom: -51px;
    width: 95px;
  }
  .kidsmenu-cnt > *:nth-child(4) .kidsmenu-cnt-deco {
    left: 4px;
    bottom: -55px;
    width: 96px;
  }
  .kidsmenu-cnt > *:nth-child(2n) {
    border-radius: 80px 0 0 80px;
  }
}

/* -- facility -- */
.facility {
  position: relative;
  overflow: hidden;
  padding: 189px 0 100px;
  background: #FFF2E2;
}
.facility::before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  bottom: auto;
  padding-top: 16%;
  background: #FFF4ED url(../images/facility_bg.svg) no-repeat 0 0/100% auto;
  content: "";
}
.facility::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  top: auto;
  padding-top: 26%;
  background: #FFF2E2 url(../images/facility_bg04.svg) no-repeat left bottom/100% auto;
  content: "";
}
.facility > * {
  position: relative;
  z-index: 20;
}
.facility-tit {
  text-align: center;
}
.facility-cnt {
  margin-top: 35px;
}
.facility-cnt > * {
  position: relative;
}
.facility-cnt > *:not(:last-child) {
  margin-bottom: 72px;
}
.facility-cnt > *:nth-child(2n+1)::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 5.3% 0 0 -1.3%;
  padding-top: 67%;
  width: 115%;
  max-width: 1566px;
  background: url(../images/facility_bg02.svg) no-repeat center/100% auto;
  content: "";
}
.facility-cnt > *:nth-child(3)::after {
  margin: 4.3% 0 0 -1.2%;
  background: url(../images/facility_bg03.svg) no-repeat center/100% auto;
}
.facility-cnt > * .inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  z-index: 20;
}
.facility-cnt-imgcnt {
  position: relative;
  width: 51.64%;
  z-index: 20;
}
.facility-cnt-imgcnt-subimg {
  position: absolute;
}
.facility-cnt > *:nth-child(1) .facility-cnt-imgcnt-subimg {
  top: 75.5%;
  left: 14%;
  width: 24.3%;
}
.facility-cnt > *:nth-child(2) .facility-cnt-imgcnt-subimg {
  top: 69.3%;
  right: 3.8%;
  width: 34.5%;
}
.facility-cnt > *:nth-child(3) .facility-cnt-imgcnt-subimg {
  top: 71.2%;
  right: 11.3%;
  width: 25.8%;
}
.facility-cnt > *:nth-child(4) .facility-cnt-imgcnt-subimg {
  position: static;
}
.facility-cnt > *:nth-child(4) .facility-cnt-imgcnt-subimg span {
  position: absolute;
}
.facility-cnt > *:nth-child(4) .facility-cnt-imgcnt-subimg span:nth-child(1) {
  top: 12.4%;
  left: -4.7%;
  width: 28.9%;
}
.facility-cnt > *:nth-child(4) .facility-cnt-imgcnt-subimg span:nth-child(2) {
  top: 76.3%;
  right: 4.9%;
  width: 17%;
}
.facility-cnt-txtcnt {
  position: relative;
  overflow: hidden;
  margin-top: 96px;
  width: 40.902%;
  background: #fff;
  border-radius: 40px;
  box-shadow: #FDDBAF 10px 10px 0;
  z-index: 20;
}
.facility-cnt-txtcnt-tit {
  font-weight: 700;
  font-size: 22px;
  line-height: 1.6363636364em;
  letter-spacing: 0.04em;
  margin: -2px 0 18px;
}
.facility-cnt-txtcnt dt {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 36px;
  letter-spacing: 0.04em;
  text-align: center;
  color: #fff;
  height: 100px;
}
.facility-cnt-txtcnt dd {
  font-weight: 700;
  line-height: 1.8em;
  letter-spacing: 0.04em;
  padding: 40px;
}
.facility-cnt-txtcnt-table tr:not(:last-child) td {
  padding-bottom: 24px;
}
.facility-cnt-txtcnt-table th {
  vertical-align: top;
  padding-right: 21px;
}
.facility-cnt-txtcnt-table th span {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  width: 90px;
  height: 45px;
  background: #653319;
  border-radius: 10em;
}
.facility-cnt-txtcnt-table td {
  vertical-align: top;
  padding-top: 5px;
}
.facility-cnt-txtcnt-table-come {
  font-size: 14px;
  letter-spacing: 0.04em;
  margin-top: 4px;
}
.facility-cnt > *:nth-child(1) .facility-cnt-txtcnt dt {
  background: #FF6E9B;
}
.facility-cnt > *:nth-child(2) .facility-cnt-txtcnt {
  margin-top: 40px;
}
.facility-cnt > *:nth-child(2) .facility-cnt-txtcnt dt {
  background: #ABC445;
}
.facility-cnt > *:nth-child(3) .facility-cnt-txtcnt {
  margin-top: 62px;
}
.facility-cnt > *:nth-child(3) .facility-cnt-txtcnt dt {
  background: #6BB2E8;
}
.facility-cnt > *:nth-child(4) .facility-cnt-txtcnt {
  margin-top: 158px;
}
.facility-cnt > *:nth-child(4) .facility-cnt-txtcnt dt {
  background: #FFB31A;
}
.facility-cnt-deco {
  position: absolute;
  z-index: 10;
}
.facility-cnt > *:nth-child(1) .facility-cnt-deco {
  top: -96px;
  right: 0;
}
.facility-cnt > *:nth-child(2) .facility-cnt-deco {
  top: -85px;
  left: 41%;
}
.facility-cnt > *:nth-child(3) .facility-cnt-deco {
  top: -109px;
  left: -42px;
}
.facility-cnt > *:nth-child(4) .facility-cnt-deco {
  top: -71px;
  left: 41%;
}
@media screen and (min-width: 901px) {
  .facility-cnt > *:nth-child(2n) .inner {
    flex-direction: row-reverse;
  }
}
.facility-btn {
  margin: 53px auto 0;
  max-width: 450px;
}
.facility-btn a {
  line-height: 1;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 1px 10px 0 17px;
  height: 100px;
  background: none;
  border: none;
  border-radius: 10rem;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.05em;
  color: #fff;
  box-sizing: border-box;
}
.facility-btn a::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  border-radius: 10em;
  background: #FF6C00;
  transition: transform 0.25s;
  content: "";
}
.facility-btn a span {
  position: relative;
  z-index: 20;
}
.facility-btn a img {
  position: relative;
  top: -2px;
  padding-left: 11px;
  z-index: 20;
}
@media screen and (min-width: 901px) {
  .facility-btn a:hover {
    opacity: 1;
  }
  .facility-btn a:hover::after {
    transform: scale(1.05);
  }
}
@media screen and (min-width: 900px) and (max-width: 1035px) {
  .facility-cnt > *:not(:last-child) {
    margin-bottom: 150px;
  }
  .facility-cnt-imgcnt {
    width: calc(95.5% - 405px);
  }
  .facility-cnt-txtcnt {
    width: 405px;
  }
  .facility-cnt-txtcnt dd {
    padding: 20px;
  }
  .facility-cnt > *:nth-child(2) .facility-cnt-txtcnt {
    margin-top: 10px;
  }
  .facility-cnt > *:nth-child(3) .facility-cnt-txtcnt {
    margin-top: 40px;
  }
  .facility-cnt > *:nth-child(4) .facility-cnt-txtcnt {
    margin-top: 90px;
  }
}
@media screen and (max-width: 900px) {
  .facility {
    padding: 100px 0 80px;
  }
  .facility::after {
    bottom: 132px;
  }
  .facility::before {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    top: auto;
    padding-top: 132px;
    background: #FFE9CE;
    content: "";
  }
  .facility-tit {
    margin: 0 -5px 0;
  }
  .facility-tit img {
    max-width: 352px;
  }
  .facility-cnt {
    margin-top: 35px;
  }
  .facility-cnt > *:not(:last-child) {
    margin-bottom: 60px;
  }
  .facility-cnt > *:nth-child(2n+1)::after {
    transform: translate(-50%, -50%) rotate(-4deg);
    margin: 5% 0 0 40%;
    padding-top: 220%;
    width: 385%;
    max-width: none;
  }
  .facility-cnt > *:nth-child(3)::after {
    margin: 14% 0 0 -6%;
  }
  .facility-cnt > * .inner {
    display: block;
  }
  .facility-cnt-imgcnt {
    width: auto;
  }
  .facility-cnt > *:nth-child(1) .facility-cnt-imgcnt-subimg {
    top: 72%;
    left: 9%;
  }
  .facility-cnt > *:nth-child(2) .facility-cnt-imgcnt-subimg {
    top: 70%;
    right: 1.8%;
    width: 32.5%;
  }
  .facility-cnt > *:nth-child(3) .facility-cnt-imgcnt-subimg {
    top: 71%;
    right: 12.3%;
    width: 25.8%;
  }
  .facility-cnt > *:nth-child(4) .facility-cnt-imgcnt-subimg span:nth-child(1) {
    top: 18.4%;
    left: -1.7%;
    width: 23.2%;
  }
  .facility-cnt > *:nth-child(4) .facility-cnt-imgcnt-subimg span:nth-child(2) {
    top: 77%;
    right: 5.9%;
    width: 14%;
  }
  .facility-cnt-txtcnt {
    margin-top: 5px;
    width: auto;
    border-radius: 20px;
    box-shadow: #FDDBAF 6px 6px 0;
  }
  .facility-cnt-txtcnt-tit {
    font-size: 18px;
    line-height: 2em;
    margin: -5px 0 8px;
  }
  .facility-cnt-txtcnt dt {
    font-size: 22px;
    padding-top: 2px;
    height: 60px;
    box-sizing: border-box;
  }
  .facility-cnt-txtcnt dd {
    line-height: 1.75em;
    padding: 20px 20px 22px;
  }
  .facility-cnt-txtcnt-table tr:not(:last-child) td {
    padding-bottom: 23px;
  }
  .facility-cnt-txtcnt-table th {
    padding-right: 10px;
  }
  .facility-cnt-txtcnt-table th span {
    font-size: 20px;
    width: 60px;
    height: 36px;
  }
  .facility-cnt-txtcnt-table-come {
    margin-top: 14px;
  }
  .facility-cnt > *:nth-child(2) .facility-cnt-txtcnt, .facility-cnt > *:nth-child(3) .facility-cnt-txtcnt, .facility-cnt > *:nth-child(4) .facility-cnt-txtcnt {
    margin-top: 5px;
  }
  .facility-cnt > *:nth-child(1) .facility-cnt-deco {
    top: 5px;
    right: -24px;
    width: 91px;
  }
  .facility-cnt > *:nth-child(2) .facility-cnt-deco {
    top: 0px;
    left: -16px;
    width: 98px;
  }
  .facility-cnt > *:nth-child(3) .facility-cnt-deco {
    top: 5.6%;
    left: -47px;
    width: 97px;
  }
  .facility-cnt > *:nth-child(4) .facility-cnt-deco {
    top: 4px;
    left: auto;
    right: -4px;
    width: 91px;
  }
  .facility-btn {
    margin: 60px auto 0;
    max-width: 450px;
  }
  .facility-btn a {
    padding: 0 10px 0 40px;
    height: 80px;
    font-size: 22px;
  }
  .facility-btn a img {
    top: 0;
    padding-left: 16px;
    width: 25px;
  }
}/*# sourceMappingURL=style.css.map */