/* CSS Document */
/*----------------------------------------
グルメページ　スタイルシート
PC/SP共通
----------------------------------------*/ :root {
  --color-gourmet-base-dark: #222;
  --color-gourmet-base-middle: #777;
  --color-gourmet-base-light: #eee;
}
/*--------------------
各ページ共通（ただし主にindex.jsp）
--------------------*/
/**/
.pc .coverlink {
  display: none;
}
.pc #contents {
  position: relative;
}
.item .img_objfit img, .img_bg_css {
  /* border-radius: 0;
  box-shadow: none; */
}
.morelink span {
  background: var(--color-gourmet-base-dark);
  color: #fff;
}
.morelink span:after {
  color: #fff;
}
/*
header
*/
#headerbg {
  background: var(--color-gourmet-base-light);
  height: 340px;
  width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0px;
}
#contents h2 {
  max-width: 100%;
  height: 340px;
  margin: 0px auto;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.4);
  box-sizing: border-box;
  border: none;
}
#headerbg .image {
  width: calc(100% / 4);
  height: 340px;
}
#contents h2 {
  width: 100%;
  font-size: 80px;
  padding-top: 80px;
  letter-spacing: 0.06em;
  box-shadow: none;
  border-radius: 0;
  color: #fff;
  line-height: 1.2em;
  box-sizing: border-box;
  font-family: var(--fontfamily-english);
}
#contents h2 em {
  display: block;
  font-family: var(--fontfamily-base);
  font-size: 20px;
  letter-spacing: 0;
}
#contents h2 em:before {
  content: "";
  display: block;
  width: 20%;
  height: 1px;
  background: #fff;
  margin: 20px auto 0;
}
/*リスト*/
.header_navlist {
  width: 100%;
  box-sizing: border-box;
}
.header_navlist .inner {
  margin: 30px auto;
  padding: 0;
  box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.1);
  border-radius: var(--box-radius-small);
  background: #fff;
}
.header_navlist ul {
  padding: 16px 10px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  box-sizing: border-box;
}
.header_navlist ul li {
  width: calc(100% / 4);
  box-sizing: border-box;
  border-left: 1px solid var(--color-base-line-dark);
  position: relative;
}
.header_navlist ul li a {
  padding: 10px 0 30px;
  text-align: center;
  line-height: 1.0em;
  box-sizing: border-box;
  font-size: 16px;
  font-weight: bold;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header_navlist ul li a:after {
  width: 100%;
  text-align: center;
  font-family: var(--fontfamily-icon);
  content: "\e5cf";
  font-size: 28px;
  display: block;
  position: absolute;
  font-weight: normal;
  bottom: 1px;
  left: 0;
}
.header_navlist ul li:first-child {
  border: none;
}
/*
共通タイトル
*/
#contents h3 {
  background: none;
  padding: 0;
}
#contents .title {
  position: relative;
}
#contents .title h3 {
  background: none;
  border: none;
  margin: 0;
  padding: 0;
  text-align: left;
}
#contents .title h3 span {
  text-align: left;
  margin-left: -14px;
  display: inline-block;
  font-weight: normal;
  font-size: 14px;
  position: relative;
}
#contents .title h3 span:before {
  content: "";
  position: absolute;
  width: calc(100% + 4px);
  height: 10px;
  left: -2px;
  bottom: 2px;
  background: rgba(88, 78, 158, 0.1);
  background: linear-gradient(90deg, rgba(223, 39, 24, 0.1) 0%, rgba(88, 78, 158, 0.1) 100%);
}
#contents .title h3 em {
  font-family: var(--fontfamily-english);
  font-size: 40px;
  position: relative;
  text-align: left;
  margin-right: 10px;
}
#contents .title a.btn {
  font-family: var(--fontfamily-english);
  display: inline-block;
  padding: 8px 22px 8px 12px;
  font-size: 16px;
  border-radius: var(--box-radius-small);
  line-height: 1em;
  background: var(--color-base-text-light);
  color: #fff;
  position: absolute;
  right: -14px;
  bottom: 3px;
}
#contents .title a.btn:after {
  font-family: var(--fontfamily-icon);
  content: "\e5cc";
  margin: 0;
  color: #fff;
  vertical-align: middle;
  position: absolute;
  top: calc(50% - 12px);
  right: 0;
  line-height: 1em;
  font-size: 24px;
}
/*
ショップリスト
*/
#contents .gourmetshoplist {
  background: #fff;
  padding: 48px 6% 40px;
  margin-bottom: 50px;
}
#contents .gourmetshoplist .shoplist {
  display: flex;
  justify-content: left;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 24px;
}
#contents .gourmetshoplist .item {
  width: calc((100% - 90px) / 4);
  box-sizing: border-box;
  position: relative;
}
#contents .gourmetshoplist .item .photo {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  position: relative;
  margin-bottom: 10px;
}
#contents .gourmetshoplist .item .photo .floor {
  position: absolute;
  left: 0;
  bottom: 0;
  color: #fff;
  background: var(--color-base-text-light);
  font-family: var(--fontfamily-english);
  font-size: 16px;
  padding: 0px 10px 1px;
  z-index: 1;
}
#contents .gourmetshoplist .item .shopimg img.no_img_logo {
  background-size: 40% auto;
  background-repeat: no-repeat;
  border: 1px solid var(--color-base-line-light);
  box-sizing: border-box;
}
#contents .gourmetshoplist .item .name {
  padding-right: 90px;
}
#contents .gourmetshoplist .item .name p {
  padding: 0;
  line-height: 1.6em;
}
#contents .gourmetshoplist .item .name strong {
  display: block;
  font-size: 16px;
}
#contents .gourmetshoplist .item .name .detail {
  font-size: 12px;
  display: block;
  line-height: 1.4em;
  margin-top: 5px;
}
#contents .gourmetshoplist .item .logo img {
  max-height: 40px;
  display: block;
  float: right;
}
#contents .gourmetshoplist .item .wraplink {
  opacity: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  transition-duration: .1s;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  z-index: 2;
}
#contents .gourmetshoplist .item .wraplink:hover {
  opacity: 0.3;
}
/*
グルメタグ！
*/
#contents #gourmet_tag {
  background: var(--color-gourmet-base-light);
  padding: 24px;
  margin: 40px 0;
}
#contents #gourmet_tag .tag_list {
  padding: 20px 0 0;
}
#contents #gourmet_tag .tag_list_name {
  margin: 0 8px 10px 0;
  width: 160px;
}
#contents #gourmet_tag .tag_list_name a {
  background: #fff;
}
/*
おすすめグルメ(reco_****)
*/
#contents #reco_goodslist {
  display: flex;
  margin: 30px 0 60px;
  gap: 20px;
}
#contents #reco_goodslist .goodslist {
  width: calc(100% / 3 - 13px);
  padding: 10px 0 10px 20px;
  box-sizing: border-box;
  box-shadow: 1px 1px 4px 0px rgba(0, 0, 0, 0.2);
}
#contents #reco_goodslist .title {
  position: relative;
}
#contents #reco_goodslist .title h3 {
  padding: 10px 0 0;
}
#contents #reco_goodslist .title h3 em {
  font-size: 30px;
}
#contents #reco_goodslist .mdcat {
  width: 100%;
  overflow: hidden;
}
#contents #reco_goodslist .mdcat::after { /*clearfix*/
  content: "";
  display: block;
  clear: both;
}
#contents #reco_goodslist .item {
  width: 200px;
  height: 100%;
  float: left;
  box-sizing: border-box;
}
#contents #reco_goodslist .md_box {
  padding: 10px 0 20px;
}
#contents #reco_goodslist .item .image {
  width: 180px;
  height: 180px;
  overflow: hidden;
  border-radius: var(--box-radius-small);
  box-shadow: 1px 1px 4px 0px rgba(0, 0, 0, 0.2);
}
#contents #reco_goodslist .item .image span {
  position: relative;
}
#contents #reco_goodslist .item.noimg .image span {
  background-size: 95px auto;
  border: 1px solid #ccc;
}
#contents #reco_goodslist .md_box .goodsname, #contents #reco_goodslist .md_box .shopname {
  display: none;
}
/*
サービス一覧
*/
#contents #shoplist_service {
  background: #fff;
  padding: 40px 6%;
}
#contents #shoplist_service h4 {
  z-index: 2;
  position: relative;
  font-size: 16px;
  top: -20px;
  padding: 0 0 10px;
  text-align: center;
  font-weight: bold;
  color: var(--color-base-main-dark);
  display: none;
}
#contents #shoplist_service h4:before, #contents #shoplist_service h4:after {
  font-family: var(--fontfamily-icon);
  content: "\e5c5";
  vertical-align: middle;
  margin: 0 2px 0 0;
  font-size: 30px;
}
#contents #shoplist_service .service_search {
  display: flex;
  margin: 20px auto 40px;
  padding: 24px 30px 14px 0;
  align-items: center;
  background: rgba(88, 78, 158, 0.1);
  background: linear-gradient(90deg, rgba(223, 39, 24, 0.1) 0%, rgba(88, 78, 158, 0.1) 100%);
}
#contents #shoplist_service .settit {
  flex-basis: 180px;
  font-weight: bold;
  text-align: center;
  padding-bottom: 6px;
}
#contents #shoplist_service .settit::before {
  font-family: var(--fontfamily-icon);
  content: "\e8b6";
  vertical-align: middle;
  margin: 0 4px 0 0;
  font-size: 24px;
  font-variation-settings: 'wght'200;
}
#contents #shoplist_service .shop_sel {
  flex-basis: calc(100% - 180px);
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  position: relative;
}
#contents #shoplist_service .shop_sel li {
  width: calc((100% - 32px) / 5);
  position: relative;
  font-weight: bold;
  font-size: 13px;
  padding: 14px 7px 12px 10px;
  margin: 0 8px 8px 0;
  line-height: 1;
  background: #fff;
  border-radius: var(--box-radius-small);
  box-sizing: border-box;
  box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
#contents #shoplist_service .shop_sel li:hover {
  opacity: 0.8;
}
#contents #shoplist_service .shop_sel li:nth-child(5n) {
  margin-right: 0;
}
#contents #shoplist_service .shop_sel li::before {
  font-family: var(--fontfamily-icon);
  content: "\e836";
  vertical-align: middle;
  margin: 0 2px 0 0;
  font-size: 140%;
  color: var(--color-base-line-light);
  font-variation-settings: 'wght'200;
}
#contents #shoplist_service .shop_sel li.sel {
  color: var(--color-gourmet-base-dark);
  background: var(--color-base-main-dark);
  color: #fff;
}
#contents #shoplist_service .shop_sel li.sel::before {
  font-family: var(--fontfamily-icon);
  content: "\e837";
  color: #fff;
}
#contents #shoplist_service .shop_sel li#clear {
  width: auto;
  text-align: right;
  background: none;
  padding: 0;
  margin: 0;
  box-shadow: none;
  font-size: 0.8rem;
  position: absolute;
  right: 0;
  bottom: 10px;
}
#contents #shoplist_service .shop_sel li#clear.sel {
  color: var(--color-gourmet-base-dark);
}
#contents #shoplist_service .shop_sel li#clear:hover {
  opacity: 0.8;
}
#contents #shoplist_service .shop_sel li#clear:before, #contents #shoplist_service .shop_sel li#clear.sel:before {
  content: "\e5cd";
  color: var(--color-base-text-dark);
}
#contents #shoplist_service h3.result {
  text-align: center;
  color: var(--color-gourmet-base-dark);
  margin-bottom: 20px;
}
#contents #shoplist_service .shoplist_service {
  display: flex;
  flex-wrap: wrap;
  column-gap: 50px;
  margin-top: -30px;
  position: relative;
}
.pc #contents #shoplist_service .shoplist_service:before {
  content: "";
  position: absolute;
  top: 30px;
  left: calc((100% - 2px) / 2);
  width: 2px;
  height: calc(100% - 60px);
  background: var(--color-base-line-light);
  display: block;
}
#contents #shoplist_service .shoplist_service:after {
  content: "";
  background: #fff;
  width: 100%;
  height: 30px;
  position: absolute;
  bottom: 0;
  left: 0;
}
#contents #shoplist_service .shoplist_service .item {
  width: calc((100% - 50px) / 2);
  background: #fff;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  padding: 30px 0 24px;
  border-bottom: 2px solid var(--color-base-line-light);
}
#contents #shoplist_service .shoplist_service .item .wraplink {
  opacity: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  transition-duration: .1s;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  z-index: 2;
}
#contents #shoplist_service .shoplist_service .item .wraplink:hover {
  opacity: 0.3;
}
#contents #shoplist_service .shoplist_service .item .shop_head {
  width: 180px;
  padding-right: 20px;
  box-sizing: border-box;
}
#contents #shoplist_service .shoplist_service .item .name {
  box-sizing: border-box;
  margin: 0;
  padding-right: 90px;
  min-height: 40px;
  font-size: 16px;
}
#contents #shoplist_service .shoplist_service .item .name .detail {
  display: block;
  font-size: 12px;
  margin-top: 0;
}
#contents #shoplist_service .shoplist_service .item .floor {
  position: absolute;
  left: 0;
  bottom: 0;
  color: #fff;
  background: var(--color-base-text-light);
  font-family: var(--fontfamily-english);
  font-size: 16px;
  padding: 0px 10px 1px;
  z-index: 2;
}
#contents #shoplist_service .shoplist_service .item .shopimg .no_img_logo {
  background-size: 40% auto;
  background-repeat: no-repeat;
  border: 1px solid var(--color-base-line-light);
  box-sizing: border-box;
}
#contents #shoplist_service .shoplist_service .item .photo {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  position: relative;
  margin-bottom: 10px;
}
#contents #shoplist_service .shoplist_service .item .logo {
  max-width: 80px;
  height: auto;
  background: #fff;
  position: absolute;
  right: 0;
  top: 30px;
}
#contents #shoplist_service .shoplist_service .item .logo img {
  object-fit: contain;
  box-shadow: none;
  width: auto;
  max-height: 40px;
}
#contents #shoplist_service .shoplist_service .item .detail_box {
  width: calc(100% - 180px);
}
#contents #shoplist_service .shoplist_service .item ul.service {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 10px;
}
#contents #shoplist_service .shoplist_service .item ul.service li {
  width: calc((100% - 8px) / 2);
  margin: 0 8px 8px 0;
  padding: 4px 4px 5px 8px;
  box-sizing: border-box;
  text-align: left;
  vertical-align: middle;
  background: var(--color-base-main-light);
  border-radius: var(--box-radius-small);
}
#contents #shoplist_service .shoplist_service .item ul.service li:nth-of-type(2n) {
  margin-right: 0;
}
#contents #shoplist_service .shoplist_service .item ul.service li span {
  font-size: 13px;
  display: flex;
  font-weight: bold;
}
#contents #shoplist_service .shoplist_service .item ul.service li.service7 span {
  letter-spacing: -0.1em
}
#contents #shoplist_service .shoplist_service .item ul.service li span:before {
  font-family: var(--fontfamily-icon);
  font-size: 20px;
  display: inline-block;
  line-height: 1.0em;
  margin-right: 3px;
  position: relative;
  font-weight: normal;
  top: 2px;
  color: var(--color-base-main-dark);
}
#contents #shoplist_service .shoplist_service .item ul.service li.service1 span:before {
  content: "\ef30";
}
#contents #shoplist_service .shoplist_service .item ul.service li.service2 span:before {
  content: "\f29a";
}
#contents #shoplist_service .shoplist_service .item ul.service li.service3 span:before {
  content: "\ea65";
}
#contents #shoplist_service .shoplist_service .item ul.service li.service4 span:before {
  content: "\effd";
}
#contents #shoplist_service .shoplist_service .item ul.service li.service5 span:before {
  content: "\ef34";
}
#contents #shoplist_service .shoplist_service .item ul.service li.service6 span:before {
  content: "\e0b0";
}
#contents #shoplist_service .shoplist_service .item ul.service li.service7 span:before {
  content: "\f313";
}
#contents #shoplist_service .shoplist_service .item ul.service li.service8 span:before {
  content: "\f1f3";
}
#contents #shoplist_service .shoplist_service .item ul.service li.service9 span:before {
  content: "\eb4a";
}
#contents #shoplist_service .shoplist_service .item ul.service li.servicea span:before {
  content: "\f157";
}
#contents #shoplist_service .shoplist_service .item ul.service li.serviceb span:before {
  content: "\e556";
}
#contents #shoplist_service .shoplist_service .item ul.service li.servicec span:before {
  content: "\e51c";
}
/*--------------------
shoplist01.jsp　～
gourmet_goodslist.jsp　～
--------------------*/
.gourmet_page #headerbg, .gourmet_page #headerbg .image, #contents.gourmet_page h2 {
  height: 100%;
}
.gourmet_page #headerbg {
  position: absolute;
  top: 0;
}
.gourmet_page #headerbg .image {
  width: calc(100% / 3);
}
.gourmet_page .gourmet_page_ttl {
  content: "";
  width: 100%;
  margin: 0 0 30px;
  position: relative;
}
.gourmet_page .gourmet_page_ttl:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
#contents.gourmet_page h2 {
  width: 48%;
  height: 140px;
  font-size: 46px;
  margin: 30px 2% 0 0;
  padding-top: 0;
  background: none;
  position: static;
  border: 2px solid #fff;
}
#contents.gourmet_page h2 a {
  color: #fff;
  padding-top: 20px;
  height: 100%;
  box-sizing: border-box;
  display: block;
}
#contents.gourmet_page h2 em {
  font-size: 18px;
  line-height: 1em;
}
#contents.gourmet_page h2 em:before {
  margin: 6px auto 14px;
}
.gourmet_page .header_navlist {
  width: 50%;
  height: 140px;
  margin: 30px 0;
  box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.1);
  border-radius: var(--box-radius-small);
  background: #fff;
}
.gourmet_page .header_navlist ul {
  padding: 10px;
  height: 100%;
}
.pc .gourmet_page .header_navlist ul li {
  width: 50%;
  height: 50%;
}
.pc .gourmet_page .header_navlist ul li:nth-of-type(1), .pc .gourmet_page .header_navlist ul li:nth-of-type(2) {
  border-bottom: 1px solid var(--color-base-line-dark);
}
.pc .gourmet_page .header_navlist ul li:nth-of-type(3) {
  border-left: none;
}
.gourmet_page .header_navlist ul li a {
  width: 100%;
  padding: 0 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gourmet_page .header_navlist ul li a:after {
  bottom: 6px;
}
.pc .gourmet_page .header_navlist ul li:nth-child(3) a, .pc .gourmet_page .header_navlist ul li:nth-child(4) a {
  padding: 5px 0 16px;
}
.pc .gourmet_page .header_navlist ul li:nth-child(3) a:after, .pc .gourmet_page .header_navlist ul li:nth-child(4) a:after {
  bottom: 0;
}
.gourmet_page .gourmet_page_ttl > .inner {
  display: flex;
  position: relative;
  z-index: 2;
}
/*--------------------
shoplist01～.jsp
--------------------*/
#contents h2.shoplist {
  text-align: left;
  width: 960px;
}
#contents h2.shoplist img {
  margin-left: 10px;
}
/*
店舗プルダウンメニュー
*/
#gourmet_shop {
  margin-bottom: 20px;
  position: relative;
}
#gourmet_shop h3 span {
  text-align: left;
  display: inline-block;
  font-weight: normal;
  font-size: 14px;
  position: relative;
}
#gourmet_shop h3 span:before {
  content: "";
  position: absolute;
  width: calc(100% + 4px);
  height: 10px;
  left: -2px;
  bottom: 2px;
  background: rgba(88, 78, 158, 0.1);
  background: linear-gradient(90deg, rgba(223, 39, 24, 0.1) 0%, rgba(88, 78, 158, 0.1) 100%);
}
#gourmet_shop h3 span em {
  font-family: var(--fontfamily-english);
  font-size: 40px;
  position: relative;
  text-align: left;
  margin-right: 10px;
}
.pulldown_btn {
  width: 220px;
  margin: 0;
  padding: 10px 40px 10px 22px;
  box-sizing: border-box;
  border-radius: var(--box-radius-small);
  border: 1px solid var(--color-base-line-dark);
  background: #fff;
  cursor: pointer;
  position: absolute;
  z-index: 101;
  top: -6px;
  right: 0;
}
.pulldown_btn::after {
  font-family: var(--fontfamily-icon);
  content: "\e5cf";
  vertical-align: middle;
  position: absolute;
  right: 0;
  top: 13px;
  width: 40px;
  text-align: center;
  font-size: 26px;
}
.pulldown_btn::before {
  content: "";
  display: inline-block;
  width: 1px;
  border-left: 1px solid var(--color-base-line-dark);
  height: 24px;
  position: absolute;
  right: 40px;
  top: 12px;
}
.pulldown_btn.open::after {
  content: "\e5ce";
}
.category_wrap {
  display: none;
  position: absolute;
  right: 0;
  top: 54px;
  box-sizing: border-box;
  width: 220px;
  border: 1px solid var(--color-base-line-dark);
  border-bottom: none;
  z-index: 1;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.1);
}
.category_wrap.open { /*メニューオープン時*/
  /*ここのheightはjQueryで指定します*/
}
.category_wrap:before {
  content: "";
  display: block;
  position: absolute;
  top: -16px;
  width: 0;
  height: 0;
  border: 8px solid transparent;
  left: calc(50% - 8px);
  border-bottom: 8px solid var(--color-base-line-dark);
}
.category_wrap .category {
  width: 100%;
  box-sizing: border-box;
  background: #fff;
  border-bottom: 1px solid var(--color-base-line-dark);
  position: relative;
}
.category_wrap .category a {
  width: 100%;
  height: 100%;
  display: block;
  padding: 12px 28px 12px 12px;
  box-sizing: border-box;
	line-height: 1.4em;
}
.category_wrap .category a::after {
  font-family: var(--fontfamily-icon);
  content: "\e5cc";
  margin: 0 0 0 4px;
  font-size: 24px;
  vertical-align: middle;
  position: absolute;
  right: 0;
  top: calc(50% - 9px);
}
/*
ショップの詳細情報
*/
.itemshop {
  background: #fff;
  padding: 40px 0;
  margin-bottom: 50px;
}
.itemshop_header, .itemshop_shopcontent, .itemshop_shopnews {
  box-sizing: border-box;
}
/* header */
.itemshop_header {
  padding: 0;
  margin: 0 6% 16px;
  position: relative;
}
.itemshop_header .floor {
  display: inline-block;
  color: #fff;
  background: var(--color-base-text-light);
  font-family: var(--fontfamily-english);
  font-size: 18px;
  padding: 2px 20px;
}
.itemshop_header .name {
  margin: 14px 0 0 0;
  padding: 0 170px 0 0;
  position: relative;
}
.itemshop_header .name a {
  margin: 0 10px 0 0;
  font-size: 22px;
  font-weight: bold;
}
.itemshop_header .name .itemshop_categorydetail {
  display: block;
  margin-top: 2px;
}
.itemshop_header .logo {
  width: 140px;
  height: 70px;
  line-height: 0;
  position: absolute;
  bottom: 0;
  right: 0;
  text-align: right;
}
.itemshop_header .logo img {
  max-height: 70px;
}
/*shopcontent*/
.pc .itemshop_shopcontent { /*PCのみ*/
  display: flex;
  flex-wrap: wrap;
  flex-direction: row-reverse;
  margin: 0 6%;
}
.itemshop_shopcontent {
  padding: 0;
}
.itemshop_shopcontent .image {
  width: 360px;
  max-height: 480px;
  overflow: hidden;
  margin: 0 0 20px;
  position: relative;
}

.itemshop_shopcontent > .image a {
    display: block;
    height: 360px;
}

.itemshop_shopcontent .image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    font-family: 'object-fit: cover;';
}



.no_img_logo .itemshop_shopcontent > .image {
  display: flex;
  max-height: 300px;
  margin: 0;
  align-items: center;
  justify-content: center;
  background: var(--color-base-bg-light);
}
.no_img_logo .itemshop_shopcontent > .image:before {
  width: 100%;
  position: absolute;
  content: "no image";
  display: block;
  text-align: center;
  font-family: var(--fontfamily-english);
  color: #fff;
  font-size: 30px;
}

.itemshop_shopcontent .image img {
  width: 100%;
  background-repeat: no-repeat;
  background-size: 40% auto;
}
.pc .itemshop_shopcontent .info {
  box-sizing: border-box;
  width: calc(100% - 360px);
  padding-right: 40px;
}
.itemshop_shopcontent .shop_status {
  border-top: 1px solid var(--color-base-line-middark);
  border-bottom: 1px solid var(--color-base-line-middark);
}
.itemshop_shopcontent .shop_status .hour {
  border-bottom: 1px solid var(--color-base-line-middark);
}
.itemshop_shopcontent .shop_status .hour, .itemshop_shopcontent .shop_status .tel {
  font-size: 14px;
  padding: 10px;
}
.itemshop_shopcontent .shop_status .hour::before, .itemshop_shopcontent .shop_status .tel::before {
  font-family: var(--fontfamily-icon);
  font-size: 20px;
  font-weight: normal;
  margin: 0 5px 0 0;
}
.itemshop_shopcontent .shop_status .hour::before {
  content: "\e8b5";
  vertical-align: bottom;
}
.itemshop_shopcontent .shop_status .tel::before {
  content: "\e0b0";
  vertical-align: bottom;
}
.itemshop_shopcontent .shop_status dl {
  width: 100%;
  border-bottom: 1px solid var(--color-gourmet-base-middle);
  display: flex;
}
.itemshop_shopcontent .shop_status dl dt {
  background: var(--color-gourmet-base-middle);
  color: #fff;
  line-height: 1em;
  width: 40px;
  text-align: center;
  border-bottom: 1px solid #fff;
  padding: 10px 0 0;
}
.itemshop_shopcontent .shop_status dl dt i {
  font-variation-settings: 'FILL'1;
  font-size: 20px;
}
.itemshop_shopcontent .shop_status dl:last-child dt {
  border-bottom: none;
}
.itemshop_shopcontent .shop_status dl dd {
  line-height: 1.5em;
  box-sizing: border-box;
  padding: 10px;
}
.itemshop_shopcontent .desc_title {
  font-size: 16px;
  margin: 20px 0 0 0;
  font-weight: bold;
}
.itemshop_shopcontent .desc_contents {
  margin: 10px 0 0 0;
}
.itemshop_shopcontent .info .service {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
}
.itemshop_shopcontent .info .service li {
  display: inline-block;
  box-sizing: border-box;
  line-height: 1.2em;
  font-size: 12px;
  font-weight: bold;
  padding: 8px 10px;
  text-align: center;
  width: calc((100% - 30px) / 4);
  vertical-align: middle;
  border-radius: var(--box-radius-small);
  background: var(--color-base-accent-light);
}
.itemshop_shopcontent .info .service li:before {
  font-family: var(--fontfamily-icon);
  font-size: 28px;
  font-weight: normal;
  margin: 0 0 1px 0;
  display: block;
  line-height: 1.0em;
  color: var(--color-base-accent-dark);
}
.itemshop_shopcontent .info .service li.service1:before {
  content: "\ef30";
}
.itemshop_shopcontent .info .service li.service2:before {
  content: "\f29a";
}
.itemshop_shopcontent .info .service li.service3:before {
  content: "\ea65";
}
.itemshop_shopcontent .info .service li.service4:before {
  content: "\effd";
}
.itemshop_shopcontent .info .service li.service5:before {
  content: "\ef34";
}
.itemshop_shopcontent .info .service li.service6:before {
  content: "\e0b0";
}
.itemshop_shopcontent .info .service li.service7:before {
  content: "\f313";
}
.itemshop_shopcontent .info .service li.service8:before {
  content: "\f1f3";
}
.itemshop_shopcontent .info .service li.service9:before {
  content: "\eb4a";
}
.itemshop_shopcontent .info .service li.servicea:before {
  content: "\f157";
}
.itemshop_shopcontent .info .service li.serviceb:before {
  content: "\e556";
}
.itemshop_shopcontent .info .service li.servicec:before {
  content: "\e51c";
}
.itemshop_shopcontent .info .service li.coupon:before {
  content: "\e53f";
}
.itemshop_shopcontent .service_other {
  padding: 12px;
  border: 1px solid var(--color-base-line-dark);
}
.itemshop_shopcontent .service_other span {
  font-weight: bold;
}
.itemshop_shopcontent .service_other span:before {
  font-family: var(--fontfamily-icon);
  font-variation-settings: var(--iconfont-FILL1-set);
  content: "\ef4a";
  font-weight: normal;
  margin: 0 4px 0 0;
  line-height: 1.0em;
  color: var(--color-base-accent-dark);
  font-size: 0.8em;
}
.pc .itemshop_shopcontent .service_other span:after {
  font-family: var(--fontfamily-icon);
  content: "\f755";
  line-height: 1.0em;
  font-size: 1.2em;
  vertical-align: middle;
}
.itemshop_shopcontent .couponlist {
  width: 100%;
  padding: 10px 16px 6px;
  margin-top: 20px;
  box-sizing: border-box;
  border-radius: var(--box-radius-small);
  background: var(--color-base-accent-light);
}
.itemshop_shopcontent .couponlist > strong {
  display: inline-block;
  position: relative;
  padding-left: 29px;
}
.itemshop_shopcontent .couponlist > strong:before {
  content: "\e53f";
  font-family: var(--fontfamily-icon);
  font-size: 24px;
  font-weight: normal;
  display: inline-block;
  color: var(--color-base-accent-dark);
  position: absolute;
  top: 1px;
  left: 0;
}
.itemshop_shopcontent .couponlist .item {
  width: 100%;
  padding: 10px;
  margin: 8px 0 10px;
  box-sizing: border-box;
  position: relative;
  display: flex;
  background: #fff;
  align-items: center;
}
.itemshop_shopcontent .couponlist .item:after {
  font-family: var(--fontfamily-icon);
  content: "\e5cc";
  margin: 0 0 0 4px;
  font-size: 28px;
  vertical-align: middle;
  position: absolute;
  top: calc(50% - 14px);
  line-height: 1em;
  font-weight: normal;
  right: 4px;
  color: var(--color-base-line-dark);
}
.itemshop_shopcontent .couponlist .item h4 a {
  font-weight: bold;
  padding: 0 26px 0 0;
  margin: 0 0 6px;
  background: none;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  border: none;
  border-radius: 0;
  text-align: left;
}
.itemshop_shopcontent .couponlist .item .date {
  display: none;
}
.itemshop_shopcontent .couponlist .item .fromto {
  display: flex;
  font-size: 12px;
  align-items: center;
}
.itemshop_shopcontent .couponlist .item .fromto dt {
  font-weight: bold;
  padding: 4px 7px;
  line-height: 1em;
  background: var(--color-base-bg-light);
  display: inline-block;
  margin-right: 5px;
}
.itemshop_shopcontent .couponlist .item .fromto dd {
  display: inline-block;
}
.itemshop_shopcontent .couponlist .image {
  width: 100px;
  margin: 0 14px 0 0;
}
.itemshop_shopcontent .couponlist .image .no_img_logo {
  border: 1px solid var(--color-base-line-light);
}
.itemshop_shopcontent .couponlist .image span {
  min-height: 80px;
}
.itemshop_shopcontent .couponlist .desc {
  width: calc(100% - 114px);
}
.itemshop_shopcontent .couponlist .morelink:hover {
  background: #fff;
  opacity: 0.3;
}
.itemshop_shopcontent .couponlist .morelink span {
  display: none;
}
/*
新着ニュース
*/
#contents-main .itemshop_shopnews .itemlist {
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
  overflow: hidden;
  margin: 40px 0 0;
  padding: 40px 6% 0;
  position: relative;
}
.pc #contents-main .itemshop_shopnews .itemlist:before {
  content: "";
  width: 88%;
  height: 4px;
  background: var(--color-base-bg-light);
  display: block;
  position: absolute;
  top: 0;
  left: 6%;
}
#contents-main .itemshop_shopnews h3 {
  width: 100%;
  font-size: 14px;
  font-weight: normal;
  margin: 0 0 18px;
  position: relative;
}
#contents-main .itemshop_shopnews h3:before {
  content: "New Arrival";
  display: inline-block;
  font-family: var(--fontfamily-english);
  font-size: 30px;
  margin-right: 10px;
}
#contents-main .itemshop_shopnews h3:after {
  content: "";
  position: absolute;
  width: 19em;
  height: 10px;
  left: calc((100% - 19em) / 2);
  bottom: 0;
  background: rgba(88, 78, 158, 0.1);
  background: linear-gradient(90deg, rgba(223, 39, 24, 0.1) 0%, rgba(88, 78, 158, 0.1) 100%);
}
#contents-main .itemshop_shopnews .item {
  width: calc((100% - 90px) / 4);
  padding: 0 0 10px;
  margin-right: 30px;
  box-sizing: border-box;
  position: relative;
  background: #fff;
  overflow: hidden;
}
#contents-main .itemshop_shopnews .item:last-of-type {
  margin-right: 0;
}
#contents-main .itemshop_shopnews .item.cat2 .image::before,
#contents-main .itemshop_shopnews .item.sale .image::before{
  content: "COUPON";
  position: absolute;
  background: var(--color-base-accent-dark);
  color: #fff;
  bottom: 0;
  left: 0;
  text-align: center;
  font-size: 16px;
  font-family: var(--fontfamily-english);
  z-index: 5;
  display: inline-block;
  padding: 2px 10px;
}

#contents-main .itemshop_shopnews .item.sale .image::before {
  content: "SALE";
  background: #d00;
 
}
#contents-main .itemshop_shopnews .item:nth-last-of-type(-n+5)::after {
  border: none;
}
#contents-main .itemshop_shopnews .item .image {
  height: 200px;
  width: 100%;
  position: relative;
}
#contents-main .itemshop_shopnews .item .img_bg_css.no_img_logo { /*Logoは小さめに*/
      background-size: 70% auto, 40% auto;
  border: 1px solid var(--color-base-line-light);
}
#contents-main .itemshop_shopnews .item .desc {
  padding: 0;
}
#contents-main .itemshop_shopnews .item .desc .date, #contents-main .itemshop_shopnews .item .desc .sale.icon {
  display: none;
}
#contents-main .itemshop_shopnews .item h4 {
  margin: 8px 0 0 0;
  font-weight: bold;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
#contents-main .itemshop_shopnews .item .price {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
#contents-main .itemshop_shopnews .item .price, #contents-main .itemshop_shopnews .item .fromto {
  margin: 3px 0 0 0;
  font-size: 12px;
  line-height: 1.5em;
}

#contents-main .itemshop_shopnews .item.sale .price{
	color: #d00;
}
#contents-main .itemshop_shopnews .item .fromto {
  display: none;
}
#contents-main .itemshop_shopnews .item .morelink {
  display: none;
}
.itemshop_shopnews {
  padding: 0;
  position: relative;
  /*border-top: 1px dashed var(--color-gourmet-base-middle);
  margin: 0 0 -1px 0; 内容が無い場合に破線を隠す用*/
}
.itemshop_shopnews .item {
  position: relative;
}
/* スワイパー動作時 */
#contents-main .itemshop_shopnews .itemlist.swp {
  display: block;
  overflow: hidden;
  width: 100%;
  margin: 40px 0 0;
  padding: 40px 6% 0;
  box-sizing: border-box;
  position: relative;
}
.pc #contents-main .itemshop_shopnews .itemlist.swp:before {
  content: "";
  width: 88%;
  height: 4px;
  background: var(--color-base-bg-light);
  display: block;
  position: absolute;
  top: 0;
  left: 6%;
}
/* #contents-main .itemshop_shopnews .itemlist.swp h3{
  width: auto;
} */
#contents-main .itemshop_shopnews .itemlist.swp .item {
  margin: 0;
}
#contents-main .itemshop_shopnews .swiper-button-next, #contents-main .itemshop_shopnews .swiper-button-prev {
  transition-duration: 0.2s;
  background: rgba(51, 51, 51, 0.3);
  color: #fff;
  text-align: center;
  width: 30px;
  height: calc(100% - 60px);
  top: 60px;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
#contents-main .itemshop_shopnews .swiper-button-next {
  right: 0;
  border-top-left-radius: 100px;
  border-bottom-left-radius: 100px;
  padding-left: 4px;
}
#contents-main .itemshop_shopnews .swiper-button-prev {
  left: 0;
  border-top-right-radius: 100px;
  border-bottom-right-radius: 100px;
  padding-right: 4px;
}
#contents-main .itemshop_shopnews .swiper-button-next:after {
  font-family: var(--fontfamily-icon);
  content: "\e5cc";
}
#contents-main .itemshop_shopnews .swiper-button-prev:after {
  font-family: var(--fontfamily-icon);
  content: "\e5cb";
}
#contents-main .itemshop_shopnews .swiper-button-next:after, #contents-main .itemshop_shopnews .swiper-button-prev:after {
  font-size: 50px;
  font-weight: 200;
}
#contents-main .itemshop_shopnews .swiper-button-next.swiper-button-disabled, #contents-main .itemshop_shopnews .swiper-button-prev.swiper-button-disabled {
  opacity: 0;
}




/*WEB予約ボタン*/
.itemshop .shopBooking-wrapper{
  margin: 30px 6% 0;
		padding-top: 30px;
  text-align: center;
	    display: flex;
	    justify-content: center;
	    column-gap: 20px;
	   border-top: 4px solid var(--color-base-bg-light);

	
}
.itemshop .shopBooking__btn {
  text-align: center;
  display: inline-block;
  color: #fff;
	font-weight: bold;
  width: calc((100% - 20px) / 2);
  border-radius: var(--box-radius-small);
  padding: 16px 14px 18px 8px;
  position: relative;
  margin: 0;
  background: var(--color-base-accent-dark);
  line-height: 1.0em;
}

.itemshop .shopBooking__btn .brandsArea{
    font-size: 0.8em;
    padding-left: 4px;
}

.itemshop .shopBooking__btn:after{
  font-family: var(--fontfamily-icon);
  content: "\e5cc";
  margin: 0 0 0 4px;
  position: absolute;
  right: 10px;
  top: calc(50% - 8px);
  font-size: 24px;
  font-weight:normal;
}

.itemshop .shopBooking__btn i {
  margin: 0 8px;
  font-size: 20px;
  vertical-align: text-bottom;
}

.itemshop .shopBooking__btn i[class*='calendar'] {
  color: var(--color-base-line-dark);
}

.itemshop .shopBooking__btn:hover i[class*='calendar'] {
  color: #fff;
}

/*WEB予約ボタン｜サイト名出す*/
.itemshop .shopBooking__btn[href*="gnavi"] .brandsArea::after {content: "(ぐるなび)";}
.itemshop .shopBooking__btn[href*="tabelog"] .brandsArea::after {content: "(食べログ)";}
.itemshop .shopBooking__btn[href*="loco"] .brandsArea::after {content: "(Yahoo!ロコ)";}
.itemshop .shopBooking__btn[href*="ikyu"] .brandsArea::after {content: "(一休.comレストラン)";}
.itemshop .shopBooking__btn[href*="epark"] .brandsArea::after {content: "(EPARK)";}
.itemshop .shopBooking__btn[href*="hotpepper"] .brandsArea::after {content: "(ホットペッパー)";}
.itemshop .shopBooking__btn[href*="favy"] .brandsArea::after {content: "(favy)";}
.itemshop .shopBooking__btn[href*="toreta"] .brandsArea::after {content: "(トレタ)";}
.itemshop .shopBooking__btn[href*="ozmall"] .brandsArea::after {content: "(オズモール)";}
.itemshop .shopBooking__btn[href*="retty"] .brandsArea::after {content: "(Retty)";}
.itemshop .shopBooking__btn[href*="luxa"] .brandsArea::after {content: "(LUXA)";}
.itemshop .shopBooking__btn[href*="hitorsara"] .brandsArea::after {content: "(ヒトサラ)";
}





/*--------------------
gourmet_goodslist.jsp～
--------------------*/
body[class*="goodslist"] #contents.gourmet_page h2 {
  position: initial;
}
#contents-main .NewsItemList .item .image {
  border-color: var(--color-gourmet-base-light);
}
/*----------------------------------------
画面幅調整
----------------------------------------*/
@media screen and (max-width: 1300px) {
  #contents #shoplist_service .shop_sel li {
    padding: 14px 7px 12px 6px;
  }
  #contents #shoplist_service .shop_sel li::before {
    font-size: 120%;
  }
}
@media screen and (max-width: 1270px) {
  #contents #shoplist_service .shop_sel {
    padding-bottom: 15px;
  }
  #contents #shoplist_service .shop_sel li {
    width: calc((100% - 24px) / 4);
  }
  #contents #shoplist_service .shop_sel li:nth-child(5n) {
    margin: 0 8px 8px 0;
  }
  #contents #shoplist_service .shop_sel li:nth-child(4n) {
    margin-right: 0;
  }
  #contents #shoplist_service .shop_sel li#clear {
    font-size: 12px;
    bottom: 0;
  }
  #contents #shoplist_service .shoplist_service .item .shop_head {
    width: 160px;
    padding-right: 14px;
  }
  #contents #shoplist_service .shoplist_service .item .detail_box {
    width: calc(100% - 160px);
  }
}
@media screen and (max-width: 1228px) {
  #contents #shoplist_service .shoplist_service .item ul.service li {
    padding: 4px 4px 5px 7px;
  }
  #contents #shoplist_service .shoplist_service .item ul.service li.service3 span, #contents #shoplist_service .shoplist_service .item ul.service li.service7 span {
    font-size: 12px;
  }
  #contents #shoplist_service .shoplist_service .item ul.service li span:before {
    font-size: 17px;
    margin-right: 2px;
    top: 3px;
  }
}
@media screen and (max-width: 1140px) {
  #contents #shoplist_service .shoplist_service .item ul.service li {
    width: 100%;
    margin: 0 0 4px;
    padding: 4px 4px 5px 10px;
  }
  #contents #shoplist_service .shoplist_service .item ul.service li span, #contents #shoplist_service .shoplist_service .item ul.service li.service3 span, #contents #shoplist_service .shoplist_service .item ul.service li.service7 span {
    font-size: 13px;
    letter-spacing: 0em;
  }
  #contents #shoplist_service .shoplist_service .item ul.service li span:before {
    font-size: 20px;
    margin-right: 3px;
    top: 2px;
  }
}
/*----------------------------------------
スマートフォン対象
----------------------------------------*/
/*--------------------
各ページ共通（ただし主にindex.jsp）
--------------------*/
.sp #contents-main.all {
  padding: 0;
}
/*全体に被せるリンク*/
.sp .coverlink {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 0;
}
@media (max-width: 767px) {
  :root {
    scroll-padding-top: 76px;
  }
}
/*
header
*/
.sp #contents {
  position: relative;
}
.sp #contents > .inner {
  padding: 0;
}
.sp #contents #headerbg {
  margin: 0;
  padding: 0;
  height: 160px;
}
.sp #contents #headerbg .image {
  height: 160px;
}
.sp #contents h2 {
  height: 160px;
  padding-top: 40px;
  font-size: 9vw;
}
.sp #contents h2 em {
  font-size: 16px;
}
.sp #contents h2 em:before {
  margin: 10px auto 0;
}
.sp .header_navlist {
  padding: 0 4%;
}
.sp .header_navlist .inner {
  padding: 6px 4px;
  margin: 14px auto;
}
.sp .header_navlist ul {
  padding: 0;
}
.sp .header_navlist ul li {
  width: 25%;
}
.sp .header_navlist ul li a {
  margin: 0;
  padding: 10px 2px 20px;
  font-size: 3.2vw;
  letter-spacing: -0.1em;
  font-weight: normal;
  line-height: 1.2em;
}
.sp .header_navlist ul li a:after {
  font-size: 22px;
  bottom: 0;
}
/*
h3タグ関連
*/
.sp #contents .title h3 {
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 10px;
  padding: 0;
}
#contents .title h3 span {
  margin-left: -1%;
  font-size: 12px;
  display: inline-block;
  line-height: 1.7em;
}
.sp #contents .title h3 em {
  font-size: 22px;
  display: block;
  margin: 0;
}
/*
index
*/
.sp #contents .title a.btn {
  font-size: 12px;
  right: -1%;
}
.sp #contents .title a.btn:after {
  top: calc(50% - 10px);
  font-size: 20px;
}
/*
ショップリスト
*/
.sp #contents .gourmetshoplist {
  padding: 20px 4% 40px;
}
.sp #contents .gourmetshoplist .shoplist {
  gap: 20px;
  margin-top: 10px;
}
.sp #contents .gourmetshoplist .item {
  width: calc(100% / 2 - 10px);
  padding: 0;
  margin-bottom: 10px;
}
.sp #contents .gourmetshoplist .item .photo {
  height: 140px;
  margin-bottom: 4px;
}
.sp #contents .gourmetshoplist .item .photo .floor {
  font-size: 3.4375vw;
  padding: 0 10px;
}
.sp #contents .gourmetshoplist .item .name {
  padding: 0;
}
.sp #contents .gourmetshoplist .item .name strong {
  font-size: 4.0625vw;
  line-height: 1.4em;
}
.sp #contents .gourmetshoplist .item .name p {
  line-height: 1.2em;
  padding: 6px 0 0;
}
.sp #contents .gourmetshoplist .item .logo {
  min-height: 40px;
  padding-bottom: 4px;
  border-bottom: 2px solid var(--color-base-bg-light);
}
.sp #contents .gourmetshoplist .item .logo img {
  height: 40px;
  float: none;
  margin: auto;
}
/*
グルメタグ！
*/
.sp #contents #gourmet_tag {
  margin: 16px 0;
  padding: 16px 0;
}
.sp #contents #gourmet_tag .tag_list {
  padding: 12px 16px 7px 16px;
}
.sp #contents #gourmet_tag .tag_list_name {
  margin: 0 3px 7px 0;
  width: auto;
  min-width: calc((100% / 3) - 10px);
}
.sp #contents #gourmet_tag .tag_list_name a {
  padding: 5px 16px;
  font-size: 12px;
  white-space: nowrap;
}
.sp #contents #gourmet_tag .tag_list_name a::before {
  font-size: 14px;
}
/*
おすすめグルメ
*/
.sp #contents #reco_goodslist {
  display: initial;
}
.sp #contents #reco_goodslist .title a.btn {
  right: 10px;
}
.sp #contents #reco_goodslist .goodslist {
  width: 100%;
  margin: 0 0 20px;
}
.sp #contents #reco_goodslist .item {
  width: 130px;
}
.sp #contents #reco_goodslist .item .image {
  width: 120px;
  height: 120px;
}
/*
サービス別一覧
*/
.sp #contents #shoplist_service {
  margin: 20px 0 0;
  padding: 20px 4% 40px;
}
.sp #contents #shoplist_service .service_search {
  display: block;
  padding: 16px 4% 14px;
  margin: 0;
}
.sp #contents #shoplist_service .shop_sel {
  margin: 4px 0 0;
  padding: 0;
}
.sp #contents #shoplist_service .shop_sel li {
  width: calc((100% - 8px) / 2);
  box-sizing: border-box;
  padding: 12px 4px 10px 10px;
  font-size: 3.2vw;
}
.sp #contents #shoplist_service .shop_sel li:nth-of-type(2n) {
  margin-right: 0;
}
.sp #contents #shoplist_service .shop_sel li:before {
  font-size: 130%;
}
.sp #contents #shoplist_service .settit {
  text-indent: -1em;
  font-size: 3.2vw;
}
.sp #contents #shoplist_service .settit:before {
  margin: 0 2px 0 0;
  font-size: 4.46vw;
}
.sp #contents h3.result {
  font-size: 4.2vw;
  margin: 0;
}
.sp #contents #shoplist_service .shop_sel li#clear {
  bottom: auto;
  top: calc(-1em - 12px);
  font-size: 3.2vw;
}
.sp #contents #shoplist_service .shop_sel li#clear:before {
  display: inline-block;
  margin: 0 5px 0 0;
  vertical-align: sub;
}
.sp #contents #shoplist_service h4 {
  top: 14px;
  font-size: 4.0625vw;
}
.sp #contents #shoplist_service .shoplist_service {
  margin: 0;
}
.sp #contents #shoplist_service .shoplist_service:after {
  height: 2px;
}
.sp #contents #shoplist_service .shoplist_service .item {
  width: 100%;
  padding: 20px 0 16px;
}
.sp #contents #shoplist_service .shoplist_service .item:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}
.sp #contents #shoplist_service .shoplist_service .item .floor {
  font-size: 3.4375vw;
  padding: 0 10px;
}
.sp #contents #shoplist_service .shoplist_service .item .shop_head {
  padding-right: 20px;
  width: 50%;
}
.sp #contents #shoplist_service .shoplist_service .item .detail_box {
  width: 50%;
}
.sp #contents #shoplist_service .shoplist_service .item .photo {
  margin-bottom: 4px;
}
.sp #contents #shoplist_service .shoplist_service .item .logo {
  position: static;
  margin: 0 auto;
  text-align: center;
}
.sp #contents #shoplist_service .shoplist_service .item .name {
  padding: 0;
  min-height: auto;
}
.sp #contents #shoplist_service .shoplist_service .item .name strong {
  font-size: 4.0625vw;
  line-height: 1.4em;
}
.sp #contents #shoplist_service .shoplist_service .item ul.service li {
  vertical-align: top;
  line-height: 1.0em;
  padding: 8px 8px 5px;
}
.sp #contents #shoplist_service .shoplist_service .item ul.service li span:before {
  font-size: 4.4vw;
  margin-right: 3px;
  top: -1px;
}
.sp #contents #shoplist_service .shoplist_service .item ul.service li span {
  font-size: 3.2vw;
}
/*--------------------
shoplist01～06.jsp
--------------------*/
.sp #contents.gourmet_page #headerbg {
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.sp #contents.gourmet_page #headerbg .image {
  height: 100%;
}
.sp #contents.gourmet_page .gourmet_page_ttl {
  height: auto;
  position: relative;
  margin: 0;
}
.sp #contents.gourmet_page h2 {
  padding: 0;
  margin: 0;
  width: 100%;
  height: auto;
  font-size: 8vw;
  border: none;
}
.sp #contents.gourmet_page h2 a {
  padding: 0;
}
.sp #contents.gourmet_page h2 em {
  font-size: 12px;
}
.sp #contents.gourmet_page h2 em:before {
  margin: 6px auto 8px;
}
.sp #contents.gourmet_page .gourmet_page_ttl > .inner {
  flex-wrap: wrap;
  padding: 24px 4% 18px;
  position: relative;
  z-index: 1;
  background: rgba(0, 0, 0, 0.4);
}
.sp #contents.gourmet_page .header_navlist {
  width: 100%;
  height: auto;
  margin: 16px 0 0;
  padding: 6px 4px;
}
.sp #contents.gourmet_page .header_navlist ul {
  align-items: center;
}
.sp #contents.gourmet_page .header_navlist ul li {
  height: 100%;
}
.sp #contents.gourmet_page .header_navlist ul li a {
  height: 100%;
  padding: 8px 2px 18px;
}
.sp #contents.gourmet_page .header_navlist ul li a:after {
  font-size: 20px;
  bottom: -2px;
}
/*
headerbg 内 カテゴリリスト
*/
.sp #contents .headerbg_list {
  padding: 10px 10px 10px 155px;
}
.sp #contents .headerbg_list_cat, .sp #contents .headerbg_list_add {
  width: calc(100% / 3);
  height: 50px;
}
.sp #contents .headerbg_list_cat::after, .sp #contents .headerbg_list_add::after {
  bottom: -6px;
  right: -6px;
  border: 6px solid transparent;
  border-color: transparent transparent transparent #eae300;
}
.sp #contents .headerbg_list_cat a, .sp #contents .headerbg_list_add a {
  background-size: contain;
}
.sp #contents .headerbg_list_cat a {
  margin: 0;
  height: 100%;
  background-position: center -7px;
  background-size: 55px;
  position: relative;
  background: #fff;
  width: 100%;
}
/*
タイトル
*/
.sp #gourmet_shop {
  width: 100%;
  margin-bottom: 10px;
}
.sp #gourmet_shop h3 {
  text-align: left;
  margin: 0 3%;
}
.sp #gourmet_shop h3 span {
  font-size: 12px;
  line-height: 1.7em;
}
.sp #gourmet_shop h3 span:before {
  width: 100%;
}
.sp #gourmet_shop h3 span em {
  font-size: 24px;
  margin: 0 8px 0 0;
  line-height: 1em;
  display: block;
}
/*
店舗プルダウンメニュー
*/
.sp .pulldown_btn {
  width: 38%;
  box-sizing: border-box;
  font-size: 3.3vw;
  padding: 7px 0 0 10px;
  height: 40px;
  right: 3%;
  bottom: 2px;
  top: auto;
}
.sp .pulldown_btn::before {
  height: 23px;
  right: 32px;
  top: 7px;
}
.sp .pulldown_btn::after {
  width: 34px;
  font-size: 20px;
  top: 10px;
}
.sp .category_wrap {
  top: 49px;
  width: 140%;
  right: 0;
}
.sp .category_wrap .category a {
  padding: 10px 28px 10px 12px;
}
.sp .category_wrap .category a::after {
  font-size: 22px;
}
/*
.shoplist
*/
.sp #contents .gourmet.shoplist {
  padding-top: 20px;
}
/*
.itemshop
*/
.sp #contents .itemshop {
  padding: 20px 0 30px;
  margin-bottom: 30px;
}
.sp #contents .itemshop_header {
  padding: 0 4%;
  margin: 0;
}
.sp .itemshop_shopcontent .image {
  width: 100%;
}

.sp .no_img_logo .itemshop_shopcontent > .image {
  display: none;
}

.sp .itemshop_shopcontent > .image a{
	display: block;
    height: 200px;
}


.sp #contents .itemshop_header .floor {
  font-size: 3.4375vw;
  padding: 0 10px;
}
.sp #contents .itemshop_header .name {
  margin: 8px 0;
  padding: 0 95px 0 0;
  font-size: 12px;
  line-height: 1.4em;
}
.sp #contents .itemshop_header .name a {
  font-size: 4.375vw;
  line-height: 1.3em;
}
.sp #contents .itemshop_header .name .itemshop_categorydetail {
  display: block;
  margin: 4px 0 0;
}
.sp #contents .itemshop_header .logo {
  width: 90px;
  height: auto;
  line-height: 0;
  top: -5px;
  right: 0;
}
.sp #contents .itemshop_shopcontent {
  padding: 0 4%;
}
.sp .itemshop_shopcontent .desc_title {
  font-size: 4.375vw;
  line-height: 1.4em;
  margin: 16px 0 0 0;
}
.sp .itemshop_shopcontent .desc_contents {
  margin-top: 5px;
  font-size: 3.75vw;
  line-height: 1.6em;
}
.sp #contents .itemshop_shopcontent .info {
  width: 100%;
  padding: 0;
}
.sp .itemshop_shopcontent .info .service {
  gap: 4px;
  margin-bottom: 0;
}
.sp .itemshop_shopcontent .info .service li {
  width: calc((100% - 4px) / 2);
  text-align: left;
  vertical-align: top;
  padding: 5px 8px 10px;
  font-size: 3.2vw;
  line-height: 1.0em;
}
.sp .itemshop_shopcontent .info .service li:before {
  display: inline-block;
  font-size: 4.4vw;
  margin-right: 3px;
  top: 3px;
  position: relative;
}
.sp .itemshop_shopcontent .shop_status .hour, .sp .itemshop_shopcontent .shop_status .tel {
  font-size: 3.75vw;
  line-height: 1.4em;
}
.sp .itemshop_shopcontent .couponlist {
  margin-top: 4px;
  padding: 5px 8px 1px;
}
.sp .itemshop_shopcontent .couponlist > strong {
  font-size: 3.2vw;
  padding-left: 22px;
}
.sp .itemshop_shopcontent .couponlist > strong:before {
  font-size: 4.4vw;
  margin-right: 3px;
}
.sp .itemshop_shopcontent .couponlist .item {
  margin: 2px 0 7px;
  padding: 8px 24px 8px 8px;
}
.sp .itemshop_shopcontent .couponlist .item h4 a {
  -webkit-line-clamp: 1;
  padding: 0;
  margin-bottom: 4px;
  font-size: 3.75vw;
}
.sp .itemshop_shopcontent .couponlist .item .fromto {
  display: block;
  line-height: 1.6em;
}
.sp .itemshop_shopcontent .couponlist .item .fromto dt {
  width: 3em;
  padding: 4px 2px;
  text-align: center;
}
.sp .itemshop_shopcontent .couponlist .item .fromto dd {
  display: block;
}
.sp .itemshop_shopcontent .couponlist .image {
  width: 80px;
  margin-right: 10px;
}
.sp .itemshop_shopcontent .couponlist .desc {
  width: calc(100% - 90px);
}
.sp .itemshop_shopcontent .couponlist .item:after {
  font-size: 24px;
  margin: 0;
  top: calc(50% - 12px);
}
.sp .itemshop_shopcontent .service_other {
  margin: 14px 0;
  padding: 8px;
  font-size: 3.75vw;
  line-height: 1.6em;
}
.sp .itemshop_shopcontent .service_other span {
  display: block;
}
.sp .itemshop_shopcontent .couponlist .image span {
  min-height: 70px;
}
/*
新着ニュース
*/
.sp #contents .itemshop_shopnews h3 {
  margin: 0 0 12px;
  font-size: 12px;
}
.sp #contents-main .itemshop_shopnews h3:before {
  font-size: 24px;
  margin: 0 8px 0 0;
  line-height: 1em;
}
.sp #contents .itemshop_shopnews .itemlist {
  display: block;
  padding: 0;
  margin-top: 20px;
  border: none;
}
.sp #contents .itemshop_shopnews .itemlist.swp {
  padding: 0 4%;
}
.sp #contents .itemshop_shopnews .item {
  width: calc((100% - 15px) / 2);
  margin: 0 auto;
  padding: 0;
}
.sp #contents .itemshop_shopnews .item .image {
  width: 100%;
  height: 120px;
  margin-bottom: 4px;
}
.sp #contents .itemshop_shopnews .item::after {
  display: none;
}
/*desc*/
.sp #contents-main .itemshop_shopnews .item .desc {
  padding: 0;
}
.sp #contents-main .itemshop_shopnews .item h4 {
  margin: 0;
  font-size: 3.75vw;
}
.sp #contents-main .itemshop_shopnews .item .price, .sp #contents-main .itemshop_shopnews .item .fromto {
  font-size: 10px;
  line-height: 1.4em;
  margin: 0;
}
.sp #contents-main .itemshop_shopnews .item.cat2 .image::before,
.sp #contents-main .itemshop_shopnews .item.sale .image::before{
  font-size: 0.8em;
  line-height: 1.4em;
  padding: 2px 6px;
}
.sp #contents-main .itemshop_shopnews .item .img_bg_css.no_img_logo {
  background-size: 80% auto, 40% auto;
}
.sp #contents-main .itemshop_shopnews .swiper-button-next, .sp #contents-main .itemshop_shopnews .swiper-button-prev {
  width: 6%;
  top: 26px;
  height: calc(100% - 36px);
}
.sp #contents-main .itemshop_shopnews .swiper-button-next:after, .sp #contents-main .itemshop_shopnews .swiper-button-prev:after {
  font-size: 40px;
}
.sp #contents-main .itemshop_shopnews .swiper-button-prev {}


/*WEB予約ボタン*/
.sp .itemshop .shopBooking-wrapper{
	    margin: 20px 4% 0;
	    padding-top: 20px;
    column-gap: 15px;
	flex-wrap: wrap;
	border-width: 2px;
}
.sp .itemshop .shopBooking-wrapper .shopBooking__btn {
width: calc(100% - 20px);
	margin-bottom: 10px;
    box-sizing: border-box;
}

.sp .itemshop .shopBooking-wrapper .shopBooking__btn:last-of-type{
	margin-bottom: 0;
}

/*
MD
*/
.sp #contents .goodslist {
  padding-top: 16px;
}
body.sp #contents-main .NewsItemList .item {
  padding-top: 0;
}
body.sp #contents-main .NewsItemList .item .image {
  height: 40vw;
}