@charset "UTF-8";
/*======================================================================
 * サイト全体共通レイアウト
======================================================================*/
body {
	overflow-x: hidden;
	animation: fadeIn 2s ease 0s 1 normal;
	-webkit-animation: fadeIn 2s ease 0s 1 normal;
  background: url('../images/common/bg-gr.jpg') repeat top left;
}
@media screen and (max-width: 768px) {
  body {
    background: url('../images/common/bg-gr-sp.jpg') repeat top left;
    /* background-size: 100% 100%; */
  }
}

@keyframes fadeIn {
	0% {
		opacity: 0
	}
	100% {
		opacity: 1
	}
}

@-webkit-keyframes fadeIn {
	0% {
		opacity: 0
	}
	100% {
		opacity: 1
	}
}


/*------------------------------------------------------------
 *23年3月1日 追記 お知らせバー
------------------------------------------------------------*/
.btn_container {
	color:#fff;
	text-align: center;
	cursor: pointer;
}
.close_btn {
  display: block;
  position: relative;
  width: 30px;
  height: 30px;
}
@media screen and (max-width: 768px) {
  .close_btn {
    bottom:12px;
  }
}
.close_btn::before, .close_btn::after { 
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  height: 24px;
  background: #707070;
}
.close_btn::before {
  transform: translate(-50%,-50%) rotate(45deg);
}
.close_btn::after {
  transform: translate(-50%,-50%) rotate(-45deg);
}
.notice_box {
	background: #EEE;
	width: 100%;
}
.notice_box a {
  color:#333;
  text-decoration: none;
}
.notice_box p {
	text-align: center;
	line-height: 60px;
	color: #fff;
}
@media screen and (max-width: 768px) {
  .notice_box p {
		box-sizing: border-box;
		text-align: left;
		text-indent: -2em;
		padding: 0.7em 0.7em 0.7em 2.6em;
		line-height: 1.5;
		color: #707070;
		width: 94%;
		font-size: 13px;
	}
}
.notice_date {
	margin-right: 2em;
	padding-left: 30px;
  font-family: "Noto Sans JP", sans-serif;
	background:url('../images/common/icon-attention.svg') no-repeat left 70%;
}
@media screen and (max-width: 768px) {
  .notice_date{
    margin-right: 0.5em;
    padding-left: 25px;
    background:url('../images/common/icon-attention.svg') no-repeat top left;
    background-size: auto 100%;
  }
}
.action_close {
	position: relative;
}
.action_close .btn_container {
	position: absolute;
	right: 1em;
	top: 1em;
}
@media screen and (max-width: 768px) {
  .action_close .btn_container {
    right: 0;
  }
}
.add_control .action_close #close:checked ~ .btn_container {
	display: none;
}
.add_control .action_close #close:checked ~ .notice_box {
	display: none;
}
.checkbox {
	display: none;
}

.g-body{}
.g-body.one{}


/*------------------------------------------------------------
 * container
------------------------------------------------------------*/
.g-container {
  padding-top: 87px;
  overflow-x: hidden;
  position: relative;
}
@media screen and (max-width: 768px) {
  .g-container {
    padding-top: 50px;
    padding-bottom: 60px;
  }
}


/*------------------------------------------------------------
 * swiper共通スタイル
------------------------------------------------------------*/
.slide-button-prev, .slide-button-next {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 34px;
  height: 34px;
  margin-top: -17px;
  border-radius: 50%;
  background: #000;
  -webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (max-width: 768px) {
  .slide-button-prev, .slide-button-next {
    display: none;
  }
}
.slide-button-prev:hover, .slide-button-next:hover {
  opacity: 0.5;
}
.slide-button-prev::before, .slide-button-next::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 51%;
  width: 8px;
  height: 8px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  margin-top: -4px;
  transition: all .2s;
}
.slide-button-prev:hover::before {
  left: 47%;
}
.slide-button-next:hover::before {
  left: 56%;
}
.slide-button-prev.swiper-button-disabled,
.slide-button-next.swiper-button-disabled {
  opacity: 0;
  visibility: hidden;
}
.slide-button-prev {
  left: 0;
}
@media screen and (max-width: 768px) {
  .slide-button-prev {
    left: 7%;
  }
}
.slide-button-prev:before {
  margin-left: -3px;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
.slide-button-next {
  right: 0;
}
@media screen and (max-width: 768px) {
  .slide-button-next {
    right: 7%;
  }
}
.slide-button-next::before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  margin-left: -6px;
}
@media screen and (max-width: 768px) {
  .slide-scrollbar {
    margin-top: 2rem;
    background-color: #ccc;
    border-radius: 5px;
  }
}
.slide-scrollbar .swiper-scrollbar-drag {
  height: 1px;
  background-color: #000;
  border-radius: 5px;
}
.slide-scrollbar.swiper-scrollbar-disabled {
  display: none;
}


/*------------------------------------------------------------
 * header
------------------------------------------------------------*/
.g-header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  padding: 0;
  background: #fff;
  -webkit-box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 0px 13px 2px #d6d6d6;
  border-radius: 0px;
  z-index: 1001;
}
/* @media screen and (max-width: 768px) {
  .g-header {
    position: relative;
  }
} */
.header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-left: 40px;
  position: relative;
}
@media screen and (max-width: 1250px) {
  .header-inner {
    padding-left: 20px;
  }
}
@media screen and (max-width: 768px) {
  .header-inner {
    padding: 0;
  }
}
@media screen and (max-width: 768px) {
  .header-inner.-js-scroll {
    width: 100%;
  }
}
.header-inner .site-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 1250px) {
  .header-inner .site-logo {
    width: 16vw;
  }
}
@media screen and (max-width: 860px) {
  .header-inner .site-logo {
    width: 12vw;
  }
}
@media screen and (max-width: 768px) {
  .header-inner .site-logo {
    margin-left: 15px;
    position: absolute;
    max-width: 150px;
    width: 30vw;
    top: 48%;
    transform: translateY(-50%);
  }
}
@media screen and (max-width: 375px) {
  .header-inner .site-logo {
    margin-left: 10px;
    width: 28vw;
  }
}
.header-inner .site-logo a {
  width: 197px;
  display: block;
}
.header-inner ul {
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 768px) {
  .header-inner .right-content {
    width: 100%;
  }
}
.header-inner .upper-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 36px;
}
@media screen and (max-width: 768px) {
  .header-inner .upper-menu {
    height: 24px;
    padding: 0;
    display: none;
  }
}
.header-inner .upper-menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 15px 0 0;
}
@media screen and (max-width: 860px) {
  .header-inner .upper-menu ul {
    margin-right: 10px;
  }
}
@media screen and (max-width: 768px) {
  .header-inner .upper-menu ul {
    margin: 0;
    padding: 0 5.5vw;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-bottom: 1px solid #707070;
    width: 100%;
    height: 100%;
    margin-bottom: 0;
  }
}
.header-inner .upper-menu ul li {
  font-size: 1.4rem;
  margin-right: 1.5em;
}
@media screen and (max-width: 860px) {
  .header-inner .upper-menu ul li {
    margin-right: 1em;
  }
}
@media screen and (max-width: 768px) {
  .header-inner .upper-menu ul li {
    font-size: 1rem;
    margin-right: 2%;
  }
}
.header-inner .upper-menu ul li:last-child {
  margin-right: 0;
}
.header-inner .upper-menu ul li a {
  color: #000;
  text-decoration: none;
}
.header-inner .upper-menu .site-menu {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform-origin: left top;
  transform-origin: left top;
}
.header-inner .upper-menu .site-menu.-js-hide {
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
}
@media screen and (max-width: 1250px) {
  .header-inner .upper-menu .site-menu li {
    font-size: 1vw;
    margin-right: 1.1em;
  }
}
@media screen and (max-width: 768px) {
  .header-inner .upper-menu .site-menu li {
    font-size: 1rem;
    margin-right: 1em;
  }
}
@media screen and (max-width: 768px) {
  .header-inner .upper-menu .my-page,
  .header-inner .upper-menu .app,
  .header-inner .upper-menu .language {
    display: none;
  }
}
.header-inner .my-page,
.header-inner .app,
.header-inner .access,
.header-inner .parking-lot,
.header-inner .language {
  position: relative;
  font-size: 1rem;
}
@media screen and (max-width: 768px) {
  .header-inner .my-page,
  .header-inner .app,
  .header-inner .access,
  .header-inner .parking-lot,
  .header-inner .language {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 60px;
    height: 50px;
    margin: 0;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
@media screen and (max-width: 375px) {
  .header-inner .parking-lot {
    width: 50px;
  }
  .header-inner .my-page,
  .header-inner .app,
  .header-inner .access,
  .header-inner .parking-lot,
  .header-inner .language {
    font-size: 0.9rem;
  }
}
.header-inner .access,
.header-inner .app {
  width: 75px;
}
@media screen and (max-width: 768px) {
  .header-inner .access,
  .header-inner .app {
    width: 60px;
  }
}
@media screen and (max-width: 375px) {
  .header-inner .access,
  .header-inner .app {
    width: 50px;
  }
}
.header-inner .my-page a,
.header-inner .app a,
.header-inner .access a,
.header-inner .parking-lot a,
.header-inner .language a {
  display: block;
  color: #000000;
  letter-spacing: 0;
  text-decoration: none;
}
@media screen and (min-width: 769px) {
  .header-inner .my-page a,
  .header-inner .app a,
  .header-inner .access a,
  .header-inner .parking-lot a,
  .header-inner .language a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100px;
    height: 36px;
  }
}
.header-inner .my-page span,
.header-inner .app span,
.header-inner .access span,
.header-inner .parking-lot span,
.header-inner .language span {
  position: relative;
  padding-left: 2.2em;
}
@media screen and (max-width: 768px) {
  .header-inner .my-page span,
  .header-inner .app span,
  .header-inner .access span,
  .header-inner .parking-lot span,
  .header-inner .language span {
    padding-left: 0;
    padding-top: 20px;
  }
}
.header-inner .my-page span:before,
.header-inner .app span:before,
.header-inner .access span:before,
.header-inner .parking-lot span:before,
.header-inner .language span:before {
  position: absolute;
  content: "";
  width: 17px;
  height: 19px;
  left: 0;
  top: -2px;
}
@media screen and (max-width: 768px) {
  .header-inner .my-page span:before,
  .header-inner .app span:before,
  .header-inner .access span:before,
  .header-inner .parking-lot span:before,
  .header-inner .language span:before {
    width: 16px;
    height: 18px;
    left: auto;
    right: 50%;
    top: 0;
    -webkit-transform: translateX(50%);
    transform: translateX(50%);
  }
}
.header-inner .my-page:before,
.header-inner .app:before,
.header-inner .access:before,
.header-inner .parking-lot:before,
.header-inner .language:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  height: 20px;
  margin: auto;
  background: #D6D6D6;
}
@media screen and (max-width: 768px) {
  .header-inner .my-page:before,
  .header-inner .app:before,
  .header-inner .access:before,
  .header-inner .parking-lot:before,
  .header-inner .language:before {
    height: 100%;
  }
}
.header-inner .my-page a {
  padding: 0 0 0 36px;
  background: url("../images/common/icon-mypage.svg") 14px 50%/16px auto no-repeat;
}
.header-inner .access a {
  padding: 0 0 0 29px;
  background: url("../images/common/icon-car.svg") 9px 50%/16px auto no-repeat;
}
@media screen and (max-width: 768px) {
  .header-inner .access a {
    background: url("../images/common/icon-car.svg") 11px 50%/20px auto no-repeat;
  }
}
.header-inner .app a {
  padding: 0 0 0 35px;
  background: url("../images/common/icon-app.svg") 14px 50%/16px auto no-repeat;
}
.header-inner .parking-lot a {
  padding: 0 0 0 36px;
  background: url("../images/common/icon-car.svg") 14px 50%/20px auto no-repeat;
}
@media screen and (max-width: 768px) {
  .header-inner .my-page a,
  .header-inner .app a,
  .header-inner .access a,
  .header-inner .parking-lot a {
    width: 100%;
    height: 100%;
    padding: 32px 0 0;
    text-align: center;
    background-position: 50% 9px;
  }
}
.header-inner .language {
  width: 80px;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .header-inner .language {
    width: 60px;
  }
}
@media screen and (max-width: 375px) {
  .header-inner .language {
    width: 50px;
  }
}
.header-inner .language > a {
  padding: 0 0 0 35px;
  background: url("../images/common/icon-language.svg") 10px 50%/18px auto no-repeat;
}
@media screen and (max-width: 768px) {
  .header-inner .language > a {
    width: 100%;
    height: 100%;
    padding: 32px 0 0;
    text-align: center;
    background-position: 50% 9px;
  }
}
.header-inner .language .language-list {
  display: none;
  position: absolute;
  top: 36px;
  right: 0;
  width: 100%;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  z-index: -99;
  background: #ffffff;
  border: 1px solid #D6D6D6;
}
@media screen and (max-width: 768px) {
  .header-inner .language .language-list {
    top: 50px;
  }
}
.header-inner .language .language-list.-open {
  display: block;
  opacity: 1;
  visibility: visible;
  z-index: 4;
  right: 0;
}
.header-inner .language .language-list li {
  display: block;
  border-top: 1px solid #D6D6D6;
  margin: 0;
  font-size: 1.2rem;
}
.header-inner .language .language-list li:first-child {
  border-top: none;
}
.header-inner .language .language-list li a {
  display: block;
  width: 100%;
  height: auto;
  padding: 16px 4px;
  color: #858585;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .header-inner .lower-menu.-js-scroll {
    /* border-top: 1px solid #D6D6D6; */
    width: 100%;
    background-color: #fff;
    position: fixed;
    top: 0;
  }
}
/* ヘッダー内サーチ */
.header-inner .header-search {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 100px;
  overflow: hidden;
  -webkit-transition: width 0.3s ease-in-out;
  transition: width 0.3s ease-in-out;
}
.header-inner .header-search.-js-active {
  width: 461px;
}
.header-inner .header-search.-js-active .search-inner {
  -webkit-transform: translateX(-100px);
  transform: translateX(-100px);
}
.header-inner .header-search .search-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 561px;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.header-inner .header-search .search-inner > * {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
.header-inner .header-search button {
  background: transparent;
  border: none;
  border-radius: 0;
}
.header-inner .header-search .search-toggle {
  position: relative;
  width: 100px;
  height: 36px;
  padding: 8px 10px 8px 30px;
  font-size: 1rem;
  background: url("../images/common/icon-search.svg") 9px 50%/auto 15px no-repeat;
}
.header-inner .header-search .search-toggle::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  height: 20px;
  margin: auto;
  background: #D6D6D6;
}
.header-inner .header-search .header-search-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
.header-inner .header-search .header-search-form input {
  outline: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 420px;
  margin-top: 3px;
  padding: 2px 0 2px 32px;
  color: #000;
  border: 1px solid #000;
  border-radius: 50px;
}
.header-inner .header-search .header-search-form input::-webkit-input-placeholder {
  color: #000;
}
.header-inner .header-search .header-search-form input::-moz-placeholder {
  color: #000;
}
.header-inner .header-search .header-search-form input:-ms-input-placeholder {
  color: #000;
}
.header-inner .header-search .header-search-form input::-ms-input-placeholder {
  color: #000;
}
.header-inner .header-search .header-search-form input::placeholder {
  color: #000;
}
.header-inner .header-search .header-search-form button[type=submit] {
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  width: 20px;
  height: 20px;
  margin: auto;
  background: url("../images/common/icon-search.svg") 50% 50%/auto 15px no-repeat;
}
.header-inner .header-search .search-close {
  position: relative;
  width: 41px;
  height: 36px;
}
.header-inner .header-search .search-close::before, .header-inner .header-search .search-close::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 18px;
  height: 1px;
  margin: auto;
  background: #000;
}
.header-inner .header-search .search-close::before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.header-inner .header-search .search-close::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
@media screen and (max-width: 768px) {
  .header-inner .header-search {
    display: none;
  }
}
/* ヘッダーメニュー */
.header-inner .lower-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .header-inner.-js-scroll .lower-menu {
    -webkit-box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
    box-shadow: 0px 0px 13px 2px #d6d6d6;
  }
}
.header-inner .lower-menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header-inner .lower-menu .header-menu {
  margin: 0;
}
@media screen and (max-width: 768px) {
  .header-inner .lower-menu .header-menu {
    display: none;
  }
}
.header-inner .lower-menu .header-menu li {
  margin-right: 30px;
  font-size: 1.4rem;
}
@media screen and (max-width: 1250px) {
  .header-inner .lower-menu .header-menu li {
    margin-right: 2em;
    font-size: 1.1vw;
  }
}
@media screen and (max-width: 860px) {
  .header-inner .lower-menu .header-menu li {
    margin-right: 1em;
    font-size: 1.2vw;
  }
}
.header-inner .lower-menu .header-menu li a {
  display: block;
  text-decoration: none;
  color: #000000;
}
.header-inner .lower-menu .header-menu li.-current {
  border-bottom: 2px solid;
}
@media screen and (max-width: 768px) {
  .header-inner .lower-menu .header-menu li {
    width: 50%;
  }
}
.header-inner .lower-menu .header-nav {
  position: absolute;
  padding: 40px;
  right: 0;
  left: 100%;
  top: 90px;
  width: 100%;
  min-height: 445px;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
  opacity: 0;
  z-index: -1;
  background: url('../images/common/bg-gr-header.jpg') repeat-x top left;
  background-size: auto 100%;
  box-shadow: 0px 4px 8px -9px #000;
}
@media screen and (max-width: 1250px) {
  .header-inner .lower-menu .header-nav {
    padding: 40px 20px;
  }
}
@media screen and (max-width: 768px) {
  .header-inner .lower-menu .header-nav {
    padding: 20px 0 120px;
    background: url('../images/common/bg-gr-sp.jpg') repeat-y top left;
    background-size: 100% auto;
    box-shadow: none;
  }
}
.header-inner .lower-menu .header-nav.one {
  margin-top:0 !important;
}
.header-inner .lower-menu .header-nav.-open {
  position: absolute;
  opacity: 1;
  z-index: 0;
  width: 100%;
  left: 0;
}
@media screen and (max-width: 768px) {
  .header-inner .lower-menu .header-nav.-open {
    position: fixed;
    height: 100%;
    overflow-y: scroll;
  }
}
.header-inner .lower-menu .header-nav.-fixed {
  position: fixed;
}
.header-inner .lower-menu .header-nav .adjust-width {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .header-inner .lower-menu .header-nav .adjust-width {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.header-inner .lower-menu .header-nav .main-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 65%;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .header-inner .lower-menu .header-nav .main-menu {
    width: 100vw;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 calc(50% - 50vw);
  }
}
.header-inner .lower-menu .header-nav .main-menu a {
  text-decoration: none;
  color: #000;
  display: block;
}
.header-inner .lower-menu .header-nav .main-menu .left-content,
.header-inner .lower-menu .header-nav .main-menu .right-content {
  width: 46%;
}
@media screen and (max-width: 768px) {
  .header-inner .lower-menu .header-nav .main-menu .left-content,
  .header-inner .lower-menu .header-nav .main-menu .right-content {
    width: 100%;
  }
  .header-inner .lower-menu .header-nav .main-menu .left-content {
    border-top: 1px solid #000;
  }
  .header-inner .lower-menu .header-nav .main-menu .right-content {
    border-bottom: 1px solid #000;
  }
}
.header-inner .lower-menu .header-nav .main-menu .left-content ul,
.header-inner .lower-menu .header-nav .main-menu .right-content ul {
  display: block;
}
@media screen and (max-width: 768px) {
  .header-inner .lower-menu .header-nav .main-menu .left-content ul,
  .header-inner .lower-menu .header-nav .main-menu .right-content ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.header-inner .lower-menu .header-nav .main-menu .left-content ul li,
.header-inner .lower-menu .header-nav .main-menu .right-content ul li {
  border-top: 1px solid rgba(0, 0, 0, 1);
}
@media screen and (max-width: 768px) {
  .header-inner .lower-menu .header-nav .main-menu .left-content ul li,
  .header-inner .lower-menu .header-nav .main-menu .right-content ul li {
    width: 50%;
    border-top: none;
    border-bottom: 1px solid rgba(0, 0, 0, 1);
  }
  .header-inner .lower-menu .header-nav .main-menu .left-content ul li:nth-child(odd),
  .header-inner .lower-menu .header-nav .main-menu .right-content ul li:nth-child(odd) {
    border-right: 1px solid #000;
  }
  .header-inner .lower-menu .header-nav .main-menu .right-content ul li:nth-last-child(-n+1) {
    border-bottom: none;
  }
}
.header-inner .lower-menu .header-nav .main-menu .left-content ul li a,
.header-inner .lower-menu .header-nav .main-menu .right-content ul li a {
  position: relative;
  padding: 16px 30px 16px 20px;
}
@media screen and (max-width: 768px) {
  .header-inner .lower-menu .header-nav .main-menu .left-content ul li a,
  .header-inner .lower-menu .header-nav .main-menu .right-content ul li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 60px;
    padding: 5px 20px 5px 15px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 1.4rem;
  }
}
.header-inner .lower-menu .header-nav .main-menu .left-content ul li a:after,
.header-inner .lower-menu .header-nav .main-menu .right-content ul li a:after {
  position: absolute;
  content: "";
  right: 20px;
  top: 50%;
  width: 7px;
  height: 7px;
  border: 1px solid;
  border-color: #000 #000 transparent transparent;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}
@media screen and (max-width: 768px) {
  .header-inner .lower-menu .header-nav .main-menu .left-content ul li a:after,
  .header-inner .lower-menu .header-nav .main-menu .right-content ul li a:after {
    right: 15px;
  }
}
.header-inner .lower-menu .header-nav .main-menu .left-content ul li:last-child a,
.header-inner .lower-menu .header-nav .main-menu .right-content ul li:last-child a {
  border-bottom: 1px solid rgba(0, 0, 0, 1);
}
@media screen and (max-width: 768px) {
  .header-inner .lower-menu .header-nav .main-menu .left-content ul li:last-child a,
  .header-inner .lower-menu .header-nav .main-menu .right-content ul li:last-child a {
    border: none;
  }
}
@media screen and (max-width: 768px) {
  .header-inner .lower-menu .header-nav .main-menu .right-content ul li:first-child,
  .header-inner .lower-menu .header-nav .main-menu .right-content ul li:nth-child(2) {
    border-top: none;
  }
}
.header-inner .lower-menu .header-nav .sub-menu {
  width: 18.5%;
  margin-right: 12%;
}
@media screen and (max-width: 768px) {
  .header-inner .lower-menu .header-nav .sub-menu {
    width: 100%;
    margin-right: 0;
  }
}
.header-inner .lower-menu .header-nav .sub-menu a {
  color: #000;
}
.header-inner .lower-menu .header-nav .sub-menu ul {
  display: block;
}
.header-inner .lower-menu .header-nav .sub-menu ul li {
  margin-bottom: 0.3em;
  text-indent: -1.2em;
  padding-left: 1.2em;
}
@media screen and (max-width: 768px) {
  .header-inner .lower-menu .header-nav .sub-menu ul li:last-child {
    margin-bottom: 1em;
  }
}
.header-inner .lower-menu .header-nav .sub-menu ul li a {
  position: relative;
  font-size: 1.3rem;
  text-decoration: none;
  padding-left: 1.5em;
}
.header-inner .lower-menu .header-nav .sub-menu ul li a.external {
  padding-right: 15px;
  background: url('../images/common/icon-external.svg') no-repeat right 5px;
  background-size: 10px auto;
}
.header-inner .lower-menu .header-nav .sub-menu ul li a:before {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  width: 7px;
  height: 7px;
  border: 1px solid;
  border-color: #000 #000 transparent transparent;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}
.header-inner .lower-menu .header-nav a.info-button {
  display: block;
  border: 1px solid #000;
  border-radius: 5px;
  padding: 10px;
  color: #000;
  width: 100%;
  text-align: center;
  text-decoration: none;
  margin-top: 10px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .header-inner .lower-menu .header-nav a.info-button {
    padding: 10px 20px;
    text-align: left;
  }
}
.header-inner .lower-menu .header-nav a.info-button:first-child {
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  .header-inner .lower-menu .header-nav a.info-button::after {
    content: "";
    position: absolute;
    right: 15px;
    top: 50%;
    width: 7px;
    height: 7px;
    border: 1px solid;
    border-color: #000 #000 transparent transparent;
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
  }
}
.header-inner .lower-menu .header-nav a.info-button span {
  position: relative;
  padding-left: 30px;
}
.header-inner .lower-menu .header-nav a.info-button span:before {
  position: absolute;
  content: "";
  width: 27px;
  height: 22px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url("../images/common/icon-car.svg") no-repeat;
  background-size: 100%;
}
.header-inner .lower-menu .header-nav a.info-button.business-hours span:before {
  width: 24px;
  height: 24px;
  background: url("../images/common/icon-time.svg") no-repeat;
  background-size: 100%;
}
.header-inner .lower-menu .header-nav a.info-button.parking span {
  padding-left: 36px;
}
/* ヘッダー施設 */
.header-inner .lower-menu .header-nav .tp-site .heading {
  display: block;
  width: 100%;
  text-align: center;
  color: #000;
  margin: 1em 0;
}
.header-inner .lower-menu .header-nav .tp-site .tp-site-list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 40px;
  border: 1px solid #707070;
  border-radius: 8px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .header-inner .lower-menu .header-nav .tp-site .tp-site-list {
    margin: 0 0 30px;
  }
}
.header-inner .lower-menu .header-nav .tp-site .tp-site-list li {
  width: 50%;
  overflow: hidden;
}
.header-inner .lower-menu .header-nav .tp-site .tp-site-list li:not(:nth-child(-n+2)) {
  border-top: 1px solid #707070;
}
.header-inner .lower-menu .header-nav .tp-site .tp-site-list li:nth-child(even) {
  border-left: 1px solid #707070;
}
.header-inner .lower-menu .header-nav .tp-site .tp-site-list li a {
  font-size: 16px;
  color: #000;
  text-decoration: none;
  padding: 15px 15px 12px;
  display: block;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 768px) {
  .header-inner .lower-menu .header-nav .tp-site .tp-site-list li a {
    font-size: 14px;
  }
}
@media screen and (max-width: 374px) {
  .header-inner .lower-menu .header-nav .tp-site .tp-site-list li a {
    font-size: 13px;
  }
}
.header-inner .lower-menu .header-nav .tp-site .tp-site-list li a::after {
  position: absolute;
  content: "";
  right: 15px;
  top: 50%;
  width: 7px;
  height: 7px;
  border: 1px solid;
  border-color: #000 #000 transparent transparent;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}
@media screen and (max-width: 768px) {
  .header-inner .lower-menu .header-nav .tp-site .tp-site-list li a::after {
    width: 5px;
    height: 5px;
    right: 10px;
  }
}
.header-inner .lower-menu .header-nav .tp-site .tp-site-list li a span {
  font-size: 12px;
  display: block;
}
@media screen and (max-width: 374px) {
  .header-inner .lower-menu .header-nav .tp-site .tp-site-list li a span {
    font-size: 10px;
  }
}
.header-inner .lower-menu .header-nav .tp-site .tp-site-other {
  text-align: center;
  max-width: 250px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
}
.header-inner .lower-menu .header-nav .tp-site .tp-site-other li {
  text-align: center;
  width: 100%;
  margin-bottom: 10px;
  border-radius: 8px;
}
.header-inner .lower-menu .header-nav .tp-site .tp-site-other li:first-child {
  border: 1px solid #707070;
  height: 60px;
}
.header-inner .lower-menu .header-nav .tp-site .tp-site-other li a {
  font-size: 16px;
  color: #000;
  text-decoration: none;
  padding: 0;
  display: block;
}
.header-inner .lower-menu .header-nav .tp-site .tp-site-other li:first-child a {
  padding: 10px 10px 10px;
  height: 100%;
}
@media screen and (max-width: 374px) {
  .header-inner .lower-menu .header-nav .tp-site .tp-site-other li a {
    font-size: 13px;
  }
}
.header-inner .lower-menu .header-nav .tp-site .tp-site-other li a img {
  width: 100%;
}
.header-inner .lower-menu .header-nav .tp-site .tp-site-other li a span {
  font-size: 12px;
  display: block;
}
@media screen and (max-width: 768px) {
  .header-inner .lower-menu .header-nav .tp-site .tp-site-other li a span {
    font-size: 10px;
  }
}
/* ヘッダーSNS */
.header-inner .lower-menu .header-nav .sns-link {
  padding: 40px 0;
}
@media screen and (max-width: 768px) {
  .header-inner .lower-menu .header-nav .sns-link {
    font-size: 2rem;
  }
}
.header-inner .lower-menu .header-nav .sns-link ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header-inner .lower-menu .header-nav .sns-link ul li {
  color: #000;
  margin-right: 20px;
}
.header-inner .lower-menu .header-nav .sns-link ul li:last-child {
  margin-right: 0;
}
/* ヘッダーメニュー内営業時間・駐車場 */
.header-inner .lower-menu .header-nav .info-button-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 20px;
}
.header-inner .lower-menu .header-nav .info-button-group .info-button {
  margin: 0;
  width: 46.8%;
}

/* ヘッダー SP */
.sp-content {
  width: 100%;
}
.sp-content .search-form {
  width: 100%;
  height: 50px;
}
.sp-content .search-form button[type=submit] {
  top: 0;
  bottom: 0;
  margin: auto;
}
/* アイコン */
.icon-menu {
  position: relative;
  display: block;
  height: 50px;
  width: 60px;
  background: #000;
  padding: 12px 18px;
  cursor: pointer;
}
.icon-menu i {
  position: absolute;
  display: block;
  width: 24px;
  height: 1px;
  background-color: #ffffff;
  -webkit-transition: ease 0.4s;
  transition: ease 0.4s;
}
.icon-menu i:nth-child(1) {
  top: 11px;
}
.icon-menu i:nth-child(2) {
  top: 18px;
}
.icon-menu i:nth-child(3) {
  top: 25px;
}
.icon-menu span {
  display: block;
  width: 100%;
  font-size: 1rem;
  color: #ffffff;
  position: absolute;
  bottom: 3px;
  right: 50%;
  -webkit-transform: translateX(50%);
  transform: translateX(50%);
  text-align: center;
}
.icon-menu .close {
  opacity: 0;
}
.icon-menu.-active .open {
  opacity: 0;
}
.icon-menu.-active .close {
  opacity: 1;
}
.icon-menu.-active i:nth-child(1) {
  top: 16px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.icon-menu.-active i:nth-child(2) {
  opacity: 0;
}
.icon-menu.-active i:nth-child(3) {
  top: 16px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.icon-menu.-js-scroll {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
}
.icon-menu.-js-scroll + .header-nav {
  top: 50px !important;
}
.header-inner.-js-scroll .header-nav {
  top: 50px !important;
}


/*------------------------------------------------------------
 * footer
------------------------------------------------------------*/
.pagetop-fix {
  position: fixed;
  bottom: 34px;
  right: 60px;
  z-index: 4;
  margin: 0;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #000;
  cursor: pointer;
  font-size: 1.6rem;
  color: #ffffff;
  text-align: center;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translate(0, 30px);
  transform: translate(0, 30px);
  -webkit-transition: opacity 0.3s, visibility 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, visibility 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s, -webkit-transform 0.3s;
}
@media screen and (max-width: 768px) {
  .pagetop-fix {
    width: 60px;
    height: 60px;
    border: 1px solid #fff;
    font-size: 1.1rem;
    bottom: 70px;
    right: 10px;
  }
}
.pagetop-fix span {
  position: absolute;
  top: 60%;
  right: 48%;
  -webkit-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
  line-height: 1.43;
}
.pagetop-fix span::after {
  content: "";
  display: block;
  position: absolute;
  top: -25%;
  left: 30%;
  width: 8px;
  height: 8px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  margin-top: -4px;
  transform: rotate(-45deg);
  transition: top .2s;
}
@media screen and (max-width: 768px) {
  .pagetop-fix span::after {
    left: 23%;
  }
}
@media screen and (min-width: 769px) {
  .pagetop-fix:hover {
    opacity: 0.5;
  }
}
.pagetop-fix:hover span::after {
  top: -40%;
}
.pagetop-fix.-js-fadein {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}
.pagetop-fix.-js-fixed {
  position: absolute;
  bottom: 210px;
  z-index: 1000;
}
@media screen and (max-width: 768px) {
  .pagetop-fix.-js-fixed {
    bottom: 105px;
    right: 10px;
  }
}

.g-footer {
  position: relative;
  text-align: center;
}
.g-footer ul {
  padding: 0;
  list-style: none;
}
.g-footer ul a {
  text-decoration: none;
}
.g-footer .footer-banner-container {
  position: relative;
  max-width: 1000px;
  margin: 20px auto 0;
}
.g-footer .footer-banner-container .swiper-button-disabled {
  display: none;
}
@media screen and (max-width: 768px) {
  .g-footer .footer-banner-container {
    margin: 0 auto;
  }
}
.g-footer .footer-banner-container .swiper-button-next,
.g-footer .footer-banner-container .swiper-button-prev {
  position: absolute;
  top: 49%;
  width: 34px;
  height: 34px;
  z-index: 3;
  cursor: pointer;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (max-width: 768px) {
  .g-footer .footer-banner-container .swiper-button-next,
  .g-footer .footer-banner-container .swiper-button-prev {
    top: 50%;
  }
}
.g-footer .footer-banner-container .swiper-button-next:before,
.g-footer .footer-banner-container .swiper-button-prev:before {
  position: absolute;
  content: "";
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  top: 0;
  left: 0;
  border-radius: 50%;
  background: #000;
  -webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
}
.g-footer .footer-banner-container .swiper-button-next:after,
.g-footer .footer-banner-container .swiper-button-prev:after {
  content: "";
  display: block;
  position: absolute;
  top: 65%;
  right: 65%;
  -webkit-transform: translate(50%, -50%) rotate(45deg);
  transform: translate(50%, -50%) rotate(45deg);
  width: 8px;
  height: 8px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  margin: -5px 0 0 -8px;
  transition: all .2s;
}
.g-footer .footer-banner-container .swiper-button-next {
  right: -15px;
}
.g-footer .footer-banner-container .swiper-button-next:after {
  margin-right: -3px;
}
.g-footer .footer-banner-container .swiper-button-next:hover:after {
  right: 60%;
}
.g-footer .footer-banner-container .swiper-button-prev {
  left: -15px;
}
.g-footer .footer-banner-container .swiper-button-prev:after {
  margin-left: -5px;
  right: 47%;
  -webkit-transform: translate(50%, -50%) rotate(-135deg);
  transform: translate(50%, -50%) rotate(-135deg);
}
.g-footer .footer-banner-container .swiper-button-prev:hover:after {
  right: 52%;
}
.g-footer .footer-banner {
  overflow-x: hidden;
}
.g-footer .footer-banner ul {
  padding: 0;
  list-style: none;
}
.g-footer .footer-banner ul li img {
  width: 100%;
}
.g-footer .footer-banner .swiper-wrapper {
  max-width: 1000px;
  margin: 20px auto 40px;
}
.g-footer .footer-card-links ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .g-footer .footer-card-links ul {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.g-footer .footer-card-links ul li {
  margin-right: 20px;
  width: 150px;
}
.g-footer .footer-card-links ul li:last-child {
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .g-footer .footer-card-links ul li {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 46.8%;
    margin-right: 6.4%;
  }
  .g-footer .footer-card-links ul li:nth-child(2n) {
    margin-right: 0;
  }
  .g-footer .footer-card-links ul li:nth-child(n+3) {
    margin-top: 20px;
  }
	.g-footer .footer-card-links ul li:last-child {
    margin-right: 53.2% !important;
  }
}
.g-footer .footer-card-links ul li a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 30px 0 0;
  background: #fff;
  color: #000;
  line-height: 1.42;
  width: 100%;
  height: 60px;
  font-size: 1.4rem;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .g-footer .footer-card-links ul li a {
    width: 100%;
    color: #000;
    background: #F4F4F4;
  }
}
.g-footer .footer-card-links ul li a:after {
  position: absolute;
  content: "";
  width: 16px;
  height: 12px;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url("../images/common/icon-blank.svg") no-repeat;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .g-footer .footer-card-links ul li a:after {
    right: 10px;
  }
}
.g-footer .footer-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  text-align: left;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .g-footer .footer-links {
    display: none;
  }
}
.g-footer .footer-links ul {
  margin: 0;
}
.g-footer .footer-links ul a {
  color: #000;
}
.g-footer .footer-links .left-content {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.g-footer .footer-links .left-content .upper-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.g-footer .footer-links .left-content .upper-content ul {
  font-size: 1.4rem;
  margin-right: 20px;
}
.g-footer .footer-links .left-content .upper-content ul:last-child {
  margin-right: 0;
}
.g-footer .footer-links .left-content .upper-content ul li {
  line-height: 1.68;
  text-indent: -1.5em;
  padding-left: 1.5em;
  margin-bottom: 1em;
}
.g-footer .footer-links .left-content .upper-content ul li a {
  position: relative;
  padding-left: 1.5em;
}
.g-footer .footer-links .left-content .upper-content ul li a.external {
  padding-right: 15px;
  background: url('../images/common/icon-external.svg') no-repeat right 5px;
  background-size: 10px auto;
}
@media screen and (max-width: 768px) {
  .g-footer .footer-links .left-content .upper-content ul li a.external {
    background: url('../images/common/icon-external-wh.svg') no-repeat right 5px;
  }
}
.g-footer .footer-links .left-content .upper-content ul li a:before {
  content: "";
  display: block;
  position: absolute;
  top: 14px;
  left: 8px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #2E2225;
  border-right: 1px solid #2E2225;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  margin: -4px 0 0 -8px;
}
.g-footer .footer-links .left-content .upper-content ul.sub li {
  margin-bottom: 0.55em;
  line-height: 1.2;
}
.g-footer .footer-links .left-content .upper-content ul.sub li a {
  color: #727272;
  font-size: 1.2rem;
}
.g-footer .footer-links .left-content .upper-content ul.sub li a:before {
  top: 11px;
}
.g-footer .footer-links .left-content .lower-content {
  margin-top: 1em;
}
.g-footer .footer-links .left-content .lower-content ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.g-footer .footer-links .left-content .lower-content ul li {
  margin-right: 25px;
}
.g-footer .footer-links .left-content .lower-content ul li:last-child {
  margin-right: 0;
}
.g-footer .footer-links .right-content {
  width: 230px;
  margin-left: 8%;
}
.g-footer .footer-links .right-content ul li {
  margin-top: 8px;
}
.g-footer .footer-links .right-content ul li:first-child {
  margin-top: 0;
}

/* フッター施設 */
.g-footer .other-facility {
  margin-top: 3em;
}
@media screen and (max-width: 768px) {
  .g-footer .other-facility {
    margin-top: 0;
  }
}
.g-footer .other-facility ul {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid #2E2225;
  border-bottom: 1px solid #2E2225;
}
@media screen and (max-width: 768px) {
  .g-footer .other-facility ul {
    border-bottom: none;
  }
}
.g-footer .other-facility ul li {
  width: calc(100% / 7);
  border-right: 1px solid #2E2225;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .g-footer .other-facility ul li {
    width: 50%;
    flex-wrap: wrap;
    border-bottom: 1px solid #2E2225;
  }
}
.g-footer .other-facility ul li:first-child {
  width: 100%;
  order: 8;
  border-right: none;
  border-top: 1px solid #2E2225;
}
.g-footer .other-facility ul li:last-child {
  border-right: none;
}
@media screen and (max-width: 768px) {
  .g-footer .other-facility ul li:first-child {
    width: 50%;
    order: 0;
    border-top: none;
  }
  .g-footer .other-facility ul li:nth-child(odd) {
    border-right: 1px solid #2E2225;
  }
  .g-footer .other-facility ul li:nth-child(even) {
    border-right: none;
  }
  .g-footer .other-facility ul li:nth-last-child(-n+2) {
    border-bottom: none;
  }
}
.g-footer .other-facility ul li a {
  font-size: 1.4rem;
  color: #000;
  text-align: center;
  width: 100%;
  height: 100%;
  padding: 11px 23px 8px 10px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  flex-direction: column;
  position: relative;
}
@media screen and (max-width: 768px) {
  .g-footer .other-facility ul li a {
    text-align: left;
    padding: 11px 10px 8px;
  }
}
.g-footer .other-facility ul li:first-child a {
  padding: 24px 10px;
}
@media screen and (max-width: 768px) {
  .g-footer .other-facility ul li:first-child a {
    padding: 12px 10px 11px;
  }
}
.g-footer .other-facility ul li:first-child a:hover {
  opacity: .5;
}
@media screen and (max-width: 768px) {
  .g-footer .other-facility ul li:first-child a:hover {
    opacity: 1;
  }
}
.g-footer .other-facility ul li a::after {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border: 1px solid;
  border-color: #000 #000 transparent transparent;
  position: absolute;
  right: 12px;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}
.g-footer .other-facility ul li:first-child a::after {
  content: none;
}
@media screen and (max-width: 768px) {
  .g-footer .other-facility ul li:first-child a::after {
    content: "";
  }
}
.g-footer .other-facility ul li a .facility-link {
  display: none;
}
@media screen and (max-width: 768px) {
  .g-footer .other-facility ul li a .facility-link {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .g-footer .other-facility ul li a .logo-link {
    display: none;
  }
}
.g-footer .other-facility ul li a span {
  font-size: 1.3rem;
  color: #727272;
  display: block;
  transition: color .2s;
}
@media screen and (max-width: 1200px) {
  .g-footer .other-facility ul li a span {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  .g-footer .other-facility ul li a span {
    font-size: 1rem;
  }
}
/* フッターポータル */
.g-footer .footer-logo {
  text-align: center;
  padding: 24px 36px 19px;
  background-color: transparent;
}
@media screen and (max-width: 768px) {
  .g-footer .footer-logo {
    padding: 0;
    background-color: #fff;
  }
}
.g-footer .footer-logo-link {
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .g-footer .footer-logo-link {
    padding: 25px 10px 23px;
    display: block;
  }
}
.g-footer .footer-logo-image {
  max-width: 185px;
  width: 100%;
  margin: 0 auto;
  display: block;
}

.g-footer .footer-sp-links {
  background: transparent;
  padding: 50px 0 40px;
}
@media screen and (max-width: 768px) {
  .g-footer .footer-sp-links {
    background: #000;
  }
}
.g-footer .footer-sp-links ul li {
  text-indent: -1.5em;
  padding-left: 1.5em;
  margin-bottom: 1em;
  text-align: left;
  font-size: 1.3rem;
  line-height: 1.84;
}
.g-footer .footer-sp-links ul li a {
  position: relative;
  padding-left: 1.5em;
  color: #000;
}
@media screen and (max-width: 768px) {
  .g-footer .footer-sp-links ul li a {
    color: #fff;
  }
}
.g-footer .footer-sp-links ul li a.external {
  padding-right: 15px;
  background: url('../images/common/icon-external-wh.svg') no-repeat right 6px;
  background-size: 10px auto;
}
.g-footer .footer-sp-links ul li a:before {
  content: "";
  display: block;
  position: absolute;
  top: 10px;
  left: 8px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  margin: -4px 0 0 -8px;
}
.g-footer .footer-bottom {
  background: #000;
}
@media screen and (max-width: 768px) {
  .g-footer .footer-bottom {
    border-top: 1px solid #fff;
  }
}
.g-footer .footer-bottom .inner {
  margin: auto;
  padding: 12px 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .g-footer .footer-bottom .inner {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 30px 10px;
  }
}
.g-footer .footer-bottom ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 768px) {
  .g-footer .footer-bottom ul {
    display: none;
  }
}
.g-footer .footer-bottom ul li {
  margin-right: 3em;
  line-height: 1;
}
.g-footer .footer-bottom ul li:last-child {
  margin-right: 0;
}
.g-footer .footer-bottom ul li a {
  position: relative;
  font-size: 1.3rem;
  color: #ffffff;
  text-decoration: none;
  padding-left: 1.5em;
}
.g-footer .footer-bottom ul li a.external {
  padding-right: 15px;
  background: url('../images/common/icon-external-wh.svg') no-repeat right 5px;
  background-size: 10px auto;
}
.g-footer .footer-bottom ul li a:after {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  width: 7px;
  height: 7px;
  border: 1px solid;
  border-color: #fff #fff transparent transparent;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}
.g-footer .footer-bottom .copyright {
  margin: 0;
  font-size: 0.875rem;
  color: #ffffff;
}
@media screen and (max-width: 768px) {
  .g-footer .footer-bottom .copyright {
    font-size: 1.1rem;
  }
}
.g-footer .sp-fixed-menu {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #000;
  left: 0;
  z-index: 8;
  border-top: 1px solid #fff;
}
.g-footer .sp-fixed-menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.g-footer .sp-fixed-menu ul li {
  width: 25%;
  padding-bottom: 5px;
  border-right: 1px solid #fff;
}
.g-footer .sp-fixed-menu ul li:last-child {
  border-right: none;
}
.g-footer .sp-fixed-menu ul li:last-child a {
  padding-bottom: 3px;
}
.g-footer .sp-fixed-menu ul li a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  font-size: 0.9rem;
  font-weight: bold;
  text-align: center;
  color: #fff;
  height: 55px;
  letter-spacing: 0;
}
@media screen and (max-width: 320px) {
  .g-footer .sp-fixed-menu ul li a {
    font-size: 1rem;
  }
}
.g-footer .sp-fixed-menu ul li a span {
  line-height: 1.16;
}
.g-footer .sp-fixed-menu ul li a:before {
  position: absolute;
  content: "";
  right: 50%;
  -webkit-transform: translateX(50%);
  transform: translateX(50%);
}
.g-footer .sp-fixed-menu ul li a.-shopguide:before {
  top: 5px;
  width: 23px;
  height: 28px;
  background: url("../images/common/icon-shopguide.svg") no-repeat;
  background-size: 100%;
}
.g-footer .sp-fixed-menu ul li a.-gourmetguide:before {
  top: 6px;
  width: 41px;
  height: 23px;
  background: url("../images/common/icon-gourmetguide.svg") no-repeat;
  background-size: 100%;
}
.g-footer .sp-fixed-menu ul li a.-floormap:before {
  top: 5px;
  width: 25px;
  height: 25px;
  background: url("../images/common/icon-floormap.svg") no-repeat;
  background-size: 100%;
}
.g-footer .sp-fixed-menu ul li a.-eventcampaign:before {
  top: 5px;
  width: 16px;
  height: 22px;
  background: url("../images/common/icon-eventcampaign.svg") no-repeat;
  background-size: 100%;
}
.g-footer .sp-fixed-menu ul li a.-access:before {
  top: 12px;
  width: 24px;
  height: 20px;
  background: url("../images/common/icon-car-sp.svg") no-repeat;
  background-size: 100%;
}

.pagetop {
  position: relative;
  width: 100%;
  bottom: 0;
  right: 0;
  z-index: 1;
  margin: 0;
  padding: 28px 20px 10px;
  border-top: solid 1px #2E2225;
  border-bottom: solid 1px #2E2225;
  cursor: pointer;
  color: #000;
  font-size: 1.8rem;
  letter-spacing: .2rem;
}
@media screen and (max-width: 768px) {
  .pagetop {
    font-size: 1.6rem;
    padding: 28px 20px 10px;
    background: transparent;
  }
}
.pagetop::before {
  content: "";
  display: block;
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  width: 6px;
  height: 6px;
  border-top: 1px solid #2E2225;
  border-right: 1px solid #2E2225;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  margin: 0 auto;
  transition: margin-top .2s;
}
@media screen and (max-width: 768px) {
  .pagetop::before {
    top: 19px;
  }
}
.pagetop:hover::before {
  margin-top: -4px;
}


/*------------------------------------------------------------
 * sidebar
------------------------------------------------------------*/
/*------------------------------------------------------------
 * button
------------------------------------------------------------*/
.link-button {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-height: 52px;
  border: 1px solid #2E2225;
  border-radius: 30px;
  max-width: 320px;
  width: 100%;
  margin: 0 auto;
  background: transparent;
  /* -webkit-box-shadow: 0 3px 12px rgba(0, 0, 0, 0.12);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.12); */
  text-decoration: none;
  color: #2E2225;
}
.link-button.-arrow-down:after {
  top: 55%;
  -webkit-transform: translate(50%, -50%) rotate(135deg);
  transform: translate(50%, -50%) rotate(135deg);
}
@media screen and (max-width: 768px) {
  .link-button {
    margin: 0 auto 20px;
  }
}
.link-button span {
  padding-right: 23px;
  display: block;
  position: relative;
}
.link-button span::after {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border: 1px solid;
  border-color: #000 #000 transparent transparent;
  position: absolute;
  top: 55%;
  right: 3px;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  transition: all .2s;
}
.link-button.-floormap span::after {
  border-color: #fff #fff transparent transparent;
}
.link-button:hover span::after {
  right: 0px;
}

/* カレンダー */
.link-button.-calendar::after {
  content: "";
  width: 23px;
  height: 22px;
  border: none;
  -webkit-transform: translate(-40%, 0%);
  transform: translate(-40%, 0%);
  background: url("../images/common/icon-calendar.svg") no-repeat;
  background-size: 100%;
}
.link-button.-calendar span::after {
  content: none;
}

/* PDF */
.link-button.-pdf {
  padding: 0 30px 0 24px;
}
@media screen and (max-width: 350px) {
  .link-button.-pdf {
    font-size: 1.4rem;
  }
}
.link-button.-pdf.-floormap {
  color: #fff;
  border: 2px solid #FD4D4F;
  background-color: #FD4D4F;
}
.link-button.-pdf span::before {
  content: "";
  display: block;
  width: 15px;
  height: 20px;
  border: none;
  background: url("../images/common/icon-pdf.svg") no-repeat;
  background-size: 100%;
  transform: skew(0) translateY(-50%) scale(1);
  position: absolute;
  top: 52%;
  right: 0;
}
.link-button.-pdf.-floormap span::before {
  content: none;
}
.link-button.-pdf span::after {
  right: -10px;
}
.link-button.-pdf:hover span::after {
  right: -15px;
}
.link-button.-pdf.-linebreak {
  line-height: 1.5;
}


/* トップ　もっと見る */
.link-button.-more {
  font-size: 1.2rem;
  width: auto;
  min-height: initial;
  min-height: auto;
  float: right;
  padding: 4px 0 4px 10px;
  margin: 2px 0 0 10px;
  box-shadow: none;
}
.link-button.-more span {
  padding-right: 25px;
}
.link-button.-more span::after {
  width: 8px;
  height: 1px;
  right: 12px;
  transition: all .2s;
}
.link-button.-more:hover span::after {
  right: 10px;
}

/* ボタン横並び */
.link-button-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 680px;
  margin: 3rem auto 9rem;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.link-button-group.-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.link-button-group.-center > * {
  width: 100%;
  max-width: 320px;
}
.link-button-group.-center > *:nth-child(n+2) {
  margin-left: 40px;
}
.link-button-group.-center .link-button:first-child {
  margin-right: 0 !important;
}
@media screen and (max-width: 768px) {
  .link-button-group.-center > * {
    max-width: none;
    margin: 0 auto;
  }
  .link-button-group.-center > *:not(:first-child) {
    margin: 20px auto 0;
  }
}
@media screen and (max-width: 768px) {
  .link-button-group {
    display: block;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 3rem;
  }
}
.link-button-group .link-button {
  margin: 0;
}
.link-button-group .link-button:first-child {
  margin-right: 10px;
}
@media screen and (max-width: 768px) {
  .link-button-group .link-button {
    width: 100%;
    margin: 20px auto 0;
  }
  .link-button-group .link-button:first-child {
    margin: 0 auto;
  }
}

/* 下層ページ　もっと見る */
.more-button,
p.bottom-button,
.bottom-button {
  margin: 3rem auto 9rem;
}
@media screen and (max-width: 768px) {
  .more-button,
  p.bottom-button,
  .bottom-button {
    margin-bottom: 3rem;
  }
}

/* 下層ページ　もっと見る */
/* p.bottom-button,
.bottom-button {
  margin: 3em auto 2.5em;
} */


/*======================================================================
 * 下層ページ
======================================================================*/
.l-page-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-height: 100px;
  padding: 58px 0 10px;
  margin-bottom: 40px;
  font-size: .9rem;
}
@media screen and (max-width: 540px) {
  .l-page-title.-char-long {
    font-size: 1.5vw;
  }
}
.l-page-title h1, .l-page-title p {
  font-size: 1.6em;
  margin-bottom: 0;
  font-weight: 100;
  line-height: 1.38;
  letter-spacing: .2rem;
  text-align: center;
}
.l-page-title h1 span, .l-page-title p span {
  display: block;
  font-size: 2.6em;
  font-weight: 300;
  line-height: 1;
  letter-spacing: .3rem;
}

/* パンくず */
.breadcrumbs ul {
  /* margin-top: 20px; */
  padding: 20px 0 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow-x: auto;
}
@media screen and (max-width: 768px) {
  .breadcrumbs ul {
    /* margin: 20px calc(50% - 50vw) 10px 0; */
    margin: 0 calc(50% - 50vw) 10px 0;
    padding-top: 20px;
    padding-bottom: 10px;
  }
}
.breadcrumbs ul li {
  position: relative;
  color: #727272;
  font-size: 1.2rem;
  margin-left: 1.4em;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .breadcrumbs ul li {
    font-size: 1.2rem;
  }
}
.breadcrumbs ul li:after {
  content: "";
  display: block;
  position: absolute;
  top: 75%;
  right: -8px;
  width: 4px;
  height: 4px;
  border-top: 1px solid #727272;
  border-right: 1px solid #727272;
  -webkit-transform: translate(50%, -50%) rotate(45deg);
  transform: translate(50%, -50%) rotate(45deg);
  margin: -4px 0 0 -8px;
}
.breadcrumbs ul li:first-child {
  margin-left: 0;
}
.breadcrumbs ul li:last-child:after {
  content: none;
}
.breadcrumbs ul li a {
  color: #727272;
}

/* タブ切り替え（イベント・キャンペーン） */
.l-tab-content {
  margin-top: 3.5rem;
  margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .l-tab-content {
    margin: 1.4rem -5.5vw 2rem;
  }
}
@media screen and (max-width: 768px) {
  .l-tab-content .adjust-width {
    padding: 0;
  }
  .l-tab-content .adjust-width ul {
    padding: 0 5.5vw;
  }
}
.l-tab-content ul {
  padding: 0;
  list-style: none;
  border-bottom: 1px solid #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .l-tab-content ul {
    padding: 0 5.5vw;
  }
}
.l-tab-content ul li {
  position: relative;
  font-size: 1.6rem;
  border-radius: 5px 5px 0 0;
  color: #000;
  border: solid #000;
  border-width: 1px 1px 0 1px;
  text-align: center;
  margin-right: 21px;
  cursor: pointer;
  width: 310px;
}
@media screen and (max-width: 768px) {
  .l-tab-content ul li {
    width: 31.2%;
    margin-right: 3.1%;
  }
}
.l-tab-content ul li:last-child {
  margin-right: 0;
}
.l-tab-content ul li.-active {
  color: #fff;
  border: solid #000;
  border-width: 1px 1px 0 1px;
  font-weight: bold;
  background: #000;
  height: 100%;
}
.l-tab-content ul li a,
.l-tab-content ul li > span {
  color: #000;
  padding: 12px 0 10px;
  display: block;
}
.l-tab-content ul li a {
  text-decoration: none;
}
.l-tab-content ul li.-active a,
.l-tab-content ul li.-active > span {
  color: #fff;
}

/* コンテンツ一覧 */
.l-content-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: -40px -25px 0 0;
}
@media screen and (max-width: 768px) {
  .l-content-list {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: -20px 0 0 0;
  }
}
.l-content-list > * {
  position: relative;
  width: calc(20% - 25px);
  margin: 40px 25px 0 0;
}
@media screen and (max-width: 980px) {
  .l-content-list > * {
    width: calc(25% - 25px);
  }
}
@media screen and (max-width: 768px) {
  .l-content-list > * {
    width: calc(50% - 10px);
    margin: 20px 0 0 0;
  }
}
.l-content-list:not(:has(> .bottom-button)) {
  margin-bottom: 9rem;
}
@media screen and (max-width: 768px) {
  .l-content-list:not(:has(> .bottom-button)) {
    margin-bottom: 3rem;
  }
}
.l-content-list:not(.-news):not(.single) > * {
  border-radius: 5px;
  background-color: #fff;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .l-content-list.-sp-col1 > * {
    width: 100%;
    padding: 10px;
  }
  .l-content-list.-sp-col1 .l-content-item a {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding-right: 2rem;
  }
  .l-content-list.-sp-col1 .l-content-item a::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 1rem;
    width: 0.8rem;
    height: 0.8rem;
    border-top: 1px solid #000;
    border-right: 1px solid #000;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    margin-top: -0.4rem;
  }
  .l-content-list.-sp-col1 .l-content-item .image {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 40%;
    max-width: 120px;
  }
  .l-content-list.-sp-col1 .l-content-item .content {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 0 0 0 1.7rem;
  }
  .l-content-list.-sp-col1 .l-content-item .title {
    margin-top: 0.8rem;
    line-height: 1.3;
  }
  .l-content-list.-sp-col1 .l-content-item .title .namekana {
    font-size: 1.1rem;
    display: block;
  }
  .l-content-list.-sp-col1 .l-content-item .shop {
    font-size: 1.2rem;
  }
  .l-content-list.-sp-col1 .l-content-item .info .open._sp-only {
    width: 100%;
    /* text-align: right; */
    padding-right: 1rem;
    margin-top: 0.4rem;
  }
}
.l-content-list.-news {
  display: block;
  margin: 0;
  border-top: 1px solid #000;
}
.l-content-list.-news .l-content-item {
  width: 100%;
  margin: 0;
  border-bottom: 1px solid #000;
}
.l-content-list.-news .l-content-item::after {
  content: "";
  display: block;
  position: absolute;
  right: 15px;
  top: 0;
  bottom: 0;
  width: 6px;
  height: 6px;
  margin: auto;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.l-content-list.-news .l-content-item.-new::before {
  content: none;
}
.l-content-list.-news .l-content-item.-new .date::after {
  content: "NEW";
  position: relative;
  bottom: 2px;
  margin-left: 8px;
  padding: 3px 8px;
  border-radius: 2px;
  font-size: 1.1rem;
  font-family: "Alegreya Sans", "Montserrat", sans-serif;
  background: #FD4D4F;
  color: #fff;
}
.l-content-list.-news .l-content-item .content {
  padding: 16px 40px 16px 0;
}
.l-content-list.-news .l-content-item .date {
  margin-bottom: 5px;
  color: #727272;
  font-family: "Alegreya Sans", "Montserrat", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .l-content-list.-news .l-content-item::after {
    right: 2px;
  }
  .l-content-list.-news .l-content-item .content {
    padding: 16px 36px 16px 0;
  }
}
@media screen and (min-width: 769px) {
  .l-content-slider {
    margin-left: -17px;
    margin-right: -17px;
    padding: 0 17px;
  }
}
@media screen and (max-width: 768px) {
  .l-content-slider {
    margin-right: calc(50% - 50vw);
  }
}
.l-content-slider .l-content-item {
  background-color: #fff;
  width: 18rem;
  height: auto;
  border-radius: 5px;
  -webkit-box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 0px 6px 0px #d6d6d6;
}
.l-content-slider .l-content-item.open-renewal-item {
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  box-shadow: none;
}
@media screen and (max-width: 768px) {
  .l-content-slider .l-content-item {
    width: 13rem;
  }
}
.l-content-slider .slide-button-prev,
.l-content-slider .slide-button-next {
  top: 50%;
}
.section-container.open .l-content-slider .slide-button-prev,
.section-container.open .l-content-slider .slide-button-next {
  top: 50%;
}

.l-content-item.-new:before {
  content: "NEW";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  background: #FD4D4F;
  padding: 1px 6px 0;
  border-radius: 3px;
  font-size: 1.3rem;
  font-family: "Alegreya Sans", "Montserrat", sans-serif;
  color: #FFF;
  text-align: center;
}
.l-content-item a {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
}
.l-content-item .image {
  position: relative;
  overflow: hidden;
}
.l-content-item .image::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.l-content-item .image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.l-content-item .image img.-blur {
  width: 100%;
  height: 100%;
  filter: blur(2px);
  z-index: 1;
}
/* .l-content-item .image.-size-landscape::before {
  padding-top: 75%;
} */
.l-content-item .image.-size-portrait::before {
  padding-top: 142%;
}
.l-content-item .image.-border {
}
.l-content-item .content {
  padding: 1.2rem 1rem;
}
@media screen and (max-width: 768px) {
  .l-content-item .content {
    padding: 1rem;
  }
}
.l-content-item .content > *:first-child {
  margin-top: 0;
}
.l-content-item .title {
  margin: 0.5rem 0 0;
}
@media screen and (max-width: 768px) {
  .l-content-item .title {
    font-size: 1.4rem;
  }
}
.l-content-list.-sp-col1 .l-content-item .title .namekana {
  font-size: 1.1rem;
  display: block;
}
.l-content-item .text {
  margin-top: 0.35em;
  color: #727272;
  font-size: 1.4rem;
  line-height: 1.43;
}
.l-content-item .text span {
  display: inline-block;
}
.l-content-item .text span:not(:last-child) {
  margin-right: 0.3em;
}
.l-content-item .-limit-2line {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-family: "Alegreya Sans", "Noto Sans JP", sans-serif;
}
.l-content-item .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 0.3rem;
  font-size: 1.2rem;
}
.l-content-item .info > * {
  margin: 0;
}
.l-content-item .info > *:not(:last-child) {
  margin-right: 1.8rem;
}
.l-content-item .info .category + .open {
  width: 100%;
  margin: 0.5rem 0 0;
}
.l-content-item .info .open {
  margin-left: auto;
  color: #FD4D4F;
}
.l-content-item .info .taxfree {
  width: 100%;
  margin-top: 10px;
}
.l-content-item .info .taxfree img {
  max-width: 65px;
  width: 100%;
  margin-left: auto;
  display: block;
}
@media screen and (max-width: 768px) {
  .l-content-item .info .taxfree img {
    max-width: 75px;
    margin-left: 0;
  }
}
.l-content-item .floor {
  position: relative;
  font-size: 1.1rem;
  line-height: 1;
  /* padding-left: 17px; */
}
.l-content-item .floor:before {
  position: absolute;
  content: "";
  width: 1.3rem;
  height: 1.2rem;
  top: 50%;
  left: 0;
  margin-top: -0.6rem;
  /* background: url("../images/common/icon-floor.svg") no-repeat center center; */
  background-size: contain;
}
.l-content-item .shop {
  color: #727272;
  margin-top: 3px;
}
.l-content-item .category {
  color: #000;
}
.l-content-item .date {
  margin-bottom: -10px;
  color: #727272;
  font-size: 1.4rem;
}
.l-content-item .shop-name {
  margin: -9px 0 -12px 0;
  padding-left: 20px;
  font-size: 1.4rem;
  line-height: 1.71;
  background: url("../images/common/icon-shop-name.svg") 0 50%/16px 16px no-repeat;
}
.l-content-item .news-title {
  color: #000;
  line-height: 1.375;
  word-break: break-all;
}

/* 今後のイベント情報 */
.l-title-line {
  position: relative;
  font-size: 2.2rem;
  font-weight: normal;
  margin: 0;
  padding: 0 0 10px;
  margin-bottom: 0;
  line-height: 1.5;
}
.l-title-line:after {
  position: absolute;
  content: "";
  border-radius: 1px;
  width: 100%;
  height: 1px;
  background: #000;
  left: 0;
  bottom: -1px;
}

.l-title-bg-blue {
  margin: 0;
  padding: 10px 12px;
  color: #fff;
  font-size: 1.8rem;
  font-weight: normal;
  line-height: 1.1;
  letter-spacing: 0.02em;
  background: #000;
  border-radius: 5px;
}

.l-title-bg-gray {
  margin: 0;
  padding: 7px 20px;
  font-size: 1.6rem;
  line-height: 1.6875;
  background: #000;
  color: #fff;
}

/* アクセス　アンカー */
.l-unker-link {
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.l-unker-link.-col3::after {
  content: "";
  display: block;
  width: 32%;
}
.l-unker-link.-col3 li {
  width: 32%;
}
.l-unker-link.-col3 a {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-height: 60px;
  text-align: center;
  line-height: 1.28;
}
@media screen and (max-width: 768px) {
  .l-unker-link.-col3 a {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 6px 0 12px;
    font-size: 1.4rem;
  }
}
.l-unker-link.-col3 a:after {
  right: 21px;
  top: -3px;
  width: 6px;
  height: 6px;
}
@media screen and (max-width: 768px) {
  .l-unker-link.-col3 a:after {
    top: auto;
    bottom: 6px;
    right: 0;
    left: 0;
    margin: auto;
  }
}
@media screen and (min-width: 769px) {
  .l-unker-link.-col4::before, .l-unker-link.-col4::after {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    content: "";
    display: block;
    width: calc((100% - 40px) / 4);
  }
  .l-unker-link.-col4 li {
    width: calc((100% - 40px) / 4);
    margin-top: 20px;
  }
}
@media screen and (max-width: 768px) {
  .l-unker-link.-col4 li {
    width: calc(50% - 5px);
  }
  .l-unker-link.-col4 li:nth-child(n+3) {
    margin-top: 10px;
  }
}
.l-unker-link.-col4 a {
  font-size: 1.4rem;
  line-height: 1.23;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 768px) {
  .l-unker-link.-col4 a {
    padding-right: 20px;
    line-height: 1.29;
  }
}
@media screen and (max-width: 359px) {
  .l-unker-link.-col4 a {
    padding-right: 26px;
    padding-left: 10px;
    font-size: 1.3rem;
  }
}
.l-unker-link li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.l-unker-link a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 50px;
  width: 100%;
  padding: 0.4em 40px 0.4em 20px;
  color: #000;
  border: 1px solid currentColor;
  border-radius: 5px;
  text-decoration: none;
}
.l-unker-link:not(.-col4) a {
  background: #fff;
}
.l-unker-link a::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 24px;
  width: 7px;
  height: 7px;
  margin: auto;
  border: 1px solid currentColor;
  border-width: 1px 1px 0 0;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
@media screen and (max-width: 768px) {
  .l-unker-link a::after {
    right: 20px;
  }
}
@media screen and (max-width: 350px) {
  .l-unker-link a::after {
    right: 12px;
  }
}


/*------------------------------------------------------------
 * SEARCH（フォーム）
------------------------------------------------------------*/
.search-form {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  border: 1px solid #000;
  display: block;
  border-radius: 5px;
  height: 42px;
  width: 600px;
  overflow: hidden;
  -webkit-box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
  margin: 0 auto 20px;
}
@media screen and (max-width: 768px) {
  .search-form {
    width: 100%;
  }
}
.search-form input[type=text] {
  border: none;
  padding: 0 40px 0 15px;
  font-size: 1.4rem;
  height: 100%;
  width: 100%;
}
.search-form input[type=text]::-webkit-input-placeholder {
  color: #000;
}
.search-form input[type=text]::-moz-placeholder {
  color: #000;
}
.search-form input[type=text]:-ms-input-placeholder {
  color: #000;
}
.search-form input[type=text]::-ms-input-placeholder {
  color: #000;
}
.search-form input[type=text]::placeholder {
  color: #000;
}
.search-form input[type=text]:focus {
  outline: 0;
}
.search-form button[type=submit] {
  cursor: pointer;
  font-size: 1.3em;
  color: inherit;
  border: none;
  background-color: #000;
  position: absolute;
  width: 2.5em;
  height: 100%;
  right: 0;
  outline: none;
}
.search-form button[type=submit] i {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.search-form button[type=submit] i:before {
  position: absolute;
  content: "";
  width: 22px;
  height: 22px;
  background: url('../images/common/icon-search-wh.svg') no-repeat center center / 100% 100% content-box;
}
.parking_box{
	position: fixed;
	right: 0;
	bottom: 140px;
}
.parking_box a{
	position: relative;
	display: block;
  text-decoration: none;
	width: 45px;
	height: 214px;
  margin: 0 auto;
  text-align: center;
  font-weight:normal;
  font-size: 16px;
  writing-mode: vertical-rl;
	background: url('../images/common/icon-car-wh.svg') top 17px center/22px no-repeat #000;
	color: #FFF;
	line-height: 45px;
	letter-spacing: 0.2em;
	padding-top:0.5em;
	border-radius: 10px 0 0 10px;
}
.parking_box a:hover{
	opacity: 1;
}
.parking_box a::after{
  content: "";
  position: absolute;
  bottom:17px;
  left:65%;
  transform: translateX(-65%);  
  border: 6px solid transparent;
  border-left: 8px solid #FFF; 
}
@media screen and (max-width: 768px) {
  .parking_box{
    display: none;
  }
}


/*------------------------------------------------------------
 * recommend-keywords, related-keywords
------------------------------------------------------------*/
.recommend-keywords,
.related-keywords {
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 946px;
  width: 100%;
  margin: 1.5rem auto 0;
}
@media screen and (max-width: 768px) {
  .recommend-keywords,
  .related-keywords {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    max-width: initial;
  }
}
.recommend-keywords .heading,
.related-keywords .heading {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  margin: 0 2rem 0 0;
  font-size: 1.4rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .recommend-keywords .heading,
  .related-keywords .heading {
    width: 100%;
    text-align: center;
    margin: 0 0 1.5rem;
  }
}
.recommend-keywords .heading span {
  padding-left: 25px;
  position: relative;
}
.recommend-keywords .heading span::before {
  content: "";
  width: 23px;
  height: 23px;
  display: block;
  background: url('../images/common/icon-search-or.svg') 0 50% / 20px auto no-repeat;
  position: absolute;
  top: -2px;
  left: 0;
}
@media screen and (max-width: 768px) {
  .recommend-keywords .heading span::before {
    top: 2px;
  }
}
.recommend-keywords ul,
.related-keywords ul {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: -0.6rem -0.5rem;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 768px) {
  .recommend-keywords ul,
  .related-keywords ul {
    width: 100%;
  }
}
.recommend-keywords ul li,
.related-keywords ul li {
  margin: 0.6rem 0.5rem;
}
.recommend-keywords ul li a,
.related-keywords ul li a {
  display: block;
  border: 1px solid #FD4D4F;
  border-radius: 20px;
  padding: 6px 12px;
  background: #fff;
  text-decoration: none;
  color: #FD4D4F;
  font-size: 1.3rem;
  font-weight: 500;
}


/*------------------------------------------------------------
 * LINE Found
------------------------------------------------------------*/
.founditem {
  display: block;
  position: fixed;
  bottom: 34px;
  left: 60px;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .founditem {
    margin-bottom: 20px;
    bottom: 65px;
    left: 10px;
  }
}
.founditem.-js-fixed {
  position: absolute;
  bottom: 210px;
}
@media screen and (max-width: 768px) {
  .founditem.-js-fixed {
    bottom: 94px;
  }
}

.founditem_link {
  color: inherit;
  width: 100%;
  text-decoration: none;
  display: block;
  position: relative;
  filter: drop-shadow(3px 2px 3px rgba(0, 0, 0, 0.4));
}
.founditem_link:hover {
  opacity: 1;
}
.founditem_link dl {
  width: 100%;
  margin: 0;
}
.founditem_logo {
  width: 80px;
  height: 80px;
  margin: 0;
  border: 1px solid #d6d6d6;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  z-index: 1;
  transform: translateX(-2px);
}
@media screen and (max-width: 768px) {
  .founditem_logo {
    width: 70px;
    height: 70px;
  }
}
.founditem_logo img {
  max-width: 50px;
}
@media screen and (max-width: 768px) {
  .founditem_logo img {
    max-width: 40px;
  }
}
.founditem_text {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  text-align: right;
  margin: 0 0 0 auto;
  padding: 8px 10px 8px 90px;
  border-radius: 25px;
  background-image: linear-gradient(180deg, #fe9394 0%, #fd5052 80%);
  transform: translate(2px, -10px);
}
@media screen and (max-width: 768px) {
  .founditem_text {
    font-size: 13px;
    padding: 8px 10px 8px 80px;
  }
}
@media screen and (max-width: 768px) {
  html[lang='en'] .founditem_text {
    padding: 8px 10px 8px 75px;
  }
}
.founditem_text span {
  padding-right: 20px;
  position: relative;
}
@media screen and (max-width: 768px) {
  html[lang='en'] .founditem_text span {
    padding-right: 15px;
  }
}
.founditem_text span::after {
  content: "";
  width: 9px;
  height: 9px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  transform: rotate(-45deg) translateY(-65%);
}
@media screen and (max-width: 768px) {
  html[lang='en'] .founditem_text span::after {
    right: -3px;
  }
}
.founditem_close {
  width: 18px;
  height: 18px;
  padding: 0;
  border: none;
  appearance: none;
  background: none;
  cursor: pointer;
  position: absolute;
  top: -40px;
  right: 12px;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .founditem_close {
    width: 12px;
    height: 12px;
    top: -33px;
  }
}
.founditem_close::before,
.founditem_close::after {
  content: "";
  width: 100%;
  height: 1px;
  display: block;
  background-color: #231815;
  position: absolute;
  top: 6px;
  left: 0;
}
.founditem_close::before {
  transform: rotate(45deg);
}
.founditem_close::after {
  transform: rotate(-45deg);
}


/*------------------------------------------------------------
 * search-box（検索）
------------------------------------------------------------*/
.search-box {
  padding: 15px 0 10px;
  margin: 15px auto 20px;
}
.search-box p.main-heading {
  text-align: center;
}
.search-box .sub-heading {
  position: relative;
  text-align: center;
  margin: 0;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .search-box .sub-heading {
    text-align: left;
  }
}
.search-box .sub-heading:before, .search-box .sub-heading:after {
  content: "";
  display: block;
  width: 16px;
  height: 1px;
  border-radius: 5px;
  background: #707070;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.search-box .sub-heading:after {
  -webkit-transform: rotate(0);
  transform: rotate(0);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.search-box .category .sub-heading.-active:after,
.search-box .floor .sub-heading.-active:after,
.search-box .kana .sub-heading.-active:after {
  -webkit-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.search-box .category {
  background: #ffffff;
  border-radius: 5px;
  padding: 20px 40px;
}
@media screen and (max-width: 768px) {
  .search-box .category {
    padding: 20px 25px;
  }
}
.search-box .sub-heading + .category-list {
  margin-top: 15px;
}
.search-box ul {
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.search-box ul li {
  margin-right: 13px;
  width: calc((100% - 39px) / 4);
  font-size: 1.4rem;
}
.search-box ul li input[type=checkbox],
.search-box ul li input[type=radio] {
  display: none;
}
.search-box ul li input[type=checkbox]:checked + label,
.search-box ul li input[type=radio]:checked + label {
  color: #fff;
  background: #000;
  margin: 0;
}
.search-box ul li label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-height: 50px;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  background: #fff;
  text-decoration: none;
  color: #000;
  padding: 5px;
  text-align: center;
  cursor: pointer;
  border: 1px solid #000;
  border-radius: 5px;
}
@media screen and (max-width: 768px) {
  .search-box ul li {
    width: calc((100% - 11px) / 2);
    margin-right: 11px;
  }
  .search-box ul li:nth-child(2n) {
    margin-right: 0;
  }
}
.search-box ul li:nth-child(4n) {
  margin-right: 0;
}
.search-box ul li:nth-child(n+5) {
  margin-top: 15px;
}
@media screen and (max-width: 768px) {
  .search-box ul li:nth-child(n+5) {
    margin-top: 0;
  }
}
@media screen and (max-width: 768px) {
  .search-box ul li:nth-child(n+3) {
    margin-top: 10px;
  }
}
.search-box ul li a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-height: 50px;
  width: 100%;
  border: 1px solid #000;
  border-radius: 5px;
  max-width: 320px;
  margin: 0 auto;
  background: #fff;
  text-decoration: none;
  color: #000;
  padding: 5px;
  text-align: center;
}
.search-box ul li a.-current {
  color: #fff;
  background: #000;
}
.search-box .subcatergory {
  display: none;
  margin: 0;
}
.search-box ul li input[type=checkbox]:checked + label + .subcatergory {
  width: 100%;
  display: inline;
}
.search-box .subcatergory li {
  width: auto;
  margin-bottom: 14px;
  padding: 0;
  font-size: 1.4rem;
  width: 100%;
  position: relative;
  border-bottom: 1px solid #000;
  padding-bottom: 14px;
}
.search-box .subcatergory li:first-child {
  margin-top: 14px;
}
.search-box .subcatergory li:last-child {
  margin-top: 0;
}
.search-box .subcatergory li label {
  text-align: left;
  border: none;
  max-width: initial;
  min-height: initial;
  width: auto;
  padding: 2px 2px 2px 23px;
  display: inline-block;
  position: relative;
}
.search-box .subcatergory li input[type=checkbox] {
  /* display: block; */
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  opacity: 0;
}
.search-box .subcatergory li input[type=checkbox]:checked + label,
.search-box .subcatergory li input[type=radio]:checked + label {
  color: #000;
  background-color: transparent;
}
.search-box .subcatergory li label::before,
.search-box .subcatergory li label::after {
  content: "";
  display: block;
  position: absolute;
  transform: translateY(-50%);
}
.search-box .subcatergory li label::before {
  width: 15px;
  height: 15px;
  border: 1px solid #000;
  top: 12px;
  left: 0;
}
.search-box .subcatergory li label::after {
  width: 4px;
  height: 8px;
  top: 0.42em;
  left: 0.45em;
  opacity: 0;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  transform: rotate(50deg);
  transition: opacity .1s;
}
.search-box .subcatergory li input[type=checkbox]:checked + label::after,
.search-box .subcatergory li input[type=radio]:checked + label::after {
  opacity: 1;
}
.search-box .subcatergory li:last-child p.bottom-button,
.search-box .subcatergory li:last-child .bottom-button {
  margin-bottom: 0;
}


.search-box .floor {
  background: #ffffff;
  margin: 10px auto;
  border-radius: 5px;
  padding: 20px 40px;
}
@media screen and (max-width: 768px) {
  .search-box .floor {
    padding: 20px 25px;
    margin: 20px auto;
  }
}
.search-box .floor .floor-list {
  margin-top: 15px;
}
.search-box .floor ul li {
  margin-right: 13px;
  width: calc((100% - 52px) / 5);
}
@media screen and (max-width: 768px) {
  .search-box .floor ul li {
    margin-right: 8px;
    width: calc((100% - 16px) / 3);
  }
}
.search-box .floor ul li a {
  min-height: 40px;
}
.search-box .floor ul li label {
  min-height: 40px;
}
.search-box .floor ul li:nth-child(5n) {
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .search-box .floor ul li:nth-child(5n) {
    margin-right: 8px;
  }
}
.search-box .floor ul li:nth-child(n+5) {
  margin-top: 0;
}
.search-box .floor ul li:nth-child(n+6) {
  margin-top: 15px;
}
@media screen and (max-width: 768px) {
  .search-box .floor ul li:nth-child(3n) {
    margin-right: 0;
  }
  .search-box .floor ul li:nth-child(n+3) {
    margin-top: 0;
  }
  .search-box .floor ul li:nth-child(n+4) {
    margin-top: 10px;
  }
}
.search-box .kana {
  background: #ffffff;
  margin: 10px auto 30px;
  border-radius: 5px;
  padding: 20px 40px;
}
@media screen and (max-width: 768px) {
  .search-box .kana {
    padding: 20px 25px;
    margin: 20px auto 30px;
  }
}
.search-box .kana .kana-list {
  margin-top: 15px;
}
.search-box .kana ul li {
  margin-right: 10px;
  width: calc((100% - 90px) / 10);
}
@media screen and (max-width: 768px) {
  .search-box .kana ul li {
    margin-right: 7px;
    width: calc((100% - 31px) / 5);
  }
}
.search-box .kana ul li label {
  min-height: 40px;
}
.search-box .kana ul li:nth-child(10n) {
  margin-right: 0;
}
.search-box .kana ul li:nth-child(5) {
  margin-right: 10px;
}
@media screen and (max-width: 768px) {
  .search-box .kana ul li:nth-child(5) {
    margin-right: 0;
  }
}
.search-box .kana ul li:nth-child(n+6) {
  margin-top: 0;
}
.search-box .kana ul li:nth-child(n+3) {
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  .search-box .kana ul li:nth-child(3n) {
    margin-right: 7px;
  }
  .search-box .kana ul li:nth-child(n+3) {
    margin-top: 0;
  }
  .search-box .kana ul li:nth-child(n+6) {
    margin-top: 10px;
  }
  .search-box .kana ul li:nth-child(5n) {
    margin-right: 0;
  }
}
.search-box .link-button-group {
  margin-top: 30px;
}
.search-box .show-button {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-height: 60px;
  /* border: 1px solid #000; */
  border: none;
  border-radius: 50px;
  max-width: 320px;
  width: 100%;
  background: #ffffff;
  /* -webkit-box-shadow: 0 3px 12px rgba(0, 0, 0, 0.12);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.12); */
  text-decoration: none;
  color: #000;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .search-box .show-button {
    width: 100%;
    max-width: none;
  }
}
.search-box .category-wrap .show-button {
  border: 1px solid #000;
}
.search-box .show-button:before {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  top: 50%;
  right: 30px;
  -webkit-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
  background: url("../images/common/icon-search.svg") no-repeat;
  background-size: 100%;
}
.search-box .clear-button {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-height: 60px;
  border-radius: 50px;
  max-width: 320px;
  width: 100%;
  background: #fff;
  /* -webkit-box-shadow: 0 3px 12px rgba(0, 0, 0, 0.12);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.12); */
  text-decoration: none;
  color: #000000;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .search-box .clear-button {
    width: 100%;
    max-width: none;
    margin-top: 10px;
  }
}


/*------------------------------------------------------------
 * search-box（検索）
------------------------------------------------------------*/
.article .detail-link a {
  color: #000;
}


/*------------------------------------------------------------
 * no data
------------------------------------------------------------*/
.adjust-width .no-data,
.adjust-width .no_data {
  padding: 0 0 20px;
}
.l-content-list:has(> .no-data) {
  margin-top: 0;
  margin-bottom: 0;
}
.l-content-list:not(.-news):not(.single) > .no-data {
  width: auto;
  margin: 0;
  background-color: transparent;
}


/*------------------------------------------------------------
 * sns-link, share-link
------------------------------------------------------------*/
.article .share-link {
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 34px auto 30px;
  height: 20px;
}
.article .event-detail .share-link {
  margin: 34px auto 0;
}
.article .shopnews-detail .share-link {
  margin: 34px auto 40px;
}
.article .share-link li {
  margin-right: 9px;
}
.article .share-link li:first-child {
  width: 93px;
}
.article .share-link li:last-child {
  margin-right: 0;
}
.article .share-link li table {
  margin: 0;
}
.article .share-link li a {
  display: inline-block;
}
.article .share-link li img {
  display: block;
}