@charset "UTF-8";
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-style: normal;
  font-size: 100%;
  vertical-align: baseline;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
html {
  overflow-y: scroll;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
input,
textarea {
  margin: 0;
  padding: 0;
}
button {
  padding: 0;
  border: none;
  outline: none;
  font: inherit;
  color: inherit;
  background: none
}
ol,
ul {
  list-style: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
caption,
th {
  text-align: left;
}
a:focus {
  outline: none;
}
html {
  overflow: hidden;
  overflow-y: scroll;
}
body {
  font-family: "Noto Sans JP", YuGothic, "Yu Gothic", "Hiragino Kaku Gothic Pro", "Ã£Æ’â€™Ã£Æ’Â©Ã£â€šÂ®Ã£Æ’Å½Ã¨Â§â€™Ã£â€šÂ´ Pro W3", Ã£Æ’Â¡Ã£â€šÂ¤Ã£Æ’ÂªÃ£â€šÂª, Meiryo, "Ã¯Â¼Â­Ã¯Â¼Â³ Ã¯Â¼Â°Ã£â€šÂ´Ã£â€šÂ·Ã£Æ’Æ’Ã£â€šÂ¯", "Lucida Grande", "Lucida Sans Unicode", Arial, Verdana, sans-serif;
  color: #000;
  font-size: 18px;
  line-height: 1.4;
  overflow: hidden;
  visibility: hidden;
}
body.is-visible {
  visibility: visible;
}
body[data-modal-expanded="true"] {
  overflow: hidden;
}
:target {
  scroll-margin-top: 80px;
}
* {
  box-sizing: border-box;
}
img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: auto;
  border: 0;
  vertical-align: bottom;
}
a,
button {
  color: #000;
  text-decoration: none;
  -webkit-transition: color 0.3s ease, opacity 0.3s ease;
  transition: color 0.3s ease, opacity 0.3s ease;
  cursor: pointer;
}
a:hover,
button:hover {
  opacity: 0.7;
}
input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 16px;
  }
  img {
    width: 100%;
  }
  a:hover,
  button:hover {
    opacity: 1;
  }
}

/*---------------------------
Header & footer
---------------------------*/
header {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 8000;
}
.header__box {
  background: #fff;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  height: 66px;
  border-bottom: 2px solid #eaeaea;
  position: relative;
  z-index: 8002;
}
.header__box__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 100%;
  background-color: #feecd2;
}
.header__box__btn div {
  width: 24px;
  height: 24px;
  position: relative;
  cursor: pointer;
}
.header__box__btn div span {
  display: block;
  height: 3px;
  background: #f39800;
  position: absolute;
  width: 100%;
  left: 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.header__box__btn div span:nth-child(1) {
  top: 0;
}
.header__box__btn div span:nth-child(2) {
  top: 12px;
}
.header__box__btn div span:nth-child(3) {
  top: 24px;
}
.header__box__btn.open div span:nth-child(1) {
  top: 12px;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
.header__box__btn.open div span:nth-child(2) {
  width: 0;
  left: 50%;
}
.header__box__btn.open div span:nth-child(3) {
  top: 12px;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
.header__box__logo {
  -webkit-box-flex: 1;
  flex: 1;
  padding-left: 20px;
}
.header__box__logo a {
  display: block;
  width: 200px;
}
.header__box__lang {
  position: relative;
  margin-right: 20px;
  height: 20px;
}
.header__box__lang dl dt {
  padding-right: 26px;
  color: #000000;
  font-size: 19px;
  font-weight: 700;
  text-align: right;
  vertical-align: middle;
  cursor: pointer;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.header__box__lang dl dt:hover {
  opacity: 0.7;
}
.header__box__lang dl dt:after {
  content: "";
  display: block;
  background: url("../img/common/ic_arrow_orange.svg") no-repeat 100% 50%;
  background-size: 18px 20px;
  width: 90px;
  height: 20px;
  position: absolute;
  top: 5px;
  right: 0;
  bottom: 0;
  margin: auto;
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
  -webkit-transform: rotateX(0);
  transform: rotateX(0);
}
.header__box__lang dl dt.open:after {
  -webkit-transform: rotateX(180deg);
  transform: rotateX(180deg);
}
.header__box__lang dl dd {
  display: none;
  width: 90px;
  margin-top: 8px;
  text-align: center;
  background: #f7ecd6;
}
.header__box__lang dl dd a {
  display: block;
  padding: 8px 5px;
  font-family: "Roboto", sans-serif;
  color: #000;
  font-size: 14px;
  font-weight: bold;
}
.header__box__lang dl dd ul li {
  border-bottom: 1px solid #a3a29e;
}
.header__box__lang dl dd ul li:last-child {
  border-bottom: 0px;
}
.header__box__lang dl dd ul li img {
  width: 20px;
  margin-right: 5px;
}
.header__menu {
  display: none;
  width: 432px;
  height: 100%;
  max-height: 100%;
  padding-top: 66px;
  position: fixed;
  z-index: 8001;
  top: 0;
  right: 0;
  overflow-y: scroll;
}
.header__menu .inner {
  padding: 0 70px 0px 20px;
  background: #f9c270;
}
.header__menu .inner > p {
  text-align: left;
  border-bottom: 1px solid #231815;
  padding: 25px 0;
  font-size: 20px;
  font-weight: 500;
}
.header__menu .primary_list {
  text-align: left;
  display: grid;
  gap: 10px 0;
  margin: 10px 0 0 60px;
  padding-bottom: 10px;
  font-size: 20px;
  font-weight: 500;
}
.header__menu .primary_list > li > a {
  display: block;
  margin: 2px 0 0 2px;
  padding: 10px 5px;
  color: #fff;
}
.header__menu .primary_list > li > a:hover,
.header__menu .primary_list > li > a:active {
  margin: 0;
  border-top: 2px solid #ea5514;
  border-left: 2px solid #ea5514;
  background-color: #f39800;
  opacity: 1;
}
.header__menu .primary_list ul {
  display: grid;
  gap: 25px 0;
  margin: 25px 0 0;
  pointer-events: none;
}
.header__menu .primary_list ul li a {
  margin: 2px 0 0 2px;
  padding: 6px;
  font-size: 16px;
  pointer-events: auto;
  color: #fff;
}
.header__menu .primary_list ul li a:hover,
.header__menu .primary_list ul li a:active {
  margin: 0;
  border-top: 2px solid #ea5514;
  border-left: 2px solid #ea5514;
  background-color: #f39800;
  opacity: 1;
}
.header__menu .sns_banner {
  text-align: left;
  padding: 10px 40px 50px 80px;
  background-color: #fff;
}
.header__menu .sns_banner > p {
  font-size: 16px;
  font-weight: 500;
  color: #f39800;
}
.header__menu .sns_banner .links {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0 50px;
  margin: 20px 0 0;
}
.header__menu .sns_banner .links li {
  width: 38px;
}
.header__menu .sns_banner .links li a {
  display: block;
  width: 100%;
}
.bg_wrapper {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0 0 0 / 50%);
  z-index: 1;
}

.footer__page-top {
  position: fixed;
  bottom: 20px;
  right: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #d1b68f;
  width: 80px;
  height: 80px;
  cursor: pointer;
  z-index: 101;
}
.footer__page-top:hover {
  opacity: 0.7;
}
.footer__page-top img {
  width: 10px;
  margin-bottom: 5px;
  transform: rotate(-90deg);
}
.footer__page-top p {
  font-size: 14px;
  font-weight: bold;
  color: #fff;
}
.footer__banner {
  margin: 60px auto;
  max-width: 880px;
  width: 100%;
  display: grid;
  gap: 20px 0;
}
.footer__banner li {
  width: 100%;
}
.footer__banner li img {
  width: 100%;
}
.footer__mini-banner {
  padding: 20px 0 10px;
}
.footer__mini-banner ul {
  font-size: 0;
}
.footer__mini-banner ul li {
  display: inline-block;
  width: 19.375%;
  margin: 0 5px 10px;
}
.footer__link {
  background: #dcdddd;
  padding: 35px 0;
}
.footer__link .content {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  text-align: left;
}
.footer__link__list {
  width: 24.47917%;
  padding-right: 1.04167%;
  vertical-align: top;
  position: relative;
}
.footer__link__list li a {
  font-size: 12px;
  font-weight: 500;
  line-height: 2.4;
  letter-spacing: 0.2px;
  color: #231815;
}
.footer__link__list.link-last {
  padding-bottom: 90px;
}
.footer__link__list .link-level2 {
  display: block;
}
.footer__link__list .link-level2 li {
  background: url("../img/common/icon_arrow_black_r.png?v700e2ba29355bd5ad2b026364e5d74b1") no-repeat 2px 10px;
  background-size: 4px 6px;
  margin-bottom: 5px;
  padding-left: 12px;
}
.footer__link__list .link-level2 li a {
  color: #231815;
  font-size: 10px;
  line-height: 1.2;
}
.footer__link .link-sns {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  background: #fff;
  width: 100%;
  height: 70px;
  border-radius: 6px;
  position: absolute;
  left: 0;
  bottom: 0;
}
.footer__link .link-sns li {
  width: 21.2766%;
  margin: 0 5px;
}
.footer__about {
  background: #595757;
  padding: 30px 0;
}
.footer__about .content {
  max-width: 1000px !important;
}
.footer__about p {
  margin: 20px;
}
.footer__about p a {
  font-size: 14px;
  font-weight: 400;
  color: #fff;
}
.footer__about ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0 90px;
  justify-content: flex-start;
}
.footer__about ul li {
  text-align: left;
  min-width: 180px;
}
.footer__about ul li a {
  display: inline-block;
  padding: 8px 4px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  color: #fff;
}
.footer__copy {
  border-top: 1px solid #fff;
  background: #595757;
  padding: 10px 0;
  text-align: center;
}
.footer__copy p {
  font-family: "Hiragino Kaku Gothic Pro", "Ã£Æ’â€™Ã£Æ’Â©Ã£â€šÂ®Ã£Æ’Å½Ã¨Â§â€™Ã£â€šÂ´ Pro W3", Ã£Æ’Â¡Ã£â€šÂ¤Ã£Æ’ÂªÃ£â€šÂª, Meiryo, "Ã¯Â¼Â­Ã¯Â¼Â³ Ã¯Â¼Â°Ã£â€šÂ´Ã£â€šÂ·Ã£Æ’Æ’Ã£â€šÂ¯", "Lucida Grande", "Lucida Sans Unicode", Arial, Verdana, sans-serif;
  color: #fff;
  font-size: 10px;
  font-weight: 500;
}
.footer__copy p span {
  display: inline-block;
}
footer .floating_nav {
  display: none;
}
@media screen and (max-width: 767px) {
  .header__box {
    height: 50px;
    border-bottom: 1px solid #eaeaea;
  }
  .header__box__btn {
    margin: 0;
  }
  .header__box__btn div {
    width: 30px;
    height: 21px;
  }
  .header__box__btn div span {
    height: 1px;
  }
  .header__box__btn div span:nth-child(1) {
    top: 0;
  }
  .header__box__btn div span:nth-child(2) {
    top: 10px;
  }
  .header__box__btn div span:nth-child(3) {
    top: 20px;
  }
  .header__box__btn.open div span:nth-child(1) {
    top: 9px;
  }
  .header__box__btn.open div span:nth-child(3) {
    top: 9px;
  }
  .header__box__logo {
  }
  .header__box__logo a {
    width: 143px;
  }
  .header__box__lang {
    height: 11px;
  }
  .header__box__lang dl dt {
    padding-right: 15px;
    font-size: 12px;
    text-align: right;
  }
  .header__box__lang dl dt:after {
    top: 4px;
    background-size: 12px 10px;
    width: 65px;
    height: 11px;
  }
  .header__box__lang dl dd {
    font-size: 11px;
    margin-top: 5px;
  }
  .header__box__lang dl dd a {
    padding: 8px 5px;
    font-size: 11px;
  }
  .header__box__lang dl dd ul li img {
    width: 20px;
  }
  .header__menu {
    width: 100%;
    max-width: 76.5%;
    height: 100%;
    max-height: 100%;
    padding-top: 0px;
    background-color: #fff;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    overflow: -moz-scrollbars-none;
    z-index: 8004;
  }
  .header__menu::-webkit-scrollbar {
    display: none;
  }
  .header__menu .inner {
    position: relative;
    padding: 0 15% 0 5%;
  }
  .header__menu .inner .header__box__btn {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 64px;
    height: 50px;
    display: inline-flex;
    margin: 0;
    background-color: initial;
  }
  .header__menu .inner .header__box__btn.open div span {
    background: #fff;
  }
  .header__menu .inner > p {
    padding: 15px 0;
    font-size: 20px;
  }
  .header__menu .primary_list {
    margin: 30px 0 0 5%;
    font-size: 18px;
  }
  .header__menu .primary_list ul {
    gap: 25px 0;
  }
  .header__menu .primary_list ul li a {
    font-size: 16px;
  }
  .header__menu .sns_banner {
    text-align: left;
    margin: 0;
    padding: 10px 15% 50px 15%;
  }
  .header__menu .sns_banner .links {
    gap: 0 30px;
    margin: 20px 0 0;
  }
  .bg_wrapper {
    z-index: 8003;
  }

  .footer__page-top {
    bottom: 85px;
    right: 10px;
    width: 48px;
    height: 48px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.4s, visibility 0.4s;
    transition: opacity 0.4s, visibility 0.4s;
  }
  .footer__page-top.active {
    opacity: 1;
    visibility: visible;
  }
  .footer__page-top img {
    width: 6px;
  }
  .footer__page-top p {
    font-size: 11px;
  }

  .footer__banner {
    gap: 10px 0;
    margin: 30px auto;
    max-width: 100%;
  }
  .footer__mini-banner {
    padding: 20px 0;
  }
  .footer__link {
    display: none;
  }
  .footer__about .inner {
    padding: 0 !important;
  }
  .footer__about .logo {
    display: block;
    margin: 0 auto;
    padding: 0 10px;
    max-width: 48%;
    width: 100%;
  }
  .footer__about ul {
    justify-content: space-between;
    gap: 0;
    margin: 0 auto;
    padding: 0 10px 0 30px;
    max-width: 596px;
  }
  .footer__about ul li {
    min-width: 200px;
  }
  .footer__about ul li a {
    font-size: 12px;
  }
  .footer__copy {
    padding: 14px 0 20px;
  }
  footer .floating_nav {
    width: 100%;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.8s, visibility 0.8s;
  }
  footer .floating_nav > div {
    background: #feecd2;
    width: 25%;
    padding: 4px 0;
  }
  footer .floating_nav > div a {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: relative;
  }
  footer .floating_nav > div:not(:first-child) a {
    border-left: 1px solid #a2a2a2;
  }
  footer .floating_nav > div a img {
    width: auto;
    height: 64px;
  }
}
@media screen and (max-width: 450px) {
  .header__menu {
    max-width: 85%;
  }
  .header__menu .inner {
    padding: 0 10% 20px 20px;
  }
  .header__menu .inner > p {
    padding: 15px 0;
    font-size: 18px;
  }
  .footer__about ul {
    padding-left: 10px;
  }
  .footer__about ul li {
    min-width: 160px;
  }
}


.roboto {
  font-family: "Roboto", sans-serif;
}
.shopguide {
  fill: url(#shopguide);
}
.restaurant {
  fill: url(#restaurant);
}
.floorguide {
  fill: url(#floorguide);
}
.facility {
  fill: url(#facility);
}
.access {
  fill: url(#access);
}
.businesshour {
  fill: url(#businesshour);
}
.giftfood {
  fill: url(#giftfood);
}
.lifestyle {
  fill: url(#lifestyle);
}
.pointcard {
  fill: url(#pointcard);
}
svg {
  max-width: 100%;
  height: auto;
}
.wrap {
  width: 100%;
  margin: 0 auto;
  padding-top: 66px;
  text-align: center;
  overflow: hidden;
}
.inner {
  padding: 0 3.125%;
}
.content {
  max-width: 1000px;
  margin: 0 auto;
}
.pc-view {
  display: block;
}
.sp-view {
  display: none;
}
.anchor_target:before {
  content: "";
  display: block;
  height: 90px;
  margin: -90px 0 0;
}
.title {
  margin: 30px auto;
  font-size: 34px;
  font-weight: bold;
  text-align: center;
}
.title.orange {
  color: #ee7700;
}
.title[class*="icon_"]:before {
  content: "";
  display: block;
  width: 75px;
  height: 88px;
  margin: 0 auto 4px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
.title.icon_information:before {
  background-image: url(../img/common/icon_information.svg);
}
.title.icon_topics:before {
  background-image: url(../img/common/icon_topics.svg);
}
.title.icon_event:before {
  background-image: url(../img/common/icon_event.svg);
}
.title-mini {
  font-size: 34px;
  font-weight: bold;
  text-align: center;
  padding-bottom: 30px;
}
.title-mini span {
  display: block;
  padding-top: 8px;
  font-family: "Roboto", sans-serif;
  color: #ee7700;
  font-size: 14px;
}
.title-sub {
  display: block;
  margin-bottom: 20px;
  padding-bottom: 10px;
  font-size: 16px;
  font-weight: bold;
  border-bottom: 1px solid #000;
}
