@charset "UTF-8";
/*要素のフォントサイズやマージン・パディングをリセットしています*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/*行の高さをフォントサイズと同じにしています*/
body {
  line-height: 1;
}

/*新規追加要素のデフォルトはすべてインライン要素になっているので、section要素などをブロック要素へ変更しています*/
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

/*nav要素内ulのマーカー（行頭記号）を表示しないようにしています*/
/*nav ul {
    list-style:none;
}*/
ol,
ul {
  list-style: none;
}

/*引用符の表示が出ないようにしています*/
blockquote,
q {
  quotes: none;
}

/*blockquote要素、q要素の前後にコンテンツを追加しないように指定しています*/
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

/*a要素のフォントサイズなどをリセットしフォントの縦方向の揃え位置を親要素のベースラインに揃えるようにしています*/
a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* ins要素のデフォルトをセットし、色を変える場合はここで変更できるようにしています */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* mark要素のデフォルトをセットし、色やフォントスタイルを変える場合はここで変更できるようにしています
また、mark要素とは、文書内の検索結果で該当するフレーズをハイライトして、目立たせる際に使用するようです。*/
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

/*テキストに打ち消し線が付くようにしています*/
del {
  text-decoration: line-through;
}

/*IEではデフォルトで点線を下線表示する設定ではないので、下線がつくようにしています
また、マウスオーバー時にヘルプカーソルの表示が出るようにしています*/
abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

/*隣接するセルのボーダーを重ねて表示し、間隔を0に指定しています*/
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*水平罫線のデフォルトである立体的な罫線を見えなくしています*/
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

/*縦方向の揃え位置を中央揃えに指定しています*/
input,
select {
  vertical-align: middle;
}

/*画像を縦に並べた時に余白が出ないように*/
img {
  vertical-align: top;
  font-size: 0;
  line-height: 0;
  max-width: 100%;
}

/*box-sizingを全ブラウザに対応*/
*,
*:before,
*:after {
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: min(16px, 2.76vw);
}

body {
  max-width: 580px;
  margin: auto;
  font-family: "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  line-height: 1.6;
}

img {
  width: 100%;
}

a {
  color: #040000;
  text-decoration: none;
}

a:hover {
  color: #A80E78;
  text-decoration: none;
}

a:hover img {
  opacity: 0.8;
  filter: alpha(opacity=70);
  -ms-filter: "alpha(opacity=70)";
}

.gmap {
  height: 0;
  overflow: hidden;
  padding-bottom: 45%;
  position: relative;
}

.gmap iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

/* 汎用 */
.sans-serif {
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", HGS明朝E, メイリオ, Meiryo, serif;
}

.pt10 {
  padding-top: 0.8rem;
}

.pb10 {
  padding-bottom: 0.8rem;
}

.mb10 {
  margin-bottom: 0.8rem;
}

.pt20 {
  padding-top: 1.6rem;
}

.pb20 {
  padding-bottom: 1.6rem;
}

.mb20 {
  margin-bottom: 1.6rem;
}

.pt30 {
  padding-top: 2.4rem;
}

.pb30 {
  padding-bottom: 2.4rem;
}

.mb30 {
  margin-bottom: 2.4rem;
}

.pt40 {
  padding-top: 3.2rem;
}

.pb40 {
  padding-bottom: 3.2rem;
}

.mb40 {
  margin-bottom: 3.2rem;
}

.pt50 {
  padding-top: 4rem;
}

.pb50 {
  padding-bottom: 4rem;
}

.mb50 {
  margin-bottom: 4rem;
}

.pt60 {
  padding-top: 4.8rem;
}

.pb60 {
  padding-bottom: 4.8rem;
}

.mb60 {
  margin-bottom: 4.8rem;
}

.pt70 {
  padding-top: 5.6rem;
}

.pb70 {
  padding-bottom: 5.6rem;
}

.mb70 {
  margin-bottom: 5.6rem;
}

.pt80 {
  padding-top: 6.4rem;
}

.pb80 {
  padding-bottom: 6.4rem;
}

.mb80 {
  margin-bottom: 6.4rem;
}

.pt90 {
  padding-top: 7.2rem;
}

.pb90 {
  padding-bottom: 7.2rem;
}

.mb90 {
  margin-bottom: 7.2rem;
}

.pl5 {
  padding-left: 5%;
}

.pl10 {
  padding-left: 10%;
}

.wd10 {
  width: 10%;
}

.wd15 {
  width: 15%;
}

.wd20 {
  width: 20%;
}

.wd25 {
  width: 25%;
}

.wd30 {
  width: 30%;
}

.wd35 {
  width: 35%;
}

.wd40 {
  width: 40%;
}

.wd45 {
  width: 45%;
}

.wd50 {
  width: 50%;
}

.wd55 {
  width: 55%;
}

.wd60 {
  width: 60%;
}

.wd65 {
  width: 65%;
}

.wd70 {
  width: 70%;
}

.wd75 {
  width: 75%;
}

.wd80 {
  width: 80%;
}

.wd85 {
  width: 85%;
}

.wd90 {
  width: 90%;
}

.wd95 {
  width: 95%;
}

header {
  background-color: #fff;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
}

.header__logo {
  width: 44%;
}

.header__btn {
  width: 35%;
}

/* header */
#logo {
  width: 100%;
  display: block;
  box-sizing: border-box;
}

#logo img {
  margin: auto;
  padding: 0;
  display: block;
}

/* メニュー */
.menu {
  text-align: center;
  position: fixed;
  bottom: 0;
  z-index: 999999;
  background-color: rgba(255, 255, 255, 0.5);
  padding: 0.2rem 0;
  opacity: 1;
  margin: 0;
  width: 100%;
  max-width: 580px;
  /*	box-shadow: 0px -4px 17px -6px rgba(0, 0, 0, 0.3); */
}

.menu::before {
  padding-top: 13.6875629953%;
  display: block;
  content: "";
}

.menu__img--1 {
  position: absolute;
  top: 20.1627605335%;
  left: 3.2560475658%;
  width: 46.5714655248%;
}

.menu__img--2 {
  position: absolute;
  top: 20.1627605335%;
  left: 51.5523821842%;
  width: 46.5714655248%;
}

footer .arrow {
  position: relative;
  display: inline-block;
  padding-left: 1.5rem;
}

footer .arrow::before {
  content: "";
  transform: rotate(45deg);
  position: absolute;
  top: 0.55rem;
  left: 0;
  width: 0.8rem;
  height: 0.8rem;
  border-top: 0.08rem solid #A80E78;
  border-right: 0.08rem solid #A80E78;
}

.footer-list {
  display: flex;
  flex-wrap: wrap;
  width: 90%;
  margin-left: 5%;
  border-top: #990e78 2px solid;
  font-size: 1.2rem;
  padding-top: 0.5rem;
}
.footer-list__item {
  width: 50%;
  padding-top: 0.8rem;
}

.footer__logo {
  padding-top: 2rem;
  padding-bottom: 2rem;
  width: 90%;
  padding-left: 5%;
  margin-bottom: 4rem;
}

.footer-left {
  width: 49%;
  margin-right: 2%;
}

.footer-right {
  width: 49%;
}

.sns__list {
  display: flex;
  justify-content: space-around;
  width: 70%;
  margin-left: 15%;
  margin-bottom: 1.5rem;
}

.min {
  font-size: 0.952rem;
  width: 86%;
  margin-left: 7%;
  box-sizing: border-box;
  padding-top: 1rem;
  padding-bottom: 1rem;
  text-align: justify;
}

.bcbl {
  background-color: #000;
}

.shopinfo {
  display: flex;
  justify-content: space-between;
  width: 90%;
  margin-left: 5%;
  line-height: 1.3;
}
.shopinfo__text {
  width: 60%;
}
.shopinfo__text--title {
  font-size: 1.4rem;
  font-weight: 900;
  line-height: 1.3;
  padding-bottom: 0.2rem;
}
.shopinfo__text--attention {
  background-color: #ffe400;
  color: #d90012;
  text-align: center;
  width: 70%;
  letter-spacing: 0.1em;
  font-weight: 900;
  margin-top: 0.4rem;
}
.shopinfo__map {
  width: 40%;
}

#move {
  background-color: #e45294;
  padding: 30px 5%;
  z-index: 9999;
}

#move-wrap {
  width: 100%;
}

.move {
  width: 100%;
}

.none {
  display: none;
}

/* キッズ　店舗一覧 */
#kids-shop-list {
  background-color: #fff;
  padding: 2.5rem 0;
  width: 94%;
  margin-left: 3%;
}

.shop__list {
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
}

#kids-shop-list .left {
  width: 70%;
}

#kids-shop-list .right {
  width: 30%;
}

#kids-shop-list span.pg {
  padding: 3px 5px;
  color: #b30285;
  border: 1px solid #b30285;
  margin-right: 3px;
  border-radius: 5px;
  font-size: 1rem;
}

/* --- アコーディオン --- */
.city__list > div {
  border-bottom: #535BA3 1px solid;
  padding-bottom: 5%;
  margin-bottom: 5%;
}
.city__list > div:first-child {
  padding-top: 5%;
}
.city__list > div:last-child {
  border-bottom: none;
}

.city {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  text-align: center;
  font-size: min(6vw, 32px);
  letter-spacing: 0.14em;
  background-color: #535BA3;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1;
  align-items: center;
  vertical-align: middle;
  padding: 0.3em 0 0.4em;
  position: relative;
  left: 0;
  bottom: 0;
}

.city::after {
  content: "▼";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(-50%, -50%);
  font-size: 15px;
}

.left-name {
  display: flex;
  align-items: flex-end;
  box-sizing: border-box;
}

.shop__name {
  font-family: "Noto Sans JP", sans-serif;
}

.shop__name {
  font-size: min(6.5vw, 37px);
  font-weight: 900;
  color: #aa007a;
  line-height: 1.3;
  width: 63%;
}

.js__shop__list--min span.shop__name {
  font-size: min(5vw, 27px);
  transform: scale(1, 1.2);
  width: 63%;
}

.js__shop__list--umin span.shop__name {
  font-size: min(3.7vw, 21px);
  transform: scale(1, 1.8);
  width: 63%;
  padding-bottom: 0.3em;
}

.shop__aeon {
  font-size: min(2.4vw, 14px);
  padding-right: 0.2em;
  letter-spacing: -0.05em;
  transform: scale(1, 1);
  font-weight: 900;
  color: #aa007a;
  width: 36%;
}

.shop__tel {
  font-size: min(7.6vw, 45px);
  font-weight: 900;
  color: #aa007a;
  letter-spacing: 0.02em;
  transform: scale(1, 1.05);
  padding-top: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}

.shop__tel span {
  transform: scale(1, 1.1);
  font-size: min(3.7vw, 20px);
  padding-left: 0.4em;
  padding-right: 0.3em;
  letter-spacing: 0.2em;
}

.js--hide {
  display: none;
  opacity: 0;
}

.js--hide.js--on {
  display: block;
  opacity: 1;
}

.js--open:hover {
  cursor: pointer;
}

.ct2 {
  position: relative;
}

.ct2::before {
  padding-top: 92.7586206897%;
  display: block;
  content: "";
}

.ct2__img--0 {
  position: absolute;
  top: 0%;
  left: 0%;
  width: 100%;
}

.ct2__img--1 {
  position: absolute;
  top: 84.3866171004%;
  left: 7.5862068966%;
  width: 85.1724137931%;
}/*# sourceMappingURL=style.css.map */