@charset "UTF-8";
/*
Theme Name: 茂木町のお店
Description:茂木町のお店 専用テーマです。
Version:1.0
Author:PTO suzuki
*/
:root {
  --black: #333333;
  --white: #FFFFFF;
  --background-basecolor: #FAF9F3;
  --sub-color: #F1EEE2;
  --gray: #E2E2E2;
  --deep-gray: #b3b3b3;
  --shop-color_line: #FC917B;
  --shop-color: #FED0C7;
  --event-color_line: #FFCD66;
  --event-color: #FFE8B7;
  --map-color_line: #7BD27B;
  --map-color: #C8ECC8;
  --link-color_line: #75D9D7;
  --link-color: #CEF2F1;
  --info-color_line: #5792CC;
  --info-color: #C2D8ED;
  --other-color_line: #b584d6;
  --other-color: #e3d4ed;
  /*shop-category*/
  --gourmet_txt:#EC62AE;
  --gourmet_color: #FACFE8;
  --shopping_txt:#67A038;
  --shopping_color: #D1E9BA;
  --activity_txt: #FC7A1B;
  --activity_color:#FECFA5;
  --living_txt:#A9A93F;
  --living_color: #E7E7B6;
  --house_txt: #835CBC;
  --house_color:#DACBEF;
  --business_txt:#33B98D;
  --business_color: #C0EFE1;
  --japanese_midashi: "M PLUS Rounded 1c", sans-serif;
  --japanese: "Noto Sans JP", sans-serif;
  --regular: 400;
  --medium: 500;
  --semibold: 600;
  --bold: 700;
  --ex-bold: 900;
  --14px: 0.875rem;
  --16px: 1rem;
  --18px: 1.125rem;
  --20px: 1.25rem;
  --24px: 1.5rem;
  --32px: 2rem;
  --40px: 2.5rem;
  --50px: 2.7777777777778rem;
  --64px: 4rem;
  --80px: 5rem;
  --100px: 6.25rem;
  --120px: 7.5rem;
  --pc_max: 1200px;
  --line-h140:140%;
  --kadomaru: 10px;
  --card-shadow: 0px 1px 8px 0px rgba(136, 197, 215, 0.5);
}

/*googleアイコン用*/
.material-icons.md-18 {
  font-size: 18px;
}

.material-icons.md-24 {
  font-size: 24px;
}

.material-icons.md-36, .material-icons.md-48 {
  font-size: 36px;
}

.material-icons {
  display: inline-flex;
  vertical-align: text-bottom;
}

body {
  font-family: var(--japanese);
  font-weight: var(--regular);
  font-size: var(--18px);
  background-color: var(--background-basecolor);
}

a.site-logo {
  font-size: 30px;
  margin: 0;
  display: inline-block;
  color: var(--black);
  text-decoration: none;
  font-weight: var(--semibold);
  font-family: var(--japanese_midashi);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--japanese_midashi);
}

.nav-shop:hover {
  background-color: var(--shop-color);
}

.nav-eve:hover {
  background-color: var(--event-color);
}

.nav-map:hover {
  background-color: var(--map-color);
}

.nav-link:hover {
  background-color: var(--link-color);
}

/*=====header=====*/
.header {
  background-color: var(--sub-color);
  width: 100%;
  position: relative;
  z-index: 99;
  top: 0;
}
.header .header-area {
  margin: 0 auto;
  padding: var(--16px) 12px;
  width: 100%;
  max-width: var(--pc_max);
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}
.header a {
  z-index: 99;
  color: var(--black);
  text-decoration: none;
}
.header a h1 {
  font-size: 24px;
  margin: 0;
  display: inline-block;
}
.header .nav-btn {
  display: none;
}
.header #header-nav {
  position: relative;
  width: auto;
  height: auto;
  z-index: 1;
  top: -120%;
  left: 0;
  background: var(--sub-color);
  transition: all 0.6s;
}
.header #header-nav ul {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  justify-content: left;
  width: 100%;
  top: 50%;
  z-index: 999;
  left: 50%;
  transform: translate(-50%, -50%);
}
.header #header-nav ul li {
  list-style: none;
  text-align: center;
}
.header #header-nav ul li a {
  color: var(--black);
  text-decoration: none;
  padding: 10px;
  display: block;
  text-transform: uppercase;
  font-weight: var(--medium);
  font-size: 15px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
}
.header #header-nav ul li:first-child a {
  border-left: 2px solid #fff;
}
.header #header-nav ul li:last-child a {
  border-right: 2px solid #fff;
}

/*=====main=====*/
h2 {
  top: 0;
  padding: var(--20px);
  margin-bottom: var(--40px);
  position: relative;
}
h2 div {
  width: 100%;
  /*
  max-width: var(--pc_max);
  */
  margin: 0 auto;
  text-align: center;
  font-size: var(--40px);
}

main {
  width: 100%;
  padding: 0 20px;
}

h3 {
  padding: var(--20px) var(--20px) var(--16px);
  border-radius: 10px 10px 0 0;
}

h4 {
  font-size: 26px;
  border-bottom: 3px solid;
  margin-bottom: var(--32px);
  padding-bottom: 4px;
}

h5 {
  font-size: var(--24px);
  border-left: 8px solid;
  padding-left: var(--20px);
  margin-bottom: var(--32px);
}

article {
  max-width: var(--pc_max);
  background-color: var(--white);
  margin: var(--40px) auto;
  padding-bottom: var(--20px);
}
article > .wp-block-group__inner-container {
  padding: var(--20px);
}
article > .wp-block-group__inner-container p {
  margin-bottom: var(--16px);
}

/* #shop, #taxonomy_shop-cat 共通*/
section.category-list {
  border-style: solid;
  border-width: 0;
  border-bottom-width: 1px;
  margin-bottom: var(--40px);
}
section.category-list h6 {
  font-size: var(--24px);
  margin: var(--24px) 0;
}
section.category-list .gourmet {
  border-color: var(--gourmet_txt);
  background-color: var(--gourmet_color);
}
section.category-list .gourmet:hover {
  background-color: var(--white);
}
section.category-list .shopping {
  border-color: var(--shopping_txt);
  background-color: var(--shopping_color);
}
section.category-list .shopping:hover {
  background-color: var(--white);
}
section.category-list .activity {
  border-color: var(--activity_txt);
  background-color: var(--activity_color);
}
section.category-list .activity:hover {
  background-color: var(--white);
}
section.category-list .living {
  border-color: var(--living_txt);
  background-color: var(--living_color);
}
section.category-list .living:hover {
  background-color: var(--white);
}
section.category-list .house {
  border-color: var(--house_txt);
  background-color: var(--house_color);
}
section.category-list .house:hover {
  background-color: var(--white);
}
section.category-list .business {
  border-color: var(--business_txt);
  background-color: var(--business_color);
}
section.category-list .business:hover {
  background-color: var(--white);
}
section.category-list ul {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  -moz-column-gap: 20px;
       column-gap: 20px;
  padding-bottom: var(--16px);
}
section.category-list ul li {
  width: 100%;
  border-radius: var(--kadomaru);
  border-width: 1px;
  border-style: solid;
  list-style: none;
  text-align: center;
  margin-bottom: var(--24px);
}
section.category-list ul li a {
  display: block;
  padding: var(--18px) 0;
  font-size: var(--14px);
  color: var(--black);
  text-decoration: none;
}

.shop-list {
  display: flex;
  flex-direction: column;
  -moz-column-gap: var(--32px);
       column-gap: var(--32px);
}
.shop-list .shop-list_card {
  display: flex;
  flex-direction: row;
  width: 100%;
  margin-bottom: var(--32px);
  background-color: var(--white);
  border: 1px solid var(--gray);
}
.shop-list .shop-list_card figure {
  padding: 8px;
}
.shop-list .shop-list_card figure img {
  aspect-ratio: 4/3;
  width: 230px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.shop-list .shop-list_card .shop-list-card_textarea {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: var(--20px) var(--20px);
}
.shop-list .shop-list_card .shop-list-card_textarea .shop_name {
  font-size: var(--20px);
  margin-bottom: 8px;
  font-weight: var(--semibold);
}
.shop-list .shop-list_card .shop-list-card_textarea .shop_pr {
  margin-bottom: 8px;
}
.shop-list .shop-list_card .shop-list-card_textarea .term {
  margin-bottom: 8px;
}
.shop-list .shop-list_card .shop-list-card_textarea .term.gourmet, .shop-list .shop-list_card .shop-list-card_textarea .term.gourmet a {
  color: var(--gourmet_txt) !important;
}
.shop-list .shop-list_card .shop-list-card_textarea .term.shopping, .shop-list .shop-list_card .shop-list-card_textarea .term.shopping a {
  color: var(--shopping_txt) !important;
}
.shop-list .shop-list_card .shop-list-card_textarea .term.activity, .shop-list .shop-list_card .shop-list-card_textarea .term.activity a {
  color: var(--activity_txt) !important;
}
.shop-list .shop-list_card .shop-list-card_textarea .term.living, .shop-list .shop-list_card .shop-list-card_textarea .term.living a {
  color: var(--living_txt) !important;
}
.shop-list .shop-list_card .shop-list-card_textarea .term.house, .shop-list .shop-list_card .shop-list-card_textarea .term.house a {
  color: var(--house_txt) !important;
}
.shop-list .shop-list_card .shop-list-card_textarea .term.business, .shop-list .shop-list_card .shop-list-card_textarea .term.business a {
  color: var(--business_txt) !important;
}
.shop-list .shop-list_card .shop-list-card_textarea .shop_link {
  text-align: right;
  margin-top: auto;
}
.shop-list .shop-list_card .shop-list-card_textarea a {
  text-decoration: none;
  color: var(--black);
}

.pnavi {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto;
  width: 100%;
  /*
  max-width: var(--pc_max);
  */
  -moz-column-gap: var(--24px);
       column-gap: var(--24px);
  row-gap: var(--32px);
}
.pnavi span {
  padding: 8px var(--16px) var(--14px);
  border-width: 1px;
  border-style: solid;
}
.pnavi a {
  color: var(--black);
  text-decoration: none;
  padding: 8px var(--16px) var(--14px);
  border-width: 1px;
  border-style: solid;
  background-color: var(--white);
}
.pnavi.gourmet span {
  border-color: var(--gourmet_txt);
  background-color: var(--gourmet_color);
}
.pnavi.gourmet a {
  border-color: var(--gourmet_txt);
  background-color: var(--white);
}
.pnavi.gourmet a:hover {
  background-color: var(--gourmet_color);
}
.pnavi.shopping span {
  border-color: var(--shopping_txt);
  background-color: var(--shopping_color);
}
.pnavi.shopping a {
  border-color: var(--shopping_txt);
  background-color: var(--white);
}
.pnavi.shopping a:hover {
  border-color: var(--shopping_txt);
  background-color: var(--shopping_color);
}
.pnavi.activity span {
  border-color: var(--activity_txt);
  background-color: var(--activity_color);
}
.pnavi.activity a {
  border-color: var(--activity_txt);
  background-color: var(--white);
}
.pnavi.activity a:hover {
  border-color: var(--activity_txt);
  background-color: var(--activity_color);
}
.pnavi.living span {
  border-color: var(--living_txt);
  background-color: var(--living_color);
}
.pnavi.living a {
  border-color: var(--living_txt);
  background-color: var(--white);
}
.pnavi.living a:hover {
  border-color: var(--living_txt);
  background-color: var(--living_color);
}
.pnavi.house span {
  border-color: var(--house_txt);
  background-color: var(--house_color);
}
.pnavi.house a {
  border-color: var(--house_txt);
  background-color: var(--white);
}
.pnavi.house a:hover {
  border-color: var(--house_txt);
  background-color: var(--house_color);
}
.pnavi.business span {
  border-color: var(--business_txt);
  background-color: var(--business_color);
}
.pnavi.business a {
  border-color: var(--business_txt);
  background-color: var(--white);
}
.pnavi.business a:hover {
  border-color: var(--business_txt);
  background-color: var(--business_color);
}

/* #shop, #taxonomy_shop-cat 共通Fin */
/* #top,#shop-detail 共通 */
#shop-news {
  border-color: var(--info-color_line) !important;
  border-style: solid;
  border-width: 1px;
  border-radius: 10px 10px 0 0;
}
#shop-news h3 {
  background-color: var(--info-color) !important;
  padding: var(--20px) var(--20px) var(--16px) var(--20px);
  border-radius: 10px 10px 0 0;
  font-size: var(--32px);
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: left;
}
#shop-news ul {
  padding: 0 var(--20px);
  margin-bottom: var(--32px);
}
#shop-news ul li {
  list-style: none;
  border-bottom: 1px dashed var(--deep-gray);
  padding: var(--20px) 0;
}
#shop-news ul li:last-child {
  border-bottom: 0;
}
#shop-news ul li.no-info {
  width: 100%;
}
#shop-news ul li time {
  margin-right: var(--24px);
}
#shop-news ul li a {
  color: var(--info-color_line);
}
#shop-news ul li .term {
  margin-top: 8px;
}
#shop-news ul li .term a {
  color: var(--deep-gray);
  text-decoration: none;
}

/* #top,#shop-detail 共通fin */
/*----#top------*/
#top main {
  width: 100%;
  display: block;
  margin: 0 auto;
  padding: 0 20px;
}
#top main #slider {
  width: 100%;
  display: block;
  position: relative;
  margin-top: 0;
  padding: var(--24px) 0;
}
#top main #slider button {
  display: none !important;
}
#top main .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -moz-column-gap: var(--24px);
       column-gap: var(--24px);
}
#top main .grid article {
  border-style: solid;
  border-width: 1px;
  border-radius: 10px 10px 0 0;
  margin: var(--32px) 0 var(--20px);
  padding-bottom: var(--40px);
}
#top main .grid article h3 {
  font-size: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: left;
}
#top main .grid article [class$=-anchor] {
  width: 100%;
  display: block;
  margin: 0;
}
#top main .grid article [class$=-anchor] a {
  color: var(--black);
  text-decoration: none;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
  width: 200px;
  padding: 8px var(--24px);
  border-radius: 50px;
  border-width: 1px;
  border-style: solid;
}
#top main .grid article [class$=-anchor] a:hover {
  background-color: var(--white);
  border-style: solid;
  border-width: 1px;
}
#top main .grid #top-nav {
  /*
  max-width: var(--pc_max);
  */
  margin: 0;
  grid-column: span 4;
}
#top main .grid #top-nav ul {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  background-color: var(--sub-color);
}
#top main .grid #top-nav ul li {
  list-style: none;
  width: 25%;
  border: 1px solid var(--white);
}
#top main .grid #top-nav ul li a {
  width: 100%;
  display: block;
  text-align: center;
  text-decoration: none;
  color: var(--black);
  padding: 10px 0;
}
#top main .grid #shop-category {
  border-color: var(--shop-color_line);
  grid-column: span 3;
}
#top main .grid #shop-category h3 {
  background-color: var(--shop-color);
}
#top main .grid #shop-category .shop-category_group {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-around;
  row-gap: var(--24px);
  padding: var(--24px) var(--20px);
  margin-bottom: var(--24px);
}
#top main .grid #shop-category .shop-category_group a {
  display: block;
  padding: var(--20px);
  border-radius: var(--kadomaru);
  border-width: 1px;
  border-style: solid;
  text-decoration: none;
  color: var(--black);
  font-size: var(--16px);
  background-repeat: no-repeat;
  background-size: auto 90px;
  background-position: right 20px center;
  word-break: keep-all;
  width: calc((100% - 40px) / 2);
}
#top main .grid #shop-category .shop-category_group a:hover {
  background-color: var(--white);
}
#top main .grid #shop-category .shop-category_group a div {
  font-size: var(--24px);
  font-weight: var(--semibold);
  margin-bottom: 8px;
  overflow-wrap: break-word;
}
#top main .grid #shop-category .shop-category_group .cat-gourmet {
  border-color: var(--gourmet_txt);
  background-color: var(--gourmet_color);
  background-image: url(assets/images/cat-gourmet_back-img.png);
}
#top main .grid #shop-category .shop-category_group .cat-shopping {
  border-color: var(--shopping_txt);
  background-color: var(--shopping_color);
  background-image: url(assets/images/cat-shopping_back-img.png);
}
#top main .grid #shop-category .shop-category_group .cat-activity {
  border-color: var(--activity_txt);
  background-color: var(--activity_color);
  background-image: url(assets/images/cat-activity_back-img.png);
}
#top main .grid #shop-category .shop-category_group .cat-living {
  border-color: var(--living_txt);
  background-color: var(--living_color);
  background-image: url(assets/images/cat-living_back-img.png);
}
#top main .grid #shop-category .shop-category_group .cat-house {
  border-color: var(--house_txt);
  background-color: var(--house_color);
  background-image: url(assets/images/cat-house_back-img.png);
  background-size: 90px auto;
}
#top main .grid #shop-category .shop-category_group .cat-business {
  border-color: var(--business_txt);
  background-color: var(--business_color);
  background-image: url(assets/images/cat-business_back-img.png);
}
#top main .grid #shop-category .shop-anchor a {
  background-color: var(--shop-color);
  border-color: var(--shop-color);
}
#top main .grid #shop-category .shop-anchor a:hover {
  border-color: var(--shop-color_line);
}
#top main .grid #event-info {
  border-color: var(--event-color_line);
  grid-row: span 3;
  margin-bottom: var(--40px);
}
#top main .grid #event-info h3 {
  background-color: var(--event-color);
  padding: var(--20px) var(--20px) var(--16px) 12px;
}
#top main .grid #event-info h3 .material-icons {
  font-size: 36px !important;
}
#top main .grid #event-info ul {
  margin: var(--24px) var(--20px) 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: var(--32px);
  row-gap: 0;
  min-height: 234px;
}
#top main .grid #event-info ul li {
  list-style: none;
  margin-bottom: var(--40px);
  width: 100%;
}
#top main .grid #event-info ul li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  -moz-column-gap: 0;
       column-gap: 0;
  width: 100%;
  color: var(--black);
  text-decoration: none;
}
#top main .grid #event-info ul li a figure {
  text-align: center;
}
#top main .grid #event-info ul li a figure img {
  height: 150px;
  width: auto;
  margin: 0 auto 16px;
  border: 1px solid var(--gray);
}
#top main .grid #event-info ul li a div {
  width: 100%;
}
#top main .grid #event-info .event-day {
  font-size: var(--16px);
  margin-bottom: 8px;
}
#top main .grid #event-info .event-anchor {
  padding: 0 var(--20px);
}
#top main .grid #event-info .event-anchor a {
  background-color: var(--event-color);
  border-color: var(--event-color);
}
#top main .grid #event-info .event-anchor a:hover {
  border-color: var(--event-color_line);
}
#top main .grid #shop-news {
  grid-column: span 3;
  margin-bottom: 0;
}
#top main .grid #shop-news ul {
  margin-bottom: 16px;
}
#top main .grid #shop-news ul li {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: var(--20px);
}
#top main .grid #shop-news ul li time {
  display: inline-block;
}
#top main .grid #shop-news ul li .shop_name {
  color: var(--gray);
}
#top main .grid #shop-news .news-anchor a {
  background-color: var(--info-color);
  border-color: var(--info-color);
}
#top main .grid #shop-news .news-anchor a:hover {
  border-color: var(--info-color_line);
}
#top main .grid .link-area {
  margin: var(--50px) 0 var(--20px);
  grid-column: span 3;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
#top main .grid .link-area .wp-block-image {
  display: inline-block;
  justify-content: center;
  width: 30%;
}
#top main .grid .link-area .wp-block-image figure {
  margin-bottom: var(--24px);
  text-align: center;
}
#top main .grid .link-area .wp-block-image figure a img {
  width: -moz-fit-content;
  width: fit-content;
}

/*------#shop (shop-list)------*/
#shop h2 {
  background-color: var(--shop-color);
}
#shop article {
  margin-top: var(--24px);
  background-color: var(--background-basecolor);
}
#shop .category-list {
  border-color: var(--shop-color_line);
}
#shop .pnavi span {
  border-color: var(--shop-color_line);
  background-color: var(--shop-color);
}
#shop .pnavi a {
  border-color: var(--shop-color_line);
}

/*------#shop-detail------*/
#shop-detail {
  /*------#event------*/
  /*------#map------*/
  /*------#link------*/
  /*------#other------*/
  /*=====footer=====*/
  /*-------tablet_size(670px以上)-------*/
}
#shop-detail article {
  border: 1px solid var(--shop-color_line);
  border-radius: 10px 10px 0 0;
  padding-bottom: 20px;
}
#shop-detail article h3 {
  font-size: var(--32px);
  background-color: var(--shop-color);
}
#shop-detail article h4 {
  margin: var(--24px) var(--24px) var(--16px);
  border-color: var(--shop-color_line);
}
#shop-detail article h5 {
  border-color: var(--shop-color_line);
}
#shop-detail article .shop-name {
  font-size: var(--32px);
  line-height: var(--line-h140);
}
#shop-detail article .yomigana {
  font-size: 14px;
  line-height: 120%;
}
#shop-detail article section[class^=shop-] {
  padding: 0 var(--20px);
}
#shop-detail article .term {
  width: 100%;
  margin: var(--16px) auto;
  padding: 0 var(--24px);
  font-size: var(--16px);
}
#shop-detail article .term.gourmet, #shop-detail article .term.gourmet a {
  color: var(--gourmet_txt);
}
#shop-detail article .term.shopping, #shop-detail article .term.shopping a {
  color: var(--shopping_txt);
}
#shop-detail article .term.activity, #shop-detail article .term.activity a {
  color: var(--activity_txt);
}
#shop-detail article .term.living, #shop-detail article .term.living a {
  color: var(--living_txt);
}
#shop-detail article .term.house, #shop-detail article .term.house a {
  color: var(--house_txt);
}
#shop-detail article .term.business, #shop-detail article .term.business a {
  color: var(--business_txt);
}
#shop-detail article .term a {
  text-decoration: none;
}
#shop-detail article .term a:hover {
  text-decoration: underline;
}
#shop-detail article .shop-slider {
  display: grid;
  align-items: start;
  width: 100%;
  grid-template-columns: repeat(6, 1fr);
  margin-bottom: var(--32px);
  grid-template-areas: "galleries galleries galleries explanation explanation explanation" "slider-nav slider-nav slider-nav slider-nav slider-nav slider-nav";
}
#shop-detail article .shop-slider .galleries {
  grid-area: galleries;
  grid-column: span 3;
  padding: 0 20px;
  width: 100%;
}
#shop-detail article .shop-slider .slider-nav {
  grid-area: slider-nav;
  grid-column: span 6;
  margin: var(--24px) var(--20px) var(--32px);
}
#shop-detail article .shop-slider .slider-nav > .wp-block-group__inner-container .slick-track {
  transform: unset !important;
  padding: 0;
  width: 100% !important;
  display: flex;
  justify-content: left;
  flex-direction: row;
  flex-wrap: nowrap;
}
#shop-detail article .shop-slider .slider-nav > .wp-block-group__inner-container .wp-block-image {
  opacity: 0.3;
  transition: opacity 0.3s linear;
  width: 16.6666666667% !important;
}
#shop-detail article .shop-slider .slider-nav > .wp-block-group__inner-container .slick-current {
  opacity: 1;
}
#shop-detail article .shop-slider .slick-list {
  padding: 0 !important;
}
#shop-detail article .shop-slider .explanation {
  padding: 0 20px;
  grid-area: explanation;
  grid-column: span 3;
}
#shop-detail article section.shop-pr {
  margin-bottom: var(--64px);
}
#shop-detail article .shop-information {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-around;
  gap: var(--50px);
  margin-bottom: var(--64px);
}
#shop-detail article .shop-information .flex-2col-box {
  width: calc(50% - 25px);
}
#shop-detail article .shop-information .flex-2col-box table {
  border-collapse: collapse;
  width: 100%;
  table-layout: fixed;
}
#shop-detail article .shop-information .flex-2col-box table th, #shop-detail article .shop-information .flex-2col-box table td {
  border: 1px solid var(--white);
  padding: 8px;
  display: table-cell;
  word-wrap: break-word;
}
#shop-detail article .shop-information .flex-2col-box table th {
  background-color: var(--sub-color);
  width: 30%;
}
#shop-detail article .shop-information .google-map {
  width: calc(50% - 25px);
  position: relative;
  margin-top: var(--64px);
  border: 1px solid var(--shop-color_line);
  aspect-ratio: 4/3;
  height: -moz-fit-content;
  height: fit-content;
}
#shop-detail article .shop-information .google-map::before {
  content: "";
  display: block;
  padding-top: 61.8%;
}
#shop-detail article .shop-information .google-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#shop-detail article .shop-service {
  margin-bottom: 0;
}
#shop-detail article .shop-service ul {
  margin-left: 1rem;
}
#shop-detail #shop-news {
  border-color: var(--info-color_line);
  padding-bottom: 0;
  border: 1px solid var(--info-color_line);
  border-radius: 10px 10px 0 0;
}
#shop-detail #shop-news h3 {
  background-color: var(--info-color);
  padding: var(--20px) var(--20px) var(--16px) var(--20px);
  border-radius: 10px 10px 0 0;
  font-size: var(--32px);
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: left;
}
#shop-detail #shop-news ul {
  padding: var(--24px);
}
#shop-detail #shop-news ul li {
  list-style: none;
  border-bottom: 1px dashed var(--gray);
  margin-bottom: var(--16px);
  padding-bottom: var(--18px);
}
#shop-detail #shop-news ul li time {
  display: block;
}
#shop-detail #event h2 {
  background-color: var(--event-color);
}
#shop-detail #event article {
  border-color: var(--event-color_line);
  border-width: 1px;
  border-style: solid;
}
#shop-detail #event article section {
  border-bottom: dashed 1px var(--gray);
  padding: var(--20px);
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: flex-start;
}
#shop-detail #event article section h4 {
  border-color: var(--event-color_line);
}
#shop-detail #map h2 {
  background-color: var(--map-color);
}
#shop-detail #map article {
  border-color: var(--map-color_line);
  border-width: 1px;
  border-style: solid;
}
#shop-detail #map article figure {
  margin: var(--24px) auto;
  display: block;
  text-align: center;
}
#shop-detail #link h2 {
  background-color: var(--link-color);
}
#shop-detail #link article {
  border-color: var(--link-color_line);
  border-width: 1px;
  border-style: solid;
}
#shop-detail #link .link-area {
  margin: var(--50px) var(--20px) var(--20px);
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  -moz-column-gap: 24px;
       column-gap: 24px;
}
#shop-detail #link .link-area .wp-block-image {
  display: inline-block;
  justify-content: center;
}
#shop-detail #link .link-area .wp-block-image figure {
  margin-bottom: var(--24px);
  text-align: center;
}
#shop-detail #link .link-area .wp-block-image figure a img {
  width: -moz-fit-content;
  width: fit-content;
}
#shop-detail #other h2 {
  background-color: var(--other-color);
}
#shop-detail #other article {
  border-color: var(--other-color_line);
  border-width: 1px;
  border-style: solid;
}
#shop-detail footer .footer-nav {
  background-color: var(--sub-color);
  padding: var(--24px) var(--20px);
}
#shop-detail footer .footer-nav a {
  text-decoration: none;
  color: var(--black);
}
#shop-detail footer .footer-nav .footer-nav-list {
  display: grid;
  grid-template-columns: 100%;
}
#shop-detail footer .footer-nav .footer-nav-list div {
  list-style: none;
  width: 100%;
  margin-bottom: var(--16px);
}
#shop-detail footer .footer-nav .shop-cat ul {
  margin-top: 8px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}
#shop-detail footer .footer-nav .shop-cat li {
  list-style: none;
  width: calc(50% - 8px);
  margin-bottom: var(--16px);
  font-size: var(--16px);
}
#shop-detail footer .footer-nav .shop-cat li::before {
  content: "";
  width: 5px;
  height: 5px;
  display: inline-block;
  background-color: var(--black);
  border-radius: 50%;
  position: relative;
  top: -1px;
  margin-right: 5px;
}
#shop-detail footer .footer-add {
  padding: var(--24px) var(--20px);
  display: grid;
  grid-auto-rows: repeat(3, 1fr);
  gap: var(--24px);
}
#shop-detail footer address {
  font-style: normal;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#shop-detail footer address p {
  width: 100%;
}
#shop-detail footer address .footer_flex-2col {
  display: flex;
  justify-content: left;
  flex-wrap: wrap;
  width: 100%;
}
#shop-detail footer address span {
  display: inline-block;
}
#shop-detail footer small {
  text-align: center;
  width: 100%;
}
@media screen and (min-width: 670px) {
  #shop-detail {
    /*----#top------*/
    /*------#shop------*/
  }
  #shop-detail #top {
    width: 100%;
    /*
    max-width: var(--pc_max);
    */
  }
  #shop-detail #top .grid {
    display: grid;
  }
  #shop-detail #top .grid #top-nav ul li {
    list-style: none;
    width: 50%;
  }
  #shop-detail #top .grid #shop-category .shop-category_group {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
  }
  #shop-detail #top .grid #shop-category .shop-category_group a {
    width: calc(50% - 16px);
  }
  #shop-detail #top .grid #shop-news {
    border-color: var(--info-color_line);
  }
  #shop-detail #top .grid .link-area {
    flex-direction: row;
    justify-content: space-between;
    -moz-column-gap: 24px;
         column-gap: 24px;
  }
  #shop-detail #shop .category-list ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: var(--20px);
  }
  #shop-detail #shop .shop-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: start;
    justify-content: start;
    grid-auto-flow: row;
    grid-column-gap: var(--20px);
  }
  #shop-detail #shop .shop-list .shop-list_card {
    width: 100%;
  }
}

/*------ #taxonomy_shop-cat --------*/
#taxonomy_shop-cat h2.gourmet {
  background-color: var(--gourmet_color);
}
#taxonomy_shop-cat h2.shopping {
  background-color: var(--shopping_color);
}
#taxonomy_shop-cat h2.activity {
  background-color: var(--activity_color);
}
#taxonomy_shop-cat h2.living {
  background-color: var(--living_color);
}
#taxonomy_shop-cat h2.house {
  background-color: var(--house_color);
}
#taxonomy_shop-cat h2.business {
  background-color: var(--business_color);
}
#taxonomy_shop-cat article {
  margin-top: var(--24px);
  background-color: var(--background-basecolor);
}
#taxonomy_shop-cat section {
  margin: 0 0 var(--40px);
}

/*------#event------*/
#event h2 {
  background-color: var(--event-color);
}
#event h4 {
  border-color: var(--event-color_line);
  margin-bottom: var(--24px);
}
#event article {
  margin-bottom: var(--40px);
  border-color: var(--event-color_line);
  border-width: 1px;
  border-style: solid;
}
#event article section {
  border-bottom: dashed 1px var(--deep-gray);
  margin: var(--40px) var(--20px);
  padding: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: flex-start;
  align-content: flex-start;
  -moz-column-gap: var(--32px);
       column-gap: var(--32px);
  row-gap: var(--20px);
}
#event article section:last-child {
  border-bottom: 0;
  margin-bottom: 0;
}
#event article section:last-child figure {
  margin-bottom: var(--20px);
}
#event article section figure {
  margin-bottom: var(--40px);
  width: 300px;
}
#event article section figure img {
  width: 100%;
  max-width: 400px;
  height: auto;
  display: block;
  margin: 0 auto;
  border: 1px solid var(--deep-gray);
}
#event article section .flex-box {
  width: 100%;
}
#event article section .flex-box .event-day {
  width: 100%;
  margin-bottom: var(--16px);
}
#event article section .flex-box .event-day span {
  margin: 0 8px;
}
#event article section .flex-box .event-content {
  width: 100%;
  margin-bottom: var(--16px);
}
#event article section .flex-box time {
  color: var(--deep-gray);
  width: 100%;
  text-align: right;
  display: block;
}
#event .pnavi span {
  border-color: var(--event-color_line);
  background-color: var(--event-color);
}
#event .pnavi a {
  border-color: var(--event-color_line);
}

/*------#event-detail & #info-detail------*/
#event-detail article, #info-detail article {
  border-width: 1px;
  border-style: solid;
  margin-bottom: var(--40px);
  padding: 0;
}
#event-detail article section, #info-detail article section {
  margin: var(--40px) var(--20px);
  padding: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: flex-start;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0;
  -moz-column-gap: var(--32px);
       column-gap: var(--32px);
}
#event-detail article section figure, #info-detail article section figure {
  width: 300px;
}
#event-detail article section figure img, #info-detail article section figure img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border: 1px solid var(--deep-gray);
}
#event-detail article section .flex-box, #info-detail article section .flex-box {
  width: 100%;
}
#event-detail article section .flex-box time, #info-detail article section .flex-box time {
  color: var(--deep-gray);
  width: 100%;
  text-align: right;
  display: block;
  margin-bottom: var(--16px);
  margin-top: auto;
}

/*------#event-detail------*/
#event-detail h2 {
  background-color: var(--event-color);
}
#event-detail h4 {
  border-color: var(--event-color_line);
  margin-bottom: var(--24px);
}
#event-detail article {
  border-color: var(--event-color_line);
}
#event-detail article section .flex-box .event-day {
  width: 100%;
  margin-bottom: var(--16px);
}
#event-detail article section .flex-box .event-day span {
  margin: 0 8px;
}
#event-detail article section .flex-box .event-content {
  width: 100%;
  margin-bottom: var(--16px);
}

/*------#info-----*/
#info h2 {
  background-color: var(--info-color);
}
#info h4 {
  border-color: var(--info-color_line);
  margin-bottom: var(--18px);
}
#info article {
  margin-bottom: var(--40px);
  border-color: var(--info-color_line);
  border-width: 1px;
  border-style: solid;
}
#info article section {
  border-bottom: dashed 1px var(--deep-gray);
  margin: var(--40px) var(--20px);
  padding: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: flex-start;
  justify-content: flex-start;
  align-items: flex-start;
  -moz-column-gap: var(--32px);
       column-gap: var(--32px);
  row-gap: var(--20px);
}
#info article section:last-child {
  margin-bottom: 0;
  border-bottom: 0;
}
#info article section:last-child figure {
  margin-bottom: var(--20px);
}
#info article section figure {
  margin-bottom: var(--40px);
  width: 300px;
}
#info article section figure img {
  width: 100%;
  max-width: 400px;
  height: auto;
  display: block;
  margin: 0 auto;
  border: 1px solid var(--deep-gray);
}
#info article section .flex-box {
  width: 100%;
}
#info article section .flex-box .term {
  text-align: right;
  margin-bottom: var(--16px);
}
#info article section .flex-box .term a {
  color: var(--shop-color_line);
}
#info article section .flex-box .info-content {
  width: 100%;
  margin-bottom: var(--16px);
}
#info article section .flex-box time {
  margin-bottom: var(--16px);
  color: var(--deep-gray);
  width: 100%;
  text-align: right;
  display: block;
}
#info .pnavi span {
  border-color: var(--info-color_line);
  background-color: var(--info-color);
}
#info .pnavi a {
  border-color: var(--info-color_line);
}

/*------info-detail-----*/
#info-detail h2 {
  background-color: var(--info-color);
}
#info-detail h4 {
  border-color: var(--info-color_line);
  margin-bottom: var(--18px);
}
#info-detail article {
  border-color: var(--info-color_line);
}
#info-detail article section .flex-box .term {
  text-align: right;
  margin-bottom: var(--16px);
}
#info-detail article section .flex-box .term a {
  color: var(--shop-color_line);
}
#info-detail article section .flex-box .info-content {
  width: 100%;
  margin-bottom: var(--16px);
}

/*------#map------*/
#map h2 {
  background-color: var(--map-color);
}
#map article {
  border-color: var(--map-color_line);
  border-width: 1px;
  border-style: solid;
}
#map article section {
  margin: var(--32px) var(--20px) var(--20px);
}
#map article figure {
  margin: var(--24px) auto;
  display: block;
  text-align: center;
}

/*------#link------*/
#link h2 {
  background-color: var(--link-color);
}
#link article {
  border-color: var(--link-color_line);
  border-width: 1px;
  border-style: solid;
}
#link .link-area {
  margin: var(--50px) var(--20px) 0;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  -moz-column-gap: 24px;
       column-gap: 24px;
}
#link .link-area .wp-block-image {
  display: inline-block;
  justify-content: center;
}
#link .link-area .wp-block-image figure {
  margin-bottom: var(--24px);
  text-align: center;
}
#link .link-area .wp-block-image figure a img {
  width: -moz-fit-content;
  width: fit-content;
}

/*------#other------*/
#other h2 {
  background-color: var(--other-color);
}
#other h4 {
  border-color: var(--other-color_line);
}
#other article {
  border-color: var(--other-color_line);
  border-width: 1px;
  border-style: solid;
  padding: var(--50px) var(--20px) var(--20px);
}
#other article ul, #other article ol {
  margin-left: 1rem;
}

/*=====footer=====*/
footer .footer-nav {
  background-color: var(--sub-color);
  padding: var(--24px) var(--20px);
}
footer .footer-nav a {
  text-decoration: none;
  color: var(--black);
}
footer .footer-nav .footer-nav-list {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-around;
  margin: 0 auto;
  width: 100%;
  max-width: var(--pc_max);
  grid-column-gap: var(--24px);
}
footer .footer-nav .footer-nav-list div {
  list-style: none;
  width: 100%;
  margin-bottom: var(--16px);
}
footer .footer-nav .shop-cat ul {
  margin-top: 8px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}
footer .footer-nav .shop-cat li {
  list-style: none;
  width: calc(50% - 8px);
  margin-bottom: var(--16px);
  font-size: var(--16px);
}
footer .footer-nav .shop-cat li::before {
  content: "";
  width: 5px;
  height: 5px;
  display: inline-block;
  background-color: var(--black);
  border-radius: 50%;
  position: relative;
  top: -1px;
  margin-right: 5px;
}
footer .footer-add {
  padding: var(--24px) var(--20px);
  display: flex;
  flex-wrap: wrap;
  gap: var(--32px);
  width: 100%;
  max-width: var(--pc_max);
  margin: var(--20px) auto;
}
footer address {
  font-style: normal;
  /*
  display: flex;
  */
  flex-wrap: wrap;
  justify-content: space-between;
}
footer address p {
  width: 100%;
}
footer address .footer_flex-2col {
  display: flex;
  justify-content: left;
  flex-wrap: wrap;
  width: 100%;
}
footer address span {
  display: inline-block;
}
footer small {
  grid-area: small;
  align-self: end;
  text-align: center;
  width: 100%;
}/*# sourceMappingURL=print.css.map */