@charset "UTF-8";
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

/* 大枠 */
html,
body {
  height: 100%;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: none;
  -webkit-overflow-scrolling: touch !important;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-size: 14px;
  line-height: 1.9;
  color: #313131;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
@media screen and (min-width: 769px) {
  body {
    font-size: 16px;
  }
  body.wrap {
    overflow: visible;
  }
}
body.wrap {
  overflow: hidden;
}
body #wrapper {
  height: auto;
}

#wrapper {
  width: 100%;
  margin: 0 auto;
  position: relative;
}

#screen {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 200;
}

@media print {
  html,
  html body {
    overflow: visible !important;
  }
}
/* アクセシビリティ */
img {
  image-rendering: auto;
  backface-visibility: hidden;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  box-shadow: #000 0 0 0; /* ロールオーバー対応 */
}

img,
x:-moz-any-link,
x:default {
  box-shadow: #000 0 0 0; /* IE7対応 */
}

/* リンク */
a {
  transition: 0.3s;
  display: inline-block;
}
a:link, a:visited, a:active {
  color: inherit;
  text-decoration: none;
}
@media screen and (min-width: 769px) {
  a:hover {
    color: inherit;
    opacity: 0.7;
    text-decoration: none !important;
  }
}

.NotoSans {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}

.NotoSerif {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
}

.container {
  width: 100%;
  max-width: 960px;
  padding: 0 30px;
  margin: 0 auto;
  position: relative;
}

.pc {
  display: none;
}
@media screen and (min-width: 769px) {
  .pc {
    display: block;
  }
}

.sp {
  display: block;
}
@media screen and (min-width: 769px) {
  .sp {
    display: none;
  }
}

/* 共通パーツ */
.info_important {
  display: none;
}

#main {
  padding-top: 60px;
}
@media screen and (min-width: 769px) {
  #main {
    padding-top: 70px;
  }
}

.top_area {
  padding: 20px 0 35px;
  margin-bottom: 30px;
  position: relative;
}
@media screen and (min-width: 769px) {
  .top_area {
    padding: 30px 0 45px;
    margin-bottom: 45px;
  }
}
.top_area .section_head {
  color: #fff;
  position: relative;
  z-index: 2;
}
.top_area .section_head_wrap {
  display: block;
  position: relative;
  z-index: 2;
}
.top_area::before {
  content: "";
  background: linear-gradient(60deg, #DDDDDD 0%, #E8AEC3 40%, #E64776 100%);
  width: calc(50vw + 120px);
  height: 92px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
@media screen and (min-width: 769px) {
  .top_area::before {
    width: calc(60vw + 120px);
    height: 120px;
  }
}
.top_area::after {
  content: "";
  background: #F7CFDE;
  width: calc(50vw + 120px);
  height: 92px;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 0;
}
@media screen and (min-width: 769px) {
  .top_area::after {
    width: calc(60vw + 120px);
    height: 120px;
  }
}

.section_head {
  text-align: center;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.1em;
}
.section_head .en {
  display: block;
  text-align: center;
  font-size: 24px;
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-weight: 600;
}
@media screen and (min-width: 769px) {
  .section_head .en {
    font-size: 32px;
  }
}

.sub_head {
  text-align: center;
  font-size: 20px;
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.parking_signal {
  display: flex;
  gap: 20px;
}
.parking_signal li {
  text-align: center;
  padding-top: 55px;
  position: relative;
}
.parking_signal li > span:first-child {
  width: 100%;
  height: 48px;
  background: #fff;
  border: 1px solid #69635F;
  border-radius: 10px;
  color: #69635F;
  font-size: 26px;
  font-weight: 500;
  line-height: 48px;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
}
.parking_signal li > span:first-child.full {
  background: #E38CA3;
  border: 1px solid #E38CA3;
  color: #fff;
}
.parking_signal li > span:first-child.emp {
  background: #fff;
  border: 1px solid #2068CB;
  color: #2068CB;
}
/* カテゴリーで探す */
.search_category ul {
  max-width: 315px;
  margin: 0 auto;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 500;
  color: #717171;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (min-width: 769px) {
  .search_category ul {
    max-width: none;
    font-size: 17px;
  }
}
.search_category ul li {
  width: 50%;
}
@media screen and (min-width: 769px) {
  .search_category ul li {
    width: 22%;
  }
}
.search_category ul li:nth-of-type(1), .search_category ul li:nth-of-type(2) {
  border-bottom: 1px solid #E2D5DA;
}
@media screen and (min-width: 769px) {
  .search_category ul li:nth-of-type(1), .search_category ul li:nth-of-type(2) {
    border-bottom: none;
  }
}
.search_category ul li a {
  text-align: center;
  width: 100%;
  height: 54px;
  padding-left: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.search_category ul li a::before {
  content: "";
  position: absolute;
}
.search_category ul li a.active {
  color: #E64776;
}
@media screen and (min-width: 769px) {
  .search_category ul li a:hover {
    color: #E64776;
    opacity: 1;
  }
}
.search_category ul li:nth-of-type(1) a, .search_category ul li:nth-of-type(3) a {
  border-right: 1px solid #E2D5DA;
}
.search_category ul li:nth-of-type(1) a, .search_category ul li:nth-of-type(2) a {
  margin-bottom: 8px;
}
@media screen and (min-width: 769px) {
  .search_category ul li:nth-of-type(1) a, .search_category ul li:nth-of-type(2) a {
    margin-bottom: 0;
  }
}
.search_category ul li:nth-of-type(3) a, .search_category ul li:nth-of-type(4) a {
  margin-top: 8px;
}
@media screen and (min-width: 769px) {
  .search_category ul li:nth-of-type(3) a, .search_category ul li:nth-of-type(4) a {
    margin-top: 0;
  }
}
@media screen and (min-width: 769px) {
  .search_category ul li:not(:last-of-type) a {
    border-right: 1px solid #E2D5DA;
  }
}
.search_category ul li.cat_fashion a::before {
  background-color: #717171;
  mask: url(../img/icon_cat01.svg);
  mask-size: cover;
  mask-repeat: no-repeat;
  width: 38px;
  height: 25px;
  left: 10px;
}
.search_category ul li.cat_fashion a.active::before {
  background-color: #E64776;
}
@media screen and (min-width: 769px) {
  .search_category ul li.cat_fashion a:hover::before {
    background-color: #E64776;
  }
}
.search_category ul li.cat_restaurant a::before {
  background-color: #717171;
  mask: url(../img/icon_cat02.svg);
  mask-size: cover;
  mask-repeat: no-repeat;
  width: 22px;
  height: 34px;
  left: 25px;
}
.search_category ul li.cat_restaurant a.active::before {
  background-color: #E64776;
}
@media screen and (min-width: 769px) {
  .search_category ul li.cat_restaurant a:hover::before {
    background-color: #E64776;
  }
}
.search_category ul li.cat_service a::before {
  background-color: #717171;
  mask: url(../img/icon_cat03.svg);
  mask-size: cover;
  mask-repeat: no-repeat;
  width: 36px;
  height: 32px;
  left: 10px;
}
@media screen and (min-width: 769px) {
  .search_category ul li.cat_service a::before {
    left: 20px;
  }
}
.search_category ul li.cat_service a.active::before {
  background-color: #E64776;
}
@media screen and (min-width: 769px) {
  .search_category ul li.cat_service a:hover::before {
    background-color: #E64776;
  }
}
.search_category ul li.cat_market a::before {
  background-color: #717171;
  mask: url(../img/icon_cat04.svg);
  mask-size: cover;
  mask-repeat: no-repeat;
  width: 37.5px;
  height: 32px;
  left: 20px;
}
.search_category ul li.cat_market a.active::before {
  background-color: #E64776;
}
@media screen and (min-width: 769px) {
  .search_category ul li.cat_market a:hover::before {
    background-color: #E64776;
  }
}
.search_category ul li.cat_all {
  width: 100%;
  margin-top: 8px;
}
@media screen and (min-width: 769px) {
  .search_category ul li.cat_all {
    width: 12%;
    margin-top: 0;
  }
}
.search_category ul li.cat_all a {
  border-top: 1px solid #E2D5DA;
  border-bottom: 1px solid #E2D5DA;
}
.search_category ul li.cat_all a::before {
  background-color: #717171;
  mask: url(../img/icon_cat05.svg);
  mask-size: cover;
  mask-repeat: no-repeat;
  width: 28px;
  height: 28px;
  right: 51%;
}
.search_category ul li.cat_all a.active::before {
  background-color: #E64776;
}
@media screen and (min-width: 769px) {
  .search_category ul li.cat_all a {
    border: none;
  }
  .search_category ul li.cat_all a:hover::before {
    background-color: #E64776;
  }
}

.search_list_title {
  font-weight: bold;
  margin-bottom: 20px;
}
@media screen and (min-width: 769px) {
  .search_list_title {
    font-size: 17px;
    margin-bottom: 25px;
    text-align: center;
  }
}

/* ショップ一覧 */
ul.shop_list {
  display: flex;
  flex-wrap: wrap;
  gap: 25px 15px;
}
@media screen and (min-width: 769px) {
  ul.shop_list {
    gap: 65px 45px;
  }
}
ul.shop_list li {
  width: calc((100% - 15px) / 2);
}
@media screen and (min-width: 769px) {
  ul.shop_list li {
    width: calc((100% - 90px) / 3);
  }
}
ul.shop_list li a {
  width: 100%;
}
ul.shop_list li a .img_wrap {
  /* overflow: hidden; */
  border-radius: 3px;
  margin-bottom: 15px;
  position: relative;
}
@media screen and (min-width: 769px) {
  ul.shop_list li a .img_wrap {
    margin-bottom: 25px;
  }
}
ul.shop_list li a .img_wrap img {
  aspect-ratio: 4/3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 3px;
}
ul.shop_list li a .txt_wrap .shop_name {
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 5px;
}
@media screen and (min-width: 769px) {
  ul.shop_list li a .txt_wrap .shop_name {
    font-size: 17px;
  }
}
ul.shop_list li a .txt_wrap .shop_category {
  font-size: 12px;
  color: #9D9D9D;
  line-height: 1.4;
  font-weight: 500;
}
@media screen and (min-width: 769px) {
  ul.shop_list li a .txt_wrap .shop_category {
    font-size: 14px;
  }
}
ul.shop_list li .txt_close {
  font-size: 12px;
  margin-top: 8px;
}
@media screen and (min-width: 769px) {
  ul.shop_list li .txt_close {
    font-size: 14px;
    margin-top: 10px;
  }
}
ul.shop_list li .txt_close .link_tel .tel {
  width: fit-content;
}

/* ショップニュース一覧 */
ul.shopnews_list {
  display: flex;
  flex-wrap: wrap;
  gap: 45px 15px;
  /* li.new{
  	a{
  		.img_wrap{
  			position: relative;
  			&::after{
  				content: "NEW";
  				font-family: "Inter", "Noto Sans JP", sans-serif;
  				text-align: center;
  				font-size: 10px;
  				color: #fff;
  				font-weight: 600;
  				width: 45px;
  				line-height: 17px;
  				background: #90102D;
  				position: absolute;
  				left: 0;
  				bottom: -8px;
  				z-index: 10;
  				@include mq-min(){
  					font-size: 14px;
  					width: 65px;
  					line-height: 24px;
  					bottom: -12px;
  				}
  			}
  		}
  	}
  } */
}
@media screen and (min-width: 769px) {
  ul.shopnews_list {
    gap: 65px 25px;
  }
}
ul.shopnews_list li {
  width: calc((100% - 15px) / 2);
}
@media screen and (min-width: 769px) {
  ul.shopnews_list li {
    width: calc((100% - 75px) / 4);
  }
}
ul.shopnews_list li a {
  width: 100%;
}
ul.shopnews_list li a .img_wrap {
  margin-bottom: 15px;
  overflow: inherit;
  border-radius: 3px;
  position: relative;
}
@media screen and (min-width: 769px) {
  ul.shopnews_list li a .img_wrap {
    margin-bottom: 25px;
  }
}
ul.shopnews_list li a .img_wrap img {
  aspect-ratio: 1/1;
  border-radius: 3px;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
ul.shopnews_list li a .txt_wrap .news_ttl {
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 5px;
}
@media screen and (min-width: 769px) {
  ul.shopnews_list li a .txt_wrap .news_ttl {
    font-size: 16px;
  }
}
ul.shopnews_list li a .txt_wrap p.shop_name {
  font-size: 12px;
  font-weight: 500;
  color: #9D9D9D;
  line-height: 1.4;
}
@media screen and (min-width: 769px) {
  ul.shopnews_list li a .txt_wrap p.shop_name {
    font-size: 13px;
  }
}

/* NEW */
ul.shop_list li.new a .img_wrap, ul.shopnews_list li.new a .img_wrap, ul.event_list li.new a .img_wrap {
  position: relative;
}
ul.shop_list li.new a .img_wrap::after, ul.shopnews_list li.new a .img_wrap::after, ul.event_list li.new a .img_wrap::after {
  content: "NEW";
  font-family: "Inter", "Noto Sans JP", sans-serif;
  text-align: center;
  font-size: 10px;
  color: #fff;
  font-weight: 600;
  width: 45px;
  line-height: 17px;
  background: #E64776;
  position: absolute;
  left: 0;
  bottom: -8px;
  z-index: 10;
}
@media screen and (min-width: 769px) {
  ul.shop_list li.new a .img_wrap::after, ul.shopnews_list li.new a .img_wrap::after, ul.event_list li.new a .img_wrap::after {
    font-size: 14px;
    width: 45px;
    height: 25px;
    line-height: 25px;
    bottom: -10px;
  }
}

/* date_label */
.date_label {
  position: absolute;
  font-size: 12px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  line-height: 1.2;
  left: -12px;
  top: -25px;
  background: #DD7B98;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 3;
}
@media screen and (min-width: 769px) {
  .date_label {
    font-size: 12px;
    width: 60px;
    height: 60px;
    left: -15px;
    top: -30px;
  }
}
.date_label.date_label_close {
  background: #999999;
  color: #fff;
  border: none;
}

/* イベント一覧 */
ul.event_list {
  display: flex;
  flex-wrap: wrap;
  gap: 45px 15px;
}
@media screen and (min-width: 769px) {
  ul.event_list {
    gap: 60px 40px;
  }
}
ul.event_list li {
  width: calc((100% - 15px) / 2);
}
@media screen and (min-width: 769px) {
  ul.event_list li {
    width: calc((100% - 120px) / 4);
  }
}
ul.event_list li a {
  width: 100%;
}
ul.event_list li a .img_wrap {
  margin-bottom: 12px;
  border-radius: 3px;
  position: relative;
}
ul.event_list li a .img_wrap img {
  aspect-ratio: 1/1;
  border-radius: 3px;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
ul.event_list li a .txt_wrap .event_ttl {
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 8px;
}
ul.event_list li a .txt_wrap p.date {
  font-size: 13px;
  color: #90102D;
  font-family: "Inter", "Noto Sans JP";
}
@media screen and (min-width: 769px) {
  ul.event_list li a .txt_wrap p.date {
    font-size: 15px;
  }
}
ul.event_list li a .txt_wrap p.date span {
  font-family: "Noto Sans JP", sans-serif;
  background: #90102D;
  color: #fff;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 2px 5px;
  margin-right: 4px;
}
@media screen and (min-width: 769px) {
  ul.event_list li a .txt_wrap p.date span {
    font-size: 12px;
  }
}

/* slider カルーセル */
.carousel_wrap {
  width: calc(100% + 30px);
}
.carousel_wrap .slick-slider .slick-list {
  padding: 0 47.5% 0 0;
}
.carousel_wrap .slick-slider .slick-list .slick-track .slick-slide {
  margin-right: 16px;
  margin-left: 6px;
}
.carousel_wrap .slick-slider .slick-list .slick-track .slick-slide a {
  width: 100%;
}
.carousel_wrap .slick-slider .slick-list .slick-track .slick-slide a img {
  aspect-ratio: 1/1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 3px;
  margin-bottom: 15px;
}

/* slider_recommend */
.recommend_area .carousel_wrap {
  width: 100%;
}
.recommend_area .carousel_wrap .slider_recommend .slick-list {
  padding: 0 50% 0 0;
}
.recommend_area .carousel_wrap .slider_recommend .slick-list .slick-track .slick-slide {
  margin: 0 6px;
}
.recommend_area .carousel_wrap .slider_recommend .slick-list .slick-track .slick-slide img {
  aspect-ratio: 4/3;
  width: 100%;
  height: 100%;
  margin-bottom: 8px;
}
.recommend_area .carousel_wrap .slider_recommend .slick-list .slick-track .slick-slide .txt_wrap .shop_name {
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 5px;
}
.recommend_area .carousel_wrap .slider_recommend .slick-list .slick-track .slick-slide .txt_wrap .shop_category {
  font-size: 12px;
  color: #9D9D9D;
  line-height: 1.4;
  font-weight: 500;
}

/* slider ショップ画像 */
.shop_img {
  position: relative;
  /* .favorite{
  	width: 52px;
  	position: absolute;
  	right: -13px;
  	bottom: -18px;
  	a{
  		img {
  			box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  			border-radius: 50%;
  		}
  	}
  } */
}
.shop_img .slider_shopdetail {
  /* dotsカスタム */
}
.shop_img .slider_shopdetail .slick-slide img {
  aspect-ratio: 4/3;
  width: 100%;
  object-fit: contain;
  border-radius: 5px;
}
.shop_img .slider_shopdetail .slick-dots {
  bottom: -20px !important;
}
.shop_img .slider_shopdetail .slick-dots li {
  width: 6px;
  height: 6px;
}
.shop_img .slider_shopdetail .slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 6px;
  width: 6px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
  position: relative;
}
.shop_img .slider_shopdetail .slick-dots li button::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  font-size: 0 !important;
  opacity: 1 !important;
  background: #CCCCCC;
  border-radius: 50%;
  width: 6px !important;
  height: 6px !important;
  line-height: 10px !important;
  text-align: center;
  -webkit-font-smoothing: antialiased;
}
.shop_img .slider_shopdetail .slick-dots li.slick-active button::before {
  content: "";
  background: #BC2245;
}

/* view more */
.btn_vm {
  text-align: center;
}
.btn_vm a {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.05em;
  font-family: "Manrope", "Noto Sans JP";
  color: #fff;
  background: #E64776;
  border: 1px solid #E64776;
  max-width: 200px;
  width: 100%;
  height: 45px;
  line-height: 43px;
  text-align: center;
  border-radius: 100px;
  position: relative;
}
.btn_vm a::after {
  content: "";
  position: absolute;
  top: calc(50% - 2.5px);
  right: 11px;
  width: 5px;
  height: 5px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
}
@media screen and (min-width: 769px) {
  .btn_vm a:hover {
    color: #BC2245;
    background: #fff;
    border: 1px solid #BC2245;
    opacity: 1;
  }
  .btn_vm a:hover::after {
    border-top: 1px solid #BC2245;
    border-right: 1px solid #BC2245;
  }
}
.btn_vm.back a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.025em;
}
.btn_vm.back a::after {
  left: 11px;
  transform: rotate(225deg);
}

/* key word */
.tag_keyword {
  color: #fff !important;
  font-size: 12px;
  line-height: 26px;
  height: 26px;
  padding: 0 15px;
  background: #E38CA3;
  border-radius: 5px;
}
.tag_keyword.active {
  background: #B70E4B;
}
@media screen and (min-width: 769px) {
  .tag_keyword {
    font-size: 14px;
  }
  .tag_keyword:hover {
    opacity: 1;
    background: #B70E4B;
  }
}
.tag_keyword::before {
  content: "#";
}

/* 横棒付きの見出し */
.catch {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}
.catch::before, .catch::after {
  border-top: 1px solid;
  content: "";
  width: calc((100% - 165px) / 2);
}
.catch::before {
  margin-right: 12px;
}
.catch::after {
  margin-left: 12px;
}

/* 電話リンクボタン */
.tel_link {
  max-width: 265px;
  margin: 0 auto 25px;
}
.tel_link a {
  height: 45px;
  width: 100%;
  border: 1px solid #BC2245;
  background: #fff;
  border-radius: 100px;
  font-size: 13px;
  color: #BC2245;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 5px;
  position: relative;
}
@media screen and (min-width: 769px) {
  .tel_link a {
    pointer-events: none;
  }
}
.tel_link a::before {
  content: "";
  background: url(../img/icon_tel.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 16px;
  height: 20px;
  position: absolute;
  left: 72px;
  top: 50%;
  transform: translateY(-50%);
}
.tel_link a::after {
  content: "";
  position: absolute;
  top: calc(50% - 2.5px);
  right: 14px;
  width: 5px;
  height: 5px;
  border-top: 1px solid #BC2245;
  border-right: 1px solid #BC2245;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* ページネーション */
.pagination {
  max-width: 400px;
  margin: 45px auto 0;
  position: relative;
}
@media screen and (min-width: 769px) {
  .pagination {
    max-width: 472px;
    margin: 110px auto 0;
  }
}
.pagination::before {
  content: "";
  position: absolute;
  top: calc(50% - 4px);
  left: -3px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #505050;
  border-right: 2px solid #505050;
  transform: rotate(225deg);
  cursor: pointer;
}
.pagination::after {
  content: "";
  position: absolute;
  top: calc(50% - 4px);
  right: -3px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #505050;
  border-right: 2px solid #505050;
  transform: rotate(45deg);
  cursor: pointer;
}
.pagination ul {
  display: flex;
  justify-content: center;
  gap: 8px;
  position: relative;
}
@media screen and (min-width: 769px) {
  .pagination ul {
    gap: 16px;
  }
}
.pagination ul li a {
  font-size: 18px;
  font-weight: 500;
  font-family: "Reem Kufi", "Noto Sans JP", sans-serif;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: #F5F5F5;
  border-radius: 50%;
}
@media screen and (min-width: 769px) {
  .pagination ul li a {
    width: 55px;
    height: 55px;
    line-height: 55px;
    font-size: 23px;
  }
}
.pagination ul li a.active {
  color: #fff;
  background: #90102D;
}
.pagination ul li a.omit {
  width: 10px;
  background: none;
  line-height: inherit;
}
.pagination ul .arrow a {
  font-size: 0;
  border-radius: 0;
  width: 20px;
  background: none;
}
@media screen and (min-width: 769px) {
  .pagination ul .arrow a {
    width: 30px;
  }
}
.pagination ul .prev {
  position: absolute;
  left: -10px;
}
@media screen and (min-width: 769px) {
  .pagination ul .prev {
    left: -15px;
  }
}
.pagination ul .next {
  position: absolute;
  right: -10px;
  z-index: 1;
}
@media screen and (min-width: 769px) {
  .pagination ul .next {
    right: -15px;
  }
}

/* フロアマップ */
.floor_map {
  background: #fff;
  border: 1px solid #9D9D9D;
  border-radius: 3px;
  position: relative;
  overflow: hidden;
}
.floor_map .zoom_btn {
  display: none;
  flex-direction: column;
  gap: 10px;
  position: absolute;
  right: 15px;
  bottom: 15px;
  z-index: 2;
  font-size: 20px;
}
@media screen and (min-width: 769px) {
  .floor_map .zoom_btn {
    display: flex;
  }
}
.floor_map .zoom_btn button {
  display: block;
  padding: 0;
  margin: 0;
  border: none;
  background: #E2A1BA;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  font-family: "Noto Sans JP", sans-serif;
  cursor: pointer;
}
@media screen and (min-width: 769px) {
  .floor_map .zoom_btn button {
    width: 58px;
    height: 58px;
    font-size: 32px;
  }
}
.floor_map #draggable {
  padding: 30px 15px;
  position: relative;
}
.floor_map #draggable svg {
  padding: 30px 15px;
}
.floor_map svg {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
}
.floor_map svg .area_mark {
  opacity: 0;
}
.floor_map svg a:hover .area_mark {
  opacity: 1;
}

.shopguide_detail .map_wrap, .shopnews_detail .map_wrap {
  max-width: 375px;
  margin: 0 auto;
}
.shopguide_detail .map_wrap .floor_map, .shopnews_detail .map_wrap .floor_map {
  /* padding: 15px 25px;
  overflow: visible; */
}
.shopguide_detail .map_wrap .floor_map svg, .shopnews_detail .map_wrap .floor_map svg {
  padding: 15px 25px;
}

/* ピン（ショップ詳細／フロアマップ） */
.pin {
  position: absolute;
  width: 20px;
  transform: translate(-10px, -28.57px);
  z-index: 1;
  /********  1F ******* */
  /********  2F ********/
  /******** 3F ********/
  /******** 4F ********/
  /******** 5F ********/
}
@media screen and (min-width: 769px) {
  .pin {
    width: 30px;
    transform: translate(-15px, -42.85px);
  }
}
.pin img {
  width: 100%;
}
.pin.shop00 {
  display: none !important;
}
.pin.shop01 {
  left: 13.6%;
  top: 53%;
}
.pin.shop02 {
  left: 18.7%;
  top: 51.5%;
}
.pin.shop03 {
  left: 24.5%;
  top: 51.5%;
}
.pin.shop04 {
  left: 40.4%;
  top: 59%;
}
.pin.shop05 {
  top: 62%;
  left: 17.5%;
}
.pin.shop06 {
  left: 21%;
  top: 62%;
}
.pin.shop07 {
  left: 24%;
  top: 62%;
}
.pin.shop08 {
  left: 43%;
  top: 46%;
}
@media screen and (min-width: 769px) {
  .pin.shop08 {
    top: 45%;
  }
}
.pin.shop12 {
  left: 63%;
  top: 46%;
}
.pin.shop09 {
  left: 9.5%;
  top: 45%;
}
.pin.shop10 {
  left: 19.4%;
  top: 44.5%;
}
.pin.shop11 {
  left: 25.5%;
  top: 45%;
}
.pin.shop13 {
  left: 32.5%;
  top: 43.6%;
}
.pin.shop14 {
  left: 11.5%;
  top: 52%;
}
.pin.shop15 {
  left: 16.5%;
  top: 52%;
}
.pin.shop16 {
  left: 31%;
  top: 53%;
}
.pin.shop17 {
  left: 70%;
  top: 27%;
}
.pin.shop18 {
  left: 67.1%;
  top: 42%;
}
.pin.shop19 {
  left: 62.6%;
  top: 42%;
}
.pin.shop20 {
  left: 61.5%;
  top: 52%;
}
.pin.shop21 {
  left: 58%;
  top: 59%;
}
.pin.shop22 {
  left: 66.3%;
  top: 59%;
}
.pin.shop23 {
  left: 71.7%;
  top: 59%;
}
.pin.shop24 {
  left: 77.4%;
  top: 59%;
}
.pin.shop25 {
  left: 82.5%;
  top: 59%;
}
.pin.shop26 {
  left: 50%;
  top: 28%;
}
.pin.shop27 {
  left: 48%;
  top: 40%;
}
.pin.shop41 {
  left: 53%;
  top: 39.5%;
}
.pin.shop42 {
  left: 56%;
  top: 39.5%;
}
.pin.shop43 {
  left: 53%;
  top: 43%;
}
.pin.shop44 {
  left: 56%;
  top: 43%;
}
.pin.shop45 {
  left: 46%;
  top: 52%;
}
.pin.shop46 {
  left: 50.4%;
  top: 49.5%;
}
.pin.shop47 {
  left: 55.3%;
  top: 50%;
}
.pin.shop29 {
  left: 6.3%;
  top: 55%;
}
.pin.shop30 {
  left: 13.4%;
  top: 57.7%;
}
.pin.shop31 {
  left: 34%;
  top: 55%;
}
.pin.shop32 {
  left: 17%;
  top: 47%;
}
.pin.shop33 {
  left: 47.5%;
  top: 36%;
}
.pin.shop34 {
  left: 17.5%;
  top: 50%;
}
.pin.shop35 {
  top: 56.5%;
  left: 38%;
}
.pin.shop36 {
  left: 50%;
  top: 64%;
}
.pin.shop38 {
  left: 47%;
  top: 58%;
}
.pin.shop39 {
  left: 60%;
  top: 61%;
}
.pin.shop40 {
  left: 75%;
  top: 45%;
}

/******** 2F-5F seer ********/
#draggable2 .pin.shop12 {
  left: 81.5%;
  top: 40%;
}

#draggable3 .pin.shop12 {
  left: 67%;
  top: 38%;
}

#draggable4 .pin.shop12 {
  left: 68%;
  top: 33%;
}

#draggable5 .pin.shop12 {
  left: 25%;
  top: 48%;
}

@media screen and (min-width: 769px) {
  .shopguide_detail .floor_map .zoom_btn button, .shopnews_detail .floor_map .zoom_btn button {
    width: 32px;
    height: 32px;
    font-size: 20px;
  }
}

/* お気に入りボタン（詳細ページ） */
.favorite_btn {
  width: 52px;
  height: 52px;
  position: absolute;
  right: 15px;
  bottom: -15px;
}
@media screen and (min-width: 769px) {
  .favorite_btn {
    right: -26px;
  }
}
.favorite_btn .check-box {
  /* position: relative; */
  display: block;
  height: auto;
}
.favorite_btn .check-box input {
  display: none;
}
.favorite_btn .check-box input + .check-text {
  position: relative;
  font-size: 0;
  cursor: pointer;
  height: 52px;
  width: 52px;
  display: block;
}
.favorite_btn .check-box input + .check-text::before {
  background-image: url(../img/btn_favorite_g.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 52px;
  position: absolute;
  width: 52px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  border-radius: 50%;
}
.favorite_btn .check-box input:checked + .check-text::before {
  background-image: url(../img/btn_favorite.png);
}
.favorite_btn .check-box input:checked + .check-text::after {
  content: "";
  position: absolute;
  /* left: -2px;
  top: -18px; */
  border: 1px solid #E64776;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  opacity: 1;
  animation: 1s circleanime2 forwards;
}

/* お気に入りボタン（一覧ページ） */
.shop_list .favorite_btn, .event_list .favorite_btn, .shopnews_list .favorite_btn {
  width: 24px;
  height: 24px;
  position: absolute;
  right: -8px;
  bottom: -8px;
}
@media screen and (min-width: 769px) {
  .shop_list .favorite_btn, .event_list .favorite_btn, .shopnews_list .favorite_btn {
    width: 34px;
    height: 34px;
    right: -12px;
    bottom: -12px;
  }
}
.shop_list .favorite_btn .check-box, .event_list .favorite_btn .check-box, .shopnews_list .favorite_btn .check-box {
  /* position: relative; */
  display: block;
  height: auto;
}
.shop_list .favorite_btn .check-box input, .event_list .favorite_btn .check-box input, .shopnews_list .favorite_btn .check-box input {
  display: none;
}
.shop_list .favorite_btn .check-box input + .check-text, .event_list .favorite_btn .check-box input + .check-text, .shopnews_list .favorite_btn .check-box input + .check-text {
  position: relative;
  font-size: 0;
  cursor: pointer;
  width: 24px;
  height: 24px;
  display: block;
}
@media screen and (min-width: 769px) {
  .shop_list .favorite_btn .check-box input + .check-text, .event_list .favorite_btn .check-box input + .check-text, .shopnews_list .favorite_btn .check-box input + .check-text {
    width: 34px;
    height: 34px;
  }
}
.shop_list .favorite_btn .check-box input + .check-text::before, .event_list .favorite_btn .check-box input + .check-text::before, .shopnews_list .favorite_btn .check-box input + .check-text::before {
  background-image: url(../img/btn_favorite_g.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  border-radius: 50%;
}
@media screen and (min-width: 769px) {
  .shop_list .favorite_btn .check-box input + .check-text::before, .event_list .favorite_btn .check-box input + .check-text::before, .shopnews_list .favorite_btn .check-box input + .check-text::before {
    width: 34px;
    height: 34px;
  }
}
.shop_list .favorite_btn .check-box input:checked + .check-text::before, .event_list .favorite_btn .check-box input:checked + .check-text::before, .shopnews_list .favorite_btn .check-box input:checked + .check-text::before {
  background-image: url(../img/btn_favorite.png);
}
.shop_list .favorite_btn .check-box input:checked + .check-text::after, .event_list .favorite_btn .check-box input:checked + .check-text::after, .shopnews_list .favorite_btn .check-box input:checked + .check-text::after {
  content: "";
  position: absolute;
  border: 1px solid #E64776;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  opacity: 1;
  animation: 1s circleanime2 forwards;
}
@media screen and (min-width: 769px) {
  .shop_list .favorite_btn .check-box input:checked + .check-text::after, .event_list .favorite_btn .check-box input:checked + .check-text::after, .shopnews_list .favorite_btn .check-box input:checked + .check-text::after {
    width: 34px;
    height: 34px;
  }
}

/* .shopnews_list{
    .favorite_btn{
		@include mq-min() {
			right: -20px;
		}
    }
} */
/*波形が広がるアニメーション*/
@keyframes circleanime2 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}
/*電話番号*/
@media screen and (min-width: 769px) {
  .tel {
    pointer-events: none;
  }
}

/* イベントカレンダー */
.event_calendar_wrap {
  padding: 15px 0 10px;
  border-bottom: 1px solid #D3D3D3;
  position: relative;
}
.event_calendar_wrap .date_box {
  font-family: "Inter", "Noto Sans JP";
  padding-bottom: 30px;
  margin-bottom: 20px;
  /* border-bottom: 1px solid #D3D3D3; */
  position: relative;
}
.event_calendar_wrap .date_box::before {
  content: "";
  background: #D3D3D3;
  width: calc(100% - 60px);
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 769px) {
  .event_calendar_wrap .date_box::before {
    width: calc(100% - 80px);
  }
}
.event_calendar_wrap .date_box .year_month {
  font-weight: 700;
  margin-bottom: 10px;
}
.event_calendar_wrap .date_box .year_month ul {
  display: flex;
  gap: 1px;
  line-height: 1.2;
}
@media screen and (min-width: 769px) {
  .event_calendar_wrap .date_box .year_month ul {
    gap: 2px;
  }
}
.event_calendar_wrap .date_box .year_month ul li {
  font-size: 24px;
  letter-spacing: 0.1em;
  width: calc((100% - 6px) / 7);
  text-align: center;
}
.event_calendar_wrap .date_box .year_month ul li .year {
  display: block;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-align: center;
}
.event_calendar_wrap .date_box .year_month ul li.off {
  opacity: 0;
}
.event_calendar_wrap .date_box .date_dow {
  font-weight: 500;
}
.event_calendar_wrap .date_box .date_dow ul {
  display: flex;
  gap: 1px;
  line-height: 1.2;
}
@media screen and (min-width: 769px) {
  .event_calendar_wrap .date_box .date_dow ul {
    gap: 2px;
  }
}
.event_calendar_wrap .date_box .date_dow ul li {
  font-size: 15px;
  width: calc((100% - 6px) / 7);
  text-align: center;
}
.event_calendar_wrap .date_box .date_dow ul li span {
  display: block;
  font-size: 10px;
  color: #BFBFBF;
  text-align: center;
  margin-top: 5px;
}
.event_calendar_wrap .date_box .date_dow ul li.sat {
  color: #4E9DBF;
}
.event_calendar_wrap .date_box .date_dow ul li.sat span {
  color: #4E9DBF;
}
.event_calendar_wrap .date_box .date_dow ul li.sun {
  color: #D56881;
}
.event_calendar_wrap .date_box .date_dow ul li.sun span {
  color: #D56881;
}
.event_calendar_wrap .event_box {
  margin-bottom: 15px;
}
.event_calendar_wrap .event_box .event_list {
  padding: 20px 0;
}
.event_calendar_wrap .event_box .event_list:nth-of-type(even) {
  background: #F5F4F4;
}
.event_calendar_wrap .event_box .event_list > a {
  display: block;
}
.event_calendar_wrap .event_box .event_list .date_mark {
  display: flex;
  gap: 2px;
}
.event_calendar_wrap .event_box .event_list .date_mark .day {
  width: calc((100% - 6px) / 7);
  height: 10px;
}
.event_calendar_wrap .event_box .event_list .date_mark .day.central_2F.on {
  background: #E64776;
}
.event_calendar_wrap .event_box .event_list .date_mark .day.other.on {
  background: #BAAC9E;
}
.event_calendar_wrap .event_box .event_list .date_mark .day.off {
  background: none;
}
.event_calendar_wrap .event_box .event_list .event_name {
  font-size: 12px;
  line-height: 1.2;
  width: fit-content;
  margin: 8px auto 0;
}
.event_calendar_wrap .event_box .event_list .event_name.coop {
  padding-left: 45px;
  position: relative;
}
.event_calendar_wrap .event_box .event_list .event_name.coop::before {
  content: "";
  background: url(../img/logo_coop.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 40px;
  height: 15px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.event_calendar_wrap .usage_guide {
  font-size: 12px;
}
.event_calendar_wrap .usage_guide .usage_guide_pink, .event_calendar_wrap .usage_guide .usage_guide_brown {
  padding-left: 40px;
  position: relative;
}
.event_calendar_wrap .usage_guide .usage_guide_pink::before, .event_calendar_wrap .usage_guide .usage_guide_brown::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 28px;
  height: 6px;
  background: #E64776;
  transform: translateY(-50%);
}
.event_calendar_wrap .usage_guide .usage_guide_brown::before {
  background: #BAAC9E;
}
.event_calendar_wrap .closeArea {
  margin-top: 20px;
}
.event_calendar_wrap .closeArea .close_box {
  text-align: center;
  padding-top: 10px;
  font-size: 12px;
  position: relative;
}
.event_calendar_wrap .closeArea .close_box::before {
  content: "";
  position: absolute;
  top: 0;
  left: calc(50% - 8px);
  width: 8px;
  height: 8px;
  border-top: 2px solid #E38CA3;
  border-right: 2px solid #E38CA3;
  transform: rotate(-45deg);
}
.event_calendar_wrap .arrow {
  width: 35px;
  height: 35px;
  background: #f1dce1;
  border-radius: 50%;
  position: absolute;
  top: 100px;
}
@media screen and (min-width: 769px) {
  .event_calendar_wrap .arrow {
    width: 42px;
    height: 42px;
    top: 95px;
  }
}
.event_calendar_wrap .arrow.next {
  right: -15px;
}
.event_calendar_wrap .arrow.next::before {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid #D56881;
  border-right: 2px solid #D56881;
  position: absolute;
  top: 50%;
  left: 42%;
  transform: rotate(45deg) translate(-50%);
  box-sizing: border-box;
}
@media screen and (min-width: 769px) {
  .event_calendar_wrap .arrow.next::before {
    width: 10px;
    height: 10px;
  }
}
.event_calendar_wrap .arrow.prev {
  left: -15px;
}
.event_calendar_wrap .arrow.prev::before {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid #D56881;
  border-right: 2px solid #D56881;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: rotate(225deg) translate(50%);
  box-sizing: border-box;
}
@media screen and (min-width: 769px) {
  .event_calendar_wrap .arrow.prev::before {
    width: 10px;
    height: 10px;
  }
}

/* ▼強制ポップアップ
--------------------------------------- */
#popup_wrap {
  display: none;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2500;
}
#popup_wrap .popup_bg {
  background: rgba(102, 102, 102, 0.8);
  height: 100vh;
  position: absolute;
  width: 100%;
}
#popup_wrap .popup_content {
  background: #fff;
  position: absolute;
  left: 50%;
  top: 140px;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-height: 70vh;
  height: fit-content;
  overflow-y: scroll;
}
@media screen and (min-width: 769px) {
  #popup_wrap .popup_content {
    max-width: 400px;
    max-height: 65vh;
  }
}
#popup_wrap .popup_content .popup_inner {
  padding: 35px 30px;
}
#popup_wrap .popup_content .date {
  font-family: "Inter", "Noto Sans JP";
  color: #B2B2B2;
  letter-spacing: 0.05em;
  margin-bottom: 5px;
}
#popup_wrap .popup_content .head {
  font-size: 19px;
  font-weight: bold;
  color: #BC2245;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
#popup_wrap .popup_content .txt {
  margin: 28px 0 35px;
}
#popup_wrap .popup_content ul li {
  text-align: center;
}
#popup_wrap .popup_content ul li:not(:last-of-type) {
  margin-bottom: 8px;
}
#popup_wrap .popup_content ul li a {
  font-size: 13px;
  line-height: 44px;
  color: #BC2245;
  background: #fff;
  text-align: center;
  max-width: 265px;
  width: 100%;
  height: 44px;
  border: 1px solid #BC2245;
  border-radius: 100px;
  position: relative;
}
#popup_wrap .popup_content ul li a::before {
  content: "";
  position: absolute;
  top: calc(50% - 2.5px);
  right: 12px;
  width: 5px;
  height: 5px;
  border-top: 1px solid #BC2245;
  border-right: 1px solid #BC2245;
  transform: rotate(45deg);
}
@media screen and (min-width: 769px) {
  #popup_wrap .popup_content ul li a:hover {
    background: #E64776;
    color: #fff;
    opacity: 1;
  }
  #popup_wrap .popup_content ul li a:hover::before {
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
  }
}
#popup_wrap .popup_content ul li.pdf_link a::after {
  content: "";
  background-color: #BC2245;
  mask: url(../img/icon_pdf.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  width: 18px;
  height: 19px;
  position: absolute;
  right: 75px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (min-width: 769px) {
  #popup_wrap .popup_content ul li.pdf_link a:hover {
    background: #BC2245;
    color: #fff;
    opacity: 1;
  }
  #popup_wrap .popup_content ul li.pdf_link a:hover::after {
    background-color: #fff;
  }
}
#popup_wrap .close_btn.force-popup-close {
  width: 100%;
  height: 50px;
  background-color: #E8E8E8;
  color: inherit;
  font-size: 21px;
  appearance: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
#popup_wrap .close_btn.force-popup-close span {
  position: relative;
  line-height: 1;
  padding-left: 25px;
  display: inline-block;
}
#popup_wrap .close_btn.force-popup-close span::before, #popup_wrap .close_btn.force-popup-close span::after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 1px;
  background-color: #383838;
  position: absolute;
  top: 50%;
  left: 0;
}
#popup_wrap .close_btn.force-popup-close span::before {
  transform: rotate(45deg);
}
#popup_wrap .close_btn.force-popup-close span::after {
  transform: rotate(-45deg);
}

/* ポップアップバナー */
#popup_wrap.popup_bnr .popup_content {
  padding: 0;
  height: fit-content;
  border: none;
  border-radius: 10px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
#popup_wrap.popup_bnr .popup_content::-webkit-scrollbar {
  display: none;
}
#popup_wrap.popup_bnr .popup_content .popup_inner {
  padding: 0;
}
#popup_wrap.popup_bnr .popup_content .close_btn.force-popup_bnr-close {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 20px;
  line-height: 1;
}

/* ▼ タイトル
--------------------------------------- */
#site_title {
  overflow: hidden;
}

h1.title {
  background: #999;
  padding: 20px 10px;
  margin-bottom: 30px;
  color: #fff;
  overflow: hidden;
}

/* ▼▼▼ ヘッダー
====================================================== */
header {
  width: 100%;
  background: #ccc;
  padding: 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  overflow: visible;
  /* @include mq-min(){
  	position: relative;
  	top: auto;
  	left: auto;
  	z-index: 0;
  	overflow: hidden;
  	.container{
  		padding: 0 20px;
  	}
  	.header_inner {
  		width: 100%;
  		height: auto;
  		background: none;
  		position: relative;
  		top: auto;
  		left: auto;
  		z-index: 0;
  	}
  } */
}
header .header_inner {
  width: 100%;
  height: 60px;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
}
@media screen and (min-width: 769px) {
  header .header_inner {
    height: 70px;
  }
}

.menu {
  --menu-width:60px;
  --menu-height:60px;
  /* --menu-bg-color:#000; */
  --menu-bar-color:#505050;
  --menu-bar-width:27px;
  --menu-bar-height:1px;
  --menu-bar-gap:4px;
  display: block;
  width: var(--menu-width);
  height: var(--menu-height);
  background: var(--menu-bg-color);
  position: absolute;
  top: 0;
  right: 10px;
  z-index: 2000;
  /* @include mq-min(){
  	display: none;
  } */
}
@media screen and (min-width: 769px) {
  .menu {
    right: 35px;
    height: 70px;
  }
}
.menu .icon {
  display: block;
  width: var(--menu-bar-width);
  height: var(--menu-bar-height);
  /* background: var(--menu-bar-color); */
  position: absolute;
  top: 45%;
  right: calc((var(--menu-width) - var(--menu-bar-width)) / 2);
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  transition: all 0.3s;
  /* span:before{
  	content: "Menu";
  	color:  var(--menu-bar-color);
  	font-size: 12px;
  	position: absolute;
  	left: 50%;
  	bottom: -30px;
  	transform: translate(-50%,-0%);
  	-webkit-transform: translate(-50%,-0%);
  } */
}
@media screen and (min-width: 769px) {
  .menu .icon {
    top: 42%;
  }
}
.menu .icon::before, .menu .icon::after {
  content: "";
  width: var(--menu-bar-width);
  height: var(--menu-bar-height);
  background: var(--menu-bar-color);
  position: absolute;
  transition: all 0.3s;
  right: 0;
}
.menu .icon::before {
  top: calc(-1 * var(--menu-bar-gap));
}
.menu .icon::after {
  bottom: calc(-1 * var(--menu-bar-gap));
}
.menu .icon.active {
  background: transparent;
  /* span:before{
  	content: "Close";
  } */
}
.menu .icon.active::before {
  transform: rotate(-135deg);
  top: 0;
}
.menu .icon.active::after {
  transform: rotate(135deg);
  bottom: 0;
}
.menu .txt {
  font-size: 11px;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
@media screen and (min-width: 769px) {
  .menu {
    cursor: pointer;
  }
}

/* グローバルナビゲーション */
#gnav {
  display: block !important;
  transition: 0.5s ease-in-out;
  float: none;
  width: 100%;
  max-height: 100vh;
  padding-top: 60px;
  margin: 0;
  background: #FFF;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1000;
  overflow: auto;
  transform: translateY(-100%);
  /* @include mq-min(){
  	background: none;
  	padding-top:0;
  	transition: 0s;
  	position: relative;
  	top: auto;
  	left: auto;
  	transform: translateY(0);
  	overflow: hidden;
  } */
  /* ul {
  	display: block;
  	@include mq-min(){
  		display: flex;
  	}
  	> li {
  		width: 100%;
  		max-width: 100%;
  		height: auto;
  		text-indent: 0;
  		@include mq-min(){
  			width: auto;
  		}
  		a {
  			display: block;
  			text-decoration: none;
  			height: 50px;
  			border-bottom: 1px solid #ccc;
  			padding: 0 15px;
  			color: #333;
  			line-height: 50px;
  			font-weight: bold;
  			@include mq-min(){
  				height: auto;
  				border-bottom: none;
  				padding: 0;
  				line-height: inherit;
  				font-weight: normal;
  			}
  			&:hover {
  				text-decoration: none;
  				@include mq-min(){
  					text-decoration: none;
  					opacity: 0.6;
  				}
  			}
  		}
  	}
  } */
}
@media screen and (min-width: 769px) {
  #gnav {
    padding-top: 70px;
  }
}
#gnav.open {
  transform: translateY(0);
}

/* ▼▼▼ メイン 「コンテンツとサイドを囲む要素」
====================================================== */
#main {
  margin: 0 auto;
  clear: both;
  overflow: hidden;
}

.menu_fixed {
  position: fixed;
  width: 100%;
  height: 100%;
  /* @include mq-min(){
  	position: relative;
  	width: auto;
  	height: auto;
  } */
}

/* ▼ パンくず
--------------------------------------- */
#path {
  margin-bottom: 25px;
}
#path .container ul {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 8px;
}
#path .container ul li {
  font-size: 12px;
  font-weight: 500;
  color: #505050;
}
@media screen and (min-width: 769px) {
  #path .container ul li {
    font-size: 14px;
  }
}
#path .container ul li:not(:last-child) {
  color: #BC2245;
}
#path .container ul li:not(:first-child) {
  position: relative;
  padding-left: 12px;
}
#path .container ul li:not(:first-child)::before {
  content: "";
  position: absolute;
  top: calc(50% - 2.5px);
  left: 0;
  width: 5px;
  height: 5px;
  border-top: 1px solid #505050;
  border-right: 1px solid #505050;
  transform: rotate(45deg);
}
#path .container ul li a {
  text-decoration: underline;
}

/* ▼ システム
--------------------------------------- */
.disabled {
  opacity: 0.5;
  pointer-events: none;
}

/* ▼ ページ上部へ戻る
--------------------------------------- */
.pagetop {
  width: 30px;
  height: 45px;
  bottom: 75px;
  right: 30px;
  z-index: 2000;
  position: fixed;
  cursor: pointer;
}
@media screen and (min-width: 769px) {
  .pagetop {
    padding: 0;
    right: calc((100vw - 1000px) / 2 - 50px);
    width: 42px;
    height: 62px;
  }
}

/* ▼ コピーライト
--------------------------------------- */
#copyright {
  font-size: 12px;
  color: #fff;
}

/* ▼▼▼ 404
====================================================== */
#not_found {
  padding: 100px 20px 60px;
}
@media screen and (min-width: 769px) {
  #not_found {
    padding: 8vw 20px;
  }
}
#not_found p {
  font-size: 14px;
  text-align: center;
}
#not_found p.arial {
  margin-bottom: 10px;
  font-size: 39px;
  font-family: "Arial", "メイリオ";
}
@media screen and (min-width: 769px) {
  #not_found p.arial {
    margin-bottom: 10px;
    font-size: 42px;
  }
}
#not_found p.arial + p {
  margin-bottom: 20px;
  font-size: 17px;
  font-weight: bold;
}
@media screen and (min-width: 769px) {
  #not_found p.arial + p {
    font-size: 18px;
  }
}
#not_found p.txt {
  margin-bottom: 30px;
  line-height: 1.6;
}
@media screen and (min-width: 769px) {
  #not_found p.txt {
    line-height: 1.9;
  }
}
#not_found .top_btn a {
  display: inline-block;
  padding: 15px 40px;
  border: 1px solid #ccc;
}