body:not(.home) {
  padding-top: 86px;
}

.cate-color > * {
  --based-color: #6C4598;
  --based-color-light: #f1e6fc;
}
.cate-color.m-gourmet > * {
  --based-color: #c09;
  --based-color-light: #fbebf7;
}
.cate-color.m-beauty > * {
  --based-color: #ffa500;
  --based-color-light: #fff6e6;
}
.cate-color.m-general > * {
  --based-color: #87cefa;
  --based-color-light: #f0f9ff;
}

/*------------------------------------
汎用
------------------------------------*/
/*コンティナ*/
.container {
  display: block;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 50px;
}

/*汎用flex*/
.flex-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

/*パンくずリスト*/
.container-breadcrumbs {
  margin: 12px 0;
  width: 100%;
}
#breadcrumbs ul {
  display: flex;
  align-items: center;
  gap: 15px;
}
#breadcrumbs ul li {
  vertical-align: middle;
  font-size: 12px;
}
#breadcrumbs ul li a .fa-home {
  display: block;
  font-size: 20px;
}

/*ページネーション*/
.pagination {
  display: flex;
  justify-content: center;
  background: none;
  text-align: center;
  margin: 48px 0 0;
}
.pagination span,
.pagination a {
  padding: 10px 12px;
  width: auto;
  background: #fff;
  box-shadow: 0 0 0 1px #181818;
}
.pagination a {
  display: inline;
  padding: 10px 12px;
  color: #181818;
}
.pagination a:hover {
  color: #fff;
  background: #181818;
  opacity: 1;
}
.pagination .current {
  background: #181818;
  color: #fff;
  opacity: 1;
}

/*言語スイッチ*/
.lang {
  position: relative;
}
.lang .lang-btn {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  width: 90px;
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
  padding: 5px 10px 5px 10px;
  background: linear-gradient(to bottom, #F5BE33 -50%, #CB4A95 54%, #6C4598 150%);
  border: none;
  border-radius: 18px;
}
.lang .lang-btn::before {
  content: "";
  position: absolute;
  inset: 1px;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  border-radius: 16px;
  background: #fff;
  transition: .3s ease;
  z-index: 1;
}
.lang .lang-btn:hover::before,
.lang .lang-btn[aria-expanded=true]::before {
  opacity: .8;
}
.lang .lang-btn[aria-expanded=true] .btn-txt::after {
  scale: 1 -1;
}
.lang:has(.lang-check:focus-visible) .lang-btn {
  outline: 2px solid #FFA01F;
}
.lang .lang-btn .btn-icon {
  position: relative;
  width: 14px;
  z-index: 2;
}
.lang .lang-btn .btn-txt {
  position: relative;
  z-index: 2;
}
.lang .lang-btn .btn-txt::after {
  content: "\f107";
  display: inline-block;
  color: currentColor;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  pointer-events: none;
  margin-left: 4px;
}

.lang .lang-check {
  position: absolute;
  inset: 0;
  opacity: 0;
  appearance: none;
  z-index: -1;
}
.lang .lang-links {
  position: absolute;
  top: calc(100% + 16px);
  left: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  background: #fff;
  padding: 16px 10px;
  border-radius: 8px;
  filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, .25));
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: .3s ease;
  z-index: 1000;
}
.lang .lang-links::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 50%;
  translate: -50% 0;
  width: 12px;
  height: 8px;
  background: #fff;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  z-index: 1;
}
.lang .lang-links[aria-hidden=false] {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.lang .lang-links .lang-link {
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}
.lang .lang-links .lang-link a {
  padding: 0;
  transition: .3s ease;
}
.lang .lang-links .lang-link a:hover {
  opacity: .7;
}

/*------------------------------------
ヘッダー
------------------------------------*/
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #e8e8e8;
  padding: 20px 0 15px;
  z-index: 9900;
}
body.admin-bar header {
  top: 46px;
}
@media screen and (min-width: 783px) {
  body.admin-bar header {
    top: 32px;
  }
}
header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, #F5BE33 0%, #CB4A95 54%, #6C4598 100%);
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
header .ttl {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-right: auto;
}
header .ttl .logo img {
  height: 44px;
}
header .ttl .caption {
  font-size: 13px;
  margin-top: 5px;
}

header .menu-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
}
header .menu-list .menu-item a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  gap: 12px;
  padding: 12px 16px;
}
header .menu-list .menu-item a:hover {
  opacity: 1;
}
header .menu-list .menu-item a:after {
  position: absolute;
  bottom: -15px;
  left: 0;
  scale: 0 1;
  width: 100%;
  content: '';
  background: color-mix(in srgb, #cc0099 100%, #fff 40%);
  height: 3px;
  transition: .3s scale ease;
  transform-origin: right center;
}
header .menu-list .menu-item.m-gourmet a:after {
  background: color-mix(in srgb, #cc0099 100%, #fff 40%);
}
header .menu-list .menu-item.m-beauty a:after {
  background: color-mix(in srgb, #ffa500 100%, #fff 40%);
}
header .menu-list .menu-item.m-general a:after {
  background: color-mix(in srgb, #87cefa 100%, #fff 40%);
}
header .menu-list .menu-item a:hover:after {
  scale: 1 1;
  transform-origin: left center;
}
header .menu-list .menu-item a img {
  height: 1lh;
}
header .menu-list .menu-item a span {
  font-size: 14px;
  font-weight: 700;
}
header .lang {
  margin-left: 24px;
  z-index: 1;
}

header #nav-toggle,
header #spmenu {display: none;}

/*--------------------------------------------------------------------------
----------------------------------------------------------------------------
----------------------------------------------------------------------------
ファーストビュー
----------------------------------------------------------------------------
----------------------------------------------------------------------------
--------------------------------------------------------------------------*/
.top {
  position: relative;
  width: 100%;
  height: 100dvh;
  overflow: hidden;
}
.top-cover {
  display: block;
  position: fixed;
  background: linear-gradient(to right, #F5BE33 0%, #CB4A95 54%, #6C4598 100%);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 9998;
}
.top-cover .cover-inr {
  display: grid;
  place-items: center;
  position: fixed;
  background: #fff;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  left: 10px;
  top: 10px;
  z-index: 9999;
}
.top-cover .cover-logo img {
  height: 64px;
}
.top-cover .cover-line {
  position: absolute;
  background: #fff;
  scale: 1 1; 
  transition: 1s ease scale;
  z-index: 9999;
}
.top-cover .cover-line.m-01 {
  top: 0;
  left: 0;
  width: 100%;
  height: 10px;
  transform-origin: top right;
}
.top-cover .cover-line.m-02 {
  top: 0;
  right: 0;
  width: 10px;
  height: 100%;
  transform-origin: bottom left;
}
.top-cover .cover-line.m-03 {
  bottom: 0;
  right: 0;
  width: 100%;
  height: 10px;
  transform-origin: bottom left;
}
.top-cover .cover-line.m-04 {
  bottom: 0;
  left: 0;
  width: 10px;
  height: 100%;
  transform-origin: top right;
}

.is-domloaded .top-cover {
  animation: topFade .5s ease 1.5s normal both;
}
@keyframes topFade {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
  }
}
.is-domloaded .top-cover .cover-line.m-01,
.is-domloaded .top-cover .cover-line.m-03 {
  scale: 0 1;
}
.is-domloaded .top-cover .cover-line.m-02,
.is-domloaded .top-cover .cover-line.m-04 {
  scale: 1 0;
}

.top .top-slider {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
.top .top-slider::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0, .5), rgba(0,0,0, 0), rgba(0,0,0, .5));
  z-index: 2;
}
.top .top-slider .splide__list,
.top .top-slider .splide__track,
.top .top-slider .splide__slide {
  width: 100%;
  height: 100%;
}
.top .top-slider .splide__slide {
  overflow: hidden;
}
.top .top-slider .splide__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}
.top .top-slider .splide__slide.is-active img,
.top .top-slider .splide__slide.is-prev img {
  animation: slideZoom 15s linear 0s normal both;
}
@keyframes slideZoom {
  0% {transform: scale(1);}
  100% {transform: scale(1.2);}
}

.top .top-lang {
  position: fixed;
  top: 42px;
  right: 60px;
  z-index: 11;
}
body.admin-bar .top .top-lang {
  top: 88px;
}
@media screen and (min-width: 783px) {
  body.admin-bar .top .top-lang {
    top: 74px;
  }
}

.top .top-content {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translate(-50%,0);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  max-width: calc(100% - 120px);
  z-index: 10;
}
.top .top-nav {
  display: flex;
  justify-content: flex-end;
  gap: 12px 24px;
  margin: 0 128px 0 auto;
}
.top .top-nav .nav-item a {
  display: flex;
  align-items: center;
  gap: .5em;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
}
.top .top-nav .nav-item a img {
  height: 1em;
}
.top .top-search {
  display: flex;
  gap: 15px 30px;
  width: 100%;
  margin-top: 16px;
}
.top .top-search .search-logo {
  width: 156px;
}
.top .top-search .search-form {
  display: flex;
  width: calc(100% - 156px - 30px);
  overflow: hidden;
  filter: drop-shadow(2px 2px 8px rgba(0,0,0, .1));
}
.top .top-search .search-form .form-select {
  position: relative;
  width: 300px;
  overflow: hidden;
}
.top .top-search .search-form .form-select::before {
  content: "\f107";
  display: grid;
  place-items: center;
  position: absolute;
  top: 0;
  right: 0;
  color: #fff;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  width: 20px;
  height: 100%;
  background: linear-gradient(to bottom, #F5BE33 -50%, #CB4A95 54%, #6C4598 150%);
  z-index: 2;
  pointer-events: none;
}
.top .top-search .search-form .form-select select {
  display: block;
  width: 100%;
  height: 100%;
  padding: 8px 12px;
  font-size: 14px;
  border: none;
  vertical-align: middle;
}
.top .top-search .search-form .form-select.cate select {
  border-radius: 20px 0 0 20px;
}
.top .top-search .search-form .form-input {
  display: block;
  width: calc(100% - 300px - 100px);
  margin: 0;
  padding: 8px 12px;
  font-size: 14px;
  border: none;
  vertical-align: middle;
  background: #fff;
}
.top .top-search .search-form .form-submit {
  position: relative;
  display: block;
  width: 100px;
  padding: 8px 12px;
  font-size: 15px;
  font-weight: 700;
  border: none;
  color: #fff;
  text-align: center;
  background: linear-gradient(to bottom, #F5BE33 -50%, #CB4A95 54%, #6C4598 150%);
  cursor: pointer;
  border-radius: 0 20px 20px 0;
  text-decoration: none;
}
.top .top-search .search-form .form-submit input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}
.top .top-search .search-form .form-submit:hover {
  opacity: .9;
}

/*--------------------------------------------------------------------------
----------------------------------------------------------------------------
----------------------------------------------------------------------------
ポータルトップ
----------------------------------------------------------------------------
----------------------------------------------------------------------------
--------------------------------------------------------------------------*/
/*------------------------------------
スライダー
------------------------------------*/
#slider {
  height: 480px;
  margin-bottom: 24px;
  overflow: hidden;
}
#slider .top-slider .splide__list,
#slider .top-slider .splide__track,
#slider .top-slider .splide__slide {
  width: 100%;
  height: 100%;
}
#slider .home-slider .splide__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50%;
}

/*------------------------------------
検索
------------------------------------*/
#mixsearch {margin-bottom: 24px;}
#mixsearch h2 {
  display: block;
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 16px;
  padding: 4px 10px;
  background: #fff;
  border: none;
  border-left: 4px solid var(--based-color);
}
/*タグ検索*/
#mixsearch .selectsearch {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 0;
  padding: 24px;
  border-radius: 20px;
  background: var(--based-color-light);
}
#mixsearch .selectsearch .select {
  position: relative;
  width: 260px;
  overflow: hidden;
}
#mixsearch .selectsearch .select::before {
  content: "\f107";
  display: grid;
  place-items: center;
  position: absolute;
  top: 0;
  right: 0;
  color: #fff;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  width: 20px;
  height: 100%;
  background: var(--based-color);
  z-index: 2;
  pointer-events: none;
}
#mixsearch .selectsearch .select select {
  display: block;
  width: 100%;
  height: 100%;
  padding: 8px 12px;
  font-size: 14px;
  border: 1px solid #dcdcdc;
  border-right: none;
  vertical-align: middle;
}
/*フリーワード検索*/
#mixsearch .s {
  display: block;
  width: calc(100% - 260px - 100px);
  margin: 0;
  padding: 8px 12px;
  font-size: 14px;
  border: none;
  vertical-align: middle;
  background: #fff;
  border: 1px solid #dcdcdc;
  border-right: none;
}
/*ボタン*/
#mixsearch .selectsearch .selectsubmit {
  display: block;
  width: 100px;
  padding: 8px 12px;
  font-size: 15px;
  font-weight: 700;
  border: none;
  color: #fff;
  background: var(--based-color);
  cursor: pointer;
  text-decoration: none;
}
#mixsearch .selectsearch .selectsubmit:hover {
  background: color-mix(in srgb, var(--based-color) 100%, #fff 20%);
}

/*------------------------------------
カラム
------------------------------------*/
#column.flex-wrap {
  display: flex;
  gap: 40px;
}
#column_left {
  width: calc(100% - 40px - 250px);
}
#column_right {
  width: 250px;
}

/*------------------------------------
探す
------------------------------------*/
.cate-search {
  width: 100%;
}
.cate-search:not(:first-child) {
  margin-top: 24px;
}
.cate-search:last-child {
  margin-bottom: 48px;
}
.cate-search h2 {
  display: block;
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 16px;
  padding: 4px 10px;
  background: #fff;
  border: none;
  border-left: 4px solid var(--based-color);
}
.cate-search h3 {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 10px;
  padding-bottom: 4px;
  background: #fff;
  border: none;
  border-bottom: 2px solid var(--based-color);
}
.cate-search h3:not(:first-child) {
  margin-top: 24px;
}
.cate-search .area-list {
  display: flex;
  flex-wrap: wrap;
  gap: .75em 1em;
}
.cate-search .area-list li a {
  color: #0068b7;
  font-size: 13px;
}
.cate-search .meal-img-list {
  display: flex;
  gap: 10px;
}
.cate-search .meal-img-list li {
  width: calc((100% - 50px) / 6);
  height: 130px;
}
.cate-search .meal-img-list li a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.cate-search .meal-img-list li a img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50%;
  z-index: 1;
}
.cate-search .meal-img-list li a p {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  background: linear-gradient(to bottom, rgba(0,0,0, .3), rgba(0,0,0, .5) 65%, rgba(0,0,0, .65) 100%);
  z-index: 2;
}
.cate-search .meal-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.cate-search .meal-list li a {
  display: block;
  padding: .5em .75em;
  border: 1px solid #dcdcdc;
}

/*------------------------------------
サイドバー
------------------------------------*/
#access_rank {margin: 0 0 16px;}
#access_rank h3 {
  display: block;
  font-size: 14px;
  font-weight: 700;
  padding: 4px 8px;
  background: #fff;
  border-left: 4px solid var(--based-color);
}
#access_rank .item {
  display: flex;
  justify-content: space-between;
  align-self: center;
  padding: 10px 0;
  border-bottom: 2px dotted #fbebf7;
}
#access_rank .item:last-child {border-bottom: none;}
#access_rank .item img {
  width: 64px;
  height: 48px;
  object-fit: cover;
  object-position: 50%;
  font-family: 'object-fit: cover; object-position: 50% 50%;';
}
#access_rank .item p {
  width: calc(100% - 64px);
  padding: 0 0 0 10px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.75;	
  vertical-align: middle;
}
.sidebnr {
  display: block;
  width: 250px;
  max-height: auto;
  margin: 0 auto 14px;
}

/*------------------------------------
タグリスト
------------------------------------*/
.shopcat_list {
  padding: 56px 0;
}
.shopcat_list-wrap:not(:first-child) {
  margin-top: 42px;
}
.shopcat_list h2 {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 700;
  margin-bottom: 10px;
}
.shopcat_list h2 img {
  height: 1lh;
}
.shopcat_list h2 span {
  line-height: 1;
}
.shopcat_list .flex-wrap {
  display: flex;
  gap: 30px;
  width: 100%;
}
.shopcat_list .contents {
  /*width: calc((100% - 60px) / 3);*/
  width: 100%;
}
.shopcat_list .contents .item {
  display: block;
  width: 100%;
}
.shopcat_list .contents .item h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  padding: 0 5px 4px 5px;
  border-bottom: solid 1px #181818;
}
.shopcat_list .contents .item h3:not(:last-child) {
  margin-top: 12px;
}
.shopcat_list .contents .item h4 {
  font-size: 14px;
  font-weight: 700;
  padding: 0 5px;
}
.shopcat_list .contents .item h4:not(:last-child) {
  margin-top: 8px;
}
.shopcat_list .contents .item h4 i {
  font-size: 13px;
  font-weight: 700;
  margin-right: 4px;
}
.shopcat_list .contents .item ul {
  display: flex;
  flex-wrap: wrap;
  margin-top: 4px;
  padding: 0 5px;
}
.shopcat_list .contents .item ul li {
  display: block;
  font-size: 13px;
}
.shopcat_list .contents .item ul li:after {content: "/\00a0";}
.shopcat_list .contents .item ul li:last-child:after {content: "";}

/*------------------------------------
フッター
------------------------------------*/
footer {
  position: relative;
  background: #f2f2f2;
}
footer .footer_bottom {border-top: 1px solid #181818;}
footer .footer_bottom ul {
  display: flex;
  justify-content: center;
  padding: 32px 0;
}
footer .footer_bottom ul li {
  border-left: 1px solid #181818;
  padding: 0 12px;
  font-size: 13px;
  line-height: 1;
}
footer .footer_bottom ul li:first-child {
  border-left: none;
  padding: 0 12px 0 0;
}
footer .footer_bottom ul li a {
  font-size: 13px;
}
footer .copyright {
  display: block;
  color: #fff;
  font-size: 10px;
  text-align: center;
  line-height: 1;
  background: #181818;
  padding: 12px 0 10px;
}

/*------------------------------------
SP版固定メニュー
------------------------------------*/
.sp-menu {display: none;}

/*------------------------------------
スクロール
------------------------------------*/
.scroll-btn {
  display: grid;
  place-items: center;
  position: absolute;
  top: -25px;
  right: 60px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(-60deg, #F5BE33 -50%, #CB4A95 54%, #6C4598 150%);
  z-index: 1010;
  opacity: 1;
}
.scroll-btn i {
  color: #fff;
  font-size: 24px;
}

/*--------------------------------------------------------------------------
----------------------------------------------------------------------------
----------------------------------------------------------------------------
下層ページ
----------------------------------------------------------------------------
----------------------------------------------------------------------------
--------------------------------------------------------------------------*/
/*------------------------------------
汎用
------------------------------------*/
#gp {margin: 24px auto 72px;}

/*------------------------------------
投稿ページ・固定ページ (single.php,page.php)
------------------------------------*/
#single p {
  word-break: break-all;
  margin: 12px 0;
}
#single img {margin: 12px 0;}
#single h1 {
  display: block;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  padding: 64px 4px;
  border-bottom: 2px solid #181818;
}
#single h2 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  margin: 12px 0;
  padding: 12px 10px;
  background: #f1e6fc;
  border-left: 4px solid #6C4598;
}
#single h3 {
  position: relative;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  margin: 12px 0;
  padding: 10px 4px;
  border-bottom: 1px solid #6C4598;
}
#single h3:after {
  display: block;
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 10%;
  border-bottom: 3px solid #6C4598;
}
#single h4 {
  position: relative;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  margin: 10px 0;
  padding: 10px 22px;
}
#single h4:after {
  content: "";
  position: absolute;
  top: 11px;
  left: 2px;
  width: 12px;
  height: 12px;
  background: #6C4598;
}
/*黒丸リスト*/
#single ul {margin: 12px 0;}
#single ul li {padding: 0 18px;}
#single ul li:before {
  content: "";
  display: inline-block;
  position: relative;
  width: 6px;
  height: 6px;
  border-radius: 100%;
  background: #6C4598;
  margin: 0;
  left: -12px;
  top: -1px;
}
/*数字リスト*/
#single ol {
  counter-reset: li;
  margin: 12px 0;
}
#single ol > li {padding: 0 18px;}
#single ol > li:before {
  counter-increment: li;
  content: counter(li);
  display: inline-block;
  position: relative;
  left: -12px;
  color: #4d2c18;
  margin: 0;
}
#single table {
  display: block;
  padding: 1.25rem 0;
  border-collapse: collapse;
  text-align: left;
  line-height: 1.5;
}
#single table thead th {
  padding: 10px;
  font-weight: bold;
  color: #fff;
  border-left: 1px solid #fff;
  background: color-mix(in srgb, #6C4598 100%, #fff 40%);
}
#single table thead th:first-child {
  border-left: 1px solid color-mix(in srgb, #6C4598 100%, #fff 40%);
}
#single table tbody th {
  padding: 0.5rem;
  font-weight: bold;
  vertical-align: top;
  border-bottom: 1px solid #eedbc4;
  background: #f1e6fc;
}
#single table td {
  padding: 0.5rem;
  vertical-align: top;
  border-left: 1px solid #eedbc4;
  border-bottom: 1px solid #eedbc4;
}
/*日付*/
#single .date {
  display: flex;
  vertical-align: middle;
  padding: 16px 0;
}
#single .date i {
  font-size: 13px;
  line-height: 1;
  margin: 0 6px 0 0;
}
#single .date p {
  line-height: 1;
  margin: 0;
}

/*------------------------------------
店舗ページ (single-shops.php)
------------------------------------*/
.single-shop {
  padding-bottom: 120px;
}

.single-shop .shop-sec-ttl {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  font-size: 26px;
  font-weight: 700;
  padding-bottom: .625em;
}
.single-shop .shop-sec-ttl::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 1.5em;
  height: 4px;
  background: var(--based-color);
}
.single-shop .shop-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: fit-content;
  min-width: 180px;
  color: #fff;
  font-size: 15px;
  background: var(--based-color);
  margin: 24px 0 0 auto;
  padding: 12px 24px;
  border-radius: 30px;
}
.single-shop .shop-btn i {
  font-size: 20px;
}

.single-shop .shop-head .head-main {
  width: 100%;
  padding-bottom: 10px;
  border-bottom: 1px solid #181818;
}
.single-shop .shop-head .head-ttl {
  display: flex;
  justify-content: center;
  flex-direction: column;
  min-height: 200px;
  font-size: 30px;
  line-height: 1.35;
  font-weight: 700;
}
.single-shop .shop-head .head-tel {
  display: flex;
  align-items: baseline;
  gap: 5px;
  font-size: 20px;
  margin-top: -.5lh;
}
.single-shop .shop-head .head-tel i {
  color: var(--based-color);
}
.single-shop .shop-head .head-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5em;
  margin-top: 15px;
}
.single-shop .shop-head .head-meta .meta-item {
  display: flex;
  align-items: center;
  gap: .75em;
}
.single-shop .shop-head .head-meta .meta-item i {
  color: var(--based-color);
}

.single-shop .shop-kv {
  width: 100%;
  aspect-ratio: 2 / 1;
  margin-top: 15px;
  overflow: hidden;
  border-radius: 30px;
}
.single-shop .shop-kv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.single-shop .shop-kv .splide__track {
  height: 100%;
}
.single-shop .shop-kv .splide__pagination .splide__pagination__page {
  background: var(--based-color);
  opacity: .5;
}
.single-shop .shop-kv .splide__pagination .splide__pagination__page.is-active {
  opacity: 1;
}

.single-shop .shop-intro {
  margin-top: 60px;
}
.single-shop .shop-intro .intro-catch {
  font-size: 24px;
  font-weight: 700;
}
.single-shop .shop-intro .intro-txt {
  margin-top: 20px;
}
.single-shop .shop-intro .intro-txt .txt-par:not(:first-child) {
  margin-top: 1vh;
}

.single-shop .shop-news {
  margin-top: 60px;
}
.single-shop .shop-news .news-list {
  margin-top: 20px;
}
.single-shop .shop-news .news-list .splide__arrow {
  background: var(--based-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  opacity: 1;
}
.single-shop .shop-news .news-list .splide__arrow:hover {
  opacity: .7;
}
.single-shop .shop-news .news-list .splide__arrow:disabled {
  opacity: .3;
}
.single-shop .shop-news .news-list .splide__arrow.splide__arrow--prev {
  left: -20px;
}
.single-shop .shop-news .news-list .splide__arrow.splide__arrow--next {
  right: -20px;
}
.single-shop .shop-news .news-list .splide__arrow svg {
  fill: #fff;
}
.single-shop .shop-news .news-list .list-item {
  width: 260px;
  margin-right: 18px;
}
.single-shop .shop-news .news-list .list-item a {
  display: block;
  border-radius: 20px;
  background: var(--based-color-light);
  overflow: hidden;
}
.single-shop .shop-news .news-list .list-item a .item-img {
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}
.single-shop .shop-news .news-list .list-item a .item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.single-shop .shop-news .news-list .list-item a .item-txt {
  padding: 12px 18px 18px;
}
.single-shop .shop-news .news-list .list-item a .item-txt .txt-date {
  display: flex;
  align-items: baseline;
  gap: 5px;
  font-size: 13px;
}
.single-shop .shop-news .news-list .list-item a .item-txt .txt-date i {
  color: var(--based-color);
}
.single-shop .shop-news .news-list .list-item a .item-txt .txt-excerpt {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  margin-top: 4px;
}

.single-shop .shop-menu {
  margin-top: 60px;
}
.single-shop .shop-menu .menu-inr {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  margin-top: 20px;
}
.single-shop .shop-menu .menu-qr {
  background: var(--based-color-light);
  padding: 30px;
  border-radius: 50px;
}
.single-shop .shop-menu .menu-qr img {
  width: 180px;
}
.single-shop .shop-menu .menu-txt {
  position: relative;
  color: #fff;
  background: var(--based-color);
  padding: 10px 20px;
  border-radius: 40px;
}
.single-shop .shop-menu .menu-txt::before {
  content: "";
  position: absolute;
  left: -19px;
  top: 50%;
  translate: 0 -50%;
  width: 20px;
  height: 16px;
  background: var(--based-color);
  clip-path: polygon(0 50%, 100% 100%, 100% 0);
}
.single-shop .shop-menu .menu-txt .txt-par {
  font-size: 21px;
  font-weight: 700;
}
.single-shop .shop-menu .menu-txt .txt-par br {
  display: none;
}
.single-shop .shop-menu .menu-txt .txt-ifyoucant {
  font-size: 13px;
  text-align: center;
}
.single-shop .shop-menu .menu-txt .txt-ifyoucant a {
  color: #fff;
  text-decoration: underline;
}

.single-shop .shop-info {
  margin-top: 60px;
}
.single-shop .shop-info .info-table {
  width: 100%;
  margin-top: 20px;
  border-spacing: 0;
}
.single-shop .shop-info .info-table th,
.single-shop .shop-info .info-table td {
  background: var(--based-color-light);
  padding: 12px 16px;
  border-bottom: 2px solid #fff;
}
.single-shop .shop-info .info-table tr:last-child th,
.single-shop .shop-info .info-table tr:last-child td {
  border-bottom: none;
}
.single-shop .shop-info .info-table th {
  width: 13em;
}
.single-shop .shop-info .info-table .table-time dl {
  display: flex;
  gap: .5em;
}

.single-shop .shop-coupon {
  margin-top: 60px;
}
.single-shop .shop-coupon .coupon-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}
.single-shop .shop-coupon .coupon-list .list-item {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  background: var(--based-color-light);
  padding: 16px 24px;
  border: 1px solid var(--based-color);
  border-radius: 30px;
}
.single-shop .shop-coupon .coupon-list .list-item .item-ttl {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  padding-right: 88px;
}
.single-shop .shop-coupon .coupon-list .list-item .item-detail-btn {
  position: absolute;
  top: 12px;
  right: 24px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--based-color);
  width: 40px;
  height: 40px;
  border-radius: 30px;
}
.single-shop .shop-coupon .coupon-list .list-item .item-detail-btn i {
  transition: .3s ease scale;
}
.single-shop .shop-coupon .coupon-list .list-item .item-detail-btn:has(+ input:checked) i {
  scale: 1 -1;
}
.single-shop .shop-coupon .coupon-list .list-item input {
  display: none;
}
.single-shop .shop-coupon .coupon-list .list-item input:checked + .item-detail {
  grid-template-rows: 1fr;
}
.single-shop .shop-coupon .coupon-list .list-item .item-detail {
  display: grid;
  grid-template-rows: 0fr;
  width: 100%;
  transition: .3s ease grid-template-rows;
}
.single-shop .shop-coupon .coupon-list .list-item .item-detail .detail-inr {
  overflow: hidden;
}
.single-shop .shop-coupon .coupon-list .list-item .item-detail .detail-rule {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 10px;
}
.single-shop .shop-coupon .coupon-list .list-item .item-detail .detail-rule .rule-item {
  display: flex;
  align-items: baseline;
  gap: 1em;
  font-size: 14px;
}
.single-shop .shop-coupon .coupon-list .list-item .item-detail .detail-rule .rule-item dt {
  color: #fff;
  background: var(--based-color);
  padding: .25em .75em;
  border-radius: .5em;
}

.single-shop .shop-gallary {
  margin-top: 60px;
}
.single-shop .shop-gallary .gallary-list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
}
.single-shop .shop-gallary .gallary-list .list-item {
  width: calc(100% / 5);
  aspect-ratio: 1 / 1;
}
.single-shop .shop-gallary .gallary-list .list-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-shop .shop-map {
  margin-top: 60px;
}
.single-shop .shop-map .map-embed {
  width: 100%;
  margin-top: 20px;
  aspect-ratio: 2 / 1;
}
.single-shop .shop-map .map-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
}

/*------------------------------------
記事一覧ページ (archive.php,search.php)
------------------------------------*/
#search_result .searchword {
  display: block;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
  margin: 0 0 24px 0;
  padding: 48px 4px;
  border-bottom: 2px solid #181818;
}
/*店舗ページ*/
#search_result .result-box .shops {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 32px;
  margin-bottom: 32px;
}
#search_result .result-box .shops .image {
  display: block;
  width: 400px;
  height: 280px;
  border: 1px solid #dcdcdc;
  border-radius: 20px;
  overflow: hidden;
}
#search_result .result-box .shops .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50%;
  font-family: 'object-fit: cover; object-position: 50% 50%;'
}
#search_result .result-box .shops .overview {
  width: calc(100% - 32px - 400px);
  position: relative;
}
#search_result .result-box .shops .overview .ttl {
  display: inline-block;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5;
}
#search_result .result-box .shops .overview .tags li,
#search_result .result-box .shops .overview p {
  font-size: 13px;
}
#search_result .result-box .shops .overview .tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5em 1em;
}
#search_result .result-box .shops .overview .tags i {
  color: var(--based-color);
}
#search_result .result-box .shops .overview .tel {
  display: flex;
  align-items: baseline;
  gap: .25em;
  width: fit-content;
  font-size: 18px;
  margin: 6px 0;
}
#search_result .result-box .shops .overview .tel i {
  color: var(--based-color);
}
#search_result .result-box .shops .overview .address {
  display: flex;
  align-items: baseline;
  gap: .25em;
  width: fit-content;
  margin: 6px 0;
}
#search_result .result-box .shops .overview .address i {
  color: var(--based-color);
}
#search_result .result-box .shops .overview .times {
  display: flex;
  flex-wrap: wrap;
  gap: .5em 1em;
  font-size: 12px;
  margin: 6px 0;
}
#search_result .result-box .shops .overview .times dl {
  display: flex;
  align-items: center;
  gap: .25em .5em;
}
#search_result .result-box .shops .overview .times dl dt {
  color: #fff;
  background: var(--based-color);
  padding: .25em .5em;
  border-radius: .25em;
}
#search_result .result-box .shops .overview .intro {
  margin: 0 0 auto;
  background: var(--based-color-light);
  margin-top: 12px;
  padding: 10px 14px;
  border-radius: 10px;
}
#search_result .result-box .shops .overview .intro span {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

#search_result .notfound {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin: 36px 0;
}

/*------------------------------------
cocoikuとは？ (page-whats.php)
------------------------------------*/
#whatscocoiku h1 {
  display: block;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  margin: 0 0 36px;
  padding: 64px 4px;
  border-bottom: 2px solid #181818;
}
#whatscocoiku .box1 {
  justify-content: space-between;
  height: 300px;
  margin: 36px 0 0;
}
#whatscocoiku .box1 img {
  width: 50%;
  height: 100%;
  object-fit: cover;
  object-position: 50%;
  font-family: 'object-fit: cover; object-position: 50% 50%;';	
}
#whatscocoiku .box1 h2 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
  height: 100%;
  font-size: 22px;
  line-height: 2;
  color: #fff;
  text-align: center;
  background: #cc0099;
}
#whatscocoiku .box2 {margin: 48px 0 0;}
#whatscocoiku .box2 div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#whatscocoiku .box2 div h2 {
  font-size: 32px;
  line-height: 1.5;
  text-align: center;
  margin: 24px 0;
}
#whatscocoiku .box2 div h2 em {
  font-size: 32px;
  font-style: normal;
  color: #cc0099;
  line-height: 1.5;
}
#whatscocoiku .box2 div p {
  font-size: 18px;
  text-align: center;
  word-wrap: break-word;
}
#whatscocoiku .recommend {
  background: #cc0099;
  padding: 64px 0;
}
#whatscocoiku .recommend .container {position: relative;}
#whatscocoiku .recommend h2 {
  font-size: 48px;
  color: #fff;
  line-height: 1;
}
#whatscocoiku .recommend h2 br {display: none;}
#whatscocoiku .recommend .balloon {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 12px;
  top: -48px;
  width: 172px;
  height: 172px;
  font-size: 23px;
  color: #fff;
  text-align: center;
  line-height: 1.5;
  background: url(../img/whats/balloon1.png) 0 / 172px no-repeat;
}
#whatscocoiku .recommend .flex-wrap {
  flex-wrap: nowrap;
  justify-content: space-between;
  margin: 64px 0 0;
}
#whatscocoiku .recommend .box {width: 216px;}
#whatscocoiku .recommend .box .head {position: relative;}
#whatscocoiku .recommend .box .head .frame {
  padding: 12px 8px;
  border: 1px solid #181818;
}
#whatscocoiku .recommend .box .head .frame h3 {
  font-size: 22px;
  text-align: center;
  line-height: 1.5;
}
#whatscocoiku .recommend .box .head .frame p {text-align: center;}
#whatscocoiku .recommend .box .head .balloon_thorn {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 0;
  bottom: -71px;
  width: 81px;
  height: 87px;
  font-size: 13px;
  color: #fff;
  text-align: center;
  line-height: 1.75;
  background: url(../img/whats/balloon2.png) 0 / 81px 87px no-repeat;
}
#whatscocoiku .recommend .box img {margin: 24px auto;}
#whatscocoiku .recommend .box .text {color: #fff;}
#whatscocoiku .recommend .bigimg {margin: 42px 0 0;}
#whatscocoiku .download {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 42px 0;
}
#whatscocoiku .download h2 {
  font-size: 28px;
  margin: 0 24px;
}
#whatscocoiku .download h2 br {display: none;}
#whatscocoiku .download a {
  margin: 0 12px;
  height: 64px;
}
#whatscocoiku .download a img {height: 64px;}

/*------------------------------------
地図検索ページ (page-search.php)
------------------------------------*/
#mapsearch #cluster-map {
  height: calc(100svh - 120px);
  width: 100%!important;
  overflow: hidden;
}
#mapsearch .gm-style-iw-c:has(.shops-popup) {
  padding: 0;
  background: #fefefe;
}
#mapsearch .gm-style-iw-c:has(.shops-popup) .gm-style-iw-chr {
  position: absolute;
  top: 8px;
  right: 10px;
}
#mapsearch .gm-style-iw-c:has(.shops-popup) .gm-style-iw-chr .gm-ui-hover-effect {
  background: #fff!important;
  border: 1px solid #cc0099!important;
  border-radius: 50%!important;
  user-select: auto!important;
  opacity: 1!important;
  z-index: 1;
}
#mapsearch .gm-style-iw-c:has(.shops-popup) .gm-style-iw-chr .gm-ui-hover-effect span {
  background: #cc0099;
}
#mapsearch .gm-style-iw-c:has(.shops-popup) .gm-style-iw-d {
  overflow: visible!important;
}
#mapsearch .shops-popup a {
  display: block;
}
#mapsearch .shops-popup a .ttl {
  font-size: 18px;
  color: #fff;
  font-weight: 700;
  background: #cc0099;
  padding: 16px 60px 16px 16px;
}
#mapsearch .shops-popup a .txt {
  font-size: 12px;
  line-height: 1.75;
  margin: 10px 16px;
  overflow: auto;
}
#mapsearch .shops-popup a .tags {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 1em;
}
#mapsearch .shops-popup a .tags li {
  display: flex;
  align-items: baseline;
  gap: .5em;
}
#mapsearch .shops-popup a .tags li i {
  color: #cc0099;
}
#mapsearch .shops-popup a .img {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 5 / 2;
  margin: 0;
}
#mapsearch .shops-popup a .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50%;
  font-family: 'object-fit: cover; object-position: 50% 50%;';
}
#markerdate {
  display: none;
}
#mapsearch button:before {
  top: 0!important;
}

.headline {
  display: grid;
  align-items: center;
  min-height: 240px;
}
.headline .headline-txt {
  position: relative;
}
.headline .headline-txt .txt-en {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
}
.headline .headline-txt .txt-ja {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  margin-top: 10px;
}

/*------------------------------------
規約
------------------------------------*/
.terms {
  padding-bottom: 120px;
}
.terms-content a {
  text-decoration: underline currentColor;
}
.terms-sec:not(:first-child) {
  margin-top: 36px;
}
.terms-ttl {
  font-size: 24px;
  font-weight: 700;
  padding-left: 15px;
  border-left: 5px solid var(--based-color);
}
.terms-par:not(:first-child),
.terms-list:not(:first-child) {
  margin-top: 1lh;
}
.terms-list {
  list-style-position: inside;
}
ul.terms-list {
  list-style-type: disc;
}
.terms-last {
  font-weight: 700;
  text-align: right;
  margin-top: 1lh;
}

/*------------------------------------
お問い合わせ
------------------------------------*/
#contact {
  width: fit-content;
  margin: auto;
}
#contact dl {
  width: 960px;
  margin-top: 40px;
  padding: 0;
}
#contact dl .input-item {
  display: flex;
  gap: 15px;
}
#contact dl .input-item:not(first-child) {
  margin-top: 20px;
}
#contact dl .input-item dt {
  display: grid;
  align-items: center;
  width: 260px;
  padding: 15px;
  background: #f2f2f2;
  border: none;
  border-radius: 20px;
  font-weight: 700;
  vertical-align: middle;
}
#contact dl .input-item dd {
  width: calc(100% - 260px - 15px);
  border: none;
}
#contact dl .input-item dt p,
#contact dl .input-item dd p {
  margin: auto;
}
#contact dl .input-item input,
#contact dl .input-item textarea {
  display: block;
  width: 100%;
  padding: 15px;
  border: 1px solid #181818;
  border-radius: 20px;
}

#contact .submit-btn {
  display: block;
  width: 200px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  background: #181818;
  border: 1px solid #181818;
  margin: 40px auto 0;
  padding: 15px;
  border-radius: 30px;
}
#contact .submit-btn:hover {
  color: #181818;
  background: #fff;
}

/*------------------------------------
404.php
------------------------------------*/
#notfound {
  position: relative;
  width: 100%;
  height: 72vh;
  margin-top: 12px;
  padding: 4vh 0;
  background: url(../img/404.jpg) 50%/cover no-repeat;
}
#notfound .char {
  padding: 24px 0;
  background: rgba(0,0,0, .4);
}
#notfound .char h1 {
  color: #fff;
  font-size: 26px;
  font-weight: 700;
}
#notfound .char p {color: #fff;}
#notfound .toplink {
  position: absolute;
  bottom: 56px;
  right: 80px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 20px 40px;
  background: rgba(0,0,0, .4);
  border: 1px solid #fff;
}

/*------------------------------------
ローディング
------------------------------------*/
#progress {
  display: block;
  position: fixed;
  background: #fff;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  z-index:9990;
}
#progressbar {
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  width: 0;
  height: 10px;
  background: linear-gradient(to right, #F5BE33 0%, #CB4A95 54%, #6C4598 100%);
  opacity: 0.9;
  z-index:9990;
}
#progresslogo {
  position: fixed;
  left: 50%;
  top: 50%;
  height: 48px;
  transform: translate(-50%, -50%);
  z-index:9991;
}
#progresslogo img {height: 64px;}
#progresstext {
  position: fixed;
  text-align: center;
  left: 38%;
  top: 54%;
  font-size: 14px;
  width: 24%;
  z-index:9991;
}
#progressper {
  display: inline-block;
  font-size: 14px;
  text-align: center;
}
