@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: 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: block;
  margin: 0 35px 0 24px;
}
.header__box__btn div {
  width: 40px;
  height: 27px;
  position: relative;
  cursor: pointer;
}
.header__box__btn div span {
  display: block;
  height: 2px;
  background: #a0a0a0;
  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: 13px;
}
.header__box__btn div span:nth-child(3) {
  top: 25px;
}
.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;
  height: 15px;
}
.header__box__lang dl dt {
  padding-right: 26px;
  font-family: "Roboto", sans-serif;
  color: #a0a0a0;
  font-size: 14px;
  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/icon_arrow_orange_down.png") no-repeat 100% 50%;
  background-size: 18px 20px;
  width: 90px;
  height: 20px;
  position: absolute;
  top: 0;
  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;
  background: #f0f0f0;
  width: calc(100% + 17px);
  height: 100%;
  max-height: 830px;
  padding-top: 66px;
  position: fixed;
  z-index: 8001;
  top: 0;
  overflow-y: scroll;
}
.header__menu .primary_list {
  max-width: 1000px;
  margin: 57px auto 24px;
  columns: 2 auto;
  column-gap: 90px;
  text-align: left;
  font-size: 18px;
  font-weight: bold;
}
.header__menu .primary_list > li {
  background: #c7c9cb;
  margin-top: 2px;
}
.header__menu .primary_list > li:nth-of-type(even) {
  background: #e1e2e3;
}
.header__menu .primary_list > li > a {
  display: block;
  padding: 24px 32px;
  background: url("../img/common/icon_arrow_black_r.png?vfc83dd0684830b811300947c8addec29") no-repeat 94.66667% 50%;
}
.header__menu .primary_list ul {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: -10px;
  padding: 0 32px 10px;
  pointer-events: none;
}
.header__menu .primary_list ul li {
  flex: 0 1 25%;
  max-width: 115px;
}
.header__menu .primary_list ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70px;
  padding: 4px;
  background: #fff;
  border-radius: 4px;
  font-size: 10px;
  text-align: center;
  pointer-events: auto;
}
.header__menu .banner {
  display: flex;
  justify-content: space-between;
  max-width: 1000px;
  margin: 0 auto;
}
.header__menu figure {
  flex: 0 1 49.5%;
}
.header__menu figure img {
  width: 100%;
}
.footer__page-top {
  display: inline-block;
  margin: 60px auto 40px;
  text-align: center;
  cursor: pointer;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.footer__page-top:hover {
  opacity: 0.7;
}
.footer__page-top img {
  width: 40px;
  margin-bottom: 10px;
}
.footer__page-top p {
  font-size: 14px;
  font-weight: bold;
}
.footer__banner {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer__banner li {
  width: 48.95833%;
  margin-bottom: 20px;
}
.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: #fae4c8;
  padding: 25px 0;
  font-family: "Hiragino Kaku Gothic Pro", "Ã£Æ’â€™Ã£Æ’Â©Ã£â€šÂ®Ã£Æ’Å½Ã¨Â§â€™Ã£â€šÂ´ Pro W3", Ã£Æ’Â¡Ã£â€šÂ¤Ã£Æ’ÂªÃ£â€šÂª, Meiryo, "Ã¯Â¼Â­Ã¯Â¼Â³ Ã¯Â¼Â°Ã£â€šÂ´Ã£â€šÂ·Ã£Æ’Æ’Ã£â€šÂ¯", "Lucida Grande", "Lucida Sans Unicode", Arial, Verdana, sans-serif;
}
.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: bold;
  line-height: 2.4;
  letter-spacing: 0.2px;
}
.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_gray_r.png?v700e2ba29355bd5ad2b026364e5d74b1") no-repeat 2px 8px;
  margin-bottom: 5px;
  padding-left: 12px;
}
.footer__link__list .link-level2 li a {
  color: #505050;
  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: #f77e0b;
  padding: 20px 0;
}
.footer__about p {
  margin-bottom: 15px;
}
.footer__about p a {
  font-size: 14px;
  font-weight: bold;
  color: #fff;
}
.footer__about ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
  justify-content: space-between;
}
.footer__about ul li {
  flex: 0 1 calc(16.0667%);
  background: #fdf2dc;
}
.footer__about ul li:nth-of-type(even) {
  background: #fbe8ab;
}
.footer__about ul li:nth-last-of-type(1) {
  flex: 1 1 100%;
  background: none;
}
.footer__about ul li:nth-last-of-type(1) a {
  display: inline-block;
  padding: 16px 0 0;
  color: #fff;
  font-size: 14px;
}
.footer__about ul li a {
  display: block;
  padding: 16px 4px;
  font-size: 10px;
  font-weight: bold;
  letter-spacing: 0;
}
.footer__copy {
  background: #000;
  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: 8px;
  font-weight: bold;
}
.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 20px 0 15px;
  }
  .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 {
    /* margin: 0 15px; */
    padding-right: 15px;
    font-size: 11px;
    text-align: right;
  }
  .header__box__lang dl dt:after {
    background-size: 9px 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%;
    height: 100%;
    max-height: 100%;
    padding-top: 50px;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    overflow: -moz-scrollbars-none;
  }
  .header__menu::-webkit-scrollbar {
    display: none;
  }
  .header__menu .inner {
    padding: 0;
  }
  .header__menu .primary_list {
    margin: 0;
    columns: auto;
    padding: 0 6px;
    font-size: 12px;
  }
  .header__menu .primary_list > li {
    margin: 0 0 2px;
  }
  .header__menu .primary_list > li:nth-of-type(even) {
  }
  .header__menu .primary_list > li > a {
    padding: 13px 16px;
    background-size: 4px auto;
  }
  .header__menu .primary_list ul {
    margin: 0;
    padding: 10px 16px;
    background: #eef0f1;
    gap: 6px;
  }
  .header__menu .primary_list ul li a {
    font-size: 8px;
    min-height: 50px;
    border: 1px solid #e0e1e0;
  }
  .header__menu .banner {
    display: none;
  }
  .footer__page-top {
    display: table;
    width: 30%;
    margin: 45px auto 35px;
  }
  .footer__page-top:hover {
    opacity: 1;
  }
  .footer__page-top img {
    width: 23%;
    margin-bottom: 5px;
  }
  .footer__page-top p {
    font-size: 13px;
  }
  .footer__banner {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-bottom: 10px;
  }
  .footer__banner li {
    width: 48.30986%;
    margin-bottom: 10px;
  }
  .footer__mini-banner {
    padding: 20px 0;
  }
  .footer__link {
    display: none;
  }
  .footer__about {
    padding: 0;
    background: #fff;
  }
  .footer__about .inner {
    padding: 0;
  }
  .footer__about p {
    margin: 0 -2.8169%;
  }
  .footer__about p a {
    display: block;
    padding: 16px 0;
    background: #f7941d;
    color: #fff;
  }
  .footer__about ul {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    margin: 0 -2.8169%;
    border: 2px solid #fff;
    gap: 2px;
  }
  .footer__about ul li {
    flex: 1 1 48%;
    margin: 0;
    text-align: left;
    background: #f9ead3 !important;
  }
  .footer__about ul li:nth-of-type(4n),
  .footer__about ul li:nth-of-type(4n-1) {
    background: #fbe1a7 !important;
  }
  .footer__about ul li a {
    display: block !important;
    padding: 12px 15px !important;
    font-size: 10px !important;
    color: #000 !important;
  }
  .footer__copy {
    padding: 14px 0 60px;
  }
  footer .floating_nav {
    width: 100%;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 1000;
    display: flex;
    padding: 0 3.125%;
    justify-content: space-between;
  }
  footer .floating_nav > div {
    background: #ea1e26;
    flex: 0 1 24.5%;
    box-shadow: 0 -2px 6px rgba(0 0 0 / 16%);
  }
  footer .floating_nav > div a {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: relative;
    padding: 4px 10px 6px 4px;
  }
  footer .floating_nav > div a img {
    width: auto;
    height: 40px;
  }
  footer .floating_nav > div a:before {
    content: "";
    content: "";
    width: 8px;
    height: 100%;
    background: #000;
    opacity: 0.3;
    position: absolute;
    right: 0;
    top: 0;
    clip-path: polygon(0 8px, 100% 0, 100% 100%, 0 100%);
  }
  footer .floating_nav > div a:after {
    content: "";
    width: 100%;
    height: 6px;
    background: #000;
    opacity: 0.3;
    position: absolute;
    left: 0;
    bottom: 0;
    clip-path: polygon(8px 0, calc(100% - 8px) 0, 100% 100%, 0 100%);
  }
}
.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;
}
.visual {
  margin-bottom: 70px;
}
.tab__menu {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  margin-bottom: 40px;
  position: relative;
}
.tab__menu li {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  width: 33.33333%;
  border-right: 2px solid #e5e5e5;
  position: relative;
}
.tab__menu li:last-of-type {
  border-right: 0 !important;
}
.tab__menu li span,
.tab__menu li a {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 7px 20px;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  -webkit-transition: color 0.3s ease, opacity 0.3s ease, border-color 0.3s ease;
  transition: color 0.3s ease, opacity 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
}
.tab__menu li span:hover,
.tab__menu li a:hover {
  color: #ee7700;
}
.tab__menu li::after {
  content: "";
  display: block;
  background: #000;
  width: 99%;
  height: 2px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}
.tab__menu li:hover {
  color: #ee7700;
}
.tab__menu li:hover:after {
  background: #ee7700;
}
.tab__menu li.active span,
.tab__menu li.active a {
  color: #ee7700;
}
.tab__menu li.active span:hover,
.tab__menu li.active a:hover {
  opacity: 0.7;
}
.tab__menu li.active:after {
  background: #ee7700;
}
.tab__menu li.active:before {
  content: "";
  position: absolute;
  bottom: -8px;
  z-index: 1;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 8px;
  background: url("../img/common/icon_arrow_orange.png?vf2fb79355f2ef42ad193e93be823aae4") no-repeat center / contain;
  -webkit-transition: all 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: all 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.tab__content {
  display: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.tab__content.show {
  display: block;
}
.recommend {
  background: #f4f1e6;
  padding: 80px 0 100px;
}
.recommend__slider {
  margin: 0 -8px;
}
.recommend__slider li {
  background: #fff;
  margin: 0 8px;
  text-align: left;
  position: relative;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.recommend__slider li:hover {
  opacity: 0.7;
}
.recommend__slider li a {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.recommend__slider li a span {
  display: none;
}
.recommend__img {
  padding-top: 100%;
  position: relative;
  overflow: hidden;
}
.recommend__img img {
  width: auto;
  max-width: inherit;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.recommend__text {
  padding: 10px 10px 25px;
}
.recommend__text .category-date {
  margin-bottom: 10px;
  font-family: "Roboto", sans-serif;
}
.recommend__text .category-date span {
  display: inline-block;
  width: 46px;
  margin-right: 10px;
  padding: 2px;
  color: #ed7308;
  font-size: 12px;
  text-align: center;
  border: 1px solid #ed7308;
}
.recommend__text .category-date time {
  display: inline-block;
  color: #a0a0a0;
  font-size: 14px;
  font-weight: bold;
}
.recommend__text .category {
  margin-top: 5px;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: bold;
}
.recommend__text h3 {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.4;
}
.recommend__text .place {
  color: #505050;
  font-size: 12px;
  line-height: 1.3;
}
.shop__list {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 auto 60px !important;
}
.shop__list li {
  display: -webkit-box;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 20px 0;
  text-align: left;
  border-bottom: 1px solid #000;
  position: relative;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.shop__list li:hover {
  background: #fdecd2;
}
.shop__list__more {
  background: #000;
  padding: 12px;
  border-radius: 6px;
  cursor: pointer;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.shop__list__more:hover {
  opacity: 0.7;
}
.shop__list__more p {
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
}
.shop__img {
  width: 150px;
  aspect-ratio: 1/1;
}
.shop__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.shop__text {
  width: 100%;
  padding-left: 24px;
  line-height: 1.4;
}
.shop__text > a {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.shop__text > a span {
  display: none;
}
.shop__area,
.shop__date {
  display: -webkit-box;
  display: flex;
}
.shop__category {
  -webkit-box-flex: 1;
  flex: 1;
  margin-bottom: 5px;
  font-size: 22px;
  font-weight: bold;
  color: #828383;
}
.shop__floor {
  font-family: "Roboto", sans-serif;
  color: #ed7308;
  font-size: 18px;
  font-weight: bold;
  text-align: right;
}
.shop__floor span[data-floor="1F"] {
  background-color: #3e5fac;
}

.shop__floor span[data-floor="2F"] {
  background-color: #5ec9e2;
}

.shop__floor span[data-floor="3F"] {
  background-color: #93c83d;
}

.shop__floor span[data-floor="4F"] {
  background-color: #008a46;
}

.shop__floor span[data-floor="5F"] {
  background-color: #f47720;
}

.shop__floor span[data-floor="6F"] {
  background-color: #c98d2a;
}

.shop__floor span[data-floor="7F"] {
  background-color: #8c5ca6;
}

.shop__floor span[data-floor="8F"] {
  background-color: #f49dc3;
}

.shop__floor span[data-floor="9F"] {
  background-color: #e0c022;
}

.shop__floor span[data-floor="10F"] {
  background-color: #dc3936;
}
.shop__name {
  margin-bottom: 10px;
  font-size: 30px;
  font-weight: bold;
}
.shop__open {
  margin-bottom: 10px;
  color: #787878;
  font-size: 12px;
}
.shop__tel {
  font-size: 14px;
  font-weight: bold;
}
.shop__tel a {
  margin-left: 10px;
  color: #ab874e;
  font-weight: bold;
  text-decoration: underline;
  position: relative;
  z-index: 1;
}
.shop__notes {
  margin-bottom: 2px;
  font-size: 14px;
}
.shop__notes span {
  margin-right: 10px;
  font-weight: bold;
}
.shop__service {
  margin-top: -20px;
  margin-bottom: 5px;
  color: #b81c22;
  font-size: 14px;
  font-weight: bold;
}
.shop__not-used {
  margin-bottom: 10px;
  color: #787878;
  font-size: 12px;
}
.event_details {
  margin: 50px auto;
  padding: 0 0 20px;
  border-bottom: 1px solid #000;
  line-height: 1.3;
  font-size: 18px;
}
.event_details dt {
  border-top: 1px solid #000;
  margin-top: 20px;
  padding-top: 20px;
  color: #828383;
  line-height: 1;
}
.event_details dd {
  margin-top: 6px;
  font-weight: bold;
}
.detail__box {
  padding: 18px 0;
  text-align: left;
  border-top: 1px solid #e5e5e5;
}
.detail__box:last-of-type {
  margin-bottom: 40px;
}
.detail__box dl {
  display: -webkit-box;
  display: flex;
  padding: 0 10px;
}
.detail__box dl dt {
  width: 150px;
  padding-top: 5px;
  padding-right: 20px;
  color: #787878;
  font-size: 14px;
  font-weight: bold;
}
.detail__box dl dd {
  -webkit-box-flex: 1;
  flex: 1;
  font-size: 16px;
  line-height: 1.5;
  word-break: break-all;
}
.detail__box dl dd a {
  color: #ab874e;
  text-decoration: underline;
}
.detail__box dl dd a[href*="tel"] {
  font-size: 18px;
}
.detail__box dl dd p {
  margin-top: 10px;
  color: #787878;
  font-size: 14px;
}
.detail__box .ttl {
  margin-bottom: 15px;
  font-size: 22px;
  font-weight: bold;
  text-align: center;
}
.detail__title {
  padding: 16px 5px;
  border-bottom: 1px solid #000;
}
.detail__title .shop__category {
  margin-bottom: 15px;
  color: #787878;
  font-size: 16px;
  text-align: left;
}
.detail__title .shop__category span {
  margin-left: 20px;
  padding: 1px 10px;
  font-size: 12px;
  font-weight: bold;
  vertical-align: top;
  border: 1px solid #787878;
}
.detail__title .shop__floor {
  font-size: 28px;
}
.detail__title .category-date {
  -webkit-box-flex: 1;
  flex: 1;
  margin-bottom: 8px;
  font-family: "Roboto", sans-serif;
  text-align: left;
}
.detail__title .category-date time {
  color: #919295;
  font-size: 16px;
  font-weight: bold;
  line-height: 1;
}
.detail__title .category-date span {
  margin-left: 20px;
  padding: 1px 10px;
  color: #787878;
  font-size: 12px;
  font-weight: bold;
  vertical-align: middle;
  border: 1px solid #787878;
}
.detail__title h2 {
  margin-bottom: 0;
  font-size: 16px;
  font-weight: bold;
  text-align: left;
  line-height: 1.2;
}
.detail__title.border-top {
  border-top: 1px solid #000;
}
.detail__sns {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  max-width: 710px;
  margin: 0 auto 60px;
}
.detail__sns li {
  width: 7.04225%;
  margin: 0 6px;
}
.detail__tel {
  background: #f4f1e6;
  max-width: 400px;
  margin: 0 auto;
  padding: 30px;
  border-radius: 6px;
}
.detail__tel dl {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
}
.detail__tel dl dt {
  padding-right: 30px;
  color: #787878;
  font-size: 16px;
  font-weight: bold;
}
.detail__tel dl dd a {
  color: #ab874e;
  text-decoration: underline;
}
.detail__tel dl dd a[href*="tel"] {
  font-size: 20px;
}
.link-floor {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 15px 0 3px;
}
.link-floor li {
  width: 17.61905%;
  margin-bottom: 12px;
  border: 2px solid #e5e5e5;
  border-radius: 6px;
}
.link-floor li a {
  background: url("../img/common/bg_floor.png?v9b1d169066022d0149443c80c864e525") no-repeat 50% 50%;
  background-size: cover;
  display: block;
  padding: 33.78378% 0;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  border-radius: 6px;
}
.link-floor li.active {
  border: none;
}
.link-floor li.active a {
  background: url("../img/common/bg_floor_on.png?v4b921950a5a901f45ccd92d49b58f09e") no-repeat 50% 50%;
  background-size: cover;
  color: #fff;
}
.link-text {
  padding: 15px 0 3px;
}
.link-text li {
  margin-bottom: 12px;
}
.link-text li a {
  background: #fff;
  display: block;
  padding: 10px;
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
  border: 2px solid #e5e5e5;
  border-radius: 6px;
}
.link-text li.active a {
  background: #fdecd2;
}
.link-logo {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  padding: 15px 0 3px;
}
.link-logo li {
  width: 31.42857%;
  margin-right: 2.85714%;
  margin-bottom: 12px;
}
.link-logo li:nth-of-type(3n) {
  margin-right: 0;
}
.link-logo li a {
  background: #fff;
  display: block;
  text-align: center;
  border: 2px solid #e5e5e5;
  border-radius: 6px;
}
.link-logo li a img {
  width: 100%;
}
.link-logo li.active a {
  background: #fdecd2;
}
.link-category ul {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  margin: 0 -0.625%;
}
.link-category li {
  width: 13.75%;
  margin: 0 0.625%;
  text-align: center;
  border: solid 2px #e5e5e5;
  border-radius: 6px;
  overflow: hidden;
}
.link-category li.active {
  border: none;
}
.link-category li.active a {
  background: url("../img/common/bg_floor_on.png?v4b921950a5a901f45ccd92d49b58f09e") no-repeat 50% 50%;
  background-size: cover;
}
.link-category a {
  display: block;
  padding: 15.15152% 0;
  height: 100%;
  box-sizing: border-box;
}
.link-category svg {
  height: 50px;
  margin-bottom: 10px;
}
.link-category__name {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: bold;
}
.active .link-category__name {
  color: #fff;
}
.link-category__sub {
  display: block;
  font-family: "Roboto", sans-serif;
  font-size: 10px;
  color: #6e6e6e;
}
.active .link-category__sub {
  color: #fff;
}
.link-freewords {
  display: -webkit-box;
  display: flex;
  width: 100%;
  border: solid 2px #e5e5e5;
  background: #f5f5f5;
  border-radius: 6px;
  overflow: hidden;
}
.link-freewords input[type="text"] {
  width: calc(100% - 60px);
  border: none;
  border-radius: 0;
  outline: none;
  background: url("../img/common/icon_search.png?vacacbb9528746f70d904804c23334c0a") no-repeat 10px 50%;
  background-size: 24px auto;
  padding: 10px 8px 10px 44px;
  font-size: 14px;
}
.link-freewords input[type="submit"] {
  width: 60px;
  background: #000;
  color: #fff;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.link-freewords input[type="submit"]:hover {
  opacity: 0.7;
}
.link-keywords {
  text-align: center;
}
.link-keywords li {
  display: inline-block;
  margin: 0 4px 12px 0;
}
.link-keywords a {
  display: block;
  padding: 8px;
  border: solid 2px #e5e5e5;
  border-radius: 6px;
  font-size: 14px;
}
.search__hit {
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: bold;
  text-align: left;
}
.article__detail {
  margin: 0 auto;
  padding: 30px 13.02083%;
  text-align: left;
  border-bottom: 1px solid #000;
}
.article__detail + * {
  margin-top: 60px;
}
.article__detail__img {
  margin-bottom: 35px;
}
.article__detail__text h3 {
  margin-bottom: 20px;
  color: #ab874e;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.6;
}
.article__detail__text p {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 2;
}
.article__detail__text a {
  color: #ab874e;
  text-decoration: underline;
}
.article__detail__text a:hover {
  text-decoration: none;
}
.article__detail__text img.alignright {
  display: block;
  margin-left: auto;
}
.article__detail__text img.alignleft {
  display: block;
  margin-right: auto;
}
.article__detail__text img.aligncenter {
  display: block;
  margin-right: auto;
  margin-left: auto;
}
.article__detail .title-mini {
  margin-top: 60px;
}
.article__detail .shop__list {
  margin-bottom: 0;
}
.article__detail .shop__list li {
  width: 100%;
  border-bottom: none;
}
.article__detail .shop__img {
  width: 16.90141%;
  padding-top: 16.90141%;
}
.article__detail .shop__text {
  padding-left: 19.71831%;
}
.btn__black {
  width: 100%;
  max-width: 400px;
  margin: 0 auto 60px;
}
.btn__black a,
.btn__black button {
  background: #000;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 80px;
  font-family: YuGothic, "Yu Gothic", "Hiragino Kaku Gothic Pro", "ÃƒÂ£Ã†â€™Ã¢â‚¬â„¢ÃƒÂ£Ã†â€™Ã‚Â©ÃƒÂ£Ã¢â‚¬Å¡Ã‚Â®ÃƒÂ£Ã†â€™Ã…Â½ÃƒÂ¨Ã‚Â§Ã¢â‚¬â„¢ÃƒÂ£Ã¢â‚¬Å¡Ã‚Â´ Pro W3", "ÃƒÂ£Ã†â€™Ã‚Â¡ÃƒÂ£Ã¢â‚¬Å¡Ã‚Â¤ÃƒÂ£Ã†â€™Ã‚ÂªÃƒÂ£Ã¢â‚¬Å¡Ã‚Âª", Meiryo, "ÃƒÂ¯Ã‚Â¼Ã‚Â­ÃƒÂ¯Ã‚Â¼Ã‚Â³ ÃƒÂ¯Ã‚Â¼Ã‚Â°ÃƒÂ£Ã¢â‚¬Å¡Ã‚Â´ÃƒÂ£Ã¢â‚¬Å¡Ã‚Â·ÃƒÂ£Ã†â€™Ã†â€™ÃƒÂ£Ã¢â‚¬Å¡Ã‚Â¯", "Lucida Grande", "Lucida Sans Unicode", Arial, Verdana, sans-serif;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.3;
  border: none;
  border-radius: 6px;
  position: relative;
}
.btn__black a span,
.btn__black button span {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  font-weight: bold;
}
.btn__black.large {
  max-width: 480px;
}
.btn__black.large a {
  height: 100px;
}
.btn__black .window {
  background: #000 url("../img/common/icon_window_white.png?vd4cf93c153666aa48f7fd9434238671f") no-repeat 94% 50%;
  background-size: 14px 10px;
  padding: 0 50px;
}
.popup {
  display: none;
}
.fancybox-content {
  max-width: 960px !important;
  padding: 0 !important;
}
.fancybox-close-small {
  background: url("../img/common/icon_close.png?v131313d7e5d06ff7798d216140e7b7a5") no-repeat 50% 50% !important;
  background-size: contain !important;
  width: 40px !important;
  height: 44px !important;
  padding: 0 !important;
  top: 20px !important;
  right: 20px !important;
  -webkit-transition: opacity 0.3s ease !important;
  transition: opacity 0.3s ease !important;
}
.fancybox-close-small:hover {
  opacity: 0.7 !important;
}
.fancybox-close-small svg {
  display: none !important;
}
.compensate-for-scrollbar {
  margin-right: 0 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .shop__category span:not(:target) {
    padding: 2px 10px 0;
  }
}
@media screen and (min-width: 1041px) {
  .inner {
    padding: 0 40px;
  }
}
@media screen and (max-width: 767px) {
  .wrap {
    padding-top: 50px;
  }
  .pc-view {
    display: none;
  }
  .sp-view {
    display: block;
  }
  .title[class*="icon_"]:before {
    width: 50px;
    height: 53px;
  }
  .title {
    margin: 15px auto;
    font-size: 18px;
  }
  .title span {
    padding-top: 8px;
    font-size: 14px;
  }
  .title-mini {
    font-size: 16px;
    padding-bottom: 16px;
  }
  .title-mini span {
    padding-top: 4px;
    font-size: 10px;
  }
  .title-sub {
    margin-bottom: 25px;
    font-size: 14px;
  }
  .tab__menu {
    margin-bottom: 30px;
  }
  .tab__menu li {
    width: 33.23944%;
    border-right: 1px solid #e5e5e5;
  }
  .home .tab__menu li:nth-of-type(1) {
    width: 20.56338%;
  }
  .home .tab__menu li:nth-of-type(2) {
    width: 51.26761%;
  }
  .home .tab__menu li:nth-of-type(3) {
    width: 28.16901%;
  }
  .tab__menu li span,
  .tab__menu li a {
    padding: 7px 0;
    font-size: min(2.3vw, 14px);
    line-height: 1.2;
  }
  .tab__menu li.active:hover {
    opacity: 1;
  }
  .tab__menu:after {
    background-size: 1.40845% auto;
    display: block;
    width: 100%;
    height: 8px;
    position: absolute;
    bottom: -18px;
    left: 0;
    -webkit-transition: all 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
    transition: all 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
    opacity: 0;
  }
  .tab__menu.num0:after {
    background-position: 16.90141% 0;
  }
  .tab__menu.num1:after {
    background-position: 33.5% 0;
  }
  .tab__menu.num2:after {
    background-position: 66.5% 0;
  }
  .recommend {
    padding: 30px 0 30px;
  }
  .recommend__text {
    padding: 10px 10px 15px;
  }
  .recommend__text .category-date {
    margin-bottom: 5px;
  }
  .recommend__text .category-date span {
    width: 35px;
    margin-right: 8px;
    font-size: 9px;
  }
  .recommend__text .category-date time {
    font-size: 11px;
  }
  .recommend__text .category {
    margin-top: 5px;
    margin-bottom: 5px;
    font-size: 8px;
  }
  .recommend__text h3 {
    margin-bottom: 5px;
    font-size: 12px;
  }
  .recommend__text .place {
    font-size: 10px;
  }
  .shop__list {
    margin-bottom: 15px;
  }
  .shop__list li {
    width: 100%;
    padding: 15px 0;
  }
  .shop__list li:nth-of-type(1) {
    border-top: 1px solid #e5e5e5;
  }
  .shop__list li:nth-of-type(2) {
    border-top: none;
  }
  .shop__list li:hover {
    background: none;
  }
  .shop__list__more {
    padding: 8px;
    border-radius: 3px;
  }
  .shop__list__more:hover {
    opacity: 1;
  }
  .shop__list__more p {
    font-size: 14px;
  }
  .shop__img {
    width: 100px;
  }
  .shop__category {
    margin-bottom: 2px;
    font-size: 9px;
  }
  .shop__floor {
    font-size: 12px;
  }
  .shop__name {
    margin-bottom: 8px;
    font-size: 16px;
  }
  .shop__open {
    margin-bottom: 8px;
    color: #787878;
    font-size: 9px;
  }
  .shop__tel {
    font-size: 9px;
    font-weight: bold;
  }
  .shop__tel a {
    margin-left: 10px;
    color: #ab874e;
    font-weight: bold;
    text-decoration: underline;
    position: relative;
    z-index: 1;
  }
  .shop__notes {
    margin-bottom: 5px;
    font-size: 9px;
  }
  .shop__service {
    margin-top: -10px;
    margin-bottom: 10px;
    font-size: 9px;
  }
  .shop__not-used {
    margin-bottom: 10px;
    font-size: 9px;
  }
  .event_details {
    margin: 30px auto;
    padding-bottom: 12px;
    font-size: 12px;
  }
  .event_details dt {
    margin-top: 12px;
    padding-top: 12px;
  }
  .detail__box {
    padding: 12px 0;
  }
  .detail__box:last-of-type {
    margin-bottom: 20px;
  }
  .detail__box dl {
    padding: 0 1.40845%;
  }
  .detail__box dl dt {
    width: 70px;
    padding-top: 6px;
    padding-right: 10px;
    font-size: 10px;
  }
  .detail__box dl dt.tel {
    padding-top: 10px;
    color: #000;
    font-size: 12px;
  }
  .detail__box dl dd {
    font-size: 14px;
  }
  .detail__box dl dd a {
    text-decoration: underline;
  }
  .detail__box dl dd a[href*="tel"] {
    font-size: 21px;
  }
  .detail__box dl dd p {
    font-size: 12px;
  }
  .detail__box .ttl {
    font-size: 14px;
  }
  .detail__title .shop__category {
    margin-bottom: 10px;
    font-size: 12px;
  }
  .detail__title .shop__category span {
    margin-left: 10px;
    padding: 1px 5px;
    font-size: 9px;
  }
  .detail__title .shop__floor {
    font-size: 19px;
  }
  .detail__title .category-date {
    margin-bottom: 4px;
  }
  .detail__title .category-date time {
    font-size: 12px;
  }
  .detail__title .category-date span {
    margin-left: 10px;
    padding: 1px 5px;
    font-size: 9px;
  }
  .detail__title h2 {
    font-size: 14px;
  }
  .detail__sns {
    margin: 0 auto 30px;
  }
  .detail__sns li {
    width: 12.67606%;
    margin: 0 1.40845%;
  }
  .detail__tel {
    max-width: 4100%;
    padding: 20px;
    border-radius: 3px;
  }
  .detail__tel dl dt {
    padding-right: 25px;
    font-size: 12px;
  }
  .detail__tel dl dd a[href*="tel"] {
    font-size: 21px;
  }
  .link-floor {
    padding: 10px 5.33333% 5px;
  }
  .link-floor li {
    width: 17.61905%;
    margin-bottom: 10px;
    border: 1px solid #e5e5e5;
    border-radius: 3px;
  }
  .link-floor li a {
    font-size: 16px;
    border-radius: 3px;
  }
  .link-text {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: -1px;
    padding: 0 5.33333% 5px;
    border-top: 1px solid #f0f0f0;
  }
  .link-text li {
    width: 32.23881%;
    margin-bottom: 5px;
  }
  .link-text li a {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    height: 60px;
    padding: 0 3px;
    font-size: 11px;
    font-weight: bold;
    border: 1px solid #e5e5e5;
    border-radius: 3px;
  }
  .link-text li a span {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    font-weight: bold;
  }
  .link-logo {
    margin-bottom: -1px;
    padding: 0;
  }
  .link-logo li {
    width: 33.33333%;
    margin-right: 0;
    margin-bottom: 0;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
  }
  .link-logo li:nth-of-type(3n) {
    border-right: none;
  }
  .link-logo a {
    display: block;
    background: none;
    border: none;
    border-radius: 0;
  }
  .link-logo a img {
    margin: 5px 0;
  }
  .link-category li {
    border: solid 1px #e5e5e5;
    border-radius: 3px;
  }
  .link-category svg {
    height: 36px;
    margin-bottom: 8px;
  }
  .link-category__name {
    margin-bottom: 4px;
    font-size: 9px;
    letter-spacing: -1px;
  }
  .link-category__sub {
    display: block;
    width: 200%;
    font-size: 16px;
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
  }
  .link-freewords {
    border: solid 1px #e5e5e5;
  }
  .link-freewords input[type="text"] {
    font-size: 12px;
  }
  .link-keywords li {
    margin: 0 4px 10px 0;
  }
  .link-keywords a {
    display: block;
    padding: 8px;
    border: solid 1px #e5e5e5;
    border-radius: 3px;
    font-size: 12px;
    font-weight: bold;
  }
  .search__hit {
    font-size: 12px;
  }
  .article__detail {
    padding: 15px 0;
  }
  .article__detail__img {
    margin-bottom: 35px;
  }
  .article__detail__text h3 {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.4;
  }
  .article__detail__text p {
    margin-bottom: 15px;
    line-height: 1.6;
    font-size: 12px;
  }
  .article__detail__text a:hover {
    text-decoration: underline;
  }
  .article__detail .title-mini {
    margin-top: 30px;
  }
  .article__detail .shop__list {
    margin-bottom: 0;
  }
  .article__detail .shop__list li {
    width: 100%;
    margin-bottom: -15px;
    border-bottom: none;
  }
  .article__detail .shop__img {
    width: 29.57746%;
    padding-top: 29.57746% !important;
  }
  .article__detail .shop__text {
    padding-left: 32.39437%;
  }
  .article__detail .shop__tel a {
    font-size: 14px;
  }
  .btn__black {
    width: 100%;
    max-width: 100%;
    margin-bottom: 40px;
  }
  .btn__black a,
  .btn__black button {
    height: 45px;
    font-size: 14px;
    border-radius: 3px;
  }
  .btn__black.large {
    max-width: 100%;
  }
  .btn__black.large a {
    height: 65px;
  }
  .btn__black .window {
    background: #000 url("../img/common/icon_window_white.png?vd4cf93c153666aa48f7fd9434238671f") no-repeat 96% 50%;
    background-size: 21px 15px;
    padding: 0 40px;
  }
  .fancybox-content {
    max-width: 100% !important;
  }
  .fancybox-close-small {
    background: url("../img/common/icon_close.png?v131313d7e5d06ff7798d216140e7b7a5") no-repeat 50% 50% !important;
    background-size: contain !important;
    width: 28px !important;
    height: 32px !important;
    top: 10px !important;
    right: 10px !important;
  }
  .fancybox-close-small:hover {
    opacity: 1 !important;
  }
}
@media (min-width: 767px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none !important;
    color: #000 !important;
  }
}

.tab__menu.num1b:after {
  background-position: 33.5% 0;
}
.tab__menu.num2b:after {
  background-position: 66.5% 0;
}
